hexsha
stringlengths
40
40
size
int64
4
996k
ext
stringclasses
8 values
lang
stringclasses
1 value
max_stars_repo_path
stringlengths
4
245
max_stars_repo_name
stringlengths
6
130
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
10
max_stars_count
int64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
4
245
max_issues_repo_name
stringlengths
6
130
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
10
max_issues_count
int64
1
67k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
4
245
max_forks_repo_name
stringlengths
6
130
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
10
max_forks_count
int64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
4
996k
avg_line_length
float64
1.33
58.2k
max_line_length
int64
2
323k
alphanum_fraction
float64
0
0.97
content_no_comment
stringlengths
0
946k
is_comment_constant_removed
bool
2 classes
is_sharp_comment_removed
bool
1 class
f7f3d53b857720c81e7ab41fe482781c4353b676
7,454
py
Python
sensor/humidity.py
totomz/homelab
fa578cf7d7dbc8c4941d4944aa0fa8ff108156b7
[ "MIT" ]
null
null
null
sensor/humidity.py
totomz/homelab
fa578cf7d7dbc8c4941d4944aa0fa8ff108156b7
[ "MIT" ]
null
null
null
sensor/humidity.py
totomz/homelab
fa578cf7d7dbc8c4941d4944aa0fa8ff108156b7
[ "MIT" ]
null
null
null
#! /usr/bin/python3 import logging import multiprocessing from concurrent.futures.thread import ThreadPoolExecutor from multiprocessing import Process import statsd import Adafruit_DHT import time import boto3 import sys import subprocess import os from timeit import default_timer as timer from threading import Thread from threading import Lock from queue import Queue from dotenv import load_dotenv load_dotenv() DHT_PIN = 4 STATSD_ENDPOINT = os.environ['statsd_url'] statsd = statsd.StatsClient(STATSD_ENDPOINT, 8125, prefix='totomz.homelab') skip_ipmi = dict() q = Queue() HOSTS = { 'zione': {'ipmi': False}, 'ziobob': {'ipmi': '192.168.10.30', 'lock': Lock()}, 'ziocharlie': {'ipmi': '192.168.10.31', 'lock': Lock()}, } vgpulock = Lock() sensorlock = Lock() def str2float(string, default=0.0): res = default try: res = float(string) except Exception: res = default return res def collect_sensor(): log = multiprocessing.get_logger() log.info(" --> Collecting temperature and humidity") global q lock = sensorlock.acquire(blocking=False) if lock is False: log.info(f" --> Collecting sensors :: still being queried....skipping") return try: humidity, temperature = Adafruit_DHT.read_retry(Adafruit_DHT.DHT22, DHT_PIN) # humidity, temperature = 0, 1 finally: sensorlock.release() results = dict() results['rack.humidity'] = humidity results['rack.temperature'] = temperature log.info(f" --> Temperature: {temperature} Humidity: {humidity}") if len(results) > 0: q.put(results) def collect_ipmi(): log = multiprocessing.get_logger() global q results = dict() log.info(" --> Collecting ipmi") def ipmi_poll(hostname): if skip_ipmi.get(hostname, 0) > 0: print(f"Host {hostname} is in the skipped list") skip_ipmi[hostname] = skip_ipmi.get(hostname, 0) - 1 return results lock = HOSTS[hostname]['lock'].acquire(blocking=False) if lock is False: log.info(f" --> Collecting ipmi :: {hostname} still being queried....skipping") return try: log.info(f" --> Collecting ipmi :: {hostname} querying") out = subprocess.check_output("ipmitool -P root -U root -H {ip} sensor".format(ip=HOSTS[hostname]['ipmi']), stderr=subprocess.STDOUT, shell=True) stdout = str(out.decode('utf-8')) log.info(f" --> Collecting ipmi :: {hostname} got readings") metrics = stdout.split("\n") for line in metrics: metric_line = line.lower() if "temp" not in metric_line: continue p = metric_line.split("|") metric_name = f"host.{hostname}.{str.lower(str.strip(str.strip(p[0]))).replace(' ', '_')}" metric_value = str2float(str.strip(p[1]), 0) results[metric_name] = metric_value except Exception as e: step = 5 print(f"Error processing IPMI for {hostname} - slpeeping for {step} steps") skip_ipmi[hostname] = step finally: HOSTS[hostname]['lock'].release() with ThreadPoolExecutor(max_workers=2) as pool: pool.map(ipmi_poll, ['ziobob', 'ziocharlie']) log.info(" --> Collecting ipmi done") if len(results) > 0: q.put(results) def collect_vgpu(): log = multiprocessing.get_logger() global q global vgpulock hostname = "zione" log.info(" --> Collecting vGPU") results = dict() lock = vgpulock.acquire(blocking=False) if lock is False: log.info(f" --> Collecting vGPU :: still being queried....skipping") return try: out = subprocess.check_output(f"ssh root@{hostname} \"nvidia-smi -q\"", stderr=subprocess.STDOUT, shell=True) stdout = str(out.decode('utf-8')) except Exception as e: log.error(f"Error vGPU", e) finally: vgpulock.release() lines = stdout.split("\n") current_gpu = None def pop_metric(name_prefix): m = lines.pop(0).lower().split(":") metric_name = f"{name_prefix}.{m[0].strip().replace(' ', '_')}" metric_value = m[1].split()[0].strip() results[f"host.zione.gpu.{metric_name}"] = str2float(metric_value) while len(lines): line = lines.pop(0) if line.startswith('GPU 0000:'): current_gpu = line.split('GPU ')[1].split(':')[1] if current_gpu is None: continue if line.startswith(" FB Memory Usage"): pop_metric(f"{current_gpu}.memory.framebuffer") # total pop_metric(f"{current_gpu}.memory.framebuffer") # used pop_metric(f"{current_gpu}.memory.framebuffer") # free if line.startswith(" BAR1 Memory Usage"): pop_metric(f"{current_gpu}.memory.bar") # total pop_metric(f"{current_gpu}.memory.bar") # used pop_metric(f"{current_gpu}.memory.bar") # free line = lines.pop(0) if line.startswith(" Utilization"): pop_metric(f"{current_gpu}.utilization") # gpu pop_metric(f"{current_gpu}.utilization") # memory pop_metric(f"{current_gpu}.utilization") # encoder pop_metric(f"{current_gpu}.utilization") # decoder line = lines.pop(0) if line.startswith(" Temperature"): pop_metric(f"{current_gpu}.temp") # gpu if line.startswith(" Power Readings"): lines.pop(0) # Skip Power Management pop_metric(f"{current_gpu}.power") # Draw if line == " Clocks": pop_metric(f"{current_gpu}.power") # Graphics pop_metric(f"{current_gpu}.power") # SM pop_metric(f"{current_gpu}.power") # Memory pop_metric(f"{current_gpu}.power") # Video log.info(f" --> Collecting vGPU :: {len(results)}") if len(results) > 0: q.put(results) def statsd_writer(): log = multiprocessing.get_logger() global q while True: log.info("Waiting for metrics") metrics = q.get(block=True) for k in metrics: log.info(f":statsd {k} ==> {metrics[k]}") statsd.gauge(k, metrics[k]) log.info(f"--> Bobmaaaa {len(metrics)}") print("Starting temperature and humidity monitoring service....") sys.stdout.flush() if __name__ == '__main__': log = multiprocessing.get_logger() log.setLevel(logging.INFO) handler = logging.StreamHandler(sys.stdout) handler.setFormatter(logging.Formatter(' --> [%(asctime)s] - %(processName)s - %(message)s')) log.addHandler(handler) log.info("# Starting statsd writer") worker = Thread(target=statsd_writer) worker.daemon = True # Die with your parent worker.start() while True: log.info("# waking up workers") for func in [ collect_vgpu, collect_ipmi, collect_sensor ]: worker = Thread(target=func) worker.daemon = True # Die with your parent worker.start() time.sleep(5)
30.056452
119
0.582909
import logging import multiprocessing from concurrent.futures.thread import ThreadPoolExecutor from multiprocessing import Process import statsd import Adafruit_DHT import time import boto3 import sys import subprocess import os from timeit import default_timer as timer from threading import Thread from threading import Lock from queue import Queue from dotenv import load_dotenv load_dotenv() DHT_PIN = 4 STATSD_ENDPOINT = os.environ['statsd_url'] statsd = statsd.StatsClient(STATSD_ENDPOINT, 8125, prefix='totomz.homelab') skip_ipmi = dict() q = Queue() HOSTS = { 'zione': {'ipmi': False}, 'ziobob': {'ipmi': '192.168.10.30', 'lock': Lock()}, 'ziocharlie': {'ipmi': '192.168.10.31', 'lock': Lock()}, } vgpulock = Lock() sensorlock = Lock() def str2float(string, default=0.0): res = default try: res = float(string) except Exception: res = default return res def collect_sensor(): log = multiprocessing.get_logger() log.info(" --> Collecting temperature and humidity") global q lock = sensorlock.acquire(blocking=False) if lock is False: log.info(f" --> Collecting sensors :: still being queried....skipping") return try: humidity, temperature = Adafruit_DHT.read_retry(Adafruit_DHT.DHT22, DHT_PIN) finally: sensorlock.release() results = dict() results['rack.humidity'] = humidity results['rack.temperature'] = temperature log.info(f" --> Temperature: {temperature} Humidity: {humidity}") if len(results) > 0: q.put(results) def collect_ipmi(): log = multiprocessing.get_logger() global q results = dict() log.info(" --> Collecting ipmi") def ipmi_poll(hostname): if skip_ipmi.get(hostname, 0) > 0: print(f"Host {hostname} is in the skipped list") skip_ipmi[hostname] = skip_ipmi.get(hostname, 0) - 1 return results lock = HOSTS[hostname]['lock'].acquire(blocking=False) if lock is False: log.info(f" --> Collecting ipmi :: {hostname} still being queried....skipping") return try: log.info(f" --> Collecting ipmi :: {hostname} querying") out = subprocess.check_output("ipmitool -P root -U root -H {ip} sensor".format(ip=HOSTS[hostname]['ipmi']), stderr=subprocess.STDOUT, shell=True) stdout = str(out.decode('utf-8')) log.info(f" --> Collecting ipmi :: {hostname} got readings") metrics = stdout.split("\n") for line in metrics: metric_line = line.lower() if "temp" not in metric_line: continue p = metric_line.split("|") metric_name = f"host.{hostname}.{str.lower(str.strip(str.strip(p[0]))).replace(' ', '_')}" metric_value = str2float(str.strip(p[1]), 0) results[metric_name] = metric_value except Exception as e: step = 5 print(f"Error processing IPMI for {hostname} - slpeeping for {step} steps") skip_ipmi[hostname] = step finally: HOSTS[hostname]['lock'].release() with ThreadPoolExecutor(max_workers=2) as pool: pool.map(ipmi_poll, ['ziobob', 'ziocharlie']) log.info(" --> Collecting ipmi done") if len(results) > 0: q.put(results) def collect_vgpu(): log = multiprocessing.get_logger() global q global vgpulock hostname = "zione" log.info(" --> Collecting vGPU") results = dict() lock = vgpulock.acquire(blocking=False) if lock is False: log.info(f" --> Collecting vGPU :: still being queried....skipping") return try: out = subprocess.check_output(f"ssh root@{hostname} \"nvidia-smi -q\"", stderr=subprocess.STDOUT, shell=True) stdout = str(out.decode('utf-8')) except Exception as e: log.error(f"Error vGPU", e) finally: vgpulock.release() lines = stdout.split("\n") current_gpu = None def pop_metric(name_prefix): m = lines.pop(0).lower().split(":") metric_name = f"{name_prefix}.{m[0].strip().replace(' ', '_')}" metric_value = m[1].split()[0].strip() results[f"host.zione.gpu.{metric_name}"] = str2float(metric_value) while len(lines): line = lines.pop(0) if line.startswith('GPU 0000:'): current_gpu = line.split('GPU ')[1].split(':')[1] if current_gpu is None: continue if line.startswith(" FB Memory Usage"): pop_metric(f"{current_gpu}.memory.framebuffer") pop_metric(f"{current_gpu}.memory.framebuffer") pop_metric(f"{current_gpu}.memory.framebuffer") if line.startswith(" BAR1 Memory Usage"): pop_metric(f"{current_gpu}.memory.bar") pop_metric(f"{current_gpu}.memory.bar") pop_metric(f"{current_gpu}.memory.bar") line = lines.pop(0) if line.startswith(" Utilization"): pop_metric(f"{current_gpu}.utilization") pop_metric(f"{current_gpu}.utilization") pop_metric(f"{current_gpu}.utilization") pop_metric(f"{current_gpu}.utilization") line = lines.pop(0) if line.startswith(" Temperature"): pop_metric(f"{current_gpu}.temp") if line.startswith(" Power Readings"): lines.pop(0) pop_metric(f"{current_gpu}.power") if line == " Clocks": pop_metric(f"{current_gpu}.power") pop_metric(f"{current_gpu}.power") pop_metric(f"{current_gpu}.power") pop_metric(f"{current_gpu}.power") log.info(f" --> Collecting vGPU :: {len(results)}") if len(results) > 0: q.put(results) def statsd_writer(): log = multiprocessing.get_logger() global q while True: log.info("Waiting for metrics") metrics = q.get(block=True) for k in metrics: log.info(f":statsd {k} ==> {metrics[k]}") statsd.gauge(k, metrics[k]) log.info(f"--> Bobmaaaa {len(metrics)}") print("Starting temperature and humidity monitoring service....") sys.stdout.flush() if __name__ == '__main__': log = multiprocessing.get_logger() log.setLevel(logging.INFO) handler = logging.StreamHandler(sys.stdout) handler.setFormatter(logging.Formatter(' --> [%(asctime)s] - %(processName)s - %(message)s')) log.addHandler(handler) log.info("# Starting statsd writer") worker = Thread(target=statsd_writer) worker.daemon = True worker.start() while True: log.info("# waking up workers") for func in [ collect_vgpu, collect_ipmi, collect_sensor ]: worker = Thread(target=func) worker.daemon = True worker.start() time.sleep(5)
true
true
f7f3d5b166a71a417eaf549abf4f8f27055a0bd5
44,735
py
Python
CUFFT timings/CUFFT_TIMINGS_GTX480_EVENT1x.py
Almajester/gpuLucas
676cb45d76b3f157a1334fad6895868059dcc7d0
[ "Unlicense" ]
2
2018-07-07T06:10:04.000Z
2021-05-19T01:34:26.000Z
CUFFT timings/CUFFT_TIMINGS_GTX480_EVENT1x.py
Almajester/gpuLucas
676cb45d76b3f157a1334fad6895868059dcc7d0
[ "Unlicense" ]
null
null
null
CUFFT timings/CUFFT_TIMINGS_GTX480_EVENT1x.py
Almajester/gpuLucas
676cb45d76b3f157a1334fad6895868059dcc7d0
[ "Unlicense" ]
2
2018-04-12T18:33:36.000Z
2019-01-30T19:50:18.000Z
[262144, 18, 0, 0, 0, 0.371648], [262440, 3, 8, 1, 0, 0.521312], [262500, 2, 1, 5, 1, 0.674624], [263424, 8, 1, 0, 3, 0.506144], [264600, 3, 3, 2, 2, 0.566176], [268800, 9, 1, 2, 1, 0.550848], [268912, 4, 0, 0, 5, 0.550144], [270000, 4, 3, 4, 0, 0.575488], [272160, 5, 5, 1, 1, 0.52688], [273375, 0, 7, 3, 0, 3.56157], [274400, 5, 0, 2, 3, 0.550208], [275562, 1, 9, 0, 1, 3.57453], [275625, 0, 2, 4, 2, 3.50982], [276480, 11, 3, 1, 0, 0.437408], [277830, 1, 4, 1, 3, 3.82234], [279936, 7, 7, 0, 0, 0.46736], [280000, 6, 0, 4, 1, 0.569792], [281250, 1, 2, 6, 0, 5.2904], [282240, 7, 2, 1, 2, 0.504512], [283500, 2, 4, 3, 1, 0.684352], [285768, 3, 6, 0, 2, 0.574976], [286720, 13, 0, 1, 1, 0.461664], [288000, 8, 2, 3, 0, 0.544512], [288120, 3, 1, 1, 4, 0.664608], [290304, 9, 4, 0, 1, 0.533408], [291600, 4, 6, 2, 0, 0.569632], [294000, 4, 1, 3, 2, 0.65776], [294912, 15, 2, 0, 0, 0.426368], [295245, 0, 10, 1, 0, 5.09709], [296352, 5, 3, 0, 3, 0.549184], [297675, 0, 5, 2, 2, 5.08429], [300000, 5, 1, 5, 0, 0.647424], [300125, 0, 0, 3, 4, 5.50016], [301056, 11, 1, 0, 2, 0.517408], [302400, 6, 3, 2, 1, 0.5632], [302526, 1, 2, 0, 5, 5.47757], [303750, 1, 5, 4, 0, 5.39267], [306180, 2, 7, 1, 1, 0.662688], [306250, 1, 0, 5, 2, 4.38877], [307200, 12, 1, 2, 0, 0.529792], [307328, 7, 0, 0, 4, 0.555904], [308700, 2, 2, 2, 3, 0.72464], [311040, 8, 5, 1, 0, 0.556544], [312500, 2, 0, 7, 0, 0.78128], [313600, 8, 0, 2, 2, 0.602976], [314928, 4, 9, 0, 0, 0.59136], [315000, 3, 2, 4, 1, 0.709472], [317520, 4, 4, 1, 2, 0.62096], [320000, 9, 0, 4, 0, 0.64416], [321489, 0, 8, 0, 2, 4.94003], [322560, 10, 2, 1, 1, 0.563456], [324000, 5, 4, 3, 0, 0.626048], [324135, 0, 3, 1, 4, 4.06378], [326592, 6, 6, 0, 1, 0.555328], [327680, 16, 0, 1, 0, 0.50928], [328050, 1, 8, 2, 0, 5.71664], [328125, 0, 1, 6, 1, 4.10947], [329280, 6, 1, 1, 3, 0.634624], [330750, 1, 3, 3, 2, 4.13466], [331776, 12, 4, 0, 0, 0.497568], [333396, 2, 5, 0, 3, 0.758496], [336000, 7, 1, 3, 1, 0.678848], [336140, 2, 0, 1, 5, 0.805152], [337500, 2, 3, 5, 0, 0.808608], [338688, 8, 3, 0, 2, 0.58864], [340200, 3, 5, 2, 1, 0.71616], [343000, 3, 0, 3, 3, 0.758336], [344064, 14, 1, 0, 1, 0.554624], [345600, 9, 3, 2, 0, 0.648064], [345744, 4, 2, 0, 4, 0.681152], [349920, 5, 7, 1, 0, 0.608352], [350000, 4, 0, 5, 1, 0.772512], [351232, 10, 0, 0, 3, 0.623296], [352800, 5, 2, 2, 2, 0.681376], [352947, 0, 1, 0, 6, 5.79088], [354294, 1, 11, 0, 0, 5.64771], [354375, 0, 4, 4, 1, 5.60323], [357210, 1, 6, 1, 2, 5.6304], [358400, 11, 0, 2, 1, 0.6064], [360000, 6, 2, 4, 0, 0.68912], [360150, 1, 1, 2, 4, 6.00944], [362880, 7, 4, 1, 1, 0.634176], [364500, 2, 6, 3, 0, 0.818784], [367416, 3, 8, 0, 1, 0.734688], [367500, 2, 1, 4, 2, 0.910464], [368640, 13, 2, 1, 0, 0.55216], [370440, 3, 3, 1, 3, 0.770976], [373248, 9, 6, 0, 0, 0.644448], [375000, 3, 1, 6, 0, 0.889152], [376320, 9, 1, 1, 2, 0.733952], [378000, 4, 3, 3, 1, 0.768096], [381024, 5, 5, 0, 2, 0.708832], [382725, 0, 7, 2, 1, 5.90589], [384000, 10, 1, 3, 0, 0.744224], [384160, 5, 0, 1, 4, 0.744768], [385875, 0, 2, 3, 3, 5.93206], [387072, 11, 3, 0, 1, 0.601344], [388800, 6, 5, 2, 0, 0.72112], [388962, 1, 4, 0, 4, 4.99226], [390625, 0, 0, 8, 0, 5.03382], [392000, 6, 0, 3, 2, 0.758336], [393216, 17, 1, 0, 0, 0.626016], [393660, 2, 9, 1, 0, 0.854016], [393750, 1, 2, 5, 1, 6.66074], [395136, 7, 2, 0, 3, 0.697984], [396900, 2, 4, 2, 2, 0.907456], [400000, 7, 0, 5, 0, 0.783456], [401408, 13, 0, 0, 2, 0.617568], [403200, 8, 2, 2, 1, 0.730592], [403368, 3, 1, 0, 5, 0.898784], [405000, 3, 4, 4, 0, 0.879584], [408240, 4, 6, 1, 1, 0.75584], [409600, 14, 0, 2, 0, 0.6512], [411600, 4, 1, 2, 3, 0.891488], [413343, 0, 10, 0, 1, 5.50262], [414720, 10, 4, 1, 0, 0.702176], [416745, 0, 5, 1, 3, 5.69331], [419904, 6, 8, 0, 0, 0.690848], [420000, 5, 1, 4, 1, 0.881824], [420175, 0, 0, 2, 5, 6.71088], [421875, 0, 3, 6, 0, 6.68627], [423360, 6, 3, 1, 2, 0.732256], [425250, 1, 5, 3, 1, 6.66323], [428652, 2, 7, 0, 2, 0.914912], [428750, 1, 0, 4, 3, 6.76835], [430080, 12, 1, 1, 1, 0.712992], [432000, 7, 3, 3, 0, 0.78336], [432180, 2, 2, 1, 4, 0.979744], [435456, 8, 5, 0, 1, 0.748192], [437400, 3, 7, 2, 0, 0.882848], [437500, 2, 0, 6, 1, 1.10486], [439040, 8, 0, 1, 3, 0.794912], [441000, 3, 2, 3, 2, 0.959744], [442368, 14, 3, 0, 0, 0.637088], [444528, 4, 4, 0, 3, 0.856256], [448000, 9, 0, 3, 1, 0.8952], [450000, 4, 2, 5, 0, 0.958688], [451584, 10, 2, 0, 2, 0.771136], [453600, 5, 4, 2, 1, 0.849856], [453789, 0, 3, 0, 5, 6.25174], [455625, 0, 6, 4, 0, 6.31734], [458752, 16, 0, 0, 1, 0.697312], [459270, 1, 8, 1, 1, 6.31696], [459375, 0, 1, 5, 2, 6.33424], [460800, 11, 2, 2, 0, 0.75376], [460992, 6, 1, 0, 4, 0.85424], [463050, 1, 3, 2, 3, 6.58691], [466560, 7, 6, 1, 0, 0.768128], [468750, 1, 1, 7, 0, 9.57222], [470400, 7, 1, 2, 2, 0.894784], [470596, 2, 0, 0, 6, 1.08314], [472392, 3, 10, 0, 0, 0.9056], [472500, 2, 3, 4, 1, 1.10573], [476280, 3, 5, 1, 2, 0.965088], [480000, 8, 1, 4, 0, 0.947552], [480200, 3, 0, 2, 4, 1.05021], [483840, 9, 3, 1, 1, 0.874304], [486000, 4, 5, 3, 0, 0.994432], [489888, 5, 7, 0, 1, 0.84432], [490000, 4, 0, 4, 2, 1.04035], [491520, 15, 1, 1, 0, 0.778368], [492075, 0, 9, 2, 0, 6.96925], [493920, 5, 2, 1, 3, 0.914752], [496125, 0, 4, 3, 2, 6.98346], [497664, 11, 5, 0, 0, 0.783712], [500000, 5, 0, 6, 0, 1.04976], [500094, 1, 6, 0, 3, 9.48573], [501760, 11, 0, 1, 2, 0.814016], [504000, 6, 2, 3, 1, 0.949376], [504210, 1, 1, 1, 5, 9.51498], [506250, 1, 4, 5, 0, 9.55635], [508032, 7, 4, 0, 2, 0.857888], [510300, 2, 6, 2, 1, 1.11795], [512000, 12, 0, 3, 0, 0.877056], [514500, 2, 1, 3, 3, 1.25018], [516096, 13, 2, 0, 1, 0.758688], [518400, 8, 4, 2, 0, 0.919904], [518616, 3, 3, 0, 4, 1.05949], [524288, 19, 0, 0, 0, 0.727136], [524880, 4, 8, 1, 0, 0.963968], [525000, 3, 1, 5, 1, 1.23942], [526848, 9, 1, 0, 3, 1.0257], [529200, 4, 3, 2, 2, 1.04589], [531441, 0, 12, 0, 0, 8.57098], [535815, 0, 7, 1, 2, 8.4985], [537600, 10, 1, 2, 1, 1.0232], [537824, 5, 0, 0, 5, 1.0032], [540000, 5, 3, 4, 0, 1.04029], [540225, 0, 2, 2, 4, 9.65904], [544320, 6, 5, 1, 1, 0.95584], [546750, 1, 7, 3, 0, 9.68707], [546875, 0, 0, 7, 1, 7.17158], [548800, 6, 0, 2, 3, 1.02755], [551124, 2, 9, 0, 1, 1.1799], [551250, 1, 2, 4, 2, 7.15728], [552960, 12, 3, 1, 0, 0.832128], [555660, 2, 4, 1, 3, 1.23613], [559872, 8, 7, 0, 0, 0.891232], [560000, 7, 0, 4, 1, 1.07056], [562500, 2, 2, 6, 0, 1.38714], [564480, 8, 2, 1, 2, 0.959712], [567000, 3, 4, 3, 1, 1.20694], [571536, 4, 6, 0, 2, 1.03766], [573440, 14, 0, 1, 1, 0.875808], [576000, 9, 2, 3, 0, 1.10422], [576240, 4, 1, 1, 4, 1.2007], [580608, 10, 4, 0, 1, 0.97392], [583200, 5, 6, 2, 0, 1.03862], [583443, 0, 5, 0, 4, 7.21802], [588000, 5, 1, 3, 2, 1.21469], [588245, 0, 0, 1, 6, 7.19184], [589824, 16, 2, 0, 0, 0.86256], [590490, 1, 10, 1, 0, 9.91539], [590625, 0, 3, 5, 1, 10.2365], [592704, 6, 3, 0, 3, 1.01069], [595350, 1, 5, 2, 2, 10.2635], [600000, 6, 1, 5, 0, 1.23731], [600250, 1, 0, 3, 4, 10.8261], [602112, 12, 1, 0, 2, 0.98512], [604800, 7, 3, 2, 1, 1.06106], [605052, 2, 2, 0, 5, 1.33712], [607500, 2, 5, 4, 0, 1.41402], [612360, 3, 7, 1, 1, 1.20592], [612500, 2, 0, 5, 2, 1.4953], [614400, 13, 1, 2, 0, 1.03811], [614656, 8, 0, 0, 4, 1.08477], [617400, 3, 2, 2, 3, 1.31562], [622080, 9, 5, 1, 0, 1.14125], [625000, 3, 0, 7, 0, 1.4399], [627200, 9, 0, 2, 2, 1.20742], [629856, 5, 9, 0, 0, 1.09158], [630000, 4, 2, 4, 1, 1.31232], [635040, 5, 4, 1, 2, 1.14832], [637875, 0, 6, 3, 1, 9.75549], [640000, 10, 0, 4, 0, 1.21981], [642978, 1, 8, 0, 2, 9.94333], [643125, 0, 1, 4, 3, 9.95194], [645120, 11, 2, 1, 1, 1.01475], [648000, 6, 4, 3, 0, 1.18205], [648270, 1, 3, 1, 4, 8.34106], [653184, 7, 6, 0, 1, 1.04822], [655360, 17, 0, 1, 0, 0.986336], [656100, 2, 8, 2, 0, 1.42077], [656250, 1, 1, 6, 1, 8.65149], [658560, 7, 1, 1, 3, 1.2048], [661500, 2, 3, 3, 2, 1.52448], [663552, 13, 4, 0, 0, 0.968288], [666792, 3, 5, 0, 3, 1.32736], [672000, 8, 1, 3, 1, 1.31574], [672280, 3, 0, 1, 5, 1.43027], [675000, 3, 3, 5, 0, 1.46995], [677376, 9, 3, 0, 2, 1.20595], [680400, 4, 5, 2, 1, 1.35693], [686000, 4, 0, 3, 3, 1.44301], [688128, 15, 1, 0, 1, 1.08413], [688905, 0, 9, 1, 1, 9.87245], [691200, 10, 3, 2, 0, 1.21229], [691488, 5, 2, 0, 4, 1.24589], [694575, 0, 4, 2, 3, 9.90522], [699840, 6, 7, 1, 0, 1.14566], [700000, 5, 0, 5, 1, 1.44157], [702464, 11, 0, 0, 3, 1.12323], [703125, 0, 2, 7, 0, 10.8831], [705600, 6, 2, 2, 2, 1.26538], [705894, 1, 1, 0, 6, 10.7677], [708588, 2, 11, 0, 0, 1.44586], [708750, 1, 4, 4, 1, 11.9008], [714420, 2, 6, 1, 2, 1.5031], [716800, 12, 0, 2, 1, 1.188], [720000, 7, 2, 4, 0, 1.32915], [720300, 2, 1, 2, 4, 1.73027], [725760, 8, 4, 1, 1, 1.21846], [729000, 3, 6, 3, 0, 1.47747], [734832, 4, 8, 0, 1, 1.3401], [735000, 3, 1, 4, 2, 1.69946], [737280, 14, 2, 1, 0, 1.09392], [740880, 4, 3, 1, 3, 1.40966], [746496, 10, 6, 0, 0, 1.18867], [750000, 4, 1, 6, 0, 1.71306], [750141, 0, 7, 0, 3, 12.228], [752640, 10, 1, 1, 2, 1.37821], [756000, 5, 3, 3, 1, 1.44704], [756315, 0, 2, 1, 5, 12.1785], [759375, 0, 5, 5, 0, 12.1453], [762048, 6, 5, 0, 2, 1.31914], [765450, 1, 7, 2, 1, 12.2157], [765625, 0, 0, 6, 2, 12.2101], [768000, 11, 1, 3, 0, 1.39795], [768320, 6, 0, 1, 4, 1.38352], [771750, 1, 2, 3, 3, 12.2421], [774144, 12, 3, 0, 1, 1.15549], [777600, 7, 5, 2, 0, 1.38006], [777924, 2, 4, 0, 4, 1.69882], [781250, 1, 0, 8, 0, 15.7126], [784000, 7, 0, 3, 2, 1.46678], [786432, 18, 1, 0, 0, 1.15923], [787320, 3, 9, 1, 0, 1.51488], [787500, 2, 2, 5, 1, 1.90579], [790272, 8, 2, 0, 3, 1.32758], [793800, 3, 4, 2, 2, 1.6663], [800000, 8, 0, 5, 0, 1.55078], [802816, 14, 0, 0, 2, 1.22074], [806400, 9, 2, 2, 1, 1.51558], [806736, 4, 1, 0, 5, 1.65258], [810000, 4, 4, 4, 0, 1.65062], [816480, 5, 6, 1, 1, 1.40208], [819200, 15, 0, 2, 0, 1.2992], [820125, 0, 8, 3, 0, 11.2138], [823200, 5, 1, 2, 3, 1.65744], [823543, 0, 0, 0, 7, 11.2281], [826686, 1, 10, 0, 1, 11.1275], [826875, 0, 3, 4, 2, 11.1012], [829440, 11, 4, 1, 0, 1.28522], [833490, 1, 5, 1, 3, 11.9284], [839808, 7, 8, 0, 0, 1.34234], [840000, 6, 1, 4, 1, 1.69898], [840350, 1, 0, 2, 5, 16.4249], [843750, 1, 3, 6, 0, 16.3916], [846720, 7, 3, 1, 2, 1.42138], [850500, 2, 5, 3, 1, 2.00307], [857304, 3, 7, 0, 2, 1.66704], [857500, 2, 0, 4, 3, 2.04262], [860160, 13, 1, 1, 1, 1.40112], [864000, 8, 3, 3, 0, 1.54563], [864360, 3, 2, 1, 4, 1.7881], [870912, 9, 5, 0, 1, 1.57904], [874800, 4, 7, 2, 0, 1.65149], [875000, 3, 0, 6, 1, 1.99715], [878080, 9, 0, 1, 3, 1.6407], [882000, 4, 2, 3, 2, 1.80339], [884736, 15, 3, 0, 0, 1.27008], [885735, 0, 11, 1, 0, 14.9659], [889056, 5, 4, 0, 3, 1.57811], [893025, 0, 6, 2, 2, 14.926], [896000, 10, 0, 3, 1, 1.6953], [900000, 5, 2, 5, 0, 1.82208], [900375, 0, 1, 3, 4, 16.9604], [903168, 11, 2, 0, 2, 1.40442], [907200, 6, 4, 2, 1, 1.6312], [907578, 1, 3, 0, 5, 16.9241], [911250, 1, 6, 4, 0, 17.0412], [917504, 17, 0, 0, 1, 1.37286], [918540, 2, 8, 1, 1, 1.97526], [918750, 1, 1, 5, 2, 12.9471], [921600, 12, 2, 2, 0, 1.48013], [921984, 7, 1, 0, 4, 1.67603], [926100, 2, 3, 2, 3, 2.08915], [933120, 8, 6, 1, 0, 1.48266], [937500, 2, 1, 7, 0, 2.40995], [940800, 8, 1, 2, 2, 1.76934], [941192, 3, 0, 0, 6, 1.9713], [944784, 4, 10, 0, 0, 1.76346], [945000, 3, 3, 4, 1, 2.04451], [952560, 4, 5, 1, 2, 1.836], [960000, 9, 1, 4, 0, 2.01142], [960400, 4, 0, 2, 4, 1.96819], [964467, 0, 9, 0, 2, 15.7198], [967680, 10, 3, 1, 1, 1.64278], [972000, 5, 5, 3, 0, 1.88861], [972405, 0, 4, 1, 4, 13.5418], [979776, 6, 7, 0, 1, 1.59523], [980000, 5, 0, 4, 2, 1.97328], [983040, 16, 1, 1, 0, 1.58003], [984150, 1, 9, 2, 0, 17.5408], [984375, 0, 2, 6, 1, 14.2494], [987840, 6, 2, 1, 3, 1.72125], [992250, 1, 4, 3, 2, 14.2028], [995328, 12, 5, 0, 0, 1.58691], [1000000, 6, 0, 6, 0, 2.0423], [1000188, 2, 6, 0, 3, 2.09558], [1003520, 12, 0, 1, 2, 1.59949], [1008000, 7, 2, 3, 1, 1.84864], [1008420, 2, 1, 1, 5, 2.3793], [1012500, 2, 4, 5, 0, 2.4296], [1016064, 8, 4, 0, 2, 1.69392], [1020600, 3, 6, 2, 1, 2.05757], [1024000, 13, 0, 3, 0, 1.808], [1029000, 3, 1, 3, 3, 2.34493], [1032192, 14, 2, 0, 1, 1.53091], [1036800, 9, 4, 2, 0, 1.93565], [1037232, 4, 3, 0, 4, 1.95174], [1048576, 20, 0, 0, 0, 1.44083], [1049760, 5, 8, 1, 0, 1.79898], [1050000, 4, 1, 5, 1, 2.37315], [1053696, 10, 1, 0, 3, 1.92704], [1058400, 5, 3, 2, 2, 1.97165], [1058841, 0, 2, 0, 6, 17.9579], [1062882, 1, 12, 0, 0, 17.8637], [1063125, 0, 5, 4, 1, 17.4523], [1071630, 1, 7, 1, 2, 17.4763], [1071875, 0, 0, 5, 3, 17.397], [1075200, 11, 1, 2, 1, 1.92186], [1075648, 6, 0, 0, 5, 1.90138], [1080000, 6, 3, 4, 0, 2.01555], [1080450, 1, 2, 2, 4, 18.8558], [1088640, 7, 5, 1, 1, 1.86701], [1093500, 2, 7, 3, 0, 2.46234], [1093750, 1, 0, 7, 1, 14.7131], [1097600, 7, 0, 2, 3, 2.01011], [1102248, 3, 9, 0, 1, 2.13232], [1102500, 2, 2, 4, 2, 2.58851], [1105920, 13, 3, 1, 0, 1.64525], [1111320, 3, 4, 1, 3, 2.28883], [1119744, 9, 7, 0, 0, 1.91642], [1120000, 8, 0, 4, 1, 2.13389], [1125000, 3, 2, 6, 0, 2.57117], [1128960, 9, 2, 1, 2, 2.05549], [1134000, 4, 4, 3, 1, 2.30016], [1143072, 5, 6, 0, 2, 1.94893], [1146880, 15, 0, 1, 1, 1.76134], [1148175, 0, 8, 2, 1, 17.5683], [1152000, 10, 2, 3, 0, 2.13117], [1152480, 5, 1, 1, 4, 2.24186], [1157625, 0, 3, 3, 3, 17.5345], [1161216, 11, 4, 0, 1, 1.80506], [1166400, 6, 6, 2, 0, 2.00582], [1166886, 1, 5, 0, 4, 14.8966], [1171875, 0, 1, 8, 0, 14.9472], [1176000, 6, 1, 3, 2, 2.33734], [1176490, 1, 0, 1, 6, 14.9641], [1179648, 17, 2, 0, 0, 1.75155], [1180980, 2, 10, 1, 0, 2.60058], [1181250, 1, 3, 5, 1, 21.7182], [1185408, 7, 3, 0, 3, 1.98778], [1190700, 2, 5, 2, 2, 2.73635], [1200000, 7, 1, 5, 0, 2.45494], [1200500, 2, 0, 3, 4, 2.86016], [1204224, 13, 1, 0, 2, 1.96896], [1209600, 8, 3, 2, 1, 2.10614], [1210104, 3, 2, 0, 5, 2.48819], [1215000, 3, 5, 4, 0, 2.60922], [1224720, 4, 7, 1, 1, 2.252], [1225000, 3, 0, 5, 2, 2.76784], [1228800, 14, 1, 2, 0, 2.09846], [1229312, 9, 0, 0, 4, 2.29146], [1234800, 4, 2, 2, 3, 2.48128], [1240029, 0, 11, 0, 1, 18.306], [1244160, 10, 5, 1, 0, 2.16397], [1250000, 4, 0, 7, 0, 2.8351], [1250235, 0, 6, 1, 3, 18.5196], [1254400, 10, 0, 2, 2, 2.32208], [1259712, 6, 9, 0, 0, 2.11123], [1260000, 5, 2, 4, 1, 2.4967], [1260525, 0, 1, 2, 5, 20.0001], [1265625, 0, 4, 6, 0, 19.9518], [1270080, 6, 4, 1, 2, 2.19968], [1275750, 1, 6, 3, 1, 20.0309], [1280000, 11, 0, 4, 0, 2.2983], [1285956, 2, 8, 0, 2, 2.73776], [1286250, 1, 1, 4, 3, 20.8961], [1290240, 12, 2, 1, 1, 2.00166], [1296000, 7, 4, 3, 0, 2.3568], [1296540, 2, 3, 1, 4, 2.84944], [1306368, 8, 6, 0, 1, 2.07654], [1310720, 18, 0, 1, 0, 1.88534], [1312200, 3, 8, 2, 0, 2.68566], [1312500, 2, 1, 6, 1, 3.42173], [1317120, 8, 1, 1, 3, 2.4215], [1323000, 3, 3, 3, 2, 2.82237], [1327104, 14, 4, 0, 0, 1.9689], [1333584, 4, 5, 0, 3, 2.56643], [1344000, 9, 1, 3, 1, 2.78582], [1344560, 4, 0, 1, 5, 2.66963], [1350000, 4, 3, 5, 0, 2.85459], [1354752, 10, 3, 0, 2, 2.3017], [1360800, 5, 5, 2, 1, 2.60134], [1361367, 0, 4, 0, 5, 20.0801], [1366875, 0, 7, 4, 0, 19.9984], [1372000, 5, 0, 3, 3, 2.73834], [1376256, 16, 1, 0, 1, 2.23706], [1377810, 1, 9, 1, 1, 20.1472], [1378125, 0, 2, 5, 2, 19.945], [1382400, 11, 3, 2, 0, 2.27264], [1382976, 6, 2, 0, 4, 2.39459], [1389150, 1, 4, 2, 3, 20.9555], [1399680, 7, 7, 1, 0, 2.27117], [1400000, 6, 0, 5, 1, 2.81715], [1404928, 12, 0, 0, 3, 2.23648], [1406250, 1, 2, 7, 0, 28.7106], [1411200, 7, 2, 2, 2, 2.52262], [1411788, 2, 1, 0, 6, 3.3071], [1417176, 3, 11, 0, 0, 2.68506], [1417500, 2, 4, 4, 1, 3.34189], [1428840, 3, 6, 1, 2, 2.80211], [1433600, 13, 0, 2, 1, 2.36064], [1440000, 8, 2, 4, 0, 2.69379], [1440600, 3, 1, 2, 4, 3.2543], [1451520, 9, 4, 1, 1, 2.62931], [1458000, 4, 6, 3, 0, 2.85398], [1469664, 5, 8, 0, 1, 2.53277], [1470000, 4, 1, 4, 2, 3.26074], [1474560, 15, 2, 1, 0, 2.2136], [1476225, 0, 10, 2, 0, 19.8736], [1481760, 5, 3, 1, 3, 2.6849], [1488375, 0, 5, 3, 2, 19.6011], [1492992, 11, 6, 0, 0, 2.21661], [1500000, 5, 1, 6, 0, 3.33597], [1500282, 1, 7, 0, 3, 29.4024], [1500625, 0, 0, 4, 4, 29.3941], [1505280, 11, 1, 1, 2, 2.59037], [1512000, 6, 3, 3, 1, 2.80685], [1512630, 1, 2, 1, 5, 29.419], [1518750, 1, 5, 5, 0, 29.4513], [1524096, 7, 5, 0, 2, 2.61699], [1530900, 2, 7, 2, 1, 3.37958], [1531250, 1, 0, 6, 2, 25.2457], [1536000, 12, 1, 3, 0, 2.83485], [1536640, 7, 0, 1, 4, 2.71597], [1543500, 2, 2, 3, 3, 3.65459], [1548288, 13, 3, 0, 1, 2.31795], [1555200, 8, 5, 2, 0, 2.79312], [1555848, 3, 4, 0, 4, 3.18864], [1562500, 2, 0, 8, 0, 4.12227], [1568000, 8, 0, 3, 2, 2.95056], [1572864, 19, 1, 0, 0, 2.37158], [1574640, 4, 9, 1, 0, 2.95242], [1575000, 3, 2, 5, 1, 3.57206], [1580544, 9, 2, 0, 3, 2.88336], [1587600, 4, 4, 2, 2, 3.16118], [1594323, 0, 13, 0, 0, 26.7675], [1600000, 9, 0, 5, 0, 3.38272], [1605632, 15, 0, 0, 2, 2.50787], [1607445, 0, 8, 1, 2, 27.1935], [1612800, 10, 2, 2, 1, 2.93898], [1613472, 5, 1, 0, 5, 3.12874], [1620000, 5, 4, 4, 0, 3.19117], [1620675, 0, 3, 2, 4, 23.7544], [1632960, 6, 6, 1, 1, 2.70624], [1638400, 16, 0, 2, 0, 2.70205], [1640250, 1, 8, 3, 0, 30.567], [1640625, 0, 1, 7, 1, 23.0461], [1646400, 6, 1, 2, 3, 3.20534], [1647086, 1, 0, 0, 7, 23.0674], [1653372, 2, 10, 0, 1, 3.66], [1653750, 1, 3, 4, 2, 22.9927], [1658880, 12, 4, 1, 0, 2.56912], [1666980, 2, 5, 1, 3, 3.79686], [1679616, 8, 8, 0, 0, 2.7113], [1680000, 7, 1, 4, 1, 3.37507], [1680700, 2, 0, 2, 5, 3.94518], [1687500, 2, 3, 6, 0, 4.18515], [1693440, 8, 3, 1, 2, 2.86342], [1701000, 3, 5, 3, 1, 3.6473], [1714608, 4, 7, 0, 2, 3.1361], [1715000, 3, 0, 4, 3, 3.91907], [1720320, 14, 1, 1, 1, 2.8409], [1728000, 9, 3, 3, 0, 3.3815], [1728720, 4, 2, 1, 4, 3.34893], [1741824, 10, 5, 0, 1, 3.04742], [1749600, 5, 7, 2, 0, 3.18016], [1750000, 4, 0, 6, 1, 3.94266], [1750329, 0, 6, 0, 4, 23.5039], [1756160, 10, 0, 1, 3, 3.17155], [1764000, 5, 2, 3, 2, 3.48112], [1764735, 0, 1, 1, 6, 23.4996], [1769472, 16, 3, 0, 0, 2.64438], [1771470, 1, 11, 1, 0, 31.8044], [1771875, 0, 4, 5, 1, 30.5132], [1778112, 6, 4, 0, 3, 3.0585], [1786050, 1, 6, 2, 2, 30.5902], [1792000, 11, 0, 3, 1, 3.23757], [1800000, 6, 2, 5, 0, 3.5639], [1800750, 1, 1, 3, 4, 32.941], [1806336, 12, 2, 0, 2, 2.80915], [1814400, 7, 4, 2, 1, 3.24131], [1815156, 2, 3, 0, 5, 3.99174], [1822500, 2, 6, 4, 0, 4.11866], [1835008, 18, 0, 0, 1, 2.66816], [1837080, 3, 8, 1, 1, 3.70333], [1837500, 2, 1, 5, 2, 4.672], [1843200, 13, 2, 2, 0, 2.98195], [1843968, 8, 1, 0, 4, 3.35744], [1852200, 3, 3, 2, 3, 3.9201], [1866240, 9, 6, 1, 0, 3.2855], [1875000, 3, 1, 7, 0, 4.62918], [1881600, 9, 1, 2, 2, 3.85133], [1882384, 4, 0, 0, 6, 3.72458], [1889568, 5, 10, 0, 0, 3.41597], [1890000, 4, 3, 4, 1, 3.94634], [1905120, 5, 5, 1, 2, 3.54589], [1913625, 0, 7, 3, 1, 32.5719], [1920000, 10, 1, 4, 0, 3.93373], [1920800, 5, 0, 2, 4, 3.77754], [1928934, 1, 9, 0, 2, 31.9446], [1929375, 0, 2, 4, 3, 31.9818], [1935360, 11, 3, 1, 1, 3.08781], [1944000, 6, 5, 3, 0, 3.70506], [1944810, 1, 4, 1, 4, 27.8608], [1953125, 0, 0, 9, 0, 28.0972], [1959552, 7, 7, 0, 1, 3.18278], [1960000, 6, 0, 4, 2, 3.89094], [1966080, 17, 1, 1, 0, 3.22067], [1968300, 2, 9, 2, 0, 4.46915], [1968750, 1, 2, 6, 1, 30.6533], [1975680, 7, 2, 1, 3, 3.41715], [1984500, 2, 4, 3, 2, 4.71264], [1990656, 13, 5, 0, 0, 3.37811], [2000000, 7, 0, 6, 0, 4.11558], [2000376, 3, 6, 0, 3, 3.93869], [2007040, 13, 0, 1, 2, 3.22224], [2016000, 8, 2, 3, 1, 3.73421], [2016840, 3, 1, 1, 5, 4.49018], [2025000, 3, 4, 5, 0, 4.5879], [2032128, 9, 4, 0, 2, 3.69718], [2041200, 4, 6, 2, 1, 3.92624], [2048000, 14, 0, 3, 0, 3.68074], [2058000, 4, 1, 3, 3, 4.54406], [2064384, 15, 2, 0, 1, 3.12374], [2066715, 0, 10, 1, 1, 31.1785], [2073600, 10, 4, 2, 0, 3.77091], [2074464, 5, 3, 0, 4, 3.74819], [2083725, 0, 5, 2, 3, 27.5124], [2097152, 21, 0, 0, 0, 2.94886], [2099520, 6, 8, 1, 0, 3.5336], [2100000, 5, 1, 5, 1, 4.61136], [2100875, 0, 0, 3, 5, 34.7995], [2107392, 11, 1, 0, 3, 3.66026], [2109375, 0, 3, 7, 0, 34.1734], [2116800, 6, 3, 2, 2, 3.85216], [2117682, 1, 2, 0, 6, 34.906], [2125764, 2, 12, 0, 0, 4.4487], [2126250, 1, 5, 4, 1, 36.9294], [2143260, 2, 7, 1, 2, 4.65424], [2143750, 1, 0, 5, 3, 37.1914], [2150400, 12, 1, 2, 1, 3.84186], [2151296, 7, 0, 0, 5, 3.80602], [2160000, 7, 3, 4, 0, 4.0561], [2160900, 2, 2, 2, 4, 4.984], [2177280, 8, 5, 1, 1, 3.80394], [2187000, 3, 7, 3, 0, 4.62064], [2187500, 2, 0, 7, 1, 5.67242], [2195200, 8, 0, 2, 3, 4.0513], [2204496, 4, 9, 0, 1, 4.15363], [2205000, 3, 2, 4, 2, 4.94499], [2211840, 14, 3, 1, 0, 3.3936], [2222640, 4, 4, 1, 3, 4.31651], [2239488, 10, 7, 0, 0, 3.71776], [2240000, 9, 0, 4, 1, 4.63824], [2250000, 4, 2, 6, 0, 5.04902], [2250423, 0, 8, 0, 3, 36.634], [2257920, 10, 2, 1, 2, 4.00182], [2268000, 5, 4, 3, 1, 4.45338], [2268945, 0, 3, 1, 5, 36.63], [2278125, 0, 6, 5, 0, 36.8301], [2286144, 6, 6, 0, 2, 3.80278], [2293760, 16, 0, 1, 1, 3.66614], [2296350, 1, 8, 2, 1, 36.6157], [2296875, 0, 1, 6, 2, 36.699], [2304000, 11, 2, 3, 0, 4.08992], [2304960, 6, 1, 1, 4, 4.37456], [2315250, 1, 3, 3, 3, 36.7247], [2322432, 12, 4, 0, 1, 3.61923], [2332800, 7, 6, 2, 0, 4.02301], [2333772, 2, 5, 0, 4, 5.31702], [2343750, 1, 1, 8, 0, 51.544], [2352000, 7, 1, 3, 2, 4.70573], [2352980, 2, 0, 1, 6, 5.42806], [2359296, 18, 2, 0, 0, 3.35306], [2361960, 3, 10, 1, 0, 4.71219], [2362500, 2, 3, 5, 1, 5.77674], [2370816, 8, 3, 0, 3, 4.00637], [2381400, 3, 5, 2, 2, 5.04739], [2400000, 8, 1, 5, 0, 4.98726], [2401000, 3, 0, 3, 4, 5.35315], [2408448, 14, 1, 0, 2, 4.03475], [2419200, 9, 3, 2, 1, 4.66438], [2420208, 4, 2, 0, 5, 4.71091], [2430000, 4, 5, 4, 0, 5.18294], [2449440, 5, 7, 1, 1, 4.32467], [2450000, 4, 0, 5, 2, 5.46198], [2457600, 15, 1, 2, 0, 4.30125], [2458624, 10, 0, 0, 4, 4.45488], [2460375, 0, 9, 3, 0, 38.8524], [2469600, 5, 2, 2, 3, 4.77098], [2470629, 0, 1, 0, 7, 38.6804], [2480058, 1, 11, 0, 1, 38.5702], [2480625, 0, 4, 4, 2, 38.6311], [2488320, 11, 5, 1, 0, 4.17334], [2500000, 5, 0, 7, 0, 5.56074], [2500470, 1, 6, 1, 3, 39.2336], [2508800, 11, 0, 2, 2, 4.42342], [2519424, 7, 9, 0, 0, 4.2377], [2520000, 6, 2, 4, 1, 4.90704], [2521050, 1, 1, 2, 5, 51.7252], [2531250, 1, 4, 6, 0, 51.5391], [2540160, 7, 4, 1, 2, 4.3903], [2551500, 2, 6, 3, 1, 5.8536], [2560000, 12, 0, 4, 0, 4.65766], [2571912, 3, 8, 0, 2, 5.1873], [2572500, 2, 1, 4, 3, 6.52877], [2580480, 13, 2, 1, 1, 4.05229], [2592000, 8, 4, 3, 0, 4.79728], [2593080, 3, 3, 1, 4, 5.38714], [2612736, 9, 6, 0, 1, 4.62342], [2621440, 19, 0, 1, 0, 3.92038], [2624400, 4, 8, 2, 0, 5.12547], [2625000, 3, 1, 6, 1, 6.46579], [2634240, 9, 1, 1, 3, 5.25795], [2646000, 4, 3, 3, 2, 5.51062], [2654208, 15, 4, 0, 0, 4.15238], [2657205, 0, 12, 1, 0, 46.8468], [2667168, 5, 5, 0, 3, 4.97373], [2679075, 0, 7, 2, 2, 47.1687], [2688000, 10, 1, 3, 1, 5.47974], [2689120, 5, 0, 1, 5, 5.15082], [2700000, 5, 3, 5, 0, 5.59165], [2701125, 0, 2, 3, 4, 54.7336], [2709504, 11, 3, 0, 2, 4.36349], [2721600, 6, 5, 2, 1, 5.10166], [2722734, 1, 4, 0, 5, 54.0552], [2733750, 1, 7, 4, 0, 54.9434], [2734375, 0, 0, 8, 1, 41.401], [2744000, 6, 0, 3, 3, 5.38938], [2752512, 17, 1, 0, 1, 4.56339], [2755620, 2, 9, 1, 1, 6.18733], [2756250, 1, 2, 5, 2, 41.3892], [2764800, 12, 3, 2, 0, 4.59955], [2765952, 7, 2, 0, 4, 4.81552], [2778300, 2, 4, 2, 3, 6.48822], [2799360, 8, 7, 1, 0, 4.62682], [2800000, 7, 0, 5, 1, 5.68227], [2809856, 13, 0, 0, 3, 4.53363], [2812500, 2, 2, 7, 0, 7.18838], [2822400, 8, 2, 2, 2, 5.15331], [2823576, 3, 1, 0, 6, 6.2985], [2834352, 4, 11, 0, 0, 5.09862], [2835000, 3, 4, 4, 1, 6.41555], [2857680, 4, 6, 1, 2, 5.37827], [2867200, 14, 0, 2, 1, 4.88003], [2880000, 9, 2, 4, 0, 5.90294], [2881200, 4, 1, 2, 4, 6.28019], [2893401, 0, 10, 0, 2, 47.826], [2903040, 10, 4, 1, 1, 5.15174], [2916000, 5, 6, 3, 0, 5.57834], [2917215, 0, 5, 1, 4, 41.0134], [2939328, 6, 8, 0, 1, 4.97171], [2940000, 5, 1, 4, 2, 6.37232], [2941225, 0, 0, 2, 6, 41.1074], [2949120, 16, 2, 1, 0, 4.6255], [2952450, 1, 10, 2, 0, 55.3772], [2953125, 0, 3, 6, 1, 41.5782], [2963520, 6, 3, 1, 3, 5.26688], [2976750, 1, 5, 3, 2, 41.7154], [2985984, 12, 6, 0, 0, 4.50259], [3000000, 6, 1, 6, 0, 6.60922], [3000564, 2, 7, 0, 3, 6.54883], [3001250, 1, 0, 4, 4, 59.3941], [3010560, 12, 1, 1, 2, 5.24214], [3024000, 7, 3, 3, 1, 5.65891], [3025260, 2, 2, 1, 5, 6.90947], [3037500, 2, 5, 5, 0, 7.7016], [3048192, 8, 5, 0, 2, 5.35254], [3061800, 3, 7, 2, 1, 6.45021], [3062500, 2, 0, 6, 2, 8.04832], [3072000, 13, 1, 3, 0, 5.93907], [3073280, 8, 0, 1, 4, 5.52666], [3087000, 3, 2, 3, 3, 6.94893], [3096576, 14, 3, 0, 1, 4.78403], [3110400, 9, 5, 2, 0, 6.1919], [3111696, 4, 4, 0, 4, 6.07142], [3125000, 3, 0, 8, 0, 7.71808], [3136000, 9, 0, 3, 2, 6.53635], [3145728, 20, 1, 0, 0, 4.86774], [3149280, 5, 9, 1, 0, 5.77789], [3150000, 4, 2, 5, 1, 6.97741], [3161088, 10, 2, 0, 3, 5.63126], [3175200, 5, 4, 2, 2, 6.15382], [3176523, 0, 3, 0, 6, 57.7839], [3188646, 1, 13, 0, 0, 57.2044], [3189375, 0, 6, 4, 1, 55.2246], [3200000, 10, 0, 5, 0, 6.63968], [3211264, 16, 0, 0, 2, 5.24816], [3214890, 1, 8, 1, 2, 55.7382], [3215625, 0, 1, 5, 3, 55.7756], [3225600, 11, 2, 2, 1, 5.60115], [3226944, 6, 1, 0, 5, 6.15408], [3240000, 6, 4, 4, 0, 6.3233], [3241350, 1, 3, 2, 4, 48.4227], [3265920, 7, 6, 1, 1, 5.46522], [3276800, 17, 0, 2, 0, 5.59056], [3280500, 2, 8, 3, 0, 7.72605], [3281250, 1, 1, 7, 1, 48.413], [3292800, 7, 1, 2, 3, 6.48477], [3294172, 2, 0, 0, 7, 7.7624], [3306744, 3, 10, 0, 1, 6.66381], [3307500, 2, 3, 4, 2, 7.91373], [3317760, 13, 4, 1, 0, 5.25779], [3333960, 3, 5, 1, 3, 6.97437], [3359232, 9, 8, 0, 0, 6.02362], [3360000, 8, 1, 4, 1, 6.8929], [3361400, 3, 0, 2, 5, 7.55683], [3375000, 3, 3, 6, 0, 7.9008], [3386880, 9, 3, 1, 2, 6.37555], [3402000, 4, 5, 3, 1, 7.25693], [3429216, 5, 7, 0, 2, 6.11526], [3430000, 4, 0, 4, 3, 7.564], [3440640, 15, 1, 1, 1, 5.84179], [3444525, 0, 9, 2, 1, 56.1866], [3456000, 10, 3, 3, 0, 6.64842], [3457440, 5, 2, 1, 4, 6.52429], [3472875, 0, 4, 3, 3, 56.5055], [3483648, 11, 5, 0, 1, 5.88378], [3499200, 6, 7, 2, 0, 6.28253], [3500000, 5, 0, 6, 1, 7.78045], [3500658, 1, 6, 0, 4, 49.4868], [3512320, 11, 0, 1, 3, 6.03434], [3515625, 0, 2, 8, 0, 48.9409], [3528000, 6, 2, 3, 2, 6.85773], [3529470, 1, 1, 1, 6, 48.0463], [3538944, 17, 3, 0, 0, 5.53616], [3542940, 2, 11, 1, 0, 7.59248], [3543750, 1, 4, 5, 1, 65.0576], [3556224, 7, 4, 0, 3, 6.1871], [3572100, 2, 6, 2, 2, 8.02368], [3584000, 12, 0, 3, 1, 6.6336], [3600000, 7, 2, 5, 0, 7.22086], [3601500, 2, 1, 3, 4, 9.09309], [3612672, 13, 2, 0, 2, 5.76787], [3628800, 8, 4, 2, 1, 6.60291], [3630312, 3, 3, 0, 5, 7.59078], [3645000, 3, 6, 4, 0, 7.93693], [3670016, 19, 0, 0, 1, 5.54451], [3674160, 4, 8, 1, 1, 7.01258], [3675000, 3, 1, 5, 2, 9.00522], [3686400, 14, 2, 2, 0, 6.19491], [3687936, 9, 1, 0, 4, 7.42714], [3704400, 4, 3, 2, 3, 7.59821], [3720087, 0, 12, 0, 1, 55.041], [3732480, 10, 6, 1, 0, 6.45123], [3750000, 4, 1, 7, 0, 9.14714], [3750705, 0, 7, 1, 3, 59.4849], [3763200, 10, 1, 2, 2, 7.59766], [3764768, 5, 0, 0, 6, 7.26538], [3779136, 6, 10, 0, 0, 6.76893], [3780000, 5, 3, 4, 1, 7.72259], [3781575, 0, 2, 2, 5, 66.5995], [3796875, 0, 5, 6, 0, 67.0756], [3810240, 6, 5, 1, 2, 7.00317], [3827250, 1, 7, 3, 1, 66.8571], [3828125, 0, 0, 7, 2, 66.9309], [3840000, 11, 1, 4, 0, 7.576], [3841600, 6, 0, 2, 4, 7.45485], [3857868, 2, 9, 0, 2, 8.7232], [3858750, 1, 2, 4, 3, 67.9624], [3870720, 12, 3, 1, 1, 6.26144], [3888000, 7, 5, 3, 0, 7.54157], [3889620, 2, 4, 1, 4, 8.96211], [3906250, 1, 0, 9, 0, 85.0971], [3919104, 8, 7, 0, 1, 6.51299], [3920000, 7, 0, 4, 2, 7.86989], [3932160, 18, 1, 1, 0, 6.34314], [3936600, 3, 9, 2, 0, 8.28461], [3937500, 2, 2, 6, 1, 10.2187], [3951360, 8, 2, 1, 3, 6.98502], [3969000, 3, 4, 3, 2, 8.93936], [3981312, 14, 5, 0, 0, 6.98899], [4000000, 8, 0, 6, 0, 8.45475], [4000752, 4, 6, 0, 3, 7.56662], [4014080, 14, 0, 1, 2, 6.68118], [4032000, 9, 2, 3, 1, 8.24259], [4033680, 4, 1, 1, 5, 8.58787], [4050000, 4, 4, 5, 0, 8.96867], [4064256, 10, 4, 0, 2, 7.27395], [4082400, 5, 6, 2, 1, 7.69286], [4084101, 0, 5, 0, 5, 75.6746], [4096000, 15, 0, 3, 0, 7.75635], [4100625, 0, 8, 4, 0, 63.9082], [4116000, 5, 1, 3, 3, 8.90269], [4117715, 0, 0, 1, 7, 64.7339], [4128768, 16, 2, 0, 1, 6.52176], [4133430, 1, 10, 1, 1, 64.11], [4134375, 0, 3, 5, 2, 64.6961], [4147200, 11, 4, 2, 0, 7.2393], [4148928, 6, 3, 0, 4, 7.41251], [4167450, 1, 5, 2, 3, 55.9819], [4194304, 22, 0, 0, 0, 6.10912], [4199040, 7, 8, 1, 0, 7.15866], [4200000, 6, 1, 5, 1, 9.13517], [4201750, 1, 0, 3, 5, 91.2884], [4214784, 12, 1, 0, 3, 7.40218], [4218750, 1, 3, 7, 0, 92.0848], [4233600, 7, 3, 2, 2, 7.82739], [4235364, 2, 2, 0, 6, 9.74269], [4251528, 3, 12, 0, 0, 8.50048], [4252500, 2, 5, 4, 1, 10.6329], [4286520, 3, 7, 1, 2, 8.87952], [4287500, 2, 0, 5, 3, 11.0884], [4300800, 13, 1, 2, 1, 7.83702], [4302592, 8, 0, 0, 5, 7.8007], [4320000, 8, 3, 4, 0, 8.3417], [4321800, 3, 2, 2, 4, 9.60605], [4354560, 9, 5, 1, 1, 8.44982], [4374000, 4, 7, 3, 0, 9.00486], [4375000, 3, 0, 7, 1, 10.7549], [4390400, 9, 0, 2, 3, 8.98054], [4408992, 5, 9, 0, 1, 8.11882], [4410000, 4, 2, 4, 2, 9.61309], [4423680, 15, 3, 1, 0, 7.02592], [4428675, 0, 11, 2, 0, 65.2099], [4445280, 5, 4, 1, 3, 8.40176], [4465125, 0, 6, 3, 2, 65.3683], [4478976, 11, 7, 0, 0, 7.12413], [4480000, 10, 0, 4, 1, 9.18794], [4500000, 5, 2, 6, 0, 9.9296], [4500846, 1, 8, 0, 3, 94.0126], [4501875, 0, 1, 4, 4, 94.0422], [4515840, 11, 2, 1, 2, 7.64691], [4536000, 6, 4, 3, 1, 8.83427], [4537890, 1, 3, 1, 5, 94.2704], [4556250, 1, 6, 5, 0, 94.2684], [4572288, 7, 6, 0, 2, 7.74202], [4587520, 17, 0, 1, 1, 7.52157], [4592700, 2, 8, 2, 1, 10.6414], [4593750, 1, 1, 6, 2, 75.4332], [4608000, 12, 2, 3, 0, 8.41946], [4609920, 7, 1, 1, 4, 8.8753], [4630500, 2, 3, 3, 3, 11.2507], [4644864, 13, 4, 0, 1, 7.43398], [4665600, 8, 6, 2, 0, 8.29526], [4667544, 3, 5, 0, 4, 9.84653], [4687500, 2, 1, 8, 0, 13.0776], [4704000, 8, 1, 3, 2, 9.63744], [4705960, 3, 0, 1, 6, 10.3922], [4718592, 19, 2, 0, 0, 7.02899], [4723920, 4, 10, 1, 0, 9.4497], [4725000, 3, 3, 5, 1, 11.0261], [4741632, 9, 3, 0, 3, 8.99142], [4762800, 4, 5, 2, 2, 10.0472], [4782969, 0, 14, 0, 0, 88.7096], [4800000, 9, 1, 5, 0, 10.9669], [4802000, 4, 0, 3, 4, 10.5835], [4816896, 15, 1, 0, 2, 8.39254], [4822335, 0, 9, 1, 2, 87.7842], [4838400, 10, 3, 2, 1, 9.19283], [4840416, 5, 2, 0, 5, 9.20566], [4860000, 5, 5, 4, 0, 10.2388], [4862025, 0, 4, 2, 4, 80.8195], [4898880, 6, 7, 1, 1, 8.56803], [4900000, 5, 0, 5, 2, 10.7764], [4915200, 16, 1, 2, 0, 8.99267], [4917248, 11, 0, 0, 4, 8.53274], [4920750, 1, 9, 3, 0, 96.5599], [4921875, 0, 2, 7, 1, 79.4851], [4939200, 6, 2, 2, 3, 9.47939], [4941258, 1, 1, 0, 7, 79.552], [4960116, 2, 11, 0, 1, 10.7414], [4961250, 1, 4, 4, 2, 79.3874], [4976640, 12, 5, 1, 0, 8.7592], [5000000, 6, 0, 7, 0, 11.0827], [5000940, 2, 6, 1, 3, 11.1243], [5017600, 12, 0, 2, 2, 9.00736], [5038848, 8, 9, 0, 0, 8.74576], [5040000, 7, 2, 4, 1, 9.96579], [5042100, 2, 1, 2, 5, 12.7311], [5062500, 2, 4, 6, 0, 13.2921], [5080320, 8, 4, 1, 2, 9.02886], [5103000, 3, 6, 3, 1, 11.1201], [5120000, 13, 0, 4, 0, 9.52874], [5143824, 4, 8, 0, 2, 9.92067], [5145000, 3, 1, 4, 3, 12.595], [5160960, 14, 2, 1, 1, 8.43107], [5184000, 9, 4, 3, 0, 10.6664], [5186160, 4, 3, 1, 4, 10.4074], [5225472, 10, 6, 0, 1, 9.10432], [5242880, 20, 0, 1, 0, 8.09248], [5248800, 5, 8, 2, 0, 10.0658], [5250000, 4, 1, 6, 1, 12.7929], [5250987, 0, 7, 0, 4, 80.9551], [5268480, 10, 1, 1, 3, 10.4024], [5292000, 5, 3, 3, 2, 10.8304], [5294205, 0, 2, 1, 6, 80.5838], [5308416, 16, 4, 0, 0, 8.71642], [5314410, 1, 12, 1, 0, 104.461], [5315625, 0, 5, 5, 1, 96.8512], [5334336, 6, 5, 0, 3, 9.85347], [5358150, 1, 7, 2, 2, 96.9546], [5359375, 0, 0, 6, 3, 96.8276], [5376000, 11, 1, 3, 1, 10.6597], [5378240, 6, 0, 1, 5, 10.1836], [5400000, 6, 3, 5, 0, 11.116], [5402250, 1, 2, 3, 4, 105.645], [5419008, 12, 3, 0, 2, 8.8904], [5443200, 7, 5, 2, 1, 10.4077], [5445468, 2, 4, 0, 5, 12.6656], [5467500, 2, 7, 4, 0, 13.1156], [5468750, 1, 0, 8, 1, 85.6723], [5488000, 7, 0, 3, 3, 10.9865], [5505024, 18, 1, 0, 1, 8.98349], [5511240, 3, 9, 1, 1, 11.4315], [5512500, 2, 2, 5, 2, 14.0669], [5529600, 13, 3, 2, 0, 9.43578], [5531904, 8, 2, 0, 4, 9.8969], [5556600, 3, 4, 2, 3, 12.4714], [5598720, 9, 7, 1, 0, 10.3993], [5600000, 8, 0, 5, 1, 11.6607], [5619712, 14, 0, 0, 3, 9.45293], [5625000, 3, 2, 7, 0, 13.9164], [5644800, 9, 2, 2, 2, 11.4303], [5647152, 4, 1, 0, 6, 12.1499], [5668704, 5, 11, 0, 0, 9.99178], [5670000, 4, 4, 4, 1, 12.4207], [5715360, 5, 6, 1, 2, 10.5381], [5734400, 15, 0, 2, 1, 10.0942], [5760000, 10, 2, 4, 0, 11.6967], [5762400, 5, 1, 2, 4, 12.3349], [5806080, 11, 4, 1, 1, 9.87968], [5832000, 6, 6, 3, 0, 11.1023], [5878656, 7, 8, 0, 1, 10.1249], [5880000, 6, 1, 4, 2, 12.6544], [5898240, 17, 2, 1, 0, 9.57242], [5904900, 2, 10, 2, 0, 14.3278], [5927040, 7, 3, 1, 3, 10.6915], [5953500, 2, 5, 3, 2, 15.0974], [5971968, 13, 6, 0, 0, 9.26621], [6000000, 7, 1, 6, 0, 13.438], [6001128, 3, 7, 0, 3, 12.5548], [6002500, 2, 0, 4, 4, 15.1404], [6021120, 13, 1, 1, 2, 10.7564], [6048000, 8, 3, 3, 1, 11.6743], [6050520, 3, 2, 1, 5, 13.2767], [6075000, 3, 5, 5, 0, 14.2705], [6096384, 9, 5, 0, 2, 11.9843], [6123600, 4, 7, 2, 1, 12.4362], [6125000, 3, 0, 6, 2, 15.0907], [6144000, 14, 1, 3, 0, 12.2479], [6146560, 9, 0, 1, 4, 12.3142], [6174000, 4, 2, 3, 3, 13.5437], [6193152, 15, 3, 0, 1, 9.95158], [6220800, 10, 5, 2, 0, 12.2224], [6223392, 5, 4, 0, 4, 11.9257], [6250000, 4, 0, 8, 0, 15.4708], [6272000, 10, 0, 3, 2, 12.8882], [6291456, 21, 1, 0, 0, 10.0459], [6298560, 6, 9, 1, 0, 11.493], [6300000, 5, 2, 5, 1, 13.7503], [6322176, 11, 2, 0, 3, 10.8263], [6350400, 6, 4, 2, 2, 12.2541], [6377292, 2, 13, 0, 0, 14.366], [6400000, 11, 0, 5, 0, 12.9565], [6422528, 17, 0, 0, 2, 11.0986], [6429780, 2, 8, 1, 2, 14.733], [6451200, 12, 2, 2, 1, 11.4163], [6453888, 7, 1, 0, 5, 12.5182], [6480000, 7, 4, 4, 0, 12.8957], [6482700, 2, 3, 2, 4, 15.4869], [6531840, 8, 6, 1, 1, 11.2866], [6553600, 18, 0, 2, 0, 11.0476], [6561000, 3, 8, 3, 0, 14.6781], [6562500, 2, 1, 7, 1, 18.0726], [6585600, 8, 1, 2, 3, 13.3102], [6588344, 3, 0, 0, 7, 14.8257], [6613488, 4, 10, 0, 1, 13.3337], [6615000, 3, 3, 4, 2, 15.3446], [6635520, 14, 4, 1, 0, 10.9775], [6667920, 4, 5, 1, 3, 13.7768], [6718464, 10, 8, 0, 0, 11.9523], [6720000, 9, 1, 4, 1, 15.1817], [6722800, 4, 0, 2, 5, 14.6541], [6750000, 4, 3, 6, 0, 15.6917], [6773760, 10, 3, 1, 2, 12.6041], [6804000, 5, 5, 3, 1, 14.3403], [6858432, 6, 7, 0, 2, 12.1653], [6860000, 5, 0, 4, 3, 14.8884], [6881280, 16, 1, 1, 1, 12.2523], [6912000, 11, 3, 3, 0, 12.9419], [6914880, 6, 2, 1, 4, 12.9612], [6967296, 12, 5, 0, 1, 12.3936], [6998400, 7, 7, 2, 0, 12.8376], [7000000, 6, 0, 6, 1, 15.5407], [7001316, 2, 6, 0, 4, 15.6787], [7024640, 12, 0, 1, 3, 12.3004], [7056000, 7, 2, 3, 2, 14.0051], [7058940, 2, 1, 1, 6, 17.6191], [7077888, 18, 3, 0, 0, 10.9228], [7085880, 3, 11, 1, 0, 14.5767], [7087500, 2, 4, 5, 1, 18.3506], [7112448, 8, 4, 0, 3, 12.7557], [7144200, 3, 6, 2, 2, 15.4837], [7168000, 13, 0, 3, 1, 13.9678], [7200000, 8, 2, 5, 0, 14.8644], [7203000, 3, 1, 3, 4, 17.577], [7225344, 14, 2, 0, 2, 12.0301], [7257600, 9, 4, 2, 1, 14.7243], [7260624, 4, 3, 0, 5, 14.7058], [7290000, 4, 6, 4, 0, 15.5945], [7340032, 20, 0, 0, 1, 11.4738], [7348320, 5, 8, 1, 1, 13.7446], [7350000, 4, 1, 5, 2, 17.7968], [7372800, 15, 2, 2, 0, 12.8451], [7375872, 10, 1, 0, 4, 14.722], [7408800, 5, 3, 2, 3, 14.9382], [7464960, 11, 6, 1, 0, 12.3786], [7500000, 5, 1, 7, 0, 18.1124], [7526400, 11, 1, 2, 2, 14.6943], [7529536, 6, 0, 0, 6, 14.4428], [7558272, 7, 10, 0, 0, 13.8043], [7560000, 6, 3, 4, 1, 15.4271], [7620480, 7, 5, 1, 2, 14.2674], [7654500, 2, 7, 3, 1, 18.7126], [7680000, 12, 1, 4, 0, 15.4501], [7683200, 7, 0, 2, 4, 15.2165], [7715736, 3, 9, 0, 2, 16.1571], [7717500, 2, 2, 4, 3, 19.4282], [7741440, 13, 3, 1, 1, 12.8453], [7776000, 8, 5, 3, 0, 15.5519], [7779240, 3, 4, 1, 4, 17.2083], [7812500, 2, 0, 9, 0, 22.6084], [7838208, 9, 7, 0, 1, 14.674], [7840000, 8, 0, 4, 2, 16.192], [7864320, 19, 1, 1, 0, 13.2884], [7873200, 4, 9, 2, 0, 16.5062], [7875000, 3, 2, 6, 1, 19.5396], [7902720, 9, 2, 1, 3, 15.6293], [7938000, 4, 4, 3, 2, 17.4345], [7962624, 15, 5, 0, 0, 14.8383], [8000000, 9, 0, 6, 0, 18.6743], [8001504, 5, 6, 0, 3, 14.8871], [8028160, 15, 0, 1, 2, 13.9324], [8064000, 10, 2, 3, 1, 16.3654], [8067360, 5, 1, 1, 5, 16.8577], [8100000, 5, 4, 5, 0, 17.7572], [8128512, 11, 4, 0, 2, 14.0404], [8164800, 6, 6, 2, 1, 15.3597], [8192000, 16, 0, 3, 0, 16.2104], [8232000, 6, 1, 3, 3, 17.7507], [8257536, 17, 2, 0, 1, 13.5523], [8266860, 2, 10, 1, 1, 19.9018], [8294400, 12, 4, 2, 0, 14.7823], [8297856, 7, 3, 0, 4, 15.1608], [8334900, 2, 5, 2, 3, 20.8521], [8388608, 23, 0, 0, 0, 12.6145], [8398080, 8, 8, 1, 0, 14.8305], [8400000, 7, 1, 5, 1, 18.5965], [8403500, 2, 0, 3, 5, 21.701], [8429568, 13, 1, 0, 3, 15.2328], [8437500, 2, 3, 7, 0, 22.3829], [8467200, 8, 3, 2, 2, 16.1657], [8470728, 3, 2, 0, 6, 18.801], [8503056, 4, 12, 0, 0, 16.2926], [8505000, 3, 5, 4, 1, 19.9011], [8573040, 4, 7, 1, 2, 17.1053], [8575000, 3, 0, 5, 3, 21.0114], [8601600, 14, 1, 2, 1, 16.3188], [8605184, 9, 0, 0, 5, 17.4342], [8640000, 9, 3, 4, 0, 18.5852], [8643600, 4, 2, 2, 4, 18.6768], [8709120, 10, 5, 1, 1, 16.7034], [8748000, 5, 7, 3, 0, 17.7935], [8750000, 4, 0, 7, 1, 21.4372], [8780800, 10, 0, 2, 3, 17.839], [8817984, 6, 9, 0, 1, 16.2091], [8820000, 5, 2, 4, 2, 18.9938], [8847360, 16, 3, 1, 0, 14.7758], [8890560, 6, 4, 1, 3, 16.746], [8957952, 12, 7, 0, 0, 14.572], [8960000, 11, 0, 4, 1, 17.8058], [9000000, 6, 2, 6, 0, 19.7813], [9001692, 2, 8, 0, 3, 20.8148], [9031680, 12, 2, 1, 2, 15.6517], [9072000, 7, 4, 3, 1, 18.0638], [9075780, 2, 3, 1, 5, 21.5274], [9112500, 2, 6, 5, 0, 22.8231], [9144576, 8, 6, 0, 2, 16.0458], [9175040, 18, 0, 1, 1, 14.9285], [9185400, 3, 8, 2, 1, 20.5059], [9187500, 2, 1, 6, 2, 25.6757], [9216000, 13, 2, 3, 0, 17.7713], [9219840, 8, 1, 1, 4, 18.2981], [9261000, 3, 3, 3, 3, 21.5448], [9289728, 14, 4, 0, 1, 15.5507], [9331200, 9, 6, 2, 0, 18.6114], [9335088, 4, 5, 0, 4, 19.5447], [9375000, 3, 1, 8, 0, 25.1701], [9408000, 9, 1, 3, 2, 21.3459], [9411920, 4, 0, 1, 6, 20.2183], [9437184, 20, 2, 0, 0, 14.5817], [9447840, 5, 10, 1, 0, 18.7269], [9450000, 4, 3, 5, 1, 21.7414], [9483264, 10, 3, 0, 3, 17.8242], [9525600, 5, 5, 2, 2, 19.878], [9600000, 10, 1, 5, 0, 21.8173], [9604000, 5, 0, 3, 4, 20.9279], [9633792, 16, 1, 0, 2, 17.5906], [9676800, 11, 3, 2, 1, 17.7481], [9680832, 6, 2, 0, 5, 18.3344], [9720000, 6, 5, 4, 0, 20.4289], [9797760, 7, 7, 1, 1, 17.5291], [9800000, 6, 0, 5, 2, 21.4852], [9830400, 17, 1, 2, 0, 18.722], [9834496, 12, 0, 0, 4, 17.4603], [9841500, 2, 9, 3, 0, 24.8556], [9878400, 7, 2, 2, 3, 19.296], [9882516, 2, 1, 0, 7, 25.039], [9920232, 3, 11, 0, 1, 20.6717], [9922500, 2, 4, 4, 2, 25.283], [9953280, 13, 5, 1, 0, 18.8077], [10000000, 7, 0, 7, 0, 22.5719], [10001880, 3, 6, 1, 3, 21.3905], [10035200, 13, 0, 2, 2, 18.5617], [10077696, 9, 9, 0, 0, 19.7234], [10080000, 8, 2, 4, 1, 20.531], [10084200, 3, 1, 2, 5, 24.6182], [10125000, 3, 4, 6, 0, 25.2058], [10160640, 9, 4, 1, 2, 20.2512], [10206000, 4, 6, 3, 1, 21.842], [10240000, 14, 0, 4, 0, 19.8667], [10287648, 5, 8, 0, 2, 19.5326], [10290000, 4, 1, 4, 3, 24.6593], [10321920, 15, 2, 1, 1, 17.4777], [10368000, 10, 4, 3, 0, 21.1834], [10372320, 5, 3, 1, 4, 20.5316], [10450944, 11, 6, 0, 1, 17.5407], [10485760, 21, 0, 1, 0, 16.7063], [10497600, 6, 8, 2, 0, 20.1257], [10500000, 5, 1, 6, 1, 25.3834], [10536960, 11, 1, 1, 3, 20.0919], [10584000, 6, 3, 3, 2, 21.594], [10616832, 17, 4, 0, 0, 18.8855], [10628820, 2, 12, 1, 0, 24.2535], [10668672, 7, 5, 0, 3, 20.1652], [10716300, 2, 7, 2, 2, 25.7277], [10752000, 12, 1, 3, 1, 22.0331], [10756480, 7, 0, 1, 5, 20.8007], [10800000, 7, 3, 5, 0, 22.6949], [10804500, 2, 2, 3, 4, 27.572], [10838016, 13, 3, 0, 2, 18.37], [10886400, 8, 5, 2, 1, 21.5044], [10890936, 3, 4, 0, 5, 24.3898], [10935000, 3, 7, 4, 0, 25.461], [10937500, 2, 0, 8, 1, 31.2724], [10976000, 8, 0, 3, 3, 22.6652], [11010048, 19, 1, 0, 1, 18.8178], [11022480, 4, 9, 1, 1, 22.6655], [11025000, 3, 2, 5, 2, 27.2728], [11059200, 14, 3, 2, 0, 19.7541], [11063808, 9, 2, 0, 4, 22.2071], [11113200, 4, 4, 2, 3, 24.1149], [11197440, 10, 7, 1, 0, 20.6786], [11200000, 9, 0, 5, 1, 25.8887], [11239424, 15, 0, 0, 3, 19.7343], [11250000, 4, 2, 7, 0, 27.5196], [11289600, 10, 2, 2, 2, 22.7448], [11294304, 5, 1, 0, 6, 23.9318], [11337408, 6, 11, 0, 0, 19.9831], [11340000, 5, 4, 4, 1, 24.5298], [11430720, 6, 6, 1, 2, 21.062], [11468800, 16, 0, 2, 1, 21.1206], [11520000, 11, 2, 4, 0, 22.6996], [11524800, 6, 1, 2, 4, 24.6208], [11573604, 2, 10, 0, 2, 28.1392], [11612160, 12, 4, 1, 1, 20.1888], [11664000, 7, 6, 3, 0, 22.7963], [11668860, 2, 5, 1, 4, 28.9624], [11757312, 8, 8, 0, 1, 20.9751], [11760000, 7, 1, 4, 2, 25.8611], [11764900, 2, 0, 2, 6, 29.7876], [11796480, 18, 2, 1, 0, 18.967], [11809800, 3, 10, 2, 0, 26.4664], [11812500, 2, 3, 6, 1, 31.8721], [11854080, 8, 3, 1, 3, 22.102], [11907000, 3, 5, 3, 2, 27.9575], [11943936, 14, 6, 0, 0, 19.4736], [12000000, 8, 1, 6, 0, 27.6478], [12002256, 4, 7, 0, 3, 24.1821], [12005000, 3, 0, 4, 4, 29.6726], [12042240, 14, 1, 1, 2, 22.4604], [12096000, 9, 3, 3, 1, 26.0749], [12101040, 4, 2, 1, 5, 25.625], [12150000, 4, 5, 5, 0, 28.7484], [12192768, 10, 5, 0, 2, 23.7524], [12247200, 5, 7, 2, 1, 24.6034], [12250000, 4, 0, 6, 2, 30.1588], [12288000, 15, 1, 3, 0, 25.7934], [12293120, 10, 0, 1, 4, 24.5572], [12348000, 5, 2, 3, 3, 26.705], [12386304, 16, 3, 0, 1, 20.9519], [12441600, 11, 5, 2, 0, 23.9959], [12446784, 6, 4, 0, 4, 23.8159], [12500000, 5, 0, 8, 0, 30.7764], [12544000, 11, 0, 3, 2, 25.2124], [12582912, 22, 1, 0, 0, 20.8677], [12597120, 7, 9, 1, 0, 23.4697], [12600000, 6, 2, 5, 1, 27.4215], [12644352, 12, 2, 0, 3, 22.1601], [12700800, 7, 4, 2, 2, 25.0288], [12706092, 2, 3, 0, 6, 30.434], [12754584, 3, 13, 0, 0, 26.6919], [12757500, 2, 6, 4, 1, 31.4863], [12800000, 12, 0, 5, 0, 26.7908], [12845056, 18, 0, 0, 2, 22.035], [12859560, 3, 8, 1, 2, 28.3771], [12862500, 2, 1, 5, 3, 35.4348], [12902400, 13, 2, 2, 1, 23.447], [12907776, 8, 1, 0, 5, 25.8412], [12960000, 8, 4, 4, 0, 26.6184], [12965400, 3, 3, 2, 4, 30.0509], [13063680, 9, 6, 1, 1, 25.4881], [13107200, 19, 0, 2, 0, 23.1662], [13122000, 4, 8, 3, 0, 28.6494], [13125000, 3, 1, 7, 1, 35.1931], [13171200, 9, 1, 2, 3, 29.5114], [13176688, 4, 0, 0, 7, 28.518], [13226976, 5, 10, 0, 1, 26.4543], [13230000, 4, 3, 4, 2, 30.2202], [13271040, 15, 4, 1, 0, 23.2876], [13335840, 5, 5, 1, 3, 27.2679], [13436928, 11, 8, 0, 0, 23.0972], [13440000, 10, 1, 4, 1, 30.2455], [13445600, 5, 0, 2, 5, 28.9691], [13500000, 5, 3, 6, 0, 31.1197], [13547520, 11, 3, 1, 2, 24.3784], [13608000, 6, 5, 3, 1, 28.6106], [13716864, 7, 7, 0, 2, 24.9194], [13720000, 6, 0, 4, 3, 29.7525], [13762560, 17, 1, 1, 1, 25.3633], [13778100, 2, 9, 2, 1, 34.3315], [13824000, 12, 3, 3, 0, 26.8375], [13829760, 7, 2, 1, 4, 26.5249], [13891500, 2, 4, 3, 3, 36.0205], [13934592, 13, 5, 0, 1, 26.5995], [13996800, 8, 7, 2, 0, 26.5629], [14000000, 7, 0, 6, 1, 31.6666], [14002632, 3, 6, 0, 4, 30.3778], [14049280, 13, 0, 1, 3, 25.3156], [14062500, 2, 2, 8, 0, 39.6696], [14112000, 8, 2, 3, 2, 28.8916], [14117880, 3, 1, 1, 6, 34.1268], [14155776, 19, 3, 0, 0, 22.9764], [14171760, 4, 11, 1, 0, 28.1382], [14175000, 3, 4, 5, 1, 35.2194], [14224896, 9, 4, 0, 3, 28.6051], [14288400, 4, 6, 2, 2, 30.3826], [14336000, 14, 0, 3, 1, 28.8434], [14400000, 9, 2, 5, 0, 32.871], [14406000, 4, 1, 3, 4, 34.7057], [14450688, 15, 2, 0, 2, 25.1764], [14515200, 10, 4, 2, 1, 29.3387], [14521248, 5, 3, 0, 5, 28.9961], [14580000, 5, 6, 4, 0, 30.9132], [14680064, 21, 0, 0, 1, 23.6749], [14696640, 6, 8, 1, 1, 27.5068], [14700000, 5, 1, 5, 2, 35.2856], [14745600, 16, 2, 2, 0, 26.9007], [14751744, 11, 1, 0, 4, 28.5916], [14817600, 6, 3, 2, 3, 29.8849], [14880348, 2, 12, 0, 1, 34.3715], [14929920, 12, 6, 1, 0, 25.3761], [15000000, 6, 1, 7, 0, 36.2484], [15002820, 2, 7, 1, 3, 35.7495], [15052800, 12, 1, 2, 2, 30.0644], [15059072, 7, 0, 0, 6, 29.5536], [15116544, 8, 10, 0, 0, 28.6213], [15120000, 7, 3, 4, 1, 31.4076], [15126300, 2, 2, 2, 5, 38.0546], [15187500, 2, 5, 6, 0, 42.6765], [15240960, 8, 5, 1, 2, 29.568], [15309000, 3, 7, 3, 1, 35.6646], [15312500, 2, 0, 7, 2, 43.0259], [15360000, 13, 1, 4, 0, 31.7201], [15366400, 8, 0, 2, 4, 31.4658], [15431472, 4, 9, 0, 2, 32.1409], [15435000, 3, 2, 4, 3, 37.8291], [15482880, 14, 3, 1, 1, 26.9436], [15552000, 9, 5, 3, 0, 34.6151], [15558480, 4, 4, 1, 4, 33.2774], [15625000, 3, 0, 9, 0, 42.3498], [15676416, 10, 7, 0, 1, 29.25], [15680000, 9, 0, 4, 2, 35.8506], [15728640, 20, 1, 1, 0, 27.4887], [15746400, 5, 9, 2, 0, 32.8143], [15750000, 4, 2, 6, 1, 38.6586], [15805440, 10, 2, 1, 3, 31.1356], [15876000, 5, 4, 3, 2, 34.5927], [15925248, 16, 5, 0, 0, 31.214], [16000000, 10, 0, 6, 0, 37.044], [16003008, 6, 6, 0, 3, 29.737], [16056320, 16, 0, 1, 2, 29.2774], [16128000, 11, 2, 3, 1, 31.9992], [16134720, 6, 1, 1, 5, 33.673], [16200000, 6, 4, 5, 0, 35.4291], [16257024, 12, 4, 0, 2, 28.7397], [16329600, 7, 6, 2, 1, 31.3767], [16336404, 2, 5, 0, 5, 40.9124], [16384000, 17, 0, 3, 0, 35.0228], [16402500, 2, 8, 4, 0, 41.7042], [16464000, 7, 1, 3, 3, 36.2036], [16470860, 2, 0, 1, 7, 41.5812], [16515072, 18, 2, 0, 1, 26.9012], [16533720, 3, 10, 1, 1, 36.5575], [16537500, 2, 3, 5, 2, 43.9798], [16588800, 13, 4, 2, 0, 30.5832], [16595712, 8, 3, 0, 4, 31.4204], [16669800, 3, 5, 2, 3, 39.0163],
32.091105
33
0.532916
[262144, 18, 0, 0, 0, 0.371648], [262440, 3, 8, 1, 0, 0.521312], [262500, 2, 1, 5, 1, 0.674624], [263424, 8, 1, 0, 3, 0.506144], [264600, 3, 3, 2, 2, 0.566176], [268800, 9, 1, 2, 1, 0.550848], [268912, 4, 0, 0, 5, 0.550144], [270000, 4, 3, 4, 0, 0.575488], [272160, 5, 5, 1, 1, 0.52688], [273375, 0, 7, 3, 0, 3.56157], [274400, 5, 0, 2, 3, 0.550208], [275562, 1, 9, 0, 1, 3.57453], [275625, 0, 2, 4, 2, 3.50982], [276480, 11, 3, 1, 0, 0.437408], [277830, 1, 4, 1, 3, 3.82234], [279936, 7, 7, 0, 0, 0.46736], [280000, 6, 0, 4, 1, 0.569792], [281250, 1, 2, 6, 0, 5.2904], [282240, 7, 2, 1, 2, 0.504512], [283500, 2, 4, 3, 1, 0.684352], [285768, 3, 6, 0, 2, 0.574976], [286720, 13, 0, 1, 1, 0.461664], [288000, 8, 2, 3, 0, 0.544512], [288120, 3, 1, 1, 4, 0.664608], [290304, 9, 4, 0, 1, 0.533408], [291600, 4, 6, 2, 0, 0.569632], [294000, 4, 1, 3, 2, 0.65776], [294912, 15, 2, 0, 0, 0.426368], [295245, 0, 10, 1, 0, 5.09709], [296352, 5, 3, 0, 3, 0.549184], [297675, 0, 5, 2, 2, 5.08429], [300000, 5, 1, 5, 0, 0.647424], [300125, 0, 0, 3, 4, 5.50016], [301056, 11, 1, 0, 2, 0.517408], [302400, 6, 3, 2, 1, 0.5632], [302526, 1, 2, 0, 5, 5.47757], [303750, 1, 5, 4, 0, 5.39267], [306180, 2, 7, 1, 1, 0.662688], [306250, 1, 0, 5, 2, 4.38877], [307200, 12, 1, 2, 0, 0.529792], [307328, 7, 0, 0, 4, 0.555904], [308700, 2, 2, 2, 3, 0.72464], [311040, 8, 5, 1, 0, 0.556544], [312500, 2, 0, 7, 0, 0.78128], [313600, 8, 0, 2, 2, 0.602976], [314928, 4, 9, 0, 0, 0.59136], [315000, 3, 2, 4, 1, 0.709472], [317520, 4, 4, 1, 2, 0.62096], [320000, 9, 0, 4, 0, 0.64416], [321489, 0, 8, 0, 2, 4.94003], [322560, 10, 2, 1, 1, 0.563456], [324000, 5, 4, 3, 0, 0.626048], [324135, 0, 3, 1, 4, 4.06378], [326592, 6, 6, 0, 1, 0.555328], [327680, 16, 0, 1, 0, 0.50928], [328050, 1, 8, 2, 0, 5.71664], [328125, 0, 1, 6, 1, 4.10947], [329280, 6, 1, 1, 3, 0.634624], [330750, 1, 3, 3, 2, 4.13466], [331776, 12, 4, 0, 0, 0.497568], [333396, 2, 5, 0, 3, 0.758496], [336000, 7, 1, 3, 1, 0.678848], [336140, 2, 0, 1, 5, 0.805152], [337500, 2, 3, 5, 0, 0.808608], [338688, 8, 3, 0, 2, 0.58864], [340200, 3, 5, 2, 1, 0.71616], [343000, 3, 0, 3, 3, 0.758336], [344064, 14, 1, 0, 1, 0.554624], [345600, 9, 3, 2, 0, 0.648064], [345744, 4, 2, 0, 4, 0.681152], [349920, 5, 7, 1, 0, 0.608352], [350000, 4, 0, 5, 1, 0.772512], [351232, 10, 0, 0, 3, 0.623296], [352800, 5, 2, 2, 2, 0.681376], [352947, 0, 1, 0, 6, 5.79088], [354294, 1, 11, 0, 0, 5.64771], [354375, 0, 4, 4, 1, 5.60323], [357210, 1, 6, 1, 2, 5.6304], [358400, 11, 0, 2, 1, 0.6064], [360000, 6, 2, 4, 0, 0.68912], [360150, 1, 1, 2, 4, 6.00944], [362880, 7, 4, 1, 1, 0.634176], [364500, 2, 6, 3, 0, 0.818784], [367416, 3, 8, 0, 1, 0.734688], [367500, 2, 1, 4, 2, 0.910464], [368640, 13, 2, 1, 0, 0.55216], [370440, 3, 3, 1, 3, 0.770976], [373248, 9, 6, 0, 0, 0.644448], [375000, 3, 1, 6, 0, 0.889152], [376320, 9, 1, 1, 2, 0.733952], [378000, 4, 3, 3, 1, 0.768096], [381024, 5, 5, 0, 2, 0.708832], [382725, 0, 7, 2, 1, 5.90589], [384000, 10, 1, 3, 0, 0.744224], [384160, 5, 0, 1, 4, 0.744768], [385875, 0, 2, 3, 3, 5.93206], [387072, 11, 3, 0, 1, 0.601344], [388800, 6, 5, 2, 0, 0.72112], [388962, 1, 4, 0, 4, 4.99226], [390625, 0, 0, 8, 0, 5.03382], [392000, 6, 0, 3, 2, 0.758336], [393216, 17, 1, 0, 0, 0.626016], [393660, 2, 9, 1, 0, 0.854016], [393750, 1, 2, 5, 1, 6.66074], [395136, 7, 2, 0, 3, 0.697984], [396900, 2, 4, 2, 2, 0.907456], [400000, 7, 0, 5, 0, 0.783456], [401408, 13, 0, 0, 2, 0.617568], [403200, 8, 2, 2, 1, 0.730592], [403368, 3, 1, 0, 5, 0.898784], [405000, 3, 4, 4, 0, 0.879584], [408240, 4, 6, 1, 1, 0.75584], [409600, 14, 0, 2, 0, 0.6512], [411600, 4, 1, 2, 3, 0.891488], [413343, 0, 10, 0, 1, 5.50262], [414720, 10, 4, 1, 0, 0.702176], [416745, 0, 5, 1, 3, 5.69331], [419904, 6, 8, 0, 0, 0.690848], [420000, 5, 1, 4, 1, 0.881824], [420175, 0, 0, 2, 5, 6.71088], [421875, 0, 3, 6, 0, 6.68627], [423360, 6, 3, 1, 2, 0.732256], [425250, 1, 5, 3, 1, 6.66323], [428652, 2, 7, 0, 2, 0.914912], [428750, 1, 0, 4, 3, 6.76835], [430080, 12, 1, 1, 1, 0.712992], [432000, 7, 3, 3, 0, 0.78336], [432180, 2, 2, 1, 4, 0.979744], [435456, 8, 5, 0, 1, 0.748192], [437400, 3, 7, 2, 0, 0.882848], [437500, 2, 0, 6, 1, 1.10486], [439040, 8, 0, 1, 3, 0.794912], [441000, 3, 2, 3, 2, 0.959744], [442368, 14, 3, 0, 0, 0.637088], [444528, 4, 4, 0, 3, 0.856256], [448000, 9, 0, 3, 1, 0.8952], [450000, 4, 2, 5, 0, 0.958688], [451584, 10, 2, 0, 2, 0.771136], [453600, 5, 4, 2, 1, 0.849856], [453789, 0, 3, 0, 5, 6.25174], [455625, 0, 6, 4, 0, 6.31734], [458752, 16, 0, 0, 1, 0.697312], [459270, 1, 8, 1, 1, 6.31696], [459375, 0, 1, 5, 2, 6.33424], [460800, 11, 2, 2, 0, 0.75376], [460992, 6, 1, 0, 4, 0.85424], [463050, 1, 3, 2, 3, 6.58691], [466560, 7, 6, 1, 0, 0.768128], [468750, 1, 1, 7, 0, 9.57222], [470400, 7, 1, 2, 2, 0.894784], [470596, 2, 0, 0, 6, 1.08314], [472392, 3, 10, 0, 0, 0.9056], [472500, 2, 3, 4, 1, 1.10573], [476280, 3, 5, 1, 2, 0.965088], [480000, 8, 1, 4, 0, 0.947552], [480200, 3, 0, 2, 4, 1.05021], [483840, 9, 3, 1, 1, 0.874304], [486000, 4, 5, 3, 0, 0.994432], [489888, 5, 7, 0, 1, 0.84432], [490000, 4, 0, 4, 2, 1.04035], [491520, 15, 1, 1, 0, 0.778368], [492075, 0, 9, 2, 0, 6.96925], [493920, 5, 2, 1, 3, 0.914752], [496125, 0, 4, 3, 2, 6.98346], [497664, 11, 5, 0, 0, 0.783712], [500000, 5, 0, 6, 0, 1.04976], [500094, 1, 6, 0, 3, 9.48573], [501760, 11, 0, 1, 2, 0.814016], [504000, 6, 2, 3, 1, 0.949376], [504210, 1, 1, 1, 5, 9.51498], [506250, 1, 4, 5, 0, 9.55635], [508032, 7, 4, 0, 2, 0.857888], [510300, 2, 6, 2, 1, 1.11795], [512000, 12, 0, 3, 0, 0.877056], [514500, 2, 1, 3, 3, 1.25018], [516096, 13, 2, 0, 1, 0.758688], [518400, 8, 4, 2, 0, 0.919904], [518616, 3, 3, 0, 4, 1.05949], [524288, 19, 0, 0, 0, 0.727136], [524880, 4, 8, 1, 0, 0.963968], [525000, 3, 1, 5, 1, 1.23942], [526848, 9, 1, 0, 3, 1.0257], [529200, 4, 3, 2, 2, 1.04589], [531441, 0, 12, 0, 0, 8.57098], [535815, 0, 7, 1, 2, 8.4985], [537600, 10, 1, 2, 1, 1.0232], [537824, 5, 0, 0, 5, 1.0032], [540000, 5, 3, 4, 0, 1.04029], [540225, 0, 2, 2, 4, 9.65904], [544320, 6, 5, 1, 1, 0.95584], [546750, 1, 7, 3, 0, 9.68707], [546875, 0, 0, 7, 1, 7.17158], [548800, 6, 0, 2, 3, 1.02755], [551124, 2, 9, 0, 1, 1.1799], [551250, 1, 2, 4, 2, 7.15728], [552960, 12, 3, 1, 0, 0.832128], [555660, 2, 4, 1, 3, 1.23613], [559872, 8, 7, 0, 0, 0.891232], [560000, 7, 0, 4, 1, 1.07056], [562500, 2, 2, 6, 0, 1.38714], [564480, 8, 2, 1, 2, 0.959712], [567000, 3, 4, 3, 1, 1.20694], [571536, 4, 6, 0, 2, 1.03766], [573440, 14, 0, 1, 1, 0.875808], [576000, 9, 2, 3, 0, 1.10422], [576240, 4, 1, 1, 4, 1.2007], [580608, 10, 4, 0, 1, 0.97392], [583200, 5, 6, 2, 0, 1.03862], [583443, 0, 5, 0, 4, 7.21802], [588000, 5, 1, 3, 2, 1.21469], [588245, 0, 0, 1, 6, 7.19184], [589824, 16, 2, 0, 0, 0.86256], [590490, 1, 10, 1, 0, 9.91539], [590625, 0, 3, 5, 1, 10.2365], [592704, 6, 3, 0, 3, 1.01069], [595350, 1, 5, 2, 2, 10.2635], [600000, 6, 1, 5, 0, 1.23731], [600250, 1, 0, 3, 4, 10.8261], [602112, 12, 1, 0, 2, 0.98512], [604800, 7, 3, 2, 1, 1.06106], [605052, 2, 2, 0, 5, 1.33712], [607500, 2, 5, 4, 0, 1.41402], [612360, 3, 7, 1, 1, 1.20592], [612500, 2, 0, 5, 2, 1.4953], [614400, 13, 1, 2, 0, 1.03811], [614656, 8, 0, 0, 4, 1.08477], [617400, 3, 2, 2, 3, 1.31562], [622080, 9, 5, 1, 0, 1.14125], [625000, 3, 0, 7, 0, 1.4399], [627200, 9, 0, 2, 2, 1.20742], [629856, 5, 9, 0, 0, 1.09158], [630000, 4, 2, 4, 1, 1.31232], [635040, 5, 4, 1, 2, 1.14832], [637875, 0, 6, 3, 1, 9.75549], [640000, 10, 0, 4, 0, 1.21981], [642978, 1, 8, 0, 2, 9.94333], [643125, 0, 1, 4, 3, 9.95194], [645120, 11, 2, 1, 1, 1.01475], [648000, 6, 4, 3, 0, 1.18205], [648270, 1, 3, 1, 4, 8.34106], [653184, 7, 6, 0, 1, 1.04822], [655360, 17, 0, 1, 0, 0.986336], [656100, 2, 8, 2, 0, 1.42077], [656250, 1, 1, 6, 1, 8.65149], [658560, 7, 1, 1, 3, 1.2048], [661500, 2, 3, 3, 2, 1.52448], [663552, 13, 4, 0, 0, 0.968288], [666792, 3, 5, 0, 3, 1.32736], [672000, 8, 1, 3, 1, 1.31574], [672280, 3, 0, 1, 5, 1.43027], [675000, 3, 3, 5, 0, 1.46995], [677376, 9, 3, 0, 2, 1.20595], [680400, 4, 5, 2, 1, 1.35693], [686000, 4, 0, 3, 3, 1.44301], [688128, 15, 1, 0, 1, 1.08413], [688905, 0, 9, 1, 1, 9.87245], [691200, 10, 3, 2, 0, 1.21229], [691488, 5, 2, 0, 4, 1.24589], [694575, 0, 4, 2, 3, 9.90522], [699840, 6, 7, 1, 0, 1.14566], [700000, 5, 0, 5, 1, 1.44157], [702464, 11, 0, 0, 3, 1.12323], [703125, 0, 2, 7, 0, 10.8831], [705600, 6, 2, 2, 2, 1.26538], [705894, 1, 1, 0, 6, 10.7677], [708588, 2, 11, 0, 0, 1.44586], [708750, 1, 4, 4, 1, 11.9008], [714420, 2, 6, 1, 2, 1.5031], [716800, 12, 0, 2, 1, 1.188], [720000, 7, 2, 4, 0, 1.32915], [720300, 2, 1, 2, 4, 1.73027], [725760, 8, 4, 1, 1, 1.21846], [729000, 3, 6, 3, 0, 1.47747], [734832, 4, 8, 0, 1, 1.3401], [735000, 3, 1, 4, 2, 1.69946], [737280, 14, 2, 1, 0, 1.09392], [740880, 4, 3, 1, 3, 1.40966], [746496, 10, 6, 0, 0, 1.18867], [750000, 4, 1, 6, 0, 1.71306], [750141, 0, 7, 0, 3, 12.228], [752640, 10, 1, 1, 2, 1.37821], [756000, 5, 3, 3, 1, 1.44704], [756315, 0, 2, 1, 5, 12.1785], [759375, 0, 5, 5, 0, 12.1453], [762048, 6, 5, 0, 2, 1.31914], [765450, 1, 7, 2, 1, 12.2157], [765625, 0, 0, 6, 2, 12.2101], [768000, 11, 1, 3, 0, 1.39795], [768320, 6, 0, 1, 4, 1.38352], [771750, 1, 2, 3, 3, 12.2421], [774144, 12, 3, 0, 1, 1.15549], [777600, 7, 5, 2, 0, 1.38006], [777924, 2, 4, 0, 4, 1.69882], [781250, 1, 0, 8, 0, 15.7126], [784000, 7, 0, 3, 2, 1.46678], [786432, 18, 1, 0, 0, 1.15923], [787320, 3, 9, 1, 0, 1.51488], [787500, 2, 2, 5, 1, 1.90579], [790272, 8, 2, 0, 3, 1.32758], [793800, 3, 4, 2, 2, 1.6663], [800000, 8, 0, 5, 0, 1.55078], [802816, 14, 0, 0, 2, 1.22074], [806400, 9, 2, 2, 1, 1.51558], [806736, 4, 1, 0, 5, 1.65258], [810000, 4, 4, 4, 0, 1.65062], [816480, 5, 6, 1, 1, 1.40208], [819200, 15, 0, 2, 0, 1.2992], [820125, 0, 8, 3, 0, 11.2138], [823200, 5, 1, 2, 3, 1.65744], [823543, 0, 0, 0, 7, 11.2281], [826686, 1, 10, 0, 1, 11.1275], [826875, 0, 3, 4, 2, 11.1012], [829440, 11, 4, 1, 0, 1.28522], [833490, 1, 5, 1, 3, 11.9284], [839808, 7, 8, 0, 0, 1.34234], [840000, 6, 1, 4, 1, 1.69898], [840350, 1, 0, 2, 5, 16.4249], [843750, 1, 3, 6, 0, 16.3916], [846720, 7, 3, 1, 2, 1.42138], [850500, 2, 5, 3, 1, 2.00307], [857304, 3, 7, 0, 2, 1.66704], [857500, 2, 0, 4, 3, 2.04262], [860160, 13, 1, 1, 1, 1.40112], [864000, 8, 3, 3, 0, 1.54563], [864360, 3, 2, 1, 4, 1.7881], [870912, 9, 5, 0, 1, 1.57904], [874800, 4, 7, 2, 0, 1.65149], [875000, 3, 0, 6, 1, 1.99715], [878080, 9, 0, 1, 3, 1.6407], [882000, 4, 2, 3, 2, 1.80339], [884736, 15, 3, 0, 0, 1.27008], [885735, 0, 11, 1, 0, 14.9659], [889056, 5, 4, 0, 3, 1.57811], [893025, 0, 6, 2, 2, 14.926], [896000, 10, 0, 3, 1, 1.6953], [900000, 5, 2, 5, 0, 1.82208], [900375, 0, 1, 3, 4, 16.9604], [903168, 11, 2, 0, 2, 1.40442], [907200, 6, 4, 2, 1, 1.6312], [907578, 1, 3, 0, 5, 16.9241], [911250, 1, 6, 4, 0, 17.0412], [917504, 17, 0, 0, 1, 1.37286], [918540, 2, 8, 1, 1, 1.97526], [918750, 1, 1, 5, 2, 12.9471], [921600, 12, 2, 2, 0, 1.48013], [921984, 7, 1, 0, 4, 1.67603], [926100, 2, 3, 2, 3, 2.08915], [933120, 8, 6, 1, 0, 1.48266], [937500, 2, 1, 7, 0, 2.40995], [940800, 8, 1, 2, 2, 1.76934], [941192, 3, 0, 0, 6, 1.9713], [944784, 4, 10, 0, 0, 1.76346], [945000, 3, 3, 4, 1, 2.04451], [952560, 4, 5, 1, 2, 1.836], [960000, 9, 1, 4, 0, 2.01142], [960400, 4, 0, 2, 4, 1.96819], [964467, 0, 9, 0, 2, 15.7198], [967680, 10, 3, 1, 1, 1.64278], [972000, 5, 5, 3, 0, 1.88861], [972405, 0, 4, 1, 4, 13.5418], [979776, 6, 7, 0, 1, 1.59523], [980000, 5, 0, 4, 2, 1.97328], [983040, 16, 1, 1, 0, 1.58003], [984150, 1, 9, 2, 0, 17.5408], [984375, 0, 2, 6, 1, 14.2494], [987840, 6, 2, 1, 3, 1.72125], [992250, 1, 4, 3, 2, 14.2028], [995328, 12, 5, 0, 0, 1.58691], [1000000, 6, 0, 6, 0, 2.0423], [1000188, 2, 6, 0, 3, 2.09558], [1003520, 12, 0, 1, 2, 1.59949], [1008000, 7, 2, 3, 1, 1.84864], [1008420, 2, 1, 1, 5, 2.3793], [1012500, 2, 4, 5, 0, 2.4296], [1016064, 8, 4, 0, 2, 1.69392], [1020600, 3, 6, 2, 1, 2.05757], [1024000, 13, 0, 3, 0, 1.808], [1029000, 3, 1, 3, 3, 2.34493], [1032192, 14, 2, 0, 1, 1.53091], [1036800, 9, 4, 2, 0, 1.93565], [1037232, 4, 3, 0, 4, 1.95174], [1048576, 20, 0, 0, 0, 1.44083], [1049760, 5, 8, 1, 0, 1.79898], [1050000, 4, 1, 5, 1, 2.37315], [1053696, 10, 1, 0, 3, 1.92704], [1058400, 5, 3, 2, 2, 1.97165], [1058841, 0, 2, 0, 6, 17.9579], [1062882, 1, 12, 0, 0, 17.8637], [1063125, 0, 5, 4, 1, 17.4523], [1071630, 1, 7, 1, 2, 17.4763], [1071875, 0, 0, 5, 3, 17.397], [1075200, 11, 1, 2, 1, 1.92186], [1075648, 6, 0, 0, 5, 1.90138], [1080000, 6, 3, 4, 0, 2.01555], [1080450, 1, 2, 2, 4, 18.8558], [1088640, 7, 5, 1, 1, 1.86701], [1093500, 2, 7, 3, 0, 2.46234], [1093750, 1, 0, 7, 1, 14.7131], [1097600, 7, 0, 2, 3, 2.01011], [1102248, 3, 9, 0, 1, 2.13232], [1102500, 2, 2, 4, 2, 2.58851], [1105920, 13, 3, 1, 0, 1.64525], [1111320, 3, 4, 1, 3, 2.28883], [1119744, 9, 7, 0, 0, 1.91642], [1120000, 8, 0, 4, 1, 2.13389], [1125000, 3, 2, 6, 0, 2.57117], [1128960, 9, 2, 1, 2, 2.05549], [1134000, 4, 4, 3, 1, 2.30016], [1143072, 5, 6, 0, 2, 1.94893], [1146880, 15, 0, 1, 1, 1.76134], [1148175, 0, 8, 2, 1, 17.5683], [1152000, 10, 2, 3, 0, 2.13117], [1152480, 5, 1, 1, 4, 2.24186], [1157625, 0, 3, 3, 3, 17.5345], [1161216, 11, 4, 0, 1, 1.80506], [1166400, 6, 6, 2, 0, 2.00582], [1166886, 1, 5, 0, 4, 14.8966], [1171875, 0, 1, 8, 0, 14.9472], [1176000, 6, 1, 3, 2, 2.33734], [1176490, 1, 0, 1, 6, 14.9641], [1179648, 17, 2, 0, 0, 1.75155], [1180980, 2, 10, 1, 0, 2.60058], [1181250, 1, 3, 5, 1, 21.7182], [1185408, 7, 3, 0, 3, 1.98778], [1190700, 2, 5, 2, 2, 2.73635], [1200000, 7, 1, 5, 0, 2.45494], [1200500, 2, 0, 3, 4, 2.86016], [1204224, 13, 1, 0, 2, 1.96896], [1209600, 8, 3, 2, 1, 2.10614], [1210104, 3, 2, 0, 5, 2.48819], [1215000, 3, 5, 4, 0, 2.60922], [1224720, 4, 7, 1, 1, 2.252], [1225000, 3, 0, 5, 2, 2.76784], [1228800, 14, 1, 2, 0, 2.09846], [1229312, 9, 0, 0, 4, 2.29146], [1234800, 4, 2, 2, 3, 2.48128], [1240029, 0, 11, 0, 1, 18.306], [1244160, 10, 5, 1, 0, 2.16397], [1250000, 4, 0, 7, 0, 2.8351], [1250235, 0, 6, 1, 3, 18.5196], [1254400, 10, 0, 2, 2, 2.32208], [1259712, 6, 9, 0, 0, 2.11123], [1260000, 5, 2, 4, 1, 2.4967], [1260525, 0, 1, 2, 5, 20.0001], [1265625, 0, 4, 6, 0, 19.9518], [1270080, 6, 4, 1, 2, 2.19968], [1275750, 1, 6, 3, 1, 20.0309], [1280000, 11, 0, 4, 0, 2.2983], [1285956, 2, 8, 0, 2, 2.73776], [1286250, 1, 1, 4, 3, 20.8961], [1290240, 12, 2, 1, 1, 2.00166], [1296000, 7, 4, 3, 0, 2.3568], [1296540, 2, 3, 1, 4, 2.84944], [1306368, 8, 6, 0, 1, 2.07654], [1310720, 18, 0, 1, 0, 1.88534], [1312200, 3, 8, 2, 0, 2.68566], [1312500, 2, 1, 6, 1, 3.42173], [1317120, 8, 1, 1, 3, 2.4215], [1323000, 3, 3, 3, 2, 2.82237], [1327104, 14, 4, 0, 0, 1.9689], [1333584, 4, 5, 0, 3, 2.56643], [1344000, 9, 1, 3, 1, 2.78582], [1344560, 4, 0, 1, 5, 2.66963], [1350000, 4, 3, 5, 0, 2.85459], [1354752, 10, 3, 0, 2, 2.3017], [1360800, 5, 5, 2, 1, 2.60134], [1361367, 0, 4, 0, 5, 20.0801], [1366875, 0, 7, 4, 0, 19.9984], [1372000, 5, 0, 3, 3, 2.73834], [1376256, 16, 1, 0, 1, 2.23706], [1377810, 1, 9, 1, 1, 20.1472], [1378125, 0, 2, 5, 2, 19.945], [1382400, 11, 3, 2, 0, 2.27264], [1382976, 6, 2, 0, 4, 2.39459], [1389150, 1, 4, 2, 3, 20.9555], [1399680, 7, 7, 1, 0, 2.27117], [1400000, 6, 0, 5, 1, 2.81715], [1404928, 12, 0, 0, 3, 2.23648], [1406250, 1, 2, 7, 0, 28.7106], [1411200, 7, 2, 2, 2, 2.52262], [1411788, 2, 1, 0, 6, 3.3071], [1417176, 3, 11, 0, 0, 2.68506], [1417500, 2, 4, 4, 1, 3.34189], [1428840, 3, 6, 1, 2, 2.80211], [1433600, 13, 0, 2, 1, 2.36064], [1440000, 8, 2, 4, 0, 2.69379], [1440600, 3, 1, 2, 4, 3.2543], [1451520, 9, 4, 1, 1, 2.62931], [1458000, 4, 6, 3, 0, 2.85398], [1469664, 5, 8, 0, 1, 2.53277], [1470000, 4, 1, 4, 2, 3.26074], [1474560, 15, 2, 1, 0, 2.2136], [1476225, 0, 10, 2, 0, 19.8736], [1481760, 5, 3, 1, 3, 2.6849], [1488375, 0, 5, 3, 2, 19.6011], [1492992, 11, 6, 0, 0, 2.21661], [1500000, 5, 1, 6, 0, 3.33597], [1500282, 1, 7, 0, 3, 29.4024], [1500625, 0, 0, 4, 4, 29.3941], [1505280, 11, 1, 1, 2, 2.59037], [1512000, 6, 3, 3, 1, 2.80685], [1512630, 1, 2, 1, 5, 29.419], [1518750, 1, 5, 5, 0, 29.4513], [1524096, 7, 5, 0, 2, 2.61699], [1530900, 2, 7, 2, 1, 3.37958], [1531250, 1, 0, 6, 2, 25.2457], [1536000, 12, 1, 3, 0, 2.83485], [1536640, 7, 0, 1, 4, 2.71597], [1543500, 2, 2, 3, 3, 3.65459], [1548288, 13, 3, 0, 1, 2.31795], [1555200, 8, 5, 2, 0, 2.79312], [1555848, 3, 4, 0, 4, 3.18864], [1562500, 2, 0, 8, 0, 4.12227], [1568000, 8, 0, 3, 2, 2.95056], [1572864, 19, 1, 0, 0, 2.37158], [1574640, 4, 9, 1, 0, 2.95242], [1575000, 3, 2, 5, 1, 3.57206], [1580544, 9, 2, 0, 3, 2.88336], [1587600, 4, 4, 2, 2, 3.16118], [1594323, 0, 13, 0, 0, 26.7675], [1600000, 9, 0, 5, 0, 3.38272], [1605632, 15, 0, 0, 2, 2.50787], [1607445, 0, 8, 1, 2, 27.1935], [1612800, 10, 2, 2, 1, 2.93898], [1613472, 5, 1, 0, 5, 3.12874], [1620000, 5, 4, 4, 0, 3.19117], [1620675, 0, 3, 2, 4, 23.7544], [1632960, 6, 6, 1, 1, 2.70624], [1638400, 16, 0, 2, 0, 2.70205], [1640250, 1, 8, 3, 0, 30.567], [1640625, 0, 1, 7, 1, 23.0461], [1646400, 6, 1, 2, 3, 3.20534], [1647086, 1, 0, 0, 7, 23.0674], [1653372, 2, 10, 0, 1, 3.66], [1653750, 1, 3, 4, 2, 22.9927], [1658880, 12, 4, 1, 0, 2.56912], [1666980, 2, 5, 1, 3, 3.79686], [1679616, 8, 8, 0, 0, 2.7113], [1680000, 7, 1, 4, 1, 3.37507], [1680700, 2, 0, 2, 5, 3.94518], [1687500, 2, 3, 6, 0, 4.18515], [1693440, 8, 3, 1, 2, 2.86342], [1701000, 3, 5, 3, 1, 3.6473], [1714608, 4, 7, 0, 2, 3.1361], [1715000, 3, 0, 4, 3, 3.91907], [1720320, 14, 1, 1, 1, 2.8409], [1728000, 9, 3, 3, 0, 3.3815], [1728720, 4, 2, 1, 4, 3.34893], [1741824, 10, 5, 0, 1, 3.04742], [1749600, 5, 7, 2, 0, 3.18016], [1750000, 4, 0, 6, 1, 3.94266], [1750329, 0, 6, 0, 4, 23.5039], [1756160, 10, 0, 1, 3, 3.17155], [1764000, 5, 2, 3, 2, 3.48112], [1764735, 0, 1, 1, 6, 23.4996], [1769472, 16, 3, 0, 0, 2.64438], [1771470, 1, 11, 1, 0, 31.8044], [1771875, 0, 4, 5, 1, 30.5132], [1778112, 6, 4, 0, 3, 3.0585], [1786050, 1, 6, 2, 2, 30.5902], [1792000, 11, 0, 3, 1, 3.23757], [1800000, 6, 2, 5, 0, 3.5639], [1800750, 1, 1, 3, 4, 32.941], [1806336, 12, 2, 0, 2, 2.80915], [1814400, 7, 4, 2, 1, 3.24131], [1815156, 2, 3, 0, 5, 3.99174], [1822500, 2, 6, 4, 0, 4.11866], [1835008, 18, 0, 0, 1, 2.66816], [1837080, 3, 8, 1, 1, 3.70333], [1837500, 2, 1, 5, 2, 4.672], [1843200, 13, 2, 2, 0, 2.98195], [1843968, 8, 1, 0, 4, 3.35744], [1852200, 3, 3, 2, 3, 3.9201], [1866240, 9, 6, 1, 0, 3.2855], [1875000, 3, 1, 7, 0, 4.62918], [1881600, 9, 1, 2, 2, 3.85133], [1882384, 4, 0, 0, 6, 3.72458], [1889568, 5, 10, 0, 0, 3.41597], [1890000, 4, 3, 4, 1, 3.94634], [1905120, 5, 5, 1, 2, 3.54589], [1913625, 0, 7, 3, 1, 32.5719], [1920000, 10, 1, 4, 0, 3.93373], [1920800, 5, 0, 2, 4, 3.77754], [1928934, 1, 9, 0, 2, 31.9446], [1929375, 0, 2, 4, 3, 31.9818], [1935360, 11, 3, 1, 1, 3.08781], [1944000, 6, 5, 3, 0, 3.70506], [1944810, 1, 4, 1, 4, 27.8608], [1953125, 0, 0, 9, 0, 28.0972], [1959552, 7, 7, 0, 1, 3.18278], [1960000, 6, 0, 4, 2, 3.89094], [1966080, 17, 1, 1, 0, 3.22067], [1968300, 2, 9, 2, 0, 4.46915], [1968750, 1, 2, 6, 1, 30.6533], [1975680, 7, 2, 1, 3, 3.41715], [1984500, 2, 4, 3, 2, 4.71264], [1990656, 13, 5, 0, 0, 3.37811], [2000000, 7, 0, 6, 0, 4.11558], [2000376, 3, 6, 0, 3, 3.93869], [2007040, 13, 0, 1, 2, 3.22224], [2016000, 8, 2, 3, 1, 3.73421], [2016840, 3, 1, 1, 5, 4.49018], [2025000, 3, 4, 5, 0, 4.5879], [2032128, 9, 4, 0, 2, 3.69718], [2041200, 4, 6, 2, 1, 3.92624], [2048000, 14, 0, 3, 0, 3.68074], [2058000, 4, 1, 3, 3, 4.54406], [2064384, 15, 2, 0, 1, 3.12374], [2066715, 0, 10, 1, 1, 31.1785], [2073600, 10, 4, 2, 0, 3.77091], [2074464, 5, 3, 0, 4, 3.74819], [2083725, 0, 5, 2, 3, 27.5124], [2097152, 21, 0, 0, 0, 2.94886], [2099520, 6, 8, 1, 0, 3.5336], [2100000, 5, 1, 5, 1, 4.61136], [2100875, 0, 0, 3, 5, 34.7995], [2107392, 11, 1, 0, 3, 3.66026], [2109375, 0, 3, 7, 0, 34.1734], [2116800, 6, 3, 2, 2, 3.85216], [2117682, 1, 2, 0, 6, 34.906], [2125764, 2, 12, 0, 0, 4.4487], [2126250, 1, 5, 4, 1, 36.9294], [2143260, 2, 7, 1, 2, 4.65424], [2143750, 1, 0, 5, 3, 37.1914], [2150400, 12, 1, 2, 1, 3.84186], [2151296, 7, 0, 0, 5, 3.80602], [2160000, 7, 3, 4, 0, 4.0561], [2160900, 2, 2, 2, 4, 4.984], [2177280, 8, 5, 1, 1, 3.80394], [2187000, 3, 7, 3, 0, 4.62064], [2187500, 2, 0, 7, 1, 5.67242], [2195200, 8, 0, 2, 3, 4.0513], [2204496, 4, 9, 0, 1, 4.15363], [2205000, 3, 2, 4, 2, 4.94499], [2211840, 14, 3, 1, 0, 3.3936], [2222640, 4, 4, 1, 3, 4.31651], [2239488, 10, 7, 0, 0, 3.71776], [2240000, 9, 0, 4, 1, 4.63824], [2250000, 4, 2, 6, 0, 5.04902], [2250423, 0, 8, 0, 3, 36.634], [2257920, 10, 2, 1, 2, 4.00182], [2268000, 5, 4, 3, 1, 4.45338], [2268945, 0, 3, 1, 5, 36.63], [2278125, 0, 6, 5, 0, 36.8301], [2286144, 6, 6, 0, 2, 3.80278], [2293760, 16, 0, 1, 1, 3.66614], [2296350, 1, 8, 2, 1, 36.6157], [2296875, 0, 1, 6, 2, 36.699], [2304000, 11, 2, 3, 0, 4.08992], [2304960, 6, 1, 1, 4, 4.37456], [2315250, 1, 3, 3, 3, 36.7247], [2322432, 12, 4, 0, 1, 3.61923], [2332800, 7, 6, 2, 0, 4.02301], [2333772, 2, 5, 0, 4, 5.31702], [2343750, 1, 1, 8, 0, 51.544], [2352000, 7, 1, 3, 2, 4.70573], [2352980, 2, 0, 1, 6, 5.42806], [2359296, 18, 2, 0, 0, 3.35306], [2361960, 3, 10, 1, 0, 4.71219], [2362500, 2, 3, 5, 1, 5.77674], [2370816, 8, 3, 0, 3, 4.00637], [2381400, 3, 5, 2, 2, 5.04739], [2400000, 8, 1, 5, 0, 4.98726], [2401000, 3, 0, 3, 4, 5.35315], [2408448, 14, 1, 0, 2, 4.03475], [2419200, 9, 3, 2, 1, 4.66438], [2420208, 4, 2, 0, 5, 4.71091], [2430000, 4, 5, 4, 0, 5.18294], [2449440, 5, 7, 1, 1, 4.32467], [2450000, 4, 0, 5, 2, 5.46198], [2457600, 15, 1, 2, 0, 4.30125], [2458624, 10, 0, 0, 4, 4.45488], [2460375, 0, 9, 3, 0, 38.8524], [2469600, 5, 2, 2, 3, 4.77098], [2470629, 0, 1, 0, 7, 38.6804], [2480058, 1, 11, 0, 1, 38.5702], [2480625, 0, 4, 4, 2, 38.6311], [2488320, 11, 5, 1, 0, 4.17334], [2500000, 5, 0, 7, 0, 5.56074], [2500470, 1, 6, 1, 3, 39.2336], [2508800, 11, 0, 2, 2, 4.42342], [2519424, 7, 9, 0, 0, 4.2377], [2520000, 6, 2, 4, 1, 4.90704], [2521050, 1, 1, 2, 5, 51.7252], [2531250, 1, 4, 6, 0, 51.5391], [2540160, 7, 4, 1, 2, 4.3903], [2551500, 2, 6, 3, 1, 5.8536], [2560000, 12, 0, 4, 0, 4.65766], [2571912, 3, 8, 0, 2, 5.1873], [2572500, 2, 1, 4, 3, 6.52877], [2580480, 13, 2, 1, 1, 4.05229], [2592000, 8, 4, 3, 0, 4.79728], [2593080, 3, 3, 1, 4, 5.38714], [2612736, 9, 6, 0, 1, 4.62342], [2621440, 19, 0, 1, 0, 3.92038], [2624400, 4, 8, 2, 0, 5.12547], [2625000, 3, 1, 6, 1, 6.46579], [2634240, 9, 1, 1, 3, 5.25795], [2646000, 4, 3, 3, 2, 5.51062], [2654208, 15, 4, 0, 0, 4.15238], [2657205, 0, 12, 1, 0, 46.8468], [2667168, 5, 5, 0, 3, 4.97373], [2679075, 0, 7, 2, 2, 47.1687], [2688000, 10, 1, 3, 1, 5.47974], [2689120, 5, 0, 1, 5, 5.15082], [2700000, 5, 3, 5, 0, 5.59165], [2701125, 0, 2, 3, 4, 54.7336], [2709504, 11, 3, 0, 2, 4.36349], [2721600, 6, 5, 2, 1, 5.10166], [2722734, 1, 4, 0, 5, 54.0552], [2733750, 1, 7, 4, 0, 54.9434], [2734375, 0, 0, 8, 1, 41.401], [2744000, 6, 0, 3, 3, 5.38938], [2752512, 17, 1, 0, 1, 4.56339], [2755620, 2, 9, 1, 1, 6.18733], [2756250, 1, 2, 5, 2, 41.3892], [2764800, 12, 3, 2, 0, 4.59955], [2765952, 7, 2, 0, 4, 4.81552], [2778300, 2, 4, 2, 3, 6.48822], [2799360, 8, 7, 1, 0, 4.62682], [2800000, 7, 0, 5, 1, 5.68227], [2809856, 13, 0, 0, 3, 4.53363], [2812500, 2, 2, 7, 0, 7.18838], [2822400, 8, 2, 2, 2, 5.15331], [2823576, 3, 1, 0, 6, 6.2985], [2834352, 4, 11, 0, 0, 5.09862], [2835000, 3, 4, 4, 1, 6.41555], [2857680, 4, 6, 1, 2, 5.37827], [2867200, 14, 0, 2, 1, 4.88003], [2880000, 9, 2, 4, 0, 5.90294], [2881200, 4, 1, 2, 4, 6.28019], [2893401, 0, 10, 0, 2, 47.826], [2903040, 10, 4, 1, 1, 5.15174], [2916000, 5, 6, 3, 0, 5.57834], [2917215, 0, 5, 1, 4, 41.0134], [2939328, 6, 8, 0, 1, 4.97171], [2940000, 5, 1, 4, 2, 6.37232], [2941225, 0, 0, 2, 6, 41.1074], [2949120, 16, 2, 1, 0, 4.6255], [2952450, 1, 10, 2, 0, 55.3772], [2953125, 0, 3, 6, 1, 41.5782], [2963520, 6, 3, 1, 3, 5.26688], [2976750, 1, 5, 3, 2, 41.7154], [2985984, 12, 6, 0, 0, 4.50259], [3000000, 6, 1, 6, 0, 6.60922], [3000564, 2, 7, 0, 3, 6.54883], [3001250, 1, 0, 4, 4, 59.3941], [3010560, 12, 1, 1, 2, 5.24214], [3024000, 7, 3, 3, 1, 5.65891], [3025260, 2, 2, 1, 5, 6.90947], [3037500, 2, 5, 5, 0, 7.7016], [3048192, 8, 5, 0, 2, 5.35254], [3061800, 3, 7, 2, 1, 6.45021], [3062500, 2, 0, 6, 2, 8.04832], [3072000, 13, 1, 3, 0, 5.93907], [3073280, 8, 0, 1, 4, 5.52666], [3087000, 3, 2, 3, 3, 6.94893], [3096576, 14, 3, 0, 1, 4.78403], [3110400, 9, 5, 2, 0, 6.1919], [3111696, 4, 4, 0, 4, 6.07142], [3125000, 3, 0, 8, 0, 7.71808], [3136000, 9, 0, 3, 2, 6.53635], [3145728, 20, 1, 0, 0, 4.86774], [3149280, 5, 9, 1, 0, 5.77789], [3150000, 4, 2, 5, 1, 6.97741], [3161088, 10, 2, 0, 3, 5.63126], [3175200, 5, 4, 2, 2, 6.15382], [3176523, 0, 3, 0, 6, 57.7839], [3188646, 1, 13, 0, 0, 57.2044], [3189375, 0, 6, 4, 1, 55.2246], [3200000, 10, 0, 5, 0, 6.63968], [3211264, 16, 0, 0, 2, 5.24816], [3214890, 1, 8, 1, 2, 55.7382], [3215625, 0, 1, 5, 3, 55.7756], [3225600, 11, 2, 2, 1, 5.60115], [3226944, 6, 1, 0, 5, 6.15408], [3240000, 6, 4, 4, 0, 6.3233], [3241350, 1, 3, 2, 4, 48.4227], [3265920, 7, 6, 1, 1, 5.46522], [3276800, 17, 0, 2, 0, 5.59056], [3280500, 2, 8, 3, 0, 7.72605], [3281250, 1, 1, 7, 1, 48.413], [3292800, 7, 1, 2, 3, 6.48477], [3294172, 2, 0, 0, 7, 7.7624], [3306744, 3, 10, 0, 1, 6.66381], [3307500, 2, 3, 4, 2, 7.91373], [3317760, 13, 4, 1, 0, 5.25779], [3333960, 3, 5, 1, 3, 6.97437], [3359232, 9, 8, 0, 0, 6.02362], [3360000, 8, 1, 4, 1, 6.8929], [3361400, 3, 0, 2, 5, 7.55683], [3375000, 3, 3, 6, 0, 7.9008], [3386880, 9, 3, 1, 2, 6.37555], [3402000, 4, 5, 3, 1, 7.25693], [3429216, 5, 7, 0, 2, 6.11526], [3430000, 4, 0, 4, 3, 7.564], [3440640, 15, 1, 1, 1, 5.84179], [3444525, 0, 9, 2, 1, 56.1866], [3456000, 10, 3, 3, 0, 6.64842], [3457440, 5, 2, 1, 4, 6.52429], [3472875, 0, 4, 3, 3, 56.5055], [3483648, 11, 5, 0, 1, 5.88378], [3499200, 6, 7, 2, 0, 6.28253], [3500000, 5, 0, 6, 1, 7.78045], [3500658, 1, 6, 0, 4, 49.4868], [3512320, 11, 0, 1, 3, 6.03434], [3515625, 0, 2, 8, 0, 48.9409], [3528000, 6, 2, 3, 2, 6.85773], [3529470, 1, 1, 1, 6, 48.0463], [3538944, 17, 3, 0, 0, 5.53616], [3542940, 2, 11, 1, 0, 7.59248], [3543750, 1, 4, 5, 1, 65.0576], [3556224, 7, 4, 0, 3, 6.1871], [3572100, 2, 6, 2, 2, 8.02368], [3584000, 12, 0, 3, 1, 6.6336], [3600000, 7, 2, 5, 0, 7.22086], [3601500, 2, 1, 3, 4, 9.09309], [3612672, 13, 2, 0, 2, 5.76787], [3628800, 8, 4, 2, 1, 6.60291], [3630312, 3, 3, 0, 5, 7.59078], [3645000, 3, 6, 4, 0, 7.93693], [3670016, 19, 0, 0, 1, 5.54451], [3674160, 4, 8, 1, 1, 7.01258], [3675000, 3, 1, 5, 2, 9.00522], [3686400, 14, 2, 2, 0, 6.19491], [3687936, 9, 1, 0, 4, 7.42714], [3704400, 4, 3, 2, 3, 7.59821], [3720087, 0, 12, 0, 1, 55.041], [3732480, 10, 6, 1, 0, 6.45123], [3750000, 4, 1, 7, 0, 9.14714], [3750705, 0, 7, 1, 3, 59.4849], [3763200, 10, 1, 2, 2, 7.59766], [3764768, 5, 0, 0, 6, 7.26538], [3779136, 6, 10, 0, 0, 6.76893], [3780000, 5, 3, 4, 1, 7.72259], [3781575, 0, 2, 2, 5, 66.5995], [3796875, 0, 5, 6, 0, 67.0756], [3810240, 6, 5, 1, 2, 7.00317], [3827250, 1, 7, 3, 1, 66.8571], [3828125, 0, 0, 7, 2, 66.9309], [3840000, 11, 1, 4, 0, 7.576], [3841600, 6, 0, 2, 4, 7.45485], [3857868, 2, 9, 0, 2, 8.7232], [3858750, 1, 2, 4, 3, 67.9624], [3870720, 12, 3, 1, 1, 6.26144], [3888000, 7, 5, 3, 0, 7.54157], [3889620, 2, 4, 1, 4, 8.96211], [3906250, 1, 0, 9, 0, 85.0971], [3919104, 8, 7, 0, 1, 6.51299], [3920000, 7, 0, 4, 2, 7.86989], [3932160, 18, 1, 1, 0, 6.34314], [3936600, 3, 9, 2, 0, 8.28461], [3937500, 2, 2, 6, 1, 10.2187], [3951360, 8, 2, 1, 3, 6.98502], [3969000, 3, 4, 3, 2, 8.93936], [3981312, 14, 5, 0, 0, 6.98899], [4000000, 8, 0, 6, 0, 8.45475], [4000752, 4, 6, 0, 3, 7.56662], [4014080, 14, 0, 1, 2, 6.68118], [4032000, 9, 2, 3, 1, 8.24259], [4033680, 4, 1, 1, 5, 8.58787], [4050000, 4, 4, 5, 0, 8.96867], [4064256, 10, 4, 0, 2, 7.27395], [4082400, 5, 6, 2, 1, 7.69286], [4084101, 0, 5, 0, 5, 75.6746], [4096000, 15, 0, 3, 0, 7.75635], [4100625, 0, 8, 4, 0, 63.9082], [4116000, 5, 1, 3, 3, 8.90269], [4117715, 0, 0, 1, 7, 64.7339], [4128768, 16, 2, 0, 1, 6.52176], [4133430, 1, 10, 1, 1, 64.11], [4134375, 0, 3, 5, 2, 64.6961], [4147200, 11, 4, 2, 0, 7.2393], [4148928, 6, 3, 0, 4, 7.41251], [4167450, 1, 5, 2, 3, 55.9819], [4194304, 22, 0, 0, 0, 6.10912], [4199040, 7, 8, 1, 0, 7.15866], [4200000, 6, 1, 5, 1, 9.13517], [4201750, 1, 0, 3, 5, 91.2884], [4214784, 12, 1, 0, 3, 7.40218], [4218750, 1, 3, 7, 0, 92.0848], [4233600, 7, 3, 2, 2, 7.82739], [4235364, 2, 2, 0, 6, 9.74269], [4251528, 3, 12, 0, 0, 8.50048], [4252500, 2, 5, 4, 1, 10.6329], [4286520, 3, 7, 1, 2, 8.87952], [4287500, 2, 0, 5, 3, 11.0884], [4300800, 13, 1, 2, 1, 7.83702], [4302592, 8, 0, 0, 5, 7.8007], [4320000, 8, 3, 4, 0, 8.3417], [4321800, 3, 2, 2, 4, 9.60605], [4354560, 9, 5, 1, 1, 8.44982], [4374000, 4, 7, 3, 0, 9.00486], [4375000, 3, 0, 7, 1, 10.7549], [4390400, 9, 0, 2, 3, 8.98054], [4408992, 5, 9, 0, 1, 8.11882], [4410000, 4, 2, 4, 2, 9.61309], [4423680, 15, 3, 1, 0, 7.02592], [4428675, 0, 11, 2, 0, 65.2099], [4445280, 5, 4, 1, 3, 8.40176], [4465125, 0, 6, 3, 2, 65.3683], [4478976, 11, 7, 0, 0, 7.12413], [4480000, 10, 0, 4, 1, 9.18794], [4500000, 5, 2, 6, 0, 9.9296], [4500846, 1, 8, 0, 3, 94.0126], [4501875, 0, 1, 4, 4, 94.0422], [4515840, 11, 2, 1, 2, 7.64691], [4536000, 6, 4, 3, 1, 8.83427], [4537890, 1, 3, 1, 5, 94.2704], [4556250, 1, 6, 5, 0, 94.2684], [4572288, 7, 6, 0, 2, 7.74202], [4587520, 17, 0, 1, 1, 7.52157], [4592700, 2, 8, 2, 1, 10.6414], [4593750, 1, 1, 6, 2, 75.4332], [4608000, 12, 2, 3, 0, 8.41946], [4609920, 7, 1, 1, 4, 8.8753], [4630500, 2, 3, 3, 3, 11.2507], [4644864, 13, 4, 0, 1, 7.43398], [4665600, 8, 6, 2, 0, 8.29526], [4667544, 3, 5, 0, 4, 9.84653], [4687500, 2, 1, 8, 0, 13.0776], [4704000, 8, 1, 3, 2, 9.63744], [4705960, 3, 0, 1, 6, 10.3922], [4718592, 19, 2, 0, 0, 7.02899], [4723920, 4, 10, 1, 0, 9.4497], [4725000, 3, 3, 5, 1, 11.0261], [4741632, 9, 3, 0, 3, 8.99142], [4762800, 4, 5, 2, 2, 10.0472], [4782969, 0, 14, 0, 0, 88.7096], [4800000, 9, 1, 5, 0, 10.9669], [4802000, 4, 0, 3, 4, 10.5835], [4816896, 15, 1, 0, 2, 8.39254], [4822335, 0, 9, 1, 2, 87.7842], [4838400, 10, 3, 2, 1, 9.19283], [4840416, 5, 2, 0, 5, 9.20566], [4860000, 5, 5, 4, 0, 10.2388], [4862025, 0, 4, 2, 4, 80.8195], [4898880, 6, 7, 1, 1, 8.56803], [4900000, 5, 0, 5, 2, 10.7764], [4915200, 16, 1, 2, 0, 8.99267], [4917248, 11, 0, 0, 4, 8.53274], [4920750, 1, 9, 3, 0, 96.5599], [4921875, 0, 2, 7, 1, 79.4851], [4939200, 6, 2, 2, 3, 9.47939], [4941258, 1, 1, 0, 7, 79.552], [4960116, 2, 11, 0, 1, 10.7414], [4961250, 1, 4, 4, 2, 79.3874], [4976640, 12, 5, 1, 0, 8.7592], [5000000, 6, 0, 7, 0, 11.0827], [5000940, 2, 6, 1, 3, 11.1243], [5017600, 12, 0, 2, 2, 9.00736], [5038848, 8, 9, 0, 0, 8.74576], [5040000, 7, 2, 4, 1, 9.96579], [5042100, 2, 1, 2, 5, 12.7311], [5062500, 2, 4, 6, 0, 13.2921], [5080320, 8, 4, 1, 2, 9.02886], [5103000, 3, 6, 3, 1, 11.1201], [5120000, 13, 0, 4, 0, 9.52874], [5143824, 4, 8, 0, 2, 9.92067], [5145000, 3, 1, 4, 3, 12.595], [5160960, 14, 2, 1, 1, 8.43107], [5184000, 9, 4, 3, 0, 10.6664], [5186160, 4, 3, 1, 4, 10.4074], [5225472, 10, 6, 0, 1, 9.10432], [5242880, 20, 0, 1, 0, 8.09248], [5248800, 5, 8, 2, 0, 10.0658], [5250000, 4, 1, 6, 1, 12.7929], [5250987, 0, 7, 0, 4, 80.9551], [5268480, 10, 1, 1, 3, 10.4024], [5292000, 5, 3, 3, 2, 10.8304], [5294205, 0, 2, 1, 6, 80.5838], [5308416, 16, 4, 0, 0, 8.71642], [5314410, 1, 12, 1, 0, 104.461], [5315625, 0, 5, 5, 1, 96.8512], [5334336, 6, 5, 0, 3, 9.85347], [5358150, 1, 7, 2, 2, 96.9546], [5359375, 0, 0, 6, 3, 96.8276], [5376000, 11, 1, 3, 1, 10.6597], [5378240, 6, 0, 1, 5, 10.1836], [5400000, 6, 3, 5, 0, 11.116], [5402250, 1, 2, 3, 4, 105.645], [5419008, 12, 3, 0, 2, 8.8904], [5443200, 7, 5, 2, 1, 10.4077], [5445468, 2, 4, 0, 5, 12.6656], [5467500, 2, 7, 4, 0, 13.1156], [5468750, 1, 0, 8, 1, 85.6723], [5488000, 7, 0, 3, 3, 10.9865], [5505024, 18, 1, 0, 1, 8.98349], [5511240, 3, 9, 1, 1, 11.4315], [5512500, 2, 2, 5, 2, 14.0669], [5529600, 13, 3, 2, 0, 9.43578], [5531904, 8, 2, 0, 4, 9.8969], [5556600, 3, 4, 2, 3, 12.4714], [5598720, 9, 7, 1, 0, 10.3993], [5600000, 8, 0, 5, 1, 11.6607], [5619712, 14, 0, 0, 3, 9.45293], [5625000, 3, 2, 7, 0, 13.9164], [5644800, 9, 2, 2, 2, 11.4303], [5647152, 4, 1, 0, 6, 12.1499], [5668704, 5, 11, 0, 0, 9.99178], [5670000, 4, 4, 4, 1, 12.4207], [5715360, 5, 6, 1, 2, 10.5381], [5734400, 15, 0, 2, 1, 10.0942], [5760000, 10, 2, 4, 0, 11.6967], [5762400, 5, 1, 2, 4, 12.3349], [5806080, 11, 4, 1, 1, 9.87968], [5832000, 6, 6, 3, 0, 11.1023], [5878656, 7, 8, 0, 1, 10.1249], [5880000, 6, 1, 4, 2, 12.6544], [5898240, 17, 2, 1, 0, 9.57242], [5904900, 2, 10, 2, 0, 14.3278], [5927040, 7, 3, 1, 3, 10.6915], [5953500, 2, 5, 3, 2, 15.0974], [5971968, 13, 6, 0, 0, 9.26621], [6000000, 7, 1, 6, 0, 13.438], [6001128, 3, 7, 0, 3, 12.5548], [6002500, 2, 0, 4, 4, 15.1404], [6021120, 13, 1, 1, 2, 10.7564], [6048000, 8, 3, 3, 1, 11.6743], [6050520, 3, 2, 1, 5, 13.2767], [6075000, 3, 5, 5, 0, 14.2705], [6096384, 9, 5, 0, 2, 11.9843], [6123600, 4, 7, 2, 1, 12.4362], [6125000, 3, 0, 6, 2, 15.0907], [6144000, 14, 1, 3, 0, 12.2479], [6146560, 9, 0, 1, 4, 12.3142], [6174000, 4, 2, 3, 3, 13.5437], [6193152, 15, 3, 0, 1, 9.95158], [6220800, 10, 5, 2, 0, 12.2224], [6223392, 5, 4, 0, 4, 11.9257], [6250000, 4, 0, 8, 0, 15.4708], [6272000, 10, 0, 3, 2, 12.8882], [6291456, 21, 1, 0, 0, 10.0459], [6298560, 6, 9, 1, 0, 11.493], [6300000, 5, 2, 5, 1, 13.7503], [6322176, 11, 2, 0, 3, 10.8263], [6350400, 6, 4, 2, 2, 12.2541], [6377292, 2, 13, 0, 0, 14.366], [6400000, 11, 0, 5, 0, 12.9565], [6422528, 17, 0, 0, 2, 11.0986], [6429780, 2, 8, 1, 2, 14.733], [6451200, 12, 2, 2, 1, 11.4163], [6453888, 7, 1, 0, 5, 12.5182], [6480000, 7, 4, 4, 0, 12.8957], [6482700, 2, 3, 2, 4, 15.4869], [6531840, 8, 6, 1, 1, 11.2866], [6553600, 18, 0, 2, 0, 11.0476], [6561000, 3, 8, 3, 0, 14.6781], [6562500, 2, 1, 7, 1, 18.0726], [6585600, 8, 1, 2, 3, 13.3102], [6588344, 3, 0, 0, 7, 14.8257], [6613488, 4, 10, 0, 1, 13.3337], [6615000, 3, 3, 4, 2, 15.3446], [6635520, 14, 4, 1, 0, 10.9775], [6667920, 4, 5, 1, 3, 13.7768], [6718464, 10, 8, 0, 0, 11.9523], [6720000, 9, 1, 4, 1, 15.1817], [6722800, 4, 0, 2, 5, 14.6541], [6750000, 4, 3, 6, 0, 15.6917], [6773760, 10, 3, 1, 2, 12.6041], [6804000, 5, 5, 3, 1, 14.3403], [6858432, 6, 7, 0, 2, 12.1653], [6860000, 5, 0, 4, 3, 14.8884], [6881280, 16, 1, 1, 1, 12.2523], [6912000, 11, 3, 3, 0, 12.9419], [6914880, 6, 2, 1, 4, 12.9612], [6967296, 12, 5, 0, 1, 12.3936], [6998400, 7, 7, 2, 0, 12.8376], [7000000, 6, 0, 6, 1, 15.5407], [7001316, 2, 6, 0, 4, 15.6787], [7024640, 12, 0, 1, 3, 12.3004], [7056000, 7, 2, 3, 2, 14.0051], [7058940, 2, 1, 1, 6, 17.6191], [7077888, 18, 3, 0, 0, 10.9228], [7085880, 3, 11, 1, 0, 14.5767], [7087500, 2, 4, 5, 1, 18.3506], [7112448, 8, 4, 0, 3, 12.7557], [7144200, 3, 6, 2, 2, 15.4837], [7168000, 13, 0, 3, 1, 13.9678], [7200000, 8, 2, 5, 0, 14.8644], [7203000, 3, 1, 3, 4, 17.577], [7225344, 14, 2, 0, 2, 12.0301], [7257600, 9, 4, 2, 1, 14.7243], [7260624, 4, 3, 0, 5, 14.7058], [7290000, 4, 6, 4, 0, 15.5945], [7340032, 20, 0, 0, 1, 11.4738], [7348320, 5, 8, 1, 1, 13.7446], [7350000, 4, 1, 5, 2, 17.7968], [7372800, 15, 2, 2, 0, 12.8451], [7375872, 10, 1, 0, 4, 14.722], [7408800, 5, 3, 2, 3, 14.9382], [7464960, 11, 6, 1, 0, 12.3786], [7500000, 5, 1, 7, 0, 18.1124], [7526400, 11, 1, 2, 2, 14.6943], [7529536, 6, 0, 0, 6, 14.4428], [7558272, 7, 10, 0, 0, 13.8043], [7560000, 6, 3, 4, 1, 15.4271], [7620480, 7, 5, 1, 2, 14.2674], [7654500, 2, 7, 3, 1, 18.7126], [7680000, 12, 1, 4, 0, 15.4501], [7683200, 7, 0, 2, 4, 15.2165], [7715736, 3, 9, 0, 2, 16.1571], [7717500, 2, 2, 4, 3, 19.4282], [7741440, 13, 3, 1, 1, 12.8453], [7776000, 8, 5, 3, 0, 15.5519], [7779240, 3, 4, 1, 4, 17.2083], [7812500, 2, 0, 9, 0, 22.6084], [7838208, 9, 7, 0, 1, 14.674], [7840000, 8, 0, 4, 2, 16.192], [7864320, 19, 1, 1, 0, 13.2884], [7873200, 4, 9, 2, 0, 16.5062], [7875000, 3, 2, 6, 1, 19.5396], [7902720, 9, 2, 1, 3, 15.6293], [7938000, 4, 4, 3, 2, 17.4345], [7962624, 15, 5, 0, 0, 14.8383], [8000000, 9, 0, 6, 0, 18.6743], [8001504, 5, 6, 0, 3, 14.8871], [8028160, 15, 0, 1, 2, 13.9324], [8064000, 10, 2, 3, 1, 16.3654], [8067360, 5, 1, 1, 5, 16.8577], [8100000, 5, 4, 5, 0, 17.7572], [8128512, 11, 4, 0, 2, 14.0404], [8164800, 6, 6, 2, 1, 15.3597], [8192000, 16, 0, 3, 0, 16.2104], [8232000, 6, 1, 3, 3, 17.7507], [8257536, 17, 2, 0, 1, 13.5523], [8266860, 2, 10, 1, 1, 19.9018], [8294400, 12, 4, 2, 0, 14.7823], [8297856, 7, 3, 0, 4, 15.1608], [8334900, 2, 5, 2, 3, 20.8521], [8388608, 23, 0, 0, 0, 12.6145], [8398080, 8, 8, 1, 0, 14.8305], [8400000, 7, 1, 5, 1, 18.5965], [8403500, 2, 0, 3, 5, 21.701], [8429568, 13, 1, 0, 3, 15.2328], [8437500, 2, 3, 7, 0, 22.3829], [8467200, 8, 3, 2, 2, 16.1657], [8470728, 3, 2, 0, 6, 18.801], [8503056, 4, 12, 0, 0, 16.2926], [8505000, 3, 5, 4, 1, 19.9011], [8573040, 4, 7, 1, 2, 17.1053], [8575000, 3, 0, 5, 3, 21.0114], [8601600, 14, 1, 2, 1, 16.3188], [8605184, 9, 0, 0, 5, 17.4342], [8640000, 9, 3, 4, 0, 18.5852], [8643600, 4, 2, 2, 4, 18.6768], [8709120, 10, 5, 1, 1, 16.7034], [8748000, 5, 7, 3, 0, 17.7935], [8750000, 4, 0, 7, 1, 21.4372], [8780800, 10, 0, 2, 3, 17.839], [8817984, 6, 9, 0, 1, 16.2091], [8820000, 5, 2, 4, 2, 18.9938], [8847360, 16, 3, 1, 0, 14.7758], [8890560, 6, 4, 1, 3, 16.746], [8957952, 12, 7, 0, 0, 14.572], [8960000, 11, 0, 4, 1, 17.8058], [9000000, 6, 2, 6, 0, 19.7813], [9001692, 2, 8, 0, 3, 20.8148], [9031680, 12, 2, 1, 2, 15.6517], [9072000, 7, 4, 3, 1, 18.0638], [9075780, 2, 3, 1, 5, 21.5274], [9112500, 2, 6, 5, 0, 22.8231], [9144576, 8, 6, 0, 2, 16.0458], [9175040, 18, 0, 1, 1, 14.9285], [9185400, 3, 8, 2, 1, 20.5059], [9187500, 2, 1, 6, 2, 25.6757], [9216000, 13, 2, 3, 0, 17.7713], [9219840, 8, 1, 1, 4, 18.2981], [9261000, 3, 3, 3, 3, 21.5448], [9289728, 14, 4, 0, 1, 15.5507], [9331200, 9, 6, 2, 0, 18.6114], [9335088, 4, 5, 0, 4, 19.5447], [9375000, 3, 1, 8, 0, 25.1701], [9408000, 9, 1, 3, 2, 21.3459], [9411920, 4, 0, 1, 6, 20.2183], [9437184, 20, 2, 0, 0, 14.5817], [9447840, 5, 10, 1, 0, 18.7269], [9450000, 4, 3, 5, 1, 21.7414], [9483264, 10, 3, 0, 3, 17.8242], [9525600, 5, 5, 2, 2, 19.878], [9600000, 10, 1, 5, 0, 21.8173], [9604000, 5, 0, 3, 4, 20.9279], [9633792, 16, 1, 0, 2, 17.5906], [9676800, 11, 3, 2, 1, 17.7481], [9680832, 6, 2, 0, 5, 18.3344], [9720000, 6, 5, 4, 0, 20.4289], [9797760, 7, 7, 1, 1, 17.5291], [9800000, 6, 0, 5, 2, 21.4852], [9830400, 17, 1, 2, 0, 18.722], [9834496, 12, 0, 0, 4, 17.4603], [9841500, 2, 9, 3, 0, 24.8556], [9878400, 7, 2, 2, 3, 19.296], [9882516, 2, 1, 0, 7, 25.039], [9920232, 3, 11, 0, 1, 20.6717], [9922500, 2, 4, 4, 2, 25.283], [9953280, 13, 5, 1, 0, 18.8077], [10000000, 7, 0, 7, 0, 22.5719], [10001880, 3, 6, 1, 3, 21.3905], [10035200, 13, 0, 2, 2, 18.5617], [10077696, 9, 9, 0, 0, 19.7234], [10080000, 8, 2, 4, 1, 20.531], [10084200, 3, 1, 2, 5, 24.6182], [10125000, 3, 4, 6, 0, 25.2058], [10160640, 9, 4, 1, 2, 20.2512], [10206000, 4, 6, 3, 1, 21.842], [10240000, 14, 0, 4, 0, 19.8667], [10287648, 5, 8, 0, 2, 19.5326], [10290000, 4, 1, 4, 3, 24.6593], [10321920, 15, 2, 1, 1, 17.4777], [10368000, 10, 4, 3, 0, 21.1834], [10372320, 5, 3, 1, 4, 20.5316], [10450944, 11, 6, 0, 1, 17.5407], [10485760, 21, 0, 1, 0, 16.7063], [10497600, 6, 8, 2, 0, 20.1257], [10500000, 5, 1, 6, 1, 25.3834], [10536960, 11, 1, 1, 3, 20.0919], [10584000, 6, 3, 3, 2, 21.594], [10616832, 17, 4, 0, 0, 18.8855], [10628820, 2, 12, 1, 0, 24.2535], [10668672, 7, 5, 0, 3, 20.1652], [10716300, 2, 7, 2, 2, 25.7277], [10752000, 12, 1, 3, 1, 22.0331], [10756480, 7, 0, 1, 5, 20.8007], [10800000, 7, 3, 5, 0, 22.6949], [10804500, 2, 2, 3, 4, 27.572], [10838016, 13, 3, 0, 2, 18.37], [10886400, 8, 5, 2, 1, 21.5044], [10890936, 3, 4, 0, 5, 24.3898], [10935000, 3, 7, 4, 0, 25.461], [10937500, 2, 0, 8, 1, 31.2724], [10976000, 8, 0, 3, 3, 22.6652], [11010048, 19, 1, 0, 1, 18.8178], [11022480, 4, 9, 1, 1, 22.6655], [11025000, 3, 2, 5, 2, 27.2728], [11059200, 14, 3, 2, 0, 19.7541], [11063808, 9, 2, 0, 4, 22.2071], [11113200, 4, 4, 2, 3, 24.1149], [11197440, 10, 7, 1, 0, 20.6786], [11200000, 9, 0, 5, 1, 25.8887], [11239424, 15, 0, 0, 3, 19.7343], [11250000, 4, 2, 7, 0, 27.5196], [11289600, 10, 2, 2, 2, 22.7448], [11294304, 5, 1, 0, 6, 23.9318], [11337408, 6, 11, 0, 0, 19.9831], [11340000, 5, 4, 4, 1, 24.5298], [11430720, 6, 6, 1, 2, 21.062], [11468800, 16, 0, 2, 1, 21.1206], [11520000, 11, 2, 4, 0, 22.6996], [11524800, 6, 1, 2, 4, 24.6208], [11573604, 2, 10, 0, 2, 28.1392], [11612160, 12, 4, 1, 1, 20.1888], [11664000, 7, 6, 3, 0, 22.7963], [11668860, 2, 5, 1, 4, 28.9624], [11757312, 8, 8, 0, 1, 20.9751], [11760000, 7, 1, 4, 2, 25.8611], [11764900, 2, 0, 2, 6, 29.7876], [11796480, 18, 2, 1, 0, 18.967], [11809800, 3, 10, 2, 0, 26.4664], [11812500, 2, 3, 6, 1, 31.8721], [11854080, 8, 3, 1, 3, 22.102], [11907000, 3, 5, 3, 2, 27.9575], [11943936, 14, 6, 0, 0, 19.4736], [12000000, 8, 1, 6, 0, 27.6478], [12002256, 4, 7, 0, 3, 24.1821], [12005000, 3, 0, 4, 4, 29.6726], [12042240, 14, 1, 1, 2, 22.4604], [12096000, 9, 3, 3, 1, 26.0749], [12101040, 4, 2, 1, 5, 25.625], [12150000, 4, 5, 5, 0, 28.7484], [12192768, 10, 5, 0, 2, 23.7524], [12247200, 5, 7, 2, 1, 24.6034], [12250000, 4, 0, 6, 2, 30.1588], [12288000, 15, 1, 3, 0, 25.7934], [12293120, 10, 0, 1, 4, 24.5572], [12348000, 5, 2, 3, 3, 26.705], [12386304, 16, 3, 0, 1, 20.9519], [12441600, 11, 5, 2, 0, 23.9959], [12446784, 6, 4, 0, 4, 23.8159], [12500000, 5, 0, 8, 0, 30.7764], [12544000, 11, 0, 3, 2, 25.2124], [12582912, 22, 1, 0, 0, 20.8677], [12597120, 7, 9, 1, 0, 23.4697], [12600000, 6, 2, 5, 1, 27.4215], [12644352, 12, 2, 0, 3, 22.1601], [12700800, 7, 4, 2, 2, 25.0288], [12706092, 2, 3, 0, 6, 30.434], [12754584, 3, 13, 0, 0, 26.6919], [12757500, 2, 6, 4, 1, 31.4863], [12800000, 12, 0, 5, 0, 26.7908], [12845056, 18, 0, 0, 2, 22.035], [12859560, 3, 8, 1, 2, 28.3771], [12862500, 2, 1, 5, 3, 35.4348], [12902400, 13, 2, 2, 1, 23.447], [12907776, 8, 1, 0, 5, 25.8412], [12960000, 8, 4, 4, 0, 26.6184], [12965400, 3, 3, 2, 4, 30.0509], [13063680, 9, 6, 1, 1, 25.4881], [13107200, 19, 0, 2, 0, 23.1662], [13122000, 4, 8, 3, 0, 28.6494], [13125000, 3, 1, 7, 1, 35.1931], [13171200, 9, 1, 2, 3, 29.5114], [13176688, 4, 0, 0, 7, 28.518], [13226976, 5, 10, 0, 1, 26.4543], [13230000, 4, 3, 4, 2, 30.2202], [13271040, 15, 4, 1, 0, 23.2876], [13335840, 5, 5, 1, 3, 27.2679], [13436928, 11, 8, 0, 0, 23.0972], [13440000, 10, 1, 4, 1, 30.2455], [13445600, 5, 0, 2, 5, 28.9691], [13500000, 5, 3, 6, 0, 31.1197], [13547520, 11, 3, 1, 2, 24.3784], [13608000, 6, 5, 3, 1, 28.6106], [13716864, 7, 7, 0, 2, 24.9194], [13720000, 6, 0, 4, 3, 29.7525], [13762560, 17, 1, 1, 1, 25.3633], [13778100, 2, 9, 2, 1, 34.3315], [13824000, 12, 3, 3, 0, 26.8375], [13829760, 7, 2, 1, 4, 26.5249], [13891500, 2, 4, 3, 3, 36.0205], [13934592, 13, 5, 0, 1, 26.5995], [13996800, 8, 7, 2, 0, 26.5629], [14000000, 7, 0, 6, 1, 31.6666], [14002632, 3, 6, 0, 4, 30.3778], [14049280, 13, 0, 1, 3, 25.3156], [14062500, 2, 2, 8, 0, 39.6696], [14112000, 8, 2, 3, 2, 28.8916], [14117880, 3, 1, 1, 6, 34.1268], [14155776, 19, 3, 0, 0, 22.9764], [14171760, 4, 11, 1, 0, 28.1382], [14175000, 3, 4, 5, 1, 35.2194], [14224896, 9, 4, 0, 3, 28.6051], [14288400, 4, 6, 2, 2, 30.3826], [14336000, 14, 0, 3, 1, 28.8434], [14400000, 9, 2, 5, 0, 32.871], [14406000, 4, 1, 3, 4, 34.7057], [14450688, 15, 2, 0, 2, 25.1764], [14515200, 10, 4, 2, 1, 29.3387], [14521248, 5, 3, 0, 5, 28.9961], [14580000, 5, 6, 4, 0, 30.9132], [14680064, 21, 0, 0, 1, 23.6749], [14696640, 6, 8, 1, 1, 27.5068], [14700000, 5, 1, 5, 2, 35.2856], [14745600, 16, 2, 2, 0, 26.9007], [14751744, 11, 1, 0, 4, 28.5916], [14817600, 6, 3, 2, 3, 29.8849], [14880348, 2, 12, 0, 1, 34.3715], [14929920, 12, 6, 1, 0, 25.3761], [15000000, 6, 1, 7, 0, 36.2484], [15002820, 2, 7, 1, 3, 35.7495], [15052800, 12, 1, 2, 2, 30.0644], [15059072, 7, 0, 0, 6, 29.5536], [15116544, 8, 10, 0, 0, 28.6213], [15120000, 7, 3, 4, 1, 31.4076], [15126300, 2, 2, 2, 5, 38.0546], [15187500, 2, 5, 6, 0, 42.6765], [15240960, 8, 5, 1, 2, 29.568], [15309000, 3, 7, 3, 1, 35.6646], [15312500, 2, 0, 7, 2, 43.0259], [15360000, 13, 1, 4, 0, 31.7201], [15366400, 8, 0, 2, 4, 31.4658], [15431472, 4, 9, 0, 2, 32.1409], [15435000, 3, 2, 4, 3, 37.8291], [15482880, 14, 3, 1, 1, 26.9436], [15552000, 9, 5, 3, 0, 34.6151], [15558480, 4, 4, 1, 4, 33.2774], [15625000, 3, 0, 9, 0, 42.3498], [15676416, 10, 7, 0, 1, 29.25], [15680000, 9, 0, 4, 2, 35.8506], [15728640, 20, 1, 1, 0, 27.4887], [15746400, 5, 9, 2, 0, 32.8143], [15750000, 4, 2, 6, 1, 38.6586], [15805440, 10, 2, 1, 3, 31.1356], [15876000, 5, 4, 3, 2, 34.5927], [15925248, 16, 5, 0, 0, 31.214], [16000000, 10, 0, 6, 0, 37.044], [16003008, 6, 6, 0, 3, 29.737], [16056320, 16, 0, 1, 2, 29.2774], [16128000, 11, 2, 3, 1, 31.9992], [16134720, 6, 1, 1, 5, 33.673], [16200000, 6, 4, 5, 0, 35.4291], [16257024, 12, 4, 0, 2, 28.7397], [16329600, 7, 6, 2, 1, 31.3767], [16336404, 2, 5, 0, 5, 40.9124], [16384000, 17, 0, 3, 0, 35.0228], [16402500, 2, 8, 4, 0, 41.7042], [16464000, 7, 1, 3, 3, 36.2036], [16470860, 2, 0, 1, 7, 41.5812], [16515072, 18, 2, 0, 1, 26.9012], [16533720, 3, 10, 1, 1, 36.5575], [16537500, 2, 3, 5, 2, 43.9798], [16588800, 13, 4, 2, 0, 30.5832], [16595712, 8, 3, 0, 4, 31.4204], [16669800, 3, 5, 2, 3, 39.0163],
true
true
f7f3d71dda4b8914f21ffb70f5e7589dda8b5d78
1,083
py
Python
large_app/python/api/auth/__init__.py
sahilGupta89/large_flask_app
e1ab54431bb935c02186f586d9246b741d9f2d33
[ "MIT" ]
null
null
null
large_app/python/api/auth/__init__.py
sahilGupta89/large_flask_app
e1ab54431bb935c02186f586d9246b741d9f2d33
[ "MIT" ]
null
null
null
large_app/python/api/auth/__init__.py
sahilGupta89/large_flask_app
e1ab54431bb935c02186f586d9246b741d9f2d33
[ "MIT" ]
null
null
null
from flask import current_app, Response from flask_login import LoginManager from models import User from . import basic_auth from . import token_auth login_manager = LoginManager() @login_manager.request_loader def load_user_from_auth_header(req) -> User: """Try via both http basic check and token auth to get a user object from our database to match an authorized user""" methods = [ basic_auth.user_from_basic_auth_request, token_auth.user_from_access_token, ] for method in methods: user = method(req) if user: return user # Failed to get decent login if req.headers.get("authorization"): current_app.logger.warning( "Failed login for %s", (req.authorization or {}).get("username") ) return None @login_manager.unauthorized_handler def unauth(): return Response( "Could not verify your access level for that URL.\n" "You have to login with proper credentials", 401, {"WWW-Authenticate": 'Basic realm="Login Required"'}, )
24.066667
77
0.67313
from flask import current_app, Response from flask_login import LoginManager from models import User from . import basic_auth from . import token_auth login_manager = LoginManager() @login_manager.request_loader def load_user_from_auth_header(req) -> User: methods = [ basic_auth.user_from_basic_auth_request, token_auth.user_from_access_token, ] for method in methods: user = method(req) if user: return user if req.headers.get("authorization"): current_app.logger.warning( "Failed login for %s", (req.authorization or {}).get("username") ) return None @login_manager.unauthorized_handler def unauth(): return Response( "Could not verify your access level for that URL.\n" "You have to login with proper credentials", 401, {"WWW-Authenticate": 'Basic realm="Login Required"'}, )
true
true
f7f3d8312041ef4bf86cc887dfcb2312a5d2e012
3,092
py
Python
nets.py
AugustasVol/written_test_automation
80d3295f741f4aaa3abaa4e85f20677ff59c146d
[ "MIT" ]
null
null
null
nets.py
AugustasVol/written_test_automation
80d3295f741f4aaa3abaa4e85f20677ff59c146d
[ "MIT" ]
null
null
null
nets.py
AugustasVol/written_test_automation
80d3295f741f4aaa3abaa4e85f20677ff59c146d
[ "MIT" ]
null
null
null
import numpy as np import torch import torch.autograd as autograd import torch.nn as nn import torch.nn.functional as F import torch.optim as optim class net_base: def trainer(self, x,y, epochs = 1, print_loss = True): self.train(True) for i in range(epochs): self.optimizer.zero_grad() # zero the gradient buffers output = self(x) loss = self.loss_function(output, y) loss.backward() if print_loss: print(loss) self.optimizer.step() # Does the update self.train(False) def numpy_forward(self, x): if x.dtype == np.uint8: x = x / 255 x = x.astype(np.float32) x = torch.from_numpy(x) x = autograd.Variable(x) output = self(x) return output.data.numpy() def numpy_train(self,x,y, epochs = 1, print_loss = True): if x.dtype == np.uint8: x = x / 255 x = x.astype(np.float32) y = y.astype(np.float32) x = torch.from_numpy(x) y = torch.from_numpy(y) x = autograd.Variable(x) y = autograd.Variable(y) self.trainer(x,y, epochs = epochs, print_loss = print_loss) def load_weights(self, path): self.load_state_dict(torch.load(path)) def save_weights(self,path): torch.save(self.state_dict(), path) class answer_model(nn.Module, net_base): def __init__(self, category_number = 6): super(answer_model, self).__init__() self.dropout = nn.Dropout(0.05) #self.conv_start = nn.Conv2d(1, 16, (3,3), stride=(1,1), padding=(1,1)) self.conv00 = nn.Conv2d(1, 15, (2,2), stride=(2,2)) self.conv01 = nn.Conv2d(15, 16, (2,2), stride=(2,2)) self.conv02 = nn.Conv2d(16, 16, (1,1), stride=(1,1)) self.conv10 = nn.Conv2d(16, 32, (3,3), stride=(3,3)) self.conv11 = nn.Conv2d(32,32, (2,2), stride=(1,1)) self.conv12 = nn.Conv2d(32,32, (1,1), stride=(1,1)) self.conv20 = nn.Conv2d(32, 16, (1,5), stride=(1,2)) self.conv21 = nn.Conv2d(16, 16, (1,5), stride=(1,2)) self.conv22 = nn.Conv2d(16, 6, (1,1), stride=(1,1)) self.final_dense = nn.Linear(6,category_number) self.loss_function = nn.BCELoss() self.optimizer = optim.Adam(self.parameters(), lr = 0.0001) self.train(False) def forward(self,x): #x = F.relu(self.conv_start(x)) #x = self.dropout(x) x = F.relu(self.conv00(x)) x = F.relu(self.conv01(x)) x = F.relu(self.conv02(x)) x = self.dropout(x) x = F.relu(self.conv10(x)) x = F.relu(self.conv11(x)) x = F.relu(self.conv12(x)) x = self.dropout(x) x = F.relu(self.conv20(x)) x = F.relu(self.conv21(x)) x = F.relu(self.conv22(x)) x = x.view(-1, 6) x = F.sigmoid(self.final_dense(x)) return x
27.607143
79
0.529431
import numpy as np import torch import torch.autograd as autograd import torch.nn as nn import torch.nn.functional as F import torch.optim as optim class net_base: def trainer(self, x,y, epochs = 1, print_loss = True): self.train(True) for i in range(epochs): self.optimizer.zero_grad() output = self(x) loss = self.loss_function(output, y) loss.backward() if print_loss: print(loss) self.optimizer.step() self.train(False) def numpy_forward(self, x): if x.dtype == np.uint8: x = x / 255 x = x.astype(np.float32) x = torch.from_numpy(x) x = autograd.Variable(x) output = self(x) return output.data.numpy() def numpy_train(self,x,y, epochs = 1, print_loss = True): if x.dtype == np.uint8: x = x / 255 x = x.astype(np.float32) y = y.astype(np.float32) x = torch.from_numpy(x) y = torch.from_numpy(y) x = autograd.Variable(x) y = autograd.Variable(y) self.trainer(x,y, epochs = epochs, print_loss = print_loss) def load_weights(self, path): self.load_state_dict(torch.load(path)) def save_weights(self,path): torch.save(self.state_dict(), path) class answer_model(nn.Module, net_base): def __init__(self, category_number = 6): super(answer_model, self).__init__() self.dropout = nn.Dropout(0.05) self.conv00 = nn.Conv2d(1, 15, (2,2), stride=(2,2)) self.conv01 = nn.Conv2d(15, 16, (2,2), stride=(2,2)) self.conv02 = nn.Conv2d(16, 16, (1,1), stride=(1,1)) self.conv10 = nn.Conv2d(16, 32, (3,3), stride=(3,3)) self.conv11 = nn.Conv2d(32,32, (2,2), stride=(1,1)) self.conv12 = nn.Conv2d(32,32, (1,1), stride=(1,1)) self.conv20 = nn.Conv2d(32, 16, (1,5), stride=(1,2)) self.conv21 = nn.Conv2d(16, 16, (1,5), stride=(1,2)) self.conv22 = nn.Conv2d(16, 6, (1,1), stride=(1,1)) self.final_dense = nn.Linear(6,category_number) self.loss_function = nn.BCELoss() self.optimizer = optim.Adam(self.parameters(), lr = 0.0001) self.train(False) def forward(self,x): x = F.relu(self.conv00(x)) x = F.relu(self.conv01(x)) x = F.relu(self.conv02(x)) x = self.dropout(x) x = F.relu(self.conv10(x)) x = F.relu(self.conv11(x)) x = F.relu(self.conv12(x)) x = self.dropout(x) x = F.relu(self.conv20(x)) x = F.relu(self.conv21(x)) x = F.relu(self.conv22(x)) x = x.view(-1, 6) x = F.sigmoid(self.final_dense(x)) return x
true
true
f7f3d90f5832134a2e7cb2c39538f43934bdca5b
872
py
Python
style_transfer.py
Markek1/style-transfer-gui
14892d3c657242c4825129b56a6668904f53a65e
[ "MIT" ]
null
null
null
style_transfer.py
Markek1/style-transfer-gui
14892d3c657242c4825129b56a6668904f53a65e
[ "MIT" ]
null
null
null
style_transfer.py
Markek1/style-transfer-gui
14892d3c657242c4825129b56a6668904f53a65e
[ "MIT" ]
null
null
null
import os import tensorflow as tf def magenta_v1_256_2(content_image, style_image, resize=False, content_res=None, style_res=None): '''Resolution of generated image = resolution of content image. Resolution of the style image is 256x256 by default because the net was trained on it and it generally works best''' if resize: if content_res: content_image = tf.image.resize(content_image, content_res) if style_res: style_image = tf.image.resize(style_image, style_res) else: style_image = tf.image.resize(style_image, (256, 256)) local_path = 'models/magenta_arbitrary-image-stylization-v1-256_2' if os.path.exists(local_path): model = tf.saved_model.load(local_path) image = tf.squeeze(model(tf.constant(content_image), tf.constant(style_image))[0]) return image
39.636364
97
0.700688
import os import tensorflow as tf def magenta_v1_256_2(content_image, style_image, resize=False, content_res=None, style_res=None): if resize: if content_res: content_image = tf.image.resize(content_image, content_res) if style_res: style_image = tf.image.resize(style_image, style_res) else: style_image = tf.image.resize(style_image, (256, 256)) local_path = 'models/magenta_arbitrary-image-stylization-v1-256_2' if os.path.exists(local_path): model = tf.saved_model.load(local_path) image = tf.squeeze(model(tf.constant(content_image), tf.constant(style_image))[0]) return image
true
true
f7f3d9f83ec1b524ee082ad6285d34840c85e44a
4,784
py
Python
panel/tests/widgets/test_base.py
robmarkcole/panel
8d28c99d8dba00ac44e1a8c1d534b96748c5513e
[ "BSD-3-Clause" ]
1
2022-03-15T01:18:39.000Z
2022-03-15T01:18:39.000Z
panel/tests/widgets/test_base.py
robmarkcole/panel
8d28c99d8dba00ac44e1a8c1d534b96748c5513e
[ "BSD-3-Clause" ]
null
null
null
panel/tests/widgets/test_base.py
robmarkcole/panel
8d28c99d8dba00ac44e1a8c1d534b96748c5513e
[ "BSD-3-Clause" ]
null
null
null
import param import pytest from panel.io import block_comm from panel.layout import Row from panel.links import CallbackGenerator from panel.widgets import ( CompositeWidget, Dial, FileDownload, FloatSlider, TextInput, Terminal, ToggleGroup, Tqdm, Widget ) from panel.widgets.tables import BaseTable from panel.tests.util import check_layoutable_properties excluded = ( BaseTable, CompositeWidget, Dial, FileDownload, ToggleGroup, Terminal, Tqdm ) all_widgets = [ w for w in param.concrete_descendents(Widget).values() if not w.__name__.startswith('_') and not issubclass(w, excluded) ] @pytest.mark.parametrize('widget', all_widgets) def test_widget_signature(widget): from inspect import signature parameters = signature(widget).parameters assert len(parameters) == 1 @pytest.mark.parametrize('widget', all_widgets) def test_widget_linkable_params(widget): w = widget() controls = w.controls(jslink=True) layout = Row(w, controls) try: CallbackGenerator.error = True layout.get_root() finally: CallbackGenerator.error = False @pytest.mark.parametrize('widget', all_widgets) def test_widget_layout_properties(widget, document, comm): w = widget() model = w.get_root(document, comm) check_layoutable_properties(w, model) @pytest.mark.parametrize('widget', all_widgets) def test_widget_disabled_properties(widget, document, comm): w = widget(disabled=True) model = w.get_root(document, comm) assert model.disabled == True model.disabled = False assert model.disabled == False @pytest.mark.parametrize('widget', all_widgets) def test_widget_clone(widget): w = widget() clone = w.clone() assert ([(k, v) for k, v in sorted(w.param.values().items()) if k != 'name'] == [(k, v) for k, v in sorted(clone.param.values().items()) if k != 'name']) @pytest.mark.parametrize('widget', all_widgets) def test_widget_clone_override(widget): w = widget() clone = w.clone(width=50) assert ([(k, v) for k, v in sorted(w.param.values().items()) if k not in ['name', 'width']] == [(k, v) for k, v in sorted(clone.param.values().items()) if k not in ['name', 'width']]) assert clone.width == 50 assert w.width is widget.width @pytest.mark.parametrize('widget', all_widgets) def test_widget_model_cache_cleanup(widget, document, comm): w = widget() model = w.get_root(document, comm) assert model.ref['id'] in w._models assert w._models[model.ref['id']] == (model, None) w._cleanup(model) assert w._models == {} def test_widget_triggers_events(document, comm): """ Ensure widget events don't get swallowed in comm mode """ text = TextInput(value='ABC', name='Text:') widget = text.get_root(document, comm=comm) document.add_root(widget) document.hold() # Simulate client side change document.callbacks._held_events = document.callbacks._held_events[:-1] # Set new value with block_comm(): text.value = '123' assert len(document.callbacks._held_events) == 1 event = document.callbacks._held_events[0] assert event.attr == 'value' assert event.model is widget assert event.new == '123' def test_widget_from_param_cls(): class Test(param.Parameterized): a = param.Parameter() widget = TextInput.from_param(Test.param.a) assert isinstance(widget, TextInput) assert widget.name == 'A' Test.a = 'abc' assert widget.value == 'abc' widget.value = 'def' assert Test.a == 'def' def test_widget_from_param_negative_precedence(): class Test(param.Parameterized): a = param.Parameter(precedence=-1) widget = TextInput.from_param(Test.param.a) assert isinstance(widget, TextInput) assert widget.name == 'A' Test.a = 'abc' assert widget.value == 'abc' widget.value = 'def' assert Test.a == 'def' def test_widget_from_param_instance(): class Test(param.Parameterized): a = param.Parameter() test = Test() widget = TextInput.from_param(test.param.a) assert isinstance(widget, TextInput) assert widget.name == 'A' test.a = 'abc' assert widget.value == 'abc' widget.value = 'def' assert test.a == 'def' def test_widget_from_param_instance_with_kwargs(): class Test(param.Parameterized): a = param.Number(default=3.14) test = Test() widget = FloatSlider.from_param(test.param.a, start=0.3, end=5.2) assert isinstance(widget, FloatSlider) assert widget.name == 'A' assert widget.start == 0.3 assert widget.end == 5.2 assert widget.value == 3.14 test.a = 1.57 assert widget.value == 1.57 widget.value = 4.3 assert test.a == 4.3
25.582888
100
0.675585
import param import pytest from panel.io import block_comm from panel.layout import Row from panel.links import CallbackGenerator from panel.widgets import ( CompositeWidget, Dial, FileDownload, FloatSlider, TextInput, Terminal, ToggleGroup, Tqdm, Widget ) from panel.widgets.tables import BaseTable from panel.tests.util import check_layoutable_properties excluded = ( BaseTable, CompositeWidget, Dial, FileDownload, ToggleGroup, Terminal, Tqdm ) all_widgets = [ w for w in param.concrete_descendents(Widget).values() if not w.__name__.startswith('_') and not issubclass(w, excluded) ] @pytest.mark.parametrize('widget', all_widgets) def test_widget_signature(widget): from inspect import signature parameters = signature(widget).parameters assert len(parameters) == 1 @pytest.mark.parametrize('widget', all_widgets) def test_widget_linkable_params(widget): w = widget() controls = w.controls(jslink=True) layout = Row(w, controls) try: CallbackGenerator.error = True layout.get_root() finally: CallbackGenerator.error = False @pytest.mark.parametrize('widget', all_widgets) def test_widget_layout_properties(widget, document, comm): w = widget() model = w.get_root(document, comm) check_layoutable_properties(w, model) @pytest.mark.parametrize('widget', all_widgets) def test_widget_disabled_properties(widget, document, comm): w = widget(disabled=True) model = w.get_root(document, comm) assert model.disabled == True model.disabled = False assert model.disabled == False @pytest.mark.parametrize('widget', all_widgets) def test_widget_clone(widget): w = widget() clone = w.clone() assert ([(k, v) for k, v in sorted(w.param.values().items()) if k != 'name'] == [(k, v) for k, v in sorted(clone.param.values().items()) if k != 'name']) @pytest.mark.parametrize('widget', all_widgets) def test_widget_clone_override(widget): w = widget() clone = w.clone(width=50) assert ([(k, v) for k, v in sorted(w.param.values().items()) if k not in ['name', 'width']] == [(k, v) for k, v in sorted(clone.param.values().items()) if k not in ['name', 'width']]) assert clone.width == 50 assert w.width is widget.width @pytest.mark.parametrize('widget', all_widgets) def test_widget_model_cache_cleanup(widget, document, comm): w = widget() model = w.get_root(document, comm) assert model.ref['id'] in w._models assert w._models[model.ref['id']] == (model, None) w._cleanup(model) assert w._models == {} def test_widget_triggers_events(document, comm): text = TextInput(value='ABC', name='Text:') widget = text.get_root(document, comm=comm) document.add_root(widget) document.hold() document.callbacks._held_events = document.callbacks._held_events[:-1] with block_comm(): text.value = '123' assert len(document.callbacks._held_events) == 1 event = document.callbacks._held_events[0] assert event.attr == 'value' assert event.model is widget assert event.new == '123' def test_widget_from_param_cls(): class Test(param.Parameterized): a = param.Parameter() widget = TextInput.from_param(Test.param.a) assert isinstance(widget, TextInput) assert widget.name == 'A' Test.a = 'abc' assert widget.value == 'abc' widget.value = 'def' assert Test.a == 'def' def test_widget_from_param_negative_precedence(): class Test(param.Parameterized): a = param.Parameter(precedence=-1) widget = TextInput.from_param(Test.param.a) assert isinstance(widget, TextInput) assert widget.name == 'A' Test.a = 'abc' assert widget.value == 'abc' widget.value = 'def' assert Test.a == 'def' def test_widget_from_param_instance(): class Test(param.Parameterized): a = param.Parameter() test = Test() widget = TextInput.from_param(test.param.a) assert isinstance(widget, TextInput) assert widget.name == 'A' test.a = 'abc' assert widget.value == 'abc' widget.value = 'def' assert test.a == 'def' def test_widget_from_param_instance_with_kwargs(): class Test(param.Parameterized): a = param.Number(default=3.14) test = Test() widget = FloatSlider.from_param(test.param.a, start=0.3, end=5.2) assert isinstance(widget, FloatSlider) assert widget.name == 'A' assert widget.start == 0.3 assert widget.end == 5.2 assert widget.value == 3.14 test.a = 1.57 assert widget.value == 1.57 widget.value = 4.3 assert test.a == 4.3
true
true
f7f3d9fa4822c626cc3ed2ceaac1567d407ca197
813
py
Python
hfpy_code/chapter11/find_it.py
leobarros/use_cabeca_python
4e0897a68fb7ef669ec05eab7cba9412baa0e85e
[ "Apache-2.0" ]
1
2016-04-01T04:31:52.000Z
2016-04-01T04:31:52.000Z
hfpython_code/hfpy_code/chapter11/find_it.py
tdean1995/HFPythonSandbox
dc72257e4353c5bca7a2c401d18587c6d799f9a1
[ "Apache-2.0" ]
2
2018-11-27T10:45:45.000Z
2018-12-13T14:44:54.000Z
hfpython_code/hfpy_code/chapter11/find_it.py
tdean1995/HFPythonSandbox
dc72257e4353c5bca7a2c401d18587c6d799f9a1
[ "Apache-2.0" ]
1
2020-06-02T17:47:22.000Z
2020-06-02T17:47:22.000Z
import time def find_closest(look_for, target_data): def whats_the_difference(first, second): if first == second: return(0) elif first > second: return(first - second) else: return(second - first) max_diff = 9999999 for each_thing in target_data: diff = whats_the_difference(each_thing, look_for) if diff == 0: found_it = each_thing break elif diff < max_diff: max_diff = diff found_it = each_thing return(found_it) def time2secs(time_string): (hours, mins, secs) = time_string.split(':') seconds = int(secs) + (int(mins)*60) + (int(hours)*60*60) return(seconds) def secs2time(seconds): return(time.strftime('%H:%M:%S', time.gmtime(seconds)))
25.40625
61
0.591636
import time def find_closest(look_for, target_data): def whats_the_difference(first, second): if first == second: return(0) elif first > second: return(first - second) else: return(second - first) max_diff = 9999999 for each_thing in target_data: diff = whats_the_difference(each_thing, look_for) if diff == 0: found_it = each_thing break elif diff < max_diff: max_diff = diff found_it = each_thing return(found_it) def time2secs(time_string): (hours, mins, secs) = time_string.split(':') seconds = int(secs) + (int(mins)*60) + (int(hours)*60*60) return(seconds) def secs2time(seconds): return(time.strftime('%H:%M:%S', time.gmtime(seconds)))
true
true
f7f3db128e8354d2dbf6759a8bf6ed10872aa560
539
py
Python
nicos_mlz/refsans/setups/nok/nokbus1.py
ebadkamil/nicos
0355a970d627aae170c93292f08f95759c97f3b5
[ "CC-BY-3.0", "Apache-2.0", "CC-BY-4.0" ]
12
2019-11-06T15:40:36.000Z
2022-01-01T16:23:00.000Z
nicos_mlz/refsans/setups/nok/nokbus1.py
ebadkamil/nicos
0355a970d627aae170c93292f08f95759c97f3b5
[ "CC-BY-3.0", "Apache-2.0", "CC-BY-4.0" ]
91
2020-08-18T09:20:26.000Z
2022-02-01T11:07:14.000Z
nicos_mlz/refsans/setups/nok/nokbus1.py
ISISComputingGroup/nicos
94cb4d172815919481f8c6ee686f21ebb76f2068
[ "CC-BY-3.0", "Apache-2.0", "CC-BY-4.0" ]
6
2020-01-11T10:52:30.000Z
2022-02-25T12:35:23.000Z
description = 'IPC Motor bus device configuration' group = 'lowlevel' instrument_values = configdata('instrument.values') tango_base = instrument_values['tango_base'] # data from instrument.inf # used for: # - shutter_gamma (addr 0x31) # - nok2 (addr 0x32, 0x33) # - nok3 (addr 0x34, 0x35) # - nok4 reactor side (addr 0x36) # - zb0 (addr 0x37) # - zb1 (addr 0x38) # devices = dict( nokbus1 = device('nicos.devices.vendor.ipc.IPCModBusTango', tangodevice = tango_base + 'test/ipcsms_a/bio', lowlevel = True, ), )
21.56
63
0.680891
description = 'IPC Motor bus device configuration' group = 'lowlevel' instrument_values = configdata('instrument.values') tango_base = instrument_values['tango_base'] devices = dict( nokbus1 = device('nicos.devices.vendor.ipc.IPCModBusTango', tangodevice = tango_base + 'test/ipcsms_a/bio', lowlevel = True, ), )
true
true
f7f3db59e7610b5ea7aa3ff7ba67d478892b280b
1,559
py
Python
code/chapter5/dorm.py
hackrole/collective-intelligence-program
2fd1f23e2d277f89e359b8c4f7751dfdd672f110
[ "MIT" ]
null
null
null
code/chapter5/dorm.py
hackrole/collective-intelligence-program
2fd1f23e2d277f89e359b8c4f7751dfdd672f110
[ "MIT" ]
null
null
null
code/chapter5/dorm.py
hackrole/collective-intelligence-program
2fd1f23e2d277f89e359b8c4f7751dfdd672f110
[ "MIT" ]
null
null
null
import random import math # The dorms, each of which has two available spaces dorms=['Zeus','Athena','Hercules','Bacchus','Pluto'] # People, along with their first and second choices prefs=[('Toby', ('Bacchus', 'Hercules')), ('Steve', ('Zeus', 'Pluto')), ('Karen', ('Athena', 'Zeus')), ('Sarah', ('Zeus', 'Pluto')), ('Dave', ('Athena', 'Bacchus')), ('Jeff', ('Hercules', 'Pluto')), ('Fred', ('Pluto', 'Athena')), ('Suzie', ('Bacchus', 'Hercules')), ('Laura', ('Bacchus', 'Hercules')), ('James', ('Hercules', 'Athena'))] # [(0,9),(0,8),(0,7),(0,6),...,(0,0)] domain=[(0,(len(dorms)*2)-i-1) for i in range(0,len(dorms)*2)] def printsolution(vec): slots=[] # Create two slots for each dorm for i in range(len(dorms)): slots+=[i,i] # Loop over each students assignment for i in range(len(vec)): x=int(vec[i]) # Choose the slot from the remaining ones dorm=dorms[slots[x]] # Show the student and assigned dorm print prefs[i][0],dorm # Remove this slot del slots[x] def dormcost(vec): cost=0 # Create list a of slots slots=[0,0,1,1,2,2,3,3,4,4] # Loop over each student for i in range(len(vec)): x=int(vec[i]) dorm=dorms[slots[x]] pref=prefs[i][1] # First choice costs 0, second choice costs 1 if pref[0]==dorm: cost+=0 elif pref[1]==dorm: cost+=1 else: cost+=3 # Not on the list costs 3 # Remove selected slot del slots[x] return cost
26.87931
63
0.55356
import random import math dorms=['Zeus','Athena','Hercules','Bacchus','Pluto'] prefs=[('Toby', ('Bacchus', 'Hercules')), ('Steve', ('Zeus', 'Pluto')), ('Karen', ('Athena', 'Zeus')), ('Sarah', ('Zeus', 'Pluto')), ('Dave', ('Athena', 'Bacchus')), ('Jeff', ('Hercules', 'Pluto')), ('Fred', ('Pluto', 'Athena')), ('Suzie', ('Bacchus', 'Hercules')), ('Laura', ('Bacchus', 'Hercules')), ('James', ('Hercules', 'Athena'))] domain=[(0,(len(dorms)*2)-i-1) for i in range(0,len(dorms)*2)] def printsolution(vec): slots=[] for i in range(len(dorms)): slots+=[i,i] for i in range(len(vec)): x=int(vec[i]) dorm=dorms[slots[x]] print prefs[i][0],dorm del slots[x] def dormcost(vec): cost=0 slots=[0,0,1,1,2,2,3,3,4,4] for i in range(len(vec)): x=int(vec[i]) dorm=dorms[slots[x]] pref=prefs[i][1] if pref[0]==dorm: cost+=0 elif pref[1]==dorm: cost+=1 else: cost+=3 del slots[x] return cost
false
true
f7f3db78d302ce85c9d7e6e0751247f2f9ba494d
1,374
py
Python
compiler/tests/03_ptx_4finger_nmos_test.py
bsg-external/OpenRAM
3c5e13f95c925a204cabf052525c3de07638168f
[ "BSD-3-Clause" ]
2
2019-12-30T11:41:21.000Z
2020-02-15T00:15:32.000Z
compiler/tests/03_ptx_4finger_nmos_test.py
bsg-external/OpenRAM
3c5e13f95c925a204cabf052525c3de07638168f
[ "BSD-3-Clause" ]
null
null
null
compiler/tests/03_ptx_4finger_nmos_test.py
bsg-external/OpenRAM
3c5e13f95c925a204cabf052525c3de07638168f
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python3 # See LICENSE for licensing information. # # Copyright (c) 2016-2019 Regents of the University of California and The Board # of Regents for the Oklahoma Agricultural and Mechanical College # (acting for and on behalf of Oklahoma State University) # All rights reserved. # import unittest from testutils import * import sys,os sys.path.append(os.getenv("OPENRAM_HOME")) import globals from globals import OPTS from sram_factory import factory import debug class ptx_4finger_nmos_test(openram_test): def runTest(self): config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME")) globals.init_openram(config_file) import tech debug.info(2, "Checking three fingers NMOS") fet = factory.create(module_type="ptx", width= tech.drc["minwidth_tx"], mults=4, tx_type="nmos", connect_source_active=True, connect_drain_active=True, connect_poly=True) self.local_drc_check(fet) globals.end_openram() # run the test from the command line if __name__ == "__main__": (OPTS, args) = globals.parse_args() del sys.argv[1:] header(__file__, OPTS.tech_name) unittest.main(testRunner=debugTestRunner())
31.227273
81
0.641921
import unittest from testutils import * import sys,os sys.path.append(os.getenv("OPENRAM_HOME")) import globals from globals import OPTS from sram_factory import factory import debug class ptx_4finger_nmos_test(openram_test): def runTest(self): config_file = "{}/tests/configs/config".format(os.getenv("OPENRAM_HOME")) globals.init_openram(config_file) import tech debug.info(2, "Checking three fingers NMOS") fet = factory.create(module_type="ptx", width= tech.drc["minwidth_tx"], mults=4, tx_type="nmos", connect_source_active=True, connect_drain_active=True, connect_poly=True) self.local_drc_check(fet) globals.end_openram() if __name__ == "__main__": (OPTS, args) = globals.parse_args() del sys.argv[1:] header(__file__, OPTS.tech_name) unittest.main(testRunner=debugTestRunner())
true
true
f7f3dc1d22629a2503969330b293f6d236abdbcf
427
py
Python
day1/part1/day1_part1.py
kreako/advent-of-code-2021
3a002a14c54cd455327d52732b8f057a20f3eb37
[ "MIT" ]
null
null
null
day1/part1/day1_part1.py
kreako/advent-of-code-2021
3a002a14c54cd455327d52732b8f057a20f3eb37
[ "MIT" ]
null
null
null
day1/part1/day1_part1.py
kreako/advent-of-code-2021
3a002a14c54cd455327d52732b8f057a20f3eb37
[ "MIT" ]
null
null
null
def count(in_: list[int]) -> int: previous = None count = 0 for i in in_: if previous is not None and previous < i: count += 1 previous = i return count if __name__ == "__main__": print(count([199, 200, 208, 210, 200, 207, 240, 269, 260, 263])) with open("input", "r") as f: lines = f.readlines() values = [int(line) for line in lines] print(count(values))
25.117647
68
0.557377
def count(in_: list[int]) -> int: previous = None count = 0 for i in in_: if previous is not None and previous < i: count += 1 previous = i return count if __name__ == "__main__": print(count([199, 200, 208, 210, 200, 207, 240, 269, 260, 263])) with open("input", "r") as f: lines = f.readlines() values = [int(line) for line in lines] print(count(values))
true
true
f7f3dd1d613df470928aadce33864634b05f3e78
3,858
py
Python
results/models/athletes.py
JukkaKarvonen/sal-kiti
3dcff71552ab323e3c97eccf502c0d72eb683967
[ "MIT" ]
1
2021-06-12T08:46:32.000Z
2021-06-12T08:46:32.000Z
results/models/athletes.py
JukkaKarvonen/sal-kiti
3dcff71552ab323e3c97eccf502c0d72eb683967
[ "MIT" ]
8
2020-07-01T15:06:52.000Z
2022-02-20T09:11:23.000Z
results/models/athletes.py
JukkaKarvonen/sal-kiti
3dcff71552ab323e3c97eccf502c0d72eb683967
[ "MIT" ]
3
2020-03-01T17:02:24.000Z
2020-07-05T14:37:59.000Z
from django.db import models from django.utils.translation import ugettext_lazy as _ from dry_rest_permissions.generics import allow_staff_or_superuser, authenticated_users from results.mixins.change_log import LogChangesMixing from results.models.organizations import Organization class Athlete(LogChangesMixing, models.Model): """Stores a single athlete. Related to - :class:`.organizations.Organization` Gender and date of birth are used for the result validation. """ GENDER_CHOICES = ( ('M', _('Man')), ('W', _('Woman')), ('O', _('Other')), ('U', _('Unknown')), ) first_name = models.CharField(max_length=100, verbose_name=_('First name')) last_name = models.CharField(max_length=100, verbose_name=_('Last name')) sport_id = models.CharField(max_length=15, unique=True, null=True, blank=True, verbose_name=_('Sport ID')) date_of_birth = models.DateField(null=True, blank=True, verbose_name=_('Date of birth')) gender = models.CharField(max_length=1, choices=GENDER_CHOICES, verbose_name=_('Gender')) organization = models.ForeignKey(Organization, on_delete=models.SET_NULL, null=True) additional_organizations = models.ManyToManyField(Organization, blank=True, related_name='additional_organizations') no_auto_update = models.BooleanField(default=False, verbose_name=_('No automatic updates')) class Meta: verbose_name = _('Athlete') verbose_name_plural = _('Athletes') def __str__(self): return '%s %s, %s' % (self.first_name, self.last_name, self.organization) @staticmethod @allow_staff_or_superuser def has_read_permission(request): return True def has_object_read_permission(self, request): return True @staticmethod @allow_staff_or_superuser def has_write_permission(request): return False @allow_staff_or_superuser def has_object_write_permission(self, request): return False @allow_staff_or_superuser def has_object_update_permission(self, request): return False @staticmethod @authenticated_users def has_create_permission(request): return True class AthleteInformation(LogChangesMixing, models.Model): """Stores a single athlete specific information. Related to - :class:`.athletes.Athlete` """ VISIBILITY_CHOICES = ( ('P', _('Public')), ('A', _('Authenticated users')), ('S', _('Staff users')), ('U', _('Superuser only')), ) athlete = models.ForeignKey(Athlete, on_delete=models.CASCADE, related_name='info') type = models.CharField(max_length=100, verbose_name=_('Type')) value = models.CharField(max_length=100, verbose_name=_('Value')) date_start = models.DateField(blank=True, null=True, verbose_name=_('Start date')) date_end = models.DateField(blank=True, null=True, verbose_name=_('End date')) visibility = models.CharField(max_length=1, choices=VISIBILITY_CHOICES, default='P', verbose_name=_('Visibility')) modification_time = models.DateTimeField(null=True, blank=True, verbose_name=_('Suomisport update timestamp')) def __str__(self): return '%s, %s' % (self.athlete, self.type) @staticmethod @allow_staff_or_superuser def has_read_permission(request): return True def has_object_read_permission(self, request): return True @staticmethod @allow_staff_or_superuser def has_write_permission(request): return False @allow_staff_or_superuser def has_object_write_permission(self, request): return False @allow_staff_or_superuser def has_object_update_permission(self, request): return False @staticmethod @allow_staff_or_superuser def has_create_permission(request): return False
33.842105
120
0.70451
from django.db import models from django.utils.translation import ugettext_lazy as _ from dry_rest_permissions.generics import allow_staff_or_superuser, authenticated_users from results.mixins.change_log import LogChangesMixing from results.models.organizations import Organization class Athlete(LogChangesMixing, models.Model): GENDER_CHOICES = ( ('M', _('Man')), ('W', _('Woman')), ('O', _('Other')), ('U', _('Unknown')), ) first_name = models.CharField(max_length=100, verbose_name=_('First name')) last_name = models.CharField(max_length=100, verbose_name=_('Last name')) sport_id = models.CharField(max_length=15, unique=True, null=True, blank=True, verbose_name=_('Sport ID')) date_of_birth = models.DateField(null=True, blank=True, verbose_name=_('Date of birth')) gender = models.CharField(max_length=1, choices=GENDER_CHOICES, verbose_name=_('Gender')) organization = models.ForeignKey(Organization, on_delete=models.SET_NULL, null=True) additional_organizations = models.ManyToManyField(Organization, blank=True, related_name='additional_organizations') no_auto_update = models.BooleanField(default=False, verbose_name=_('No automatic updates')) class Meta: verbose_name = _('Athlete') verbose_name_plural = _('Athletes') def __str__(self): return '%s %s, %s' % (self.first_name, self.last_name, self.organization) @staticmethod @allow_staff_or_superuser def has_read_permission(request): return True def has_object_read_permission(self, request): return True @staticmethod @allow_staff_or_superuser def has_write_permission(request): return False @allow_staff_or_superuser def has_object_write_permission(self, request): return False @allow_staff_or_superuser def has_object_update_permission(self, request): return False @staticmethod @authenticated_users def has_create_permission(request): return True class AthleteInformation(LogChangesMixing, models.Model): VISIBILITY_CHOICES = ( ('P', _('Public')), ('A', _('Authenticated users')), ('S', _('Staff users')), ('U', _('Superuser only')), ) athlete = models.ForeignKey(Athlete, on_delete=models.CASCADE, related_name='info') type = models.CharField(max_length=100, verbose_name=_('Type')) value = models.CharField(max_length=100, verbose_name=_('Value')) date_start = models.DateField(blank=True, null=True, verbose_name=_('Start date')) date_end = models.DateField(blank=True, null=True, verbose_name=_('End date')) visibility = models.CharField(max_length=1, choices=VISIBILITY_CHOICES, default='P', verbose_name=_('Visibility')) modification_time = models.DateTimeField(null=True, blank=True, verbose_name=_('Suomisport update timestamp')) def __str__(self): return '%s, %s' % (self.athlete, self.type) @staticmethod @allow_staff_or_superuser def has_read_permission(request): return True def has_object_read_permission(self, request): return True @staticmethod @allow_staff_or_superuser def has_write_permission(request): return False @allow_staff_or_superuser def has_object_write_permission(self, request): return False @allow_staff_or_superuser def has_object_update_permission(self, request): return False @staticmethod @allow_staff_or_superuser def has_create_permission(request): return False
true
true
f7f3dd222c1c9b6b9d4795f49c76de0b2c499e0c
5,073
py
Python
python/main.py
skerit/gezicht
5361b06e250400b0f1b44faf6f8940b0f39ed5d9
[ "MIT" ]
null
null
null
python/main.py
skerit/gezicht
5361b06e250400b0f1b44faf6f8940b0f39ed5d9
[ "MIT" ]
null
null
null
python/main.py
skerit/gezicht
5361b06e250400b0f1b44faf6f8940b0f39ed5d9
[ "MIT" ]
null
null
null
import face_recognition import importlib import numpy as np import socket import time import json import sys import os from PIL import Image from io import BytesIO pi_spec = importlib.util.find_spec("picamera") found_picam = pi_spec is not None _picam = False has_cv = False picam_options = { 'rotation' : 90 } # Make stdout flush by default #sys.stdout = os.fdopen(sys.stdout.fileno(), 'wb', 0) # Create the face encodings encodings = {} def getPicam(): # If the module isn't available, return False if not found_picam: return False # If the camera hasn't been created yet, # do so now if not _picam: import picamera _picam = picamera.PiCamera() if picam_options: _picam.rotation = picam_options.get('rotation') _picam.resolution = (320, 240) return _picam def detectFaceFromPath(path): image = face_recognition.load_image_file(path) return detectFaces(image) def detectFaces(frame): # Get the shape of the frame shape = frame.shape width = shape[0] height = shape[1] # Create the result dictionary result = {} result['original_size'] = { 'width' : width, 'height' : height } # Max size is 450x450 max_size = 450 if width > max_size or height > max_size: if width > height: coef = max_size / width else: coef = max_size / height if not has_cv: import cv2 has_cv = True # Resize frame of video for faster face recognition processing frame = cv2.resize(frame, (0, 0), fx=coef, fy=coef) result['resized'] = { 'width' : frame.shape[0], 'height' : frame.shape[1] } face_locations = face_recognition.face_locations(frame) face_encodings = face_recognition.face_encodings(frame, face_locations) face_names = [] faces = [] # Get an array of the known faces known_faces = list(encodings.items()) left_overs = [] remove_seen_faces = True # Loop over each face found in the frame to see if it's someone we know. for face_encoding in face_encodings: name = '' if remove_seen_faces: # Iterate over the known faces, # we'll pop one each time while known_faces: # Shift the first face from the list face = known_faces.pop(0) key = face[0] value = face[1] match = face_recognition.compare_faces(value, face_encoding) if (match[0]): name = key break else: # It doesn't match, add it to the leftovers list left_overs.append(face) # Add all the left overs back to the face_names while left_overs: known_faces.append(left_overs.pop(0)) else: for key, value in known_faces: match = face_recognition.compare_faces(value, face_encoding) if match[0]: name = key break face_names.append(name) for (top, right, bottom, left), name in zip(face_locations, face_names): entry = { 'top' : top, 'right' : right, 'bottom' : bottom, 'left' : left, 'name' : name } faces.append(entry) result['faces'] = faces return result # Start listening to input commands while 1: line = sys.stdin.readline() req = json.loads(line) cmd = req.get('command') output = {} result = {} output['id'] = req.get('id') output['result'] = result; if cmd == 'learn-face': name = req.get('name') paths = req.get('paths') path_results = [] count = 0 if not name in encodings: encodings[name] = [] for path in paths: image = face_recognition.load_image_file(path) encoding = face_recognition.face_encodings(image)[0] encodings[name].append(encoding) count += 1 # Turn the numpy array into a regular list, # otherwise it'll fail json encoding later path_results.append(encoding.tolist()) # Just a check on how many paths we did result['count'] = count # Give the encodings back to the other side, # they might cache them result['encodings'] = path_results elif cmd == 'add-face-encoding': new_encodings = req.get('encodings') name = req.get('name') count = 0 if not name in encodings: encodings[name] = [] for encoding in new_encodings: encodings[name].append(encoding) count += 1 result['count'] = count elif cmd == 'detect-face': path = req.get('file_path') face_result = detectFaceFromPath(path) result.update(face_result) elif cmd == 'detect-picam': picam = getPicam() if not picam: output['error'] = 'Did not find picamera module' else: frame = np.empty((240, 320, 3), dtype=np.uint8) picam.capture(frame, format="rgb", use_video_port=True) face_result = detectFaces(frame) result.update(face_result) elif cmd == 'detect-stream': path = req.get('stream_path'); try: sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) sock.connect(path) data = False while True: buf = sock.recv(4096) if not buf: break if not data: data = buf else: data = data + buf face_result = detectFaceFromPath(BytesIO(data)) result.update(face_result) except Exception as e: output['error'] = str(e) print(json.dumps(output), flush=True) sys.stdout.flush() # We need to sleep for the buffer to flush time.sleep(0.05)
20.876543
73
0.677311
import face_recognition import importlib import numpy as np import socket import time import json import sys import os from PIL import Image from io import BytesIO pi_spec = importlib.util.find_spec("picamera") found_picam = pi_spec is not None _picam = False has_cv = False picam_options = { 'rotation' : 90 } encodings = {} def getPicam(): if not found_picam: return False # If the camera hasn't been created yet, if not _picam: import picamera _picam = picamera.PiCamera() if picam_options: _picam.rotation = picam_options.get('rotation') _picam.resolution = (320, 240) return _picam def detectFaceFromPath(path): image = face_recognition.load_image_file(path) return detectFaces(image) def detectFaces(frame): shape = frame.shape width = shape[0] height = shape[1] result = {} result['original_size'] = { 'width' : width, 'height' : height } max_size = 450 if width > max_size or height > max_size: if width > height: coef = max_size / width else: coef = max_size / height if not has_cv: import cv2 has_cv = True frame = cv2.resize(frame, (0, 0), fx=coef, fy=coef) result['resized'] = { 'width' : frame.shape[0], 'height' : frame.shape[1] } face_locations = face_recognition.face_locations(frame) face_encodings = face_recognition.face_encodings(frame, face_locations) face_names = [] faces = [] known_faces = list(encodings.items()) left_overs = [] remove_seen_faces = True for face_encoding in face_encodings: name = '' if remove_seen_faces: # Iterate over the known faces, # we'll pop one each time while known_faces: face = known_faces.pop(0) key = face[0] value = face[1] match = face_recognition.compare_faces(value, face_encoding) if (match[0]): name = key break else: left_overs.append(face) # Add all the left overs back to the face_names while left_overs: known_faces.append(left_overs.pop(0)) else: for key, value in known_faces: match = face_recognition.compare_faces(value, face_encoding) if match[0]: name = key break face_names.append(name) for (top, right, bottom, left), name in zip(face_locations, face_names): entry = { 'top' : top, 'right' : right, 'bottom' : bottom, 'left' : left, 'name' : name } faces.append(entry) result['faces'] = faces return result # Start listening to input commands while 1: line = sys.stdin.readline() req = json.loads(line) cmd = req.get('command') output = {} result = {} output['id'] = req.get('id') output['result'] = result; if cmd == 'learn-face': name = req.get('name') paths = req.get('paths') path_results = [] count = 0 if not name in encodings: encodings[name] = [] for path in paths: image = face_recognition.load_image_file(path) encoding = face_recognition.face_encodings(image)[0] encodings[name].append(encoding) count += 1 # Turn the numpy array into a regular list, # otherwise it'll fail json encoding later path_results.append(encoding.tolist()) result['count'] = count result['encodings'] = path_results elif cmd == 'add-face-encoding': new_encodings = req.get('encodings') name = req.get('name') count = 0 if not name in encodings: encodings[name] = [] for encoding in new_encodings: encodings[name].append(encoding) count += 1 result['count'] = count elif cmd == 'detect-face': path = req.get('file_path') face_result = detectFaceFromPath(path) result.update(face_result) elif cmd == 'detect-picam': picam = getPicam() if not picam: output['error'] = 'Did not find picamera module' else: frame = np.empty((240, 320, 3), dtype=np.uint8) picam.capture(frame, format="rgb", use_video_port=True) face_result = detectFaces(frame) result.update(face_result) elif cmd == 'detect-stream': path = req.get('stream_path'); try: sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) sock.connect(path) data = False while True: buf = sock.recv(4096) if not buf: break if not data: data = buf else: data = data + buf face_result = detectFaceFromPath(BytesIO(data)) result.update(face_result) except Exception as e: output['error'] = str(e) print(json.dumps(output), flush=True) sys.stdout.flush() time.sleep(0.05)
true
true
f7f3de284304a608bb5c4c56c1e11a5b4da2e1fc
21,364
py
Python
tools/scons/scons-local-3.0.5/SCons/Tool/MSCommon/vs.py
arcilat-adsk/arnold-usd
34f1b091221f81d027a0c9fceec10f3cfa3ba141
[ "Apache-2.0" ]
2
2020-12-01T03:34:51.000Z
2021-03-06T01:49:44.000Z
tools/scons/scons-local-3.0.5/SCons/Tool/MSCommon/vs.py
arcilat-adsk/arnold-usd
34f1b091221f81d027a0c9fceec10f3cfa3ba141
[ "Apache-2.0" ]
null
null
null
tools/scons/scons-local-3.0.5/SCons/Tool/MSCommon/vs.py
arcilat-adsk/arnold-usd
34f1b091221f81d027a0c9fceec10f3cfa3ba141
[ "Apache-2.0" ]
null
null
null
# # Copyright (c) 2001 - 2019 The SCons Foundation # # 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. # __revision__ = "src/engine/SCons/Tool/MSCommon/vs.py a56bbd8c09fb219ab8a9673330ffcd55279219d0 2019-03-26 23:16:31 bdeegan" __doc__ = """Module to detect Visual Studio and/or Visual C/C++ """ import os import SCons.Errors import SCons.Util from .common import debug, \ get_output, \ is_win64, \ normalize_env, \ parse_output, \ read_reg import SCons.Tool.MSCommon.vc class VisualStudio(object): """ An abstract base class for trying to find installed versions of Visual Studio. """ def __init__(self, version, **kw): self.version = version kw['vc_version'] = kw.get('vc_version', version) kw['sdk_version'] = kw.get('sdk_version', version) self.__dict__.update(kw) self._cache = {} def find_batch_file(self): vs_dir = self.get_vs_dir() if not vs_dir: debug('find_executable(): no vs_dir') return None batch_file = os.path.join(vs_dir, self.batch_file_path) batch_file = os.path.normpath(batch_file) if not os.path.isfile(batch_file): debug('find_batch_file(): %s not on file system' % batch_file) return None return batch_file def find_vs_dir_by_vc(self): SCons.Tool.MSCommon.vc.get_installed_vcs() dir = SCons.Tool.MSCommon.vc.find_vc_pdir(self.vc_version) if not dir: debug('find_vs_dir_by_vc(): no installed VC %s' % self.vc_version) return None return os.path.abspath(os.path.join(dir, os.pardir)) def find_vs_dir_by_reg(self): root = 'Software\\' if is_win64(): root = root + 'Wow6432Node\\' for key in self.hkeys: if key=='use_dir': return self.find_vs_dir_by_vc() key = root + key try: comps = read_reg(key) except SCons.Util.WinError as e: debug('find_vs_dir_by_reg(): no VS registry key {}'.format(repr(key))) else: debug('find_vs_dir_by_reg(): found VS in registry: {}'.format(comps)) return comps return None def find_vs_dir(self): """ Can use registry or location of VC to find vs dir First try to find by registry, and if that fails find via VC dir """ vs_dir=self.find_vs_dir_by_reg() if not vs_dir: vs_dir = self.find_vs_dir_by_vc() debug('find_vs_dir(): found VS in ' + str(vs_dir )) return vs_dir def find_executable(self): vs_dir = self.get_vs_dir() if not vs_dir: debug('find_executable(): no vs_dir ({})'.format(vs_dir)) return None executable = os.path.join(vs_dir, self.executable_path) executable = os.path.normpath(executable) if not os.path.isfile(executable): debug('find_executable(): {} not on file system'.format(executable)) return None return executable def get_batch_file(self): try: return self._cache['batch_file'] except KeyError: batch_file = self.find_batch_file() self._cache['batch_file'] = batch_file return batch_file def get_executable(self): try: debug('get_executable using cache:%s'%self._cache['executable']) return self._cache['executable'] except KeyError: executable = self.find_executable() self._cache['executable'] = executable debug('get_executable not in cache:%s'%executable) return executable def get_vs_dir(self): try: return self._cache['vs_dir'] except KeyError: vs_dir = self.find_vs_dir() self._cache['vs_dir'] = vs_dir return vs_dir def get_supported_arch(self): try: return self._cache['supported_arch'] except KeyError: # RDEVE: for the time being use hardcoded lists # supported_arch = self.find_supported_arch() self._cache['supported_arch'] = self.supported_arch return self.supported_arch def reset(self): self._cache = {} # The list of supported Visual Studio versions we know how to detect. # # How to look for .bat file ? # - VS 2008 Express (x86): # * from registry key productdir, gives the full path to vsvarsall.bat. In # HKEY_LOCAL_MACHINE): # Software\Microsoft\VCEpress\9.0\Setup\VC\productdir # * from environmnent variable VS90COMNTOOLS: the path is then ..\..\VC # relatively to the path given by the variable. # # - VS 2008 Express (WoW6432: 32 bits on windows x64): # Software\Wow6432Node\Microsoft\VCEpress\9.0\Setup\VC\productdir # # - VS 2005 Express (x86): # * from registry key productdir, gives the full path to vsvarsall.bat. In # HKEY_LOCAL_MACHINE): # Software\Microsoft\VCEpress\8.0\Setup\VC\productdir # * from environmnent variable VS80COMNTOOLS: the path is then ..\..\VC # relatively to the path given by the variable. # # - VS 2005 Express (WoW6432: 32 bits on windows x64): does not seem to have a # productdir ? # # - VS 2003 .Net (pro edition ? x86): # * from registry key productdir. The path is then ..\Common7\Tools\ # relatively to the key. The key is in HKEY_LOCAL_MACHINE): # Software\Microsoft\VisualStudio\7.1\Setup\VC\productdir # * from environmnent variable VS71COMNTOOLS: the path is the full path to # vsvars32.bat # # - VS 98 (VS 6): # * from registry key productdir. The path is then Bin # relatively to the key. The key is in HKEY_LOCAL_MACHINE): # Software\Microsoft\VisualStudio\6.0\Setup\VC98\productdir # # The first version found in the list is the one used by default if # there are multiple versions installed. Barring good reasons to # the contrary, this means we should list versions from most recent # to oldest. Pro versions get listed before Express versions on the # assumption that, by default, you'd rather use the version you paid # good money for in preference to whatever Microsoft makes available # for free. # # If you update this list, update _VCVER and _VCVER_TO_PRODUCT_DIR in # Tool/MSCommon/vc.py, and the MSVC_VERSION documentation in Tool/msvc.xml. SupportedVSList = [ # Visual Studio 2017 VisualStudio('14.1', vc_version='14.1', sdk_version='10.0A', hkeys=[], common_tools_var='VS150COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'VC\Auxiliary\Build\vsvars32.bat', supported_arch=['x86', 'amd64', "arm"], ), # Visual Studio 2015 VisualStudio('14.0', vc_version='14.0', sdk_version='10.0', hkeys=[r'Microsoft\VisualStudio\14.0\Setup\VS\ProductDir'], common_tools_var='VS140COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64', "arm"], ), # Visual C++ 2015 Express Edition (for Desktop) VisualStudio('14.0Exp', vc_version='14.0', sdk_version='10.0A', hkeys=[r'Microsoft\VisualStudio\14.0\Setup\VS\ProductDir'], common_tools_var='VS140COMNTOOLS', executable_path=r'Common7\IDE\WDExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64', "arm"], ), # Visual Studio 2013 VisualStudio('12.0', vc_version='12.0', sdk_version='8.1A', hkeys=[r'Microsoft\VisualStudio\12.0\Setup\VS\ProductDir'], common_tools_var='VS120COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2013 Express Edition (for Desktop) VisualStudio('12.0Exp', vc_version='12.0', sdk_version='8.1A', hkeys=[r'Microsoft\VisualStudio\12.0\Setup\VS\ProductDir'], common_tools_var='VS120COMNTOOLS', executable_path=r'Common7\IDE\WDExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual Studio 2012 VisualStudio('11.0', sdk_version='8.0A', hkeys=[r'Microsoft\VisualStudio\11.0\Setup\VS\ProductDir'], common_tools_var='VS110COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2012 Express Edition (for Desktop) VisualStudio('11.0Exp', vc_version='11.0', sdk_version='8.0A', hkeys=[r'Microsoft\VisualStudio\11.0\Setup\VS\ProductDir'], common_tools_var='VS110COMNTOOLS', executable_path=r'Common7\IDE\WDExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual Studio 2010 VisualStudio('10.0', sdk_version='7.0A', hkeys=[r'Microsoft\VisualStudio\10.0\Setup\VS\ProductDir'], common_tools_var='VS100COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2010 Express Edition VisualStudio('10.0Exp', vc_version='10.0', sdk_version='7.0A', hkeys=[r'Microsoft\VCExpress\10.0\Setup\VS\ProductDir'], common_tools_var='VS100COMNTOOLS', executable_path=r'Common7\IDE\VCExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86'], ), # Visual Studio 2008 VisualStudio('9.0', sdk_version='6.0A', hkeys=[r'Microsoft\VisualStudio\9.0\Setup\VS\ProductDir'], common_tools_var='VS90COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2008 Express Edition VisualStudio('9.0Exp', vc_version='9.0', sdk_version='6.0A', hkeys=[r'Microsoft\VCExpress\9.0\Setup\VS\ProductDir'], common_tools_var='VS90COMNTOOLS', executable_path=r'Common7\IDE\VCExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86'], ), # Visual Studio 2005 VisualStudio('8.0', sdk_version='6.0A', hkeys=[r'Microsoft\VisualStudio\8.0\Setup\VS\ProductDir'], common_tools_var='VS80COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio 8', supported_arch=['x86', 'amd64'], ), # Visual C++ 2005 Express Edition VisualStudio('8.0Exp', vc_version='8.0Exp', sdk_version='6.0A', hkeys=[r'Microsoft\VCExpress\8.0\Setup\VS\ProductDir'], common_tools_var='VS80COMNTOOLS', executable_path=r'Common7\IDE\VCExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio 8', supported_arch=['x86'], ), # Visual Studio .NET 2003 VisualStudio('7.1', sdk_version='6.0', hkeys=[r'Microsoft\VisualStudio\7.1\Setup\VS\ProductDir'], common_tools_var='VS71COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio .NET 2003', supported_arch=['x86'], ), # Visual Studio .NET VisualStudio('7.0', sdk_version='2003R2', hkeys=[r'Microsoft\VisualStudio\7.0\Setup\VS\ProductDir'], common_tools_var='VS70COMNTOOLS', executable_path=r'IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio .NET', supported_arch=['x86'], ), # Visual Studio 6.0 VisualStudio('6.0', sdk_version='2003R1', hkeys=[r'Microsoft\VisualStudio\6.0\Setup\Microsoft Visual Studio\ProductDir', 'use_dir'], common_tools_var='VS60COMNTOOLS', executable_path=r'Common\MSDev98\Bin\MSDEV.COM', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio', supported_arch=['x86'], ), ] SupportedVSMap = {} for vs in SupportedVSList: SupportedVSMap[vs.version] = vs # Finding installed versions of Visual Studio isn't cheap, because it # goes not only to the registry but also to the disk to sanity-check # that there is, in fact, a Visual Studio directory there and that the # registry entry isn't just stale. Find this information once, when # requested, and cache it. InstalledVSList = None InstalledVSMap = None def get_installed_visual_studios(): global InstalledVSList global InstalledVSMap if InstalledVSList is None: InstalledVSList = [] InstalledVSMap = {} for vs in SupportedVSList: debug('trying to find VS %s' % vs.version) if vs.get_executable(): debug('found VS %s' % vs.version) InstalledVSList.append(vs) InstalledVSMap[vs.version] = vs return InstalledVSList def reset_installed_visual_studios(): global InstalledVSList global InstalledVSMap InstalledVSList = None InstalledVSMap = None for vs in SupportedVSList: vs.reset() # Need to clear installed VC's as well as they are used in finding # installed VS's SCons.Tool.MSCommon.vc.reset_installed_vcs() # We may be asked to update multiple construction environments with # SDK information. When doing this, we check on-disk for whether # the SDK has 'mfc' and 'atl' subdirectories. Since going to disk # is expensive, cache results by directory. #SDKEnvironmentUpdates = {} # #def set_sdk_by_directory(env, sdk_dir): # global SDKEnvironmentUpdates # try: # env_tuple_list = SDKEnvironmentUpdates[sdk_dir] # except KeyError: # env_tuple_list = [] # SDKEnvironmentUpdates[sdk_dir] = env_tuple_list # # include_path = os.path.join(sdk_dir, 'include') # mfc_path = os.path.join(include_path, 'mfc') # atl_path = os.path.join(include_path, 'atl') # # if os.path.exists(mfc_path): # env_tuple_list.append(('INCLUDE', mfc_path)) # if os.path.exists(atl_path): # env_tuple_list.append(('INCLUDE', atl_path)) # env_tuple_list.append(('INCLUDE', include_path)) # # env_tuple_list.append(('LIB', os.path.join(sdk_dir, 'lib'))) # env_tuple_list.append(('LIBPATH', os.path.join(sdk_dir, 'lib'))) # env_tuple_list.append(('PATH', os.path.join(sdk_dir, 'bin'))) # # for variable, directory in env_tuple_list: # env.PrependENVPath(variable, directory) def msvs_exists(): return (len(get_installed_visual_studios()) > 0) def get_vs_by_version(msvs): global InstalledVSMap global SupportedVSMap debug('vs.py:get_vs_by_version()') if msvs not in SupportedVSMap: msg = "Visual Studio version %s is not supported" % repr(msvs) raise SCons.Errors.UserError(msg) get_installed_visual_studios() vs = InstalledVSMap.get(msvs) debug('InstalledVSMap:%s'%InstalledVSMap) debug('vs.py:get_vs_by_version: found vs:%s'%vs) # Some check like this would let us provide a useful error message # if they try to set a Visual Studio version that's not installed. # However, we also want to be able to run tests (like the unit # tests) on systems that don't, or won't ever, have it installed. # It might be worth resurrecting this, with some configurable # setting that the tests can use to bypass the check. #if not vs: # msg = "Visual Studio version %s is not installed" % repr(msvs) # raise SCons.Errors.UserError, msg return vs def get_default_version(env): """Returns the default version string to use for MSVS. If no version was requested by the user through the MSVS environment variable, query all the available visual studios through get_installed_visual_studios, and take the highest one. Return ------ version: str the default version. """ if 'MSVS' not in env or not SCons.Util.is_Dict(env['MSVS']): # get all versions, and remember them for speed later versions = [vs.version for vs in get_installed_visual_studios()] env['MSVS'] = {'VERSIONS' : versions} else: versions = env['MSVS'].get('VERSIONS', []) if 'MSVS_VERSION' not in env: if versions: env['MSVS_VERSION'] = versions[0] #use highest version by default else: debug('get_default_version: WARNING: no installed versions found, ' 'using first in SupportedVSList (%s)'%SupportedVSList[0].version) env['MSVS_VERSION'] = SupportedVSList[0].version env['MSVS']['VERSION'] = env['MSVS_VERSION'] return env['MSVS_VERSION'] def get_default_arch(env): """Return the default arch to use for MSVS if no version was requested by the user through the MSVS_ARCH environment variable, select x86 Return ------ arch: str """ arch = env.get('MSVS_ARCH', 'x86') msvs = InstalledVSMap.get(env['MSVS_VERSION']) if not msvs: arch = 'x86' elif not arch in msvs.get_supported_arch(): fmt = "Visual Studio version %s does not support architecture %s" raise SCons.Errors.UserError(fmt % (env['MSVS_VERSION'], arch)) return arch def merge_default_version(env): version = get_default_version(env) arch = get_default_arch(env) def msvs_setup_env(env): batfilename = msvs.get_batch_file() msvs = get_vs_by_version(version) if msvs is None: return # XXX: I think this is broken. This will silently set a bogus tool instead # of failing, but there is no other way with the current scons tool # framework if batfilename is not None: vars = ('LIB', 'LIBPATH', 'PATH', 'INCLUDE') msvs_list = get_installed_visual_studios() vscommonvarnames = [vs.common_tools_var for vs in msvs_list] save_ENV = env['ENV'] nenv = normalize_env(env['ENV'], ['COMSPEC'] + vscommonvarnames, force=True) try: output = get_output(batfilename, arch, env=nenv) finally: env['ENV'] = save_ENV vars = parse_output(output, vars) for k, v in vars.items(): env.PrependENVPath(k, v, delete_existing=1) def query_versions(): """Query the system to get available versions of VS. A version is considered when a batfile is found.""" msvs_list = get_installed_visual_studios() versions = [msvs.version for msvs in msvs_list] return versions # Local Variables: # tab-width:4 # indent-tabs-mode:nil # End: # vim: set expandtab tabstop=4 shiftwidth=4:
37.284468
122
0.61716
__revision__ = "src/engine/SCons/Tool/MSCommon/vs.py a56bbd8c09fb219ab8a9673330ffcd55279219d0 2019-03-26 23:16:31 bdeegan" __doc__ = """Module to detect Visual Studio and/or Visual C/C++ """ import os import SCons.Errors import SCons.Util from .common import debug, \ get_output, \ is_win64, \ normalize_env, \ parse_output, \ read_reg import SCons.Tool.MSCommon.vc class VisualStudio(object): def __init__(self, version, **kw): self.version = version kw['vc_version'] = kw.get('vc_version', version) kw['sdk_version'] = kw.get('sdk_version', version) self.__dict__.update(kw) self._cache = {} def find_batch_file(self): vs_dir = self.get_vs_dir() if not vs_dir: debug('find_executable(): no vs_dir') return None batch_file = os.path.join(vs_dir, self.batch_file_path) batch_file = os.path.normpath(batch_file) if not os.path.isfile(batch_file): debug('find_batch_file(): %s not on file system' % batch_file) return None return batch_file def find_vs_dir_by_vc(self): SCons.Tool.MSCommon.vc.get_installed_vcs() dir = SCons.Tool.MSCommon.vc.find_vc_pdir(self.vc_version) if not dir: debug('find_vs_dir_by_vc(): no installed VC %s' % self.vc_version) return None return os.path.abspath(os.path.join(dir, os.pardir)) def find_vs_dir_by_reg(self): root = 'Software\\' if is_win64(): root = root + 'Wow6432Node\\' for key in self.hkeys: if key=='use_dir': return self.find_vs_dir_by_vc() key = root + key try: comps = read_reg(key) except SCons.Util.WinError as e: debug('find_vs_dir_by_reg(): no VS registry key {}'.format(repr(key))) else: debug('find_vs_dir_by_reg(): found VS in registry: {}'.format(comps)) return comps return None def find_vs_dir(self): vs_dir=self.find_vs_dir_by_reg() if not vs_dir: vs_dir = self.find_vs_dir_by_vc() debug('find_vs_dir(): found VS in ' + str(vs_dir )) return vs_dir def find_executable(self): vs_dir = self.get_vs_dir() if not vs_dir: debug('find_executable(): no vs_dir ({})'.format(vs_dir)) return None executable = os.path.join(vs_dir, self.executable_path) executable = os.path.normpath(executable) if not os.path.isfile(executable): debug('find_executable(): {} not on file system'.format(executable)) return None return executable def get_batch_file(self): try: return self._cache['batch_file'] except KeyError: batch_file = self.find_batch_file() self._cache['batch_file'] = batch_file return batch_file def get_executable(self): try: debug('get_executable using cache:%s'%self._cache['executable']) return self._cache['executable'] except KeyError: executable = self.find_executable() self._cache['executable'] = executable debug('get_executable not in cache:%s'%executable) return executable def get_vs_dir(self): try: return self._cache['vs_dir'] except KeyError: vs_dir = self.find_vs_dir() self._cache['vs_dir'] = vs_dir return vs_dir def get_supported_arch(self): try: return self._cache['supported_arch'] except KeyError: self._cache['supported_arch'] = self.supported_arch return self.supported_arch def reset(self): self._cache = {} # good money for in preference to whatever Microsoft makes available # for free. # # If you update this list, update _VCVER and _VCVER_TO_PRODUCT_DIR in # Tool/MSCommon/vc.py, and the MSVC_VERSION documentation in Tool/msvc.xml. SupportedVSList = [ # Visual Studio 2017 VisualStudio('14.1', vc_version='14.1', sdk_version='10.0A', hkeys=[], common_tools_var='VS150COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'VC\Auxiliary\Build\vsvars32.bat', supported_arch=['x86', 'amd64', "arm"], ), # Visual Studio 2015 VisualStudio('14.0', vc_version='14.0', sdk_version='10.0', hkeys=[r'Microsoft\VisualStudio\14.0\Setup\VS\ProductDir'], common_tools_var='VS140COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64', "arm"], ), # Visual C++ 2015 Express Edition (for Desktop) VisualStudio('14.0Exp', vc_version='14.0', sdk_version='10.0A', hkeys=[r'Microsoft\VisualStudio\14.0\Setup\VS\ProductDir'], common_tools_var='VS140COMNTOOLS', executable_path=r'Common7\IDE\WDExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64', "arm"], ), # Visual Studio 2013 VisualStudio('12.0', vc_version='12.0', sdk_version='8.1A', hkeys=[r'Microsoft\VisualStudio\12.0\Setup\VS\ProductDir'], common_tools_var='VS120COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2013 Express Edition (for Desktop) VisualStudio('12.0Exp', vc_version='12.0', sdk_version='8.1A', hkeys=[r'Microsoft\VisualStudio\12.0\Setup\VS\ProductDir'], common_tools_var='VS120COMNTOOLS', executable_path=r'Common7\IDE\WDExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual Studio 2012 VisualStudio('11.0', sdk_version='8.0A', hkeys=[r'Microsoft\VisualStudio\11.0\Setup\VS\ProductDir'], common_tools_var='VS110COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2012 Express Edition (for Desktop) VisualStudio('11.0Exp', vc_version='11.0', sdk_version='8.0A', hkeys=[r'Microsoft\VisualStudio\11.0\Setup\VS\ProductDir'], common_tools_var='VS110COMNTOOLS', executable_path=r'Common7\IDE\WDExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual Studio 2010 VisualStudio('10.0', sdk_version='7.0A', hkeys=[r'Microsoft\VisualStudio\10.0\Setup\VS\ProductDir'], common_tools_var='VS100COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2010 Express Edition VisualStudio('10.0Exp', vc_version='10.0', sdk_version='7.0A', hkeys=[r'Microsoft\VCExpress\10.0\Setup\VS\ProductDir'], common_tools_var='VS100COMNTOOLS', executable_path=r'Common7\IDE\VCExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86'], ), # Visual Studio 2008 VisualStudio('9.0', sdk_version='6.0A', hkeys=[r'Microsoft\VisualStudio\9.0\Setup\VS\ProductDir'], common_tools_var='VS90COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86', 'amd64'], ), # Visual C++ 2008 Express Edition VisualStudio('9.0Exp', vc_version='9.0', sdk_version='6.0A', hkeys=[r'Microsoft\VCExpress\9.0\Setup\VS\ProductDir'], common_tools_var='VS90COMNTOOLS', executable_path=r'Common7\IDE\VCExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', supported_arch=['x86'], ), # Visual Studio 2005 VisualStudio('8.0', sdk_version='6.0A', hkeys=[r'Microsoft\VisualStudio\8.0\Setup\VS\ProductDir'], common_tools_var='VS80COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio 8', supported_arch=['x86', 'amd64'], ), # Visual C++ 2005 Express Edition VisualStudio('8.0Exp', vc_version='8.0Exp', sdk_version='6.0A', hkeys=[r'Microsoft\VCExpress\8.0\Setup\VS\ProductDir'], common_tools_var='VS80COMNTOOLS', executable_path=r'Common7\IDE\VCExpress.exe', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio 8', supported_arch=['x86'], ), # Visual Studio .NET 2003 VisualStudio('7.1', sdk_version='6.0', hkeys=[r'Microsoft\VisualStudio\7.1\Setup\VS\ProductDir'], common_tools_var='VS71COMNTOOLS', executable_path=r'Common7\IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio .NET 2003', supported_arch=['x86'], ), # Visual Studio .NET VisualStudio('7.0', sdk_version='2003R2', hkeys=[r'Microsoft\VisualStudio\7.0\Setup\VS\ProductDir'], common_tools_var='VS70COMNTOOLS', executable_path=r'IDE\devenv.com', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio .NET', supported_arch=['x86'], ), # Visual Studio 6.0 VisualStudio('6.0', sdk_version='2003R1', hkeys=[r'Microsoft\VisualStudio\6.0\Setup\Microsoft Visual Studio\ProductDir', 'use_dir'], common_tools_var='VS60COMNTOOLS', executable_path=r'Common\MSDev98\Bin\MSDEV.COM', batch_file_path=r'Common7\Tools\vsvars32.bat', default_dirname='Microsoft Visual Studio', supported_arch=['x86'], ), ] SupportedVSMap = {} for vs in SupportedVSList: SupportedVSMap[vs.version] = vs # Finding installed versions of Visual Studio isn't cheap, because it # requested, and cache it. InstalledVSList = None InstalledVSMap = None def get_installed_visual_studios(): global InstalledVSList global InstalledVSMap if InstalledVSList is None: InstalledVSList = [] InstalledVSMap = {} for vs in SupportedVSList: debug('trying to find VS %s' % vs.version) if vs.get_executable(): debug('found VS %s' % vs.version) InstalledVSList.append(vs) InstalledVSMap[vs.version] = vs return InstalledVSList def reset_installed_visual_studios(): global InstalledVSList global InstalledVSMap InstalledVSList = None InstalledVSMap = None for vs in SupportedVSList: vs.reset() # Need to clear installed VC's as well as they are used in finding SCons.Tool.MSCommon.vc.reset_installed_vcs() # We may be asked to update multiple construction environments with # SDK information. When doing this, we check on-disk for whether # the SDK has 'mfc' and 'atl' subdirectories. Since going to disk # is expensive, cache results by directory. #SDKEnvironmentUpdates = {} # #def set_sdk_by_directory(env, sdk_dir): # global SDKEnvironmentUpdates # try: # env_tuple_list = SDKEnvironmentUpdates[sdk_dir] # except KeyError: # env_tuple_list = [] # SDKEnvironmentUpdates[sdk_dir] = env_tuple_list # # include_path = os.path.join(sdk_dir, 'include') # mfc_path = os.path.join(include_path, 'mfc') # atl_path = os.path.join(include_path, 'atl') # # if os.path.exists(mfc_path): # env_tuple_list.append(('INCLUDE', mfc_path)) # if os.path.exists(atl_path): # env_tuple_list.append(('INCLUDE', atl_path)) # env_tuple_list.append(('INCLUDE', include_path)) # # env_tuple_list.append(('LIB', os.path.join(sdk_dir, 'lib'))) # env_tuple_list.append(('LIBPATH', os.path.join(sdk_dir, 'lib'))) # env_tuple_list.append(('PATH', os.path.join(sdk_dir, 'bin'))) # # for variable, directory in env_tuple_list: # env.PrependENVPath(variable, directory) def msvs_exists(): return (len(get_installed_visual_studios()) > 0) def get_vs_by_version(msvs): global InstalledVSMap global SupportedVSMap debug('vs.py:get_vs_by_version()') if msvs not in SupportedVSMap: msg = "Visual Studio version %s is not supported" % repr(msvs) raise SCons.Errors.UserError(msg) get_installed_visual_studios() vs = InstalledVSMap.get(msvs) debug('InstalledVSMap:%s'%InstalledVSMap) debug('vs.py:get_vs_by_version: found vs:%s'%vs) # Some check like this would let us provide a useful error message # if they try to set a Visual Studio version that's not installed. return vs def get_default_version(env): if 'MSVS' not in env or not SCons.Util.is_Dict(env['MSVS']): versions = [vs.version for vs in get_installed_visual_studios()] env['MSVS'] = {'VERSIONS' : versions} else: versions = env['MSVS'].get('VERSIONS', []) if 'MSVS_VERSION' not in env: if versions: env['MSVS_VERSION'] = versions[0] else: debug('get_default_version: WARNING: no installed versions found, ' 'using first in SupportedVSList (%s)'%SupportedVSList[0].version) env['MSVS_VERSION'] = SupportedVSList[0].version env['MSVS']['VERSION'] = env['MSVS_VERSION'] return env['MSVS_VERSION'] def get_default_arch(env): arch = env.get('MSVS_ARCH', 'x86') msvs = InstalledVSMap.get(env['MSVS_VERSION']) if not msvs: arch = 'x86' elif not arch in msvs.get_supported_arch(): fmt = "Visual Studio version %s does not support architecture %s" raise SCons.Errors.UserError(fmt % (env['MSVS_VERSION'], arch)) return arch def merge_default_version(env): version = get_default_version(env) arch = get_default_arch(env) def msvs_setup_env(env): batfilename = msvs.get_batch_file() msvs = get_vs_by_version(version) if msvs is None: return if batfilename is not None: vars = ('LIB', 'LIBPATH', 'PATH', 'INCLUDE') msvs_list = get_installed_visual_studios() vscommonvarnames = [vs.common_tools_var for vs in msvs_list] save_ENV = env['ENV'] nenv = normalize_env(env['ENV'], ['COMSPEC'] + vscommonvarnames, force=True) try: output = get_output(batfilename, arch, env=nenv) finally: env['ENV'] = save_ENV vars = parse_output(output, vars) for k, v in vars.items(): env.PrependENVPath(k, v, delete_existing=1) def query_versions(): msvs_list = get_installed_visual_studios() versions = [msvs.version for msvs in msvs_list] return versions
true
true
f7f3e02f1a7e2e2553d2bc80d28a8f17f4fb5da5
18,716
py
Python
model/__init__.py
schrodit/cc-utils
db46303b1299b8816014daedf17cb6b8180bb491
[ "BSD-3-Clause" ]
null
null
null
model/__init__.py
schrodit/cc-utils
db46303b1299b8816014daedf17cb6b8180bb491
[ "BSD-3-Clause" ]
null
null
null
model/__init__.py
schrodit/cc-utils
db46303b1299b8816014daedf17cb6b8180bb491
[ "BSD-3-Clause" ]
null
null
null
import dataclasses import functools import json import os import pkgutil import sys import typing import urllib.parse import dacite import deprecated import yaml from model.base import ( ConfigElementNotFoundError, ModelValidationError, NamedModelElement, ) from ci.util import ( existing_dir, not_empty, not_none, parse_yaml_file, warning, ) dc = dataclasses.dataclass empty_list = dataclasses.field(default_factory=list) ''' Configuration model and retrieval handling. Users of this module will most likely want to create an instance of `ConfigFactory` and use it to create `ConfigurationSet` instances. Configuration sets are factories themselves, that are backed with a configuration source. They create concrete configuration instances. While technically modifiable, all configuration instances should not be altered by users. Configuration objects should usually not be instantiated by users of this module. ''' @dc(frozen=True) class CfgTypeSrc: # just a marker class pass @dc(frozen=True) class LocalFileCfgSrc(CfgTypeSrc): file: str @dc(frozen=True) class GithubRepoFileSrc(CfgTypeSrc): repository_url: str relpath: str @dc(frozen=True) class ConfigTypeModel: factory_method: typing.Optional[str] cfg_type_name: str type: str @dc(frozen=True) class ConfigType: ''' represents a configuration type (used for serialisation and deserialisation) ''' model: ConfigTypeModel src: typing.Tuple[typing.Union[LocalFileCfgSrc, GithubRepoFileSrc]] = () def sources(self): return self.src def factory_method(self): return self.model.factory_method def cfg_type_name(self): return self.model.cfg_type_name def cfg_type(self): return self.model.type class ConfigFactory: '''Creates configuration model element instances from the underlying configuration source Configuration elements are organised in a two-level hierarchy: Configuration type (named cfg_type by convention) which specifies a configuration schema (and semantics) and Configuration element name (named cfg_name or element_name by convention). Configuration model elements may be retrieved through one of two methods: - via the generic `_cfg_element(cfg_type_name, cfg_name)` - via a "factory method" (if defined in cfg_type) - example: `github(cfg_name)` There is a special configuration type named `ConfigurationSet`, which is used to group sets of configuration elements. Configuration sets expose an API equivalent to ConfigFactory. ''' CFG_TYPES = 'cfg_types' _cfg_type_cache = {} # <name>:<type> @staticmethod def _parse_local_file(cfg_dir: str, cfg_src: LocalFileCfgSrc): cfg_file = cfg_src.file return parse_yaml_file(os.path.join(cfg_dir, cfg_file)) @staticmethod def _parse_repo_file( cfg_src: GithubRepoFileSrc, lookup_cfg_factory, ): import ccc.github repo_url = cfg_src.repository_url if not '://' in repo_url: repo_url = 'https://' + repo_url repo_url = urllib.parse.urlparse(repo_url) if not lookup_cfg_factory: raise RuntimeError('cannot resolve non-local cfg w/o bootstrap-cfg-factory') gh_api = ccc.github.github_api( ccc.github.github_cfg_for_hostname( repo_url.hostname, cfg_factory=lookup_cfg_factory, ), cfg_factory=lookup_cfg_factory, ) org, repo = repo_url.path.strip('/').split('/') gh_repo = gh_api.repository(org, repo) file_contents = gh_repo.file_contents( path=cfg_src.relpath, ref=gh_repo.default_branch, ).decoded.decode('utf-8') return yaml.safe_load(file_contents) @staticmethod def from_cfg_dir( cfg_dir: str, cfg_types_file='config_types.yaml', ): bootstrap_cfg_factory = ConfigFactory._from_cfg_dir( cfg_dir=cfg_dir, cfg_types_file=cfg_types_file, cfg_src_types=(LocalFileCfgSrc,), ) return ConfigFactory._from_cfg_dir( cfg_dir=cfg_dir, cfg_types_file=cfg_types_file, cfg_src_types=None, # all lookup_cfg_factory=bootstrap_cfg_factory, ) @staticmethod def _from_cfg_dir( cfg_dir: str, cfg_types_file='config_types.yaml', cfg_src_types=None, lookup_cfg_factory=None, ): cfg_dir = existing_dir(os.path.abspath(cfg_dir)) cfg_types_dict = parse_yaml_file(os.path.join(cfg_dir, cfg_types_file)) raw = {} raw[ConfigFactory.CFG_TYPES] = cfg_types_dict def retrieve_cfg(cfg_type): cfg_dict = {} for cfg_src in cfg_type.sources(): if cfg_src_types and type(cfg_src) not in cfg_src_types: continue if isinstance(cfg_src, LocalFileCfgSrc): parsed_cfg = ConfigFactory._parse_local_file( cfg_dir=cfg_dir, cfg_src=cfg_src, ) elif isinstance(cfg_src, GithubRepoFileSrc): parsed_cfg = ConfigFactory._parse_repo_file( cfg_src=cfg_src, lookup_cfg_factory=lookup_cfg_factory, ) else: raise NotImplementedError(cfg_src) for k,v in parsed_cfg.items(): if k in cfg_dict and cfg_dict[k] != v: raise ValueError(f'conflicting definition for {k=}') cfg_dict[k] = v return cfg_dict return ConfigFactory( raw_dict=raw, retrieve_cfg=retrieve_cfg, ) @staticmethod def from_dict(raw_dict: dict): raw = not_none(raw_dict) return ConfigFactory(raw_dict=raw) def __init__( self, raw_dict: dict, retrieve_cfg: typing.Callable[[ConfigType], dict]=None, ): self.raw = not_none(raw_dict) if self.CFG_TYPES not in self.raw: raise ValueError(f'missing required attribute: {self.CFG_TYPES}') self.retrieve_cfg = retrieve_cfg def _retrieve_cfg_elements(self, cfg_type_name: str): if not cfg_type_name in self.raw: cfg_type = self._cfg_type(cfg_type_name=cfg_type_name) if self.retrieve_cfg: cfg_dict = self.retrieve_cfg(cfg_type) else: cfg_dict = {} # XXX hacky: use empty-dict if there is no retrieval-callable self.raw[cfg_type_name] = cfg_dict @deprecated.deprecated def _configs(self, cfg_name: str): ''' returns all known cfg-element-names ''' self._retrieve_cfg_elements(cfg_type_name=cfg_name) return self.raw[cfg_name] @functools.lru_cache def _cfg_types(self): return { cfg.cfg_type_name(): cfg for cfg in ( dacite.from_dict( data_class=ConfigType, data=cfg_dict, config=dacite.Config( cast=[tuple], ), ) for cfg_dict in self.raw[self.CFG_TYPES].values() ) } def _cfg_type(self, cfg_type_name: str): cfg_type = self._cfg_types().get(cfg_type_name, None) if not cfg_type: raise ValueError('unknown cfg_type: ' + str(cfg_type_name)) return cfg_type def _cfg_types_raw(self): return self.raw[self.CFG_TYPES] def cfg_set(self, cfg_name: str) -> 'ConfigurationSet': ''' returns a new `ConfigurationSet` instance for the specified config name backed by the configured configuration source. ''' configs_dict = self._configs('cfg_set') if cfg_name not in configs_dict: raise ValueError('no cfg named {c} in {cs}'.format( c=cfg_name, cs=', '.join(configs_dict.keys()) ) ) return ConfigurationSet( cfg_factory=self, cfg_name=cfg_name, raw_dict=configs_dict[cfg_name] ) def _cfg_element(self, cfg_type_name: str, cfg_name: str): cfg_type = self._cfg_type(cfg_type_name=cfg_type_name) # retrieve model class c'tor - search module and sub-modules # TODO: switch to fully-qualified type names own_module = sys.modules[__name__] submodule_names = [ own_module.__name__ + '.' + m.name for m in pkgutil.iter_modules(own_module.__path__) ] for module_name in [__name__] + submodule_names: submodule_name = module_name.split('.')[-1] if module_name != __name__: module = getattr(__import__(module_name), submodule_name) else: module = sys.modules[submodule_name] # skip if module does not define our type if not hasattr(module, cfg_type.cfg_type()): continue # if type is defined, validate element_type = getattr(module, cfg_type.cfg_type()) if not type(element_type) == type: raise ValueError() # found it (write to cache as part of crazy workaround for kaniko) self._cfg_type_cache[cfg_type_name] = element_type break else: # workaround for kaniko, which will purge our poor modules on multi-stage-builds if cfg_type_name in self._cfg_type_cache: element_type = self._cfg_type_cache[cfg_type_name] else: print(f'{self._cfg_type_cache=}') raise ValueError(f'failed to find cfg type: {cfg_type.cfg_type()=}') # for now, let's assume all of our model element types are subtypes of NamedModelElement # (with the exception of ConfigurationSet) configs = self._configs(cfg_type.cfg_type_name()) if cfg_name not in configs: raise ConfigElementNotFoundError('no such cfg element: {cn}. Known: {es}'.format( cn=cfg_name, es=', '.join(configs.keys()) ) ) kwargs = {'raw_dict': configs[cfg_name]} if element_type == ConfigurationSet: kwargs.update({'cfg_name': cfg_name, 'cfg_factory': self}) else: kwargs['name'] = cfg_name element_instance = element_type(**kwargs) try: element_instance.validate() except ModelValidationError as mve: warning(f'validation error for {cfg_name} - ignored: {mve}') return element_instance def _cfg_elements(self, cfg_type_name: str): '''Returns all cfg_elements for the given cfg_type. Parameters ---------- cfg_type_name: str The name of the cfg_type whose instances should be retrieved. Yields ------- NamedModelElement Instance of the given cfg_type. Raises ------ ValueError If the specified cfg_type is unknown. ''' not_empty(cfg_type_name) self._retrieve_cfg_elements(cfg_type_name=cfg_type_name) for element_name in self._cfg_element_names(cfg_type_name): yield self._cfg_element(cfg_type_name, element_name) def _cfg_element_names(self, cfg_type_name: str): '''Returns cfg-elements of the given cfg_type Parameters ---------- cfg_type_name: str The cfg type name Returns ------- Iterable[str] Contains the names of all cfg-elements of the given cfg_type known to this ConfigFactory. Raises ------ ValueError If the specified cfg_type is unknown. ''' not_empty(cfg_type_name) self._retrieve_cfg_elements(cfg_type_name=cfg_type_name) known_types = self._cfg_types() if cfg_type_name not in known_types: raise ValueError("Unknown config type '{c}'. Known types: {k}".format( c=cfg_type_name, k=', '.join(known_types.keys()), )) if cfg_type_name in self.raw: return set(self.raw[cfg_type_name].keys()) else: return set() def __dir__(self): # prepend factory methods (improve REPL-shell experience) for cfg_type in self._cfg_types().values(): if (factory_method := cfg_type.factory_method()): yield factory_method yield from super().__dir__() def __getattr__(self, cfg_type_name): for cfg_type in self._cfg_types().values(): if cfg_type.factory_method() == cfg_type_name: break else: raise AttributeError(cfg_type_name) return functools.partial(self._cfg_element, cfg_type_name) class ConfigSetSerialiser: def __init__(self, cfg_sets: 'ConfigurationSet', cfg_factory: ConfigFactory): self.cfg_sets = not_none(cfg_sets) self.cfg_factory = not_none(cfg_factory) def serialise(self, output_format='json'): if not output_format == 'json': raise ValueError('not implemented') if len(self.cfg_sets) < 1: return '{}' # early exit for empty cfg_sets-set cfg_types = self.cfg_factory._cfg_types() # collect all cfg_names (<cfg-type>:[cfg-name]) cfg_mappings = {} for cfg_mapping in [cfg_set._cfg_mappings() for cfg_set in self.cfg_sets]: for cfg_type_name, cfg_set_mapping in cfg_mapping: cfg_type = cfg_types[cfg_type_name] if cfg_type not in cfg_mappings: cfg_mappings[cfg_type] = set() cfg_mappings[cfg_type].update(cfg_set_mapping['config_names']) # assumption: all cfg_sets share the same cfg_factory / all cfg_names are organized in one # global, flat namespace def serialise_element(cfg_type, cfg_names): elem_cfgs = {} for cfg_name in cfg_names: element = self.cfg_factory._cfg_element(cfg_type.cfg_type_name(), cfg_name) elem_cfgs[element.name()] = element.raw return (cfg_type.cfg_type_name(), elem_cfgs) serialised_elements = dict([serialise_element(t, n) for t, n in cfg_mappings.items()]) # store cfg_set serialised_elements['cfg_set'] = {cfg.name(): cfg.raw for cfg in self.cfg_sets} # store cfg_types metadata (TODO: patch source attributes) serialised_elements[ConfigFactory.CFG_TYPES] = self.cfg_factory._cfg_types_raw() return json.dumps(serialised_elements, indent=2) class ConfigurationSet(NamedModelElement): ''' Represents a set of corresponding configuration. Instances are created by `ConfigFactory`. `ConfigurationSet` is itself a factory, offering a set of factory methods which create concrete configuration objects based on the backing configuration source. Not intended to be instantiated by users of this module ''' def __init__(self, cfg_factory, cfg_name, *args, **kwargs): self.cfg_factory = not_none(cfg_factory) super().__init__(name=cfg_name, *args, **kwargs) # normalise cfg mappings for cfg_type_name, entry in self.raw.items(): if type(entry) == dict: entry = { 'config_names': entry['config_names'], 'default': entry.get('default', None) } elif type(entry) == str: entry = {'config_names': [entry], 'default': entry} self.raw[cfg_type_name] = entry def _optional_attributes(self): return { cfg_type_name for cfg_type_name in self.cfg_factory._cfg_types_raw() } def _cfg_mappings(self): return self.raw.items() def _cfg_element(self, cfg_type_name: str, cfg_name=None): if not cfg_name: cfg_name = self.raw[cfg_type_name]['default'] return self.cfg_factory._cfg_element( cfg_type_name=cfg_type_name, cfg_name=cfg_name, ) def _cfg_elements(self, cfg_type_name: str): '''Returns all container cfg elements of the given cfg_type Raises ------ ValueError If the specified cfg_type is unknown. ''' not_empty(cfg_type_name) for element_name in self._cfg_element_names(cfg_type_name): yield self._cfg_element(cfg_type_name, element_name) def _cfg_element_names(self, cfg_type_name: str): '''Returns all container cfg element names Raises ------ ValueError If the specified cfg_type is unknown. ''' not_empty(cfg_type_name) # ask factory for all known names. This ensures that the existance of the type is checked. all_cfg_element_names = self.cfg_factory._cfg_element_names(cfg_type_name=cfg_type_name) if cfg_type_name in self.raw.keys(): return all_cfg_element_names & set(self.raw[cfg_type_name]['config_names']) else: return set() def _default_name(self, cfg_type_name, cfg_name=None): if not cfg_name: return self.raw[cfg_type_name]['default'] else: return cfg_name def __getattr__(self, cfg_type_name): if not hasattr(self.cfg_factory, cfg_type_name): raise AttributeError(cfg_type_name) factory_method = getattr(self.cfg_factory, cfg_type_name) if not callable(factory_method): raise AttributeError(cfg_type_name) def get_default_element(cfg_name=None): if not cfg_name: cfg_name = self._default_name(cfg_type_name=cfg_type_name) return factory_method(cfg_name=cfg_name) return get_default_element def validate(self): cfg_types = self.cfg_factory._cfg_types() for cfg_type_name in cfg_types: for element in self._cfg_elements(cfg_type_name): element.validate() def cluster_domain_from_kubernetes_config(cfg_factory, kubernetes_config_name: str): kubernetes_cfg = cfg_factory.kubernetes(kubernetes_config_name) if not (cluster_domain := kubernetes_cfg.cluster_domain()): raise ValueError(f'No cluster domain configured in {kubernetes_config_name=}') return cluster_domain
33.008818
101
0.62476
import dataclasses import functools import json import os import pkgutil import sys import typing import urllib.parse import dacite import deprecated import yaml from model.base import ( ConfigElementNotFoundError, ModelValidationError, NamedModelElement, ) from ci.util import ( existing_dir, not_empty, not_none, parse_yaml_file, warning, ) dc = dataclasses.dataclass empty_list = dataclasses.field(default_factory=list) @dc(frozen=True) class CfgTypeSrc: pass @dc(frozen=True) class LocalFileCfgSrc(CfgTypeSrc): file: str @dc(frozen=True) class GithubRepoFileSrc(CfgTypeSrc): repository_url: str relpath: str @dc(frozen=True) class ConfigTypeModel: factory_method: typing.Optional[str] cfg_type_name: str type: str @dc(frozen=True) class ConfigType: model: ConfigTypeModel src: typing.Tuple[typing.Union[LocalFileCfgSrc, GithubRepoFileSrc]] = () def sources(self): return self.src def factory_method(self): return self.model.factory_method def cfg_type_name(self): return self.model.cfg_type_name def cfg_type(self): return self.model.type class ConfigFactory: CFG_TYPES = 'cfg_types' _cfg_type_cache = {} @staticmethod def _parse_local_file(cfg_dir: str, cfg_src: LocalFileCfgSrc): cfg_file = cfg_src.file return parse_yaml_file(os.path.join(cfg_dir, cfg_file)) @staticmethod def _parse_repo_file( cfg_src: GithubRepoFileSrc, lookup_cfg_factory, ): import ccc.github repo_url = cfg_src.repository_url if not '://' in repo_url: repo_url = 'https://' + repo_url repo_url = urllib.parse.urlparse(repo_url) if not lookup_cfg_factory: raise RuntimeError('cannot resolve non-local cfg w/o bootstrap-cfg-factory') gh_api = ccc.github.github_api( ccc.github.github_cfg_for_hostname( repo_url.hostname, cfg_factory=lookup_cfg_factory, ), cfg_factory=lookup_cfg_factory, ) org, repo = repo_url.path.strip('/').split('/') gh_repo = gh_api.repository(org, repo) file_contents = gh_repo.file_contents( path=cfg_src.relpath, ref=gh_repo.default_branch, ).decoded.decode('utf-8') return yaml.safe_load(file_contents) @staticmethod def from_cfg_dir( cfg_dir: str, cfg_types_file='config_types.yaml', ): bootstrap_cfg_factory = ConfigFactory._from_cfg_dir( cfg_dir=cfg_dir, cfg_types_file=cfg_types_file, cfg_src_types=(LocalFileCfgSrc,), ) return ConfigFactory._from_cfg_dir( cfg_dir=cfg_dir, cfg_types_file=cfg_types_file, cfg_src_types=None, lookup_cfg_factory=bootstrap_cfg_factory, ) @staticmethod def _from_cfg_dir( cfg_dir: str, cfg_types_file='config_types.yaml', cfg_src_types=None, lookup_cfg_factory=None, ): cfg_dir = existing_dir(os.path.abspath(cfg_dir)) cfg_types_dict = parse_yaml_file(os.path.join(cfg_dir, cfg_types_file)) raw = {} raw[ConfigFactory.CFG_TYPES] = cfg_types_dict def retrieve_cfg(cfg_type): cfg_dict = {} for cfg_src in cfg_type.sources(): if cfg_src_types and type(cfg_src) not in cfg_src_types: continue if isinstance(cfg_src, LocalFileCfgSrc): parsed_cfg = ConfigFactory._parse_local_file( cfg_dir=cfg_dir, cfg_src=cfg_src, ) elif isinstance(cfg_src, GithubRepoFileSrc): parsed_cfg = ConfigFactory._parse_repo_file( cfg_src=cfg_src, lookup_cfg_factory=lookup_cfg_factory, ) else: raise NotImplementedError(cfg_src) for k,v in parsed_cfg.items(): if k in cfg_dict and cfg_dict[k] != v: raise ValueError(f'conflicting definition for {k=}') cfg_dict[k] = v return cfg_dict return ConfigFactory( raw_dict=raw, retrieve_cfg=retrieve_cfg, ) @staticmethod def from_dict(raw_dict: dict): raw = not_none(raw_dict) return ConfigFactory(raw_dict=raw) def __init__( self, raw_dict: dict, retrieve_cfg: typing.Callable[[ConfigType], dict]=None, ): self.raw = not_none(raw_dict) if self.CFG_TYPES not in self.raw: raise ValueError(f'missing required attribute: {self.CFG_TYPES}') self.retrieve_cfg = retrieve_cfg def _retrieve_cfg_elements(self, cfg_type_name: str): if not cfg_type_name in self.raw: cfg_type = self._cfg_type(cfg_type_name=cfg_type_name) if self.retrieve_cfg: cfg_dict = self.retrieve_cfg(cfg_type) else: cfg_dict = {} self.raw[cfg_type_name] = cfg_dict @deprecated.deprecated def _configs(self, cfg_name: str): self._retrieve_cfg_elements(cfg_type_name=cfg_name) return self.raw[cfg_name] @functools.lru_cache def _cfg_types(self): return { cfg.cfg_type_name(): cfg for cfg in ( dacite.from_dict( data_class=ConfigType, data=cfg_dict, config=dacite.Config( cast=[tuple], ), ) for cfg_dict in self.raw[self.CFG_TYPES].values() ) } def _cfg_type(self, cfg_type_name: str): cfg_type = self._cfg_types().get(cfg_type_name, None) if not cfg_type: raise ValueError('unknown cfg_type: ' + str(cfg_type_name)) return cfg_type def _cfg_types_raw(self): return self.raw[self.CFG_TYPES] def cfg_set(self, cfg_name: str) -> 'ConfigurationSet': configs_dict = self._configs('cfg_set') if cfg_name not in configs_dict: raise ValueError('no cfg named {c} in {cs}'.format( c=cfg_name, cs=', '.join(configs_dict.keys()) ) ) return ConfigurationSet( cfg_factory=self, cfg_name=cfg_name, raw_dict=configs_dict[cfg_name] ) def _cfg_element(self, cfg_type_name: str, cfg_name: str): cfg_type = self._cfg_type(cfg_type_name=cfg_type_name) # TODO: switch to fully-qualified type names own_module = sys.modules[__name__] submodule_names = [ own_module.__name__ + '.' + m.name for m in pkgutil.iter_modules(own_module.__path__) ] for module_name in [__name__] + submodule_names: submodule_name = module_name.split('.')[-1] if module_name != __name__: module = getattr(__import__(module_name), submodule_name) else: module = sys.modules[submodule_name] # skip if module does not define our type if not hasattr(module, cfg_type.cfg_type()): continue # if type is defined, validate element_type = getattr(module, cfg_type.cfg_type()) if not type(element_type) == type: raise ValueError() # found it (write to cache as part of crazy workaround for kaniko) self._cfg_type_cache[cfg_type_name] = element_type break else: # workaround for kaniko, which will purge our poor modules on multi-stage-builds if cfg_type_name in self._cfg_type_cache: element_type = self._cfg_type_cache[cfg_type_name] else: print(f'{self._cfg_type_cache=}') raise ValueError(f'failed to find cfg type: {cfg_type.cfg_type()=}') # for now, let's assume all of our model element types are subtypes of NamedModelElement configs = self._configs(cfg_type.cfg_type_name()) if cfg_name not in configs: raise ConfigElementNotFoundError('no such cfg element: {cn}. Known: {es}'.format( cn=cfg_name, es=', '.join(configs.keys()) ) ) kwargs = {'raw_dict': configs[cfg_name]} if element_type == ConfigurationSet: kwargs.update({'cfg_name': cfg_name, 'cfg_factory': self}) else: kwargs['name'] = cfg_name element_instance = element_type(**kwargs) try: element_instance.validate() except ModelValidationError as mve: warning(f'validation error for {cfg_name} - ignored: {mve}') return element_instance def _cfg_elements(self, cfg_type_name: str): not_empty(cfg_type_name) self._retrieve_cfg_elements(cfg_type_name=cfg_type_name) for element_name in self._cfg_element_names(cfg_type_name): yield self._cfg_element(cfg_type_name, element_name) def _cfg_element_names(self, cfg_type_name: str): not_empty(cfg_type_name) self._retrieve_cfg_elements(cfg_type_name=cfg_type_name) known_types = self._cfg_types() if cfg_type_name not in known_types: raise ValueError("Unknown config type '{c}'. Known types: {k}".format( c=cfg_type_name, k=', '.join(known_types.keys()), )) if cfg_type_name in self.raw: return set(self.raw[cfg_type_name].keys()) else: return set() def __dir__(self): for cfg_type in self._cfg_types().values(): if (factory_method := cfg_type.factory_method()): yield factory_method yield from super().__dir__() def __getattr__(self, cfg_type_name): for cfg_type in self._cfg_types().values(): if cfg_type.factory_method() == cfg_type_name: break else: raise AttributeError(cfg_type_name) return functools.partial(self._cfg_element, cfg_type_name) class ConfigSetSerialiser: def __init__(self, cfg_sets: 'ConfigurationSet', cfg_factory: ConfigFactory): self.cfg_sets = not_none(cfg_sets) self.cfg_factory = not_none(cfg_factory) def serialise(self, output_format='json'): if not output_format == 'json': raise ValueError('not implemented') if len(self.cfg_sets) < 1: return '{}' cfg_types = self.cfg_factory._cfg_types() cfg_mappings = {} for cfg_mapping in [cfg_set._cfg_mappings() for cfg_set in self.cfg_sets]: for cfg_type_name, cfg_set_mapping in cfg_mapping: cfg_type = cfg_types[cfg_type_name] if cfg_type not in cfg_mappings: cfg_mappings[cfg_type] = set() cfg_mappings[cfg_type].update(cfg_set_mapping['config_names']) def serialise_element(cfg_type, cfg_names): elem_cfgs = {} for cfg_name in cfg_names: element = self.cfg_factory._cfg_element(cfg_type.cfg_type_name(), cfg_name) elem_cfgs[element.name()] = element.raw return (cfg_type.cfg_type_name(), elem_cfgs) serialised_elements = dict([serialise_element(t, n) for t, n in cfg_mappings.items()]) serialised_elements['cfg_set'] = {cfg.name(): cfg.raw for cfg in self.cfg_sets} serialised_elements[ConfigFactory.CFG_TYPES] = self.cfg_factory._cfg_types_raw() return json.dumps(serialised_elements, indent=2) class ConfigurationSet(NamedModelElement): def __init__(self, cfg_factory, cfg_name, *args, **kwargs): self.cfg_factory = not_none(cfg_factory) super().__init__(name=cfg_name, *args, **kwargs) for cfg_type_name, entry in self.raw.items(): if type(entry) == dict: entry = { 'config_names': entry['config_names'], 'default': entry.get('default', None) } elif type(entry) == str: entry = {'config_names': [entry], 'default': entry} self.raw[cfg_type_name] = entry def _optional_attributes(self): return { cfg_type_name for cfg_type_name in self.cfg_factory._cfg_types_raw() } def _cfg_mappings(self): return self.raw.items() def _cfg_element(self, cfg_type_name: str, cfg_name=None): if not cfg_name: cfg_name = self.raw[cfg_type_name]['default'] return self.cfg_factory._cfg_element( cfg_type_name=cfg_type_name, cfg_name=cfg_name, ) def _cfg_elements(self, cfg_type_name: str): not_empty(cfg_type_name) for element_name in self._cfg_element_names(cfg_type_name): yield self._cfg_element(cfg_type_name, element_name) def _cfg_element_names(self, cfg_type_name: str): not_empty(cfg_type_name) all_cfg_element_names = self.cfg_factory._cfg_element_names(cfg_type_name=cfg_type_name) if cfg_type_name in self.raw.keys(): return all_cfg_element_names & set(self.raw[cfg_type_name]['config_names']) else: return set() def _default_name(self, cfg_type_name, cfg_name=None): if not cfg_name: return self.raw[cfg_type_name]['default'] else: return cfg_name def __getattr__(self, cfg_type_name): if not hasattr(self.cfg_factory, cfg_type_name): raise AttributeError(cfg_type_name) factory_method = getattr(self.cfg_factory, cfg_type_name) if not callable(factory_method): raise AttributeError(cfg_type_name) def get_default_element(cfg_name=None): if not cfg_name: cfg_name = self._default_name(cfg_type_name=cfg_type_name) return factory_method(cfg_name=cfg_name) return get_default_element def validate(self): cfg_types = self.cfg_factory._cfg_types() for cfg_type_name in cfg_types: for element in self._cfg_elements(cfg_type_name): element.validate() def cluster_domain_from_kubernetes_config(cfg_factory, kubernetes_config_name: str): kubernetes_cfg = cfg_factory.kubernetes(kubernetes_config_name) if not (cluster_domain := kubernetes_cfg.cluster_domain()): raise ValueError(f'No cluster domain configured in {kubernetes_config_name=}') return cluster_domain
true
true
f7f3e06fe4fdcf1eecaf0307a964d34e523c9087
5,775
py
Python
test/unit/test_receipt.py
pavel52rus/yandex-checkout-sdk-python
10c8b0ce12712bca675254f2a230f9fc0e1cb9b4
[ "MIT" ]
null
null
null
test/unit/test_receipt.py
pavel52rus/yandex-checkout-sdk-python
10c8b0ce12712bca675254f2a230f9fc0e1cb9b4
[ "MIT" ]
null
null
null
test/unit/test_receipt.py
pavel52rus/yandex-checkout-sdk-python
10c8b0ce12712bca675254f2a230f9fc0e1cb9b4
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- import unittest from yandex_checkout.domain.models.amount import Amount from yandex_checkout.domain.models.currency import Currency from yandex_checkout.domain.models.receipt import Receipt from yandex_checkout.domain.models.receipt_customer import ReceiptCustomer from yandex_checkout.domain.models.receipt_item import ReceiptItem, PaymentSubject, PaymentMode class TestReceipt(unittest.TestCase): def test_receipt_cast(self): self.maxDiff = None receipt = Receipt() receipt.phone = '79990000000' receipt.email = 'test@email.com' receipt.tax_system_code = 1 receipt.items = [ { "description": "Product 1", "quantity": 2.0, "amount": { "value": 250.0, "currency": Currency.RUB }, "vat_code": "2" }, ReceiptItem( { "description": "Product 2", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, "payment_subject": PaymentSubject.AGENT_COMMISSION, "payment_mode": PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, } ) ] self.assertTrue(receipt.has_items()) self.assertEqual({ 'customer': { 'phone': '79990000000', 'email': 'test@email.com', }, 'phone': '79990000000', 'email': 'test@email.com', 'tax_system_code': 1, 'items': [ { "description": "Product 1", "quantity": 2.0, "amount": { "value": 250.0, "currency": Currency.RUB }, "vat_code": 2 }, { "description": "Product 2", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, 'payment_subject': PaymentSubject.AGENT_COMMISSION, 'payment_mode': PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, } ] }, dict(receipt)) customer = ReceiptCustomer({'phone': '79990000000', 'email': 'test@email.com'}) self.assertEqual({'phone': '79990000000', 'email': 'test@email.com'}, dict(receipt.customer)) self.assertEqual(dict(customer), dict(receipt.customer)) with self.assertRaises(TypeError): receipt.tax_system_code = 'invalid type' with self.assertRaises(TypeError): receipt.items = 'invalid items' with self.assertRaises(TypeError): receipt.items = [ 'invalid item value', { "description": "Product 2", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, "payment_subject": PaymentSubject.AGENT_COMMISSION, "payment_mode": PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, } ] def test_receipt_item(self): receipt_item = ReceiptItem() receipt_item.description = "Product" receipt_item.quantity = 1.0 receipt_item.amount = Amount({ "value": 100.0, "currency": Currency.RUB }) receipt_item.vat_code = 2 receipt_item.payment_subject = PaymentSubject.AGENT_COMMISSION receipt_item.payment_mode = PaymentMode.ADVANCE receipt_item.product_code = '00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00' receipt_item.country_of_origin_code = "RU" receipt_item.customs_declaration_number = "90/210" receipt_item.excise = 2.00 self.assertEqual({ "description": "Product", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, "payment_subject": PaymentSubject.AGENT_COMMISSION, "payment_mode": PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, }, dict(receipt_item)) with self.assertRaises(TypeError): receipt_item.amount = 'invalid amount'
38.758389
134
0.491948
import unittest from yandex_checkout.domain.models.amount import Amount from yandex_checkout.domain.models.currency import Currency from yandex_checkout.domain.models.receipt import Receipt from yandex_checkout.domain.models.receipt_customer import ReceiptCustomer from yandex_checkout.domain.models.receipt_item import ReceiptItem, PaymentSubject, PaymentMode class TestReceipt(unittest.TestCase): def test_receipt_cast(self): self.maxDiff = None receipt = Receipt() receipt.phone = '79990000000' receipt.email = 'test@email.com' receipt.tax_system_code = 1 receipt.items = [ { "description": "Product 1", "quantity": 2.0, "amount": { "value": 250.0, "currency": Currency.RUB }, "vat_code": "2" }, ReceiptItem( { "description": "Product 2", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, "payment_subject": PaymentSubject.AGENT_COMMISSION, "payment_mode": PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, } ) ] self.assertTrue(receipt.has_items()) self.assertEqual({ 'customer': { 'phone': '79990000000', 'email': 'test@email.com', }, 'phone': '79990000000', 'email': 'test@email.com', 'tax_system_code': 1, 'items': [ { "description": "Product 1", "quantity": 2.0, "amount": { "value": 250.0, "currency": Currency.RUB }, "vat_code": 2 }, { "description": "Product 2", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, 'payment_subject': PaymentSubject.AGENT_COMMISSION, 'payment_mode': PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, } ] }, dict(receipt)) customer = ReceiptCustomer({'phone': '79990000000', 'email': 'test@email.com'}) self.assertEqual({'phone': '79990000000', 'email': 'test@email.com'}, dict(receipt.customer)) self.assertEqual(dict(customer), dict(receipt.customer)) with self.assertRaises(TypeError): receipt.tax_system_code = 'invalid type' with self.assertRaises(TypeError): receipt.items = 'invalid items' with self.assertRaises(TypeError): receipt.items = [ 'invalid item value', { "description": "Product 2", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, "payment_subject": PaymentSubject.AGENT_COMMISSION, "payment_mode": PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, } ] def test_receipt_item(self): receipt_item = ReceiptItem() receipt_item.description = "Product" receipt_item.quantity = 1.0 receipt_item.amount = Amount({ "value": 100.0, "currency": Currency.RUB }) receipt_item.vat_code = 2 receipt_item.payment_subject = PaymentSubject.AGENT_COMMISSION receipt_item.payment_mode = PaymentMode.ADVANCE receipt_item.product_code = '00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00' receipt_item.country_of_origin_code = "RU" receipt_item.customs_declaration_number = "90/210" receipt_item.excise = 2.00 self.assertEqual({ "description": "Product", "quantity": 1.0, "amount": { "value": 100.0, "currency": Currency.RUB }, "vat_code": 2, "payment_subject": PaymentSubject.AGENT_COMMISSION, "payment_mode": PaymentMode.ADVANCE, "product_code": "00 00 00 01 00 21 FA 41 00 23 05 41 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 12 00 AB 00", "country_of_origin_code": "RU", "customs_declaration_number": "90/210", "excise": 2.00, }, dict(receipt_item)) with self.assertRaises(TypeError): receipt_item.amount = 'invalid amount'
true
true
f7f3e0e97869246bb02792b6ad6050255f2e66d8
2,694
py
Python
lib/googlecloudsdk/core/resolvers.py
IsaacHuang/google-cloud-sdk
52afa5d1a75dff08f4f5380c5cccc015bf796ca5
[ "Apache-2.0" ]
null
null
null
lib/googlecloudsdk/core/resolvers.py
IsaacHuang/google-cloud-sdk
52afa5d1a75dff08f4f5380c5cccc015bf796ca5
[ "Apache-2.0" ]
null
null
null
lib/googlecloudsdk/core/resolvers.py
IsaacHuang/google-cloud-sdk
52afa5d1a75dff08f4f5380c5cccc015bf796ca5
[ "Apache-2.0" ]
2
2020-07-25T05:03:06.000Z
2020-11-04T04:55:57.000Z
# Copyright 2014 Google Inc. All Rights Reserved. """Resolvers for resource parameters.""" from googlecloudsdk.core import exceptions class Error(exceptions.Error): """Errors for this module.""" class InconsistentArgumentError(Error): def __init__(self, param, values): super(InconsistentArgumentError, self).__init__( 'got multiple values for [{param}]: {values}'.format( param=param, values=', '.join(values))) class UnsetArgumentError(Error): def __init__(self, visible_name): super(UnsetArgumentError, self).__init__( 'resource is ambiguous, try specifying [{name}]'.format( name=visible_name)) def FromProperty(prop): """Get a default value from a property. Args: prop: properties._Property, The property to fetch. Returns: A niladic function that fetches the property. """ def DefaultFunc(): return prop.Get(required=True) return DefaultFunc def FromArgument(visible_name, value): """Infer a parameter from a flag, or explain what's wrong. Args: visible_name: str, The flag as it would be typed by the user. eg, '--zone'. value: The value of that flag taken from the command-line arguments. Returns: A niladic function that returns the value. """ def DefaultFunc(): if value is None: raise UnsetArgumentError(visible_name) return value return DefaultFunc def ForceParamEquality(param, resources, resolver=None): """Ensure that a set of resources all have the same value for a paramter. After this function is called, every resource will have the same value for the parameter. That value will be None if no resource had the parameter already set. If any had the value set, they will all have that value, and if there is disagreement an exception will be raised. Args: param: str, The name of the parameter that is being forced to equalize. resources: [Resource], A list of the resources that need to be in agreement. resolver: str or func->str, There is no value set in any resources and this resolver is provided, use the resolver to figure out the value. Raises: InconsistentArgumentError: If one or more resources has the parameter set and there is disagreement. """ all_values = set() for resource in resources: r_value = getattr(resource, param) if r_value: all_values.add(r_value) if len(all_values) > 1: raise InconsistentArgumentError(param, list(all_values)) if all_values: value = all_values.pop() else: value = resolver() if callable(resolver) else resolver if value: for resource in resources: setattr(resource, param, value)
28.659574
80
0.707498
from googlecloudsdk.core import exceptions class Error(exceptions.Error): class InconsistentArgumentError(Error): def __init__(self, param, values): super(InconsistentArgumentError, self).__init__( 'got multiple values for [{param}]: {values}'.format( param=param, values=', '.join(values))) class UnsetArgumentError(Error): def __init__(self, visible_name): super(UnsetArgumentError, self).__init__( 'resource is ambiguous, try specifying [{name}]'.format( name=visible_name)) def FromProperty(prop): def DefaultFunc(): return prop.Get(required=True) return DefaultFunc def FromArgument(visible_name, value): def DefaultFunc(): if value is None: raise UnsetArgumentError(visible_name) return value return DefaultFunc def ForceParamEquality(param, resources, resolver=None): all_values = set() for resource in resources: r_value = getattr(resource, param) if r_value: all_values.add(r_value) if len(all_values) > 1: raise InconsistentArgumentError(param, list(all_values)) if all_values: value = all_values.pop() else: value = resolver() if callable(resolver) else resolver if value: for resource in resources: setattr(resource, param, value)
true
true
f7f3e27ff9d88bbdbc1b4e434eabaf57988ea1c8
589
py
Python
DMOJ/DMOPC/DMOPC_19_C6P2_Grade_10_Math.py
Togohogo1/pg
ee3c36acde47769c66ee13a227762ee677591375
[ "MIT" ]
null
null
null
DMOJ/DMOPC/DMOPC_19_C6P2_Grade_10_Math.py
Togohogo1/pg
ee3c36acde47769c66ee13a227762ee677591375
[ "MIT" ]
1
2021-10-14T18:26:56.000Z
2021-10-14T18:26:56.000Z
DMOJ/DMOPC/DMOPC_19_C6P2_Grade_10_Math.py
Togohogo1/pg
ee3c36acde47769c66ee13a227762ee677591375
[ "MIT" ]
1
2021-08-06T03:39:55.000Z
2021-08-06T03:39:55.000Z
a, b = map(int, input().split()) def primeFactors(n): primes = [] while n % 2 == 0: primes.append(2) n //= 2 for i in range(3, int(n**0.5+1), 2): while n % i == 0: primes.append(i) n //= i if n > 2: primes.append(n) return primes def fact(b, a): count = 0 while b % a == 0: count += 1 b //= a return count ans = 0.0 primes = primeFactors(a) for i in range(max(primes), b+1, max(primes)): ans += fact(i, max(primes)) ans //= primes.count(max(primes)) print(int(ans))
14.365854
46
0.480475
a, b = map(int, input().split()) def primeFactors(n): primes = [] while n % 2 == 0: primes.append(2) n //= 2 for i in range(3, int(n**0.5+1), 2): while n % i == 0: primes.append(i) n //= i if n > 2: primes.append(n) return primes def fact(b, a): count = 0 while b % a == 0: count += 1 b //= a return count ans = 0.0 primes = primeFactors(a) for i in range(max(primes), b+1, max(primes)): ans += fact(i, max(primes)) ans //= primes.count(max(primes)) print(int(ans))
true
true
f7f3e295196a94a0944693cf9e4518fb9dc94a3c
1,141
py
Python
Sorting/mergeSort.py
pingrunhuang/CodeChallenge
a8e5274e04c47d851836197907266418af4f1a22
[ "MIT" ]
null
null
null
Sorting/mergeSort.py
pingrunhuang/CodeChallenge
a8e5274e04c47d851836197907266418af4f1a22
[ "MIT" ]
null
null
null
Sorting/mergeSort.py
pingrunhuang/CodeChallenge
a8e5274e04c47d851836197907266418af4f1a22
[ "MIT" ]
null
null
null
from collections import deque """ nlog(n) """ def merge(lList, rList): ''' Return a merged list ''' result=[] left_list=deque(lList) right_list=deque(rList) while len(left_list)!=0 and len(right_list)!=0: ''' Wrong idea here is trying to pop the first element at first, some element on the right will be missing left_ele=left_list.popleft() right_ele = right_list.popleft() ''' if left_list[0]>right_list[0]: result.append(left_list.popleft()) else: result.append(right_list.popleft()) while len(left_list)!=0: result.append(left_list.popleft()) while len(right_list)!=0: result.append(right_list.popleft()) return result def mergeSort(l): if len(l)<=1: return l n=len(l) middle_index = int(n/2) # devide part: devide each sub array into sorted array left_halve = mergeSort(l[:middle_index]) right_halve = mergeSort(l[middle_index:]) return merge(left_halve, right_halve) if __name__=='__main__': test_case1=[12, 11, 13, 5, 6, 7] print(mergeSort(test_case1))
27.829268
110
0.629273
from collections import deque def merge(lList, rList): result=[] left_list=deque(lList) right_list=deque(rList) while len(left_list)!=0 and len(right_list)!=0: if left_list[0]>right_list[0]: result.append(left_list.popleft()) else: result.append(right_list.popleft()) while len(left_list)!=0: result.append(left_list.popleft()) while len(right_list)!=0: result.append(right_list.popleft()) return result def mergeSort(l): if len(l)<=1: return l n=len(l) middle_index = int(n/2) left_halve = mergeSort(l[:middle_index]) right_halve = mergeSort(l[middle_index:]) return merge(left_halve, right_halve) if __name__=='__main__': test_case1=[12, 11, 13, 5, 6, 7] print(mergeSort(test_case1))
true
true
f7f3e2acc10d9f1bf59378bbb9801a027544671f
334
py
Python
packaging/flydra_compat/flydra/__init__.py
elhananby/flydra
09b86859b1863700cdea0bbcdd4758da6c83930b
[ "Apache-2.0", "MIT" ]
45
2017-08-25T06:46:56.000Z
2021-08-29T16:42:49.000Z
packaging/flydra_compat/flydra/__init__.py
elhananby/flydra
09b86859b1863700cdea0bbcdd4758da6c83930b
[ "Apache-2.0", "MIT" ]
7
2017-10-16T10:46:20.000Z
2020-12-03T16:42:55.000Z
packaging/flydra_compat/flydra/__init__.py
elhananby/flydra
09b86859b1863700cdea0bbcdd4758da6c83930b
[ "Apache-2.0", "MIT" ]
21
2018-04-11T09:06:40.000Z
2021-12-26T23:38:40.000Z
import os import sys from flydra import * import warnings __version__ = "0.1.0" err_str = ('The module "flydra" is deprecated. Use "flydra_core" or ' '"flydra_camnode" as appropriate instead.') if os.environ.get('FLYDRA_NO_BACKWARDS_COMPAT','0') != '0': raise ImportError(err_str) warnings.warn(err_str, DeprecationWarning)
25.692308
69
0.739521
import os import sys from flydra import * import warnings __version__ = "0.1.0" err_str = ('The module "flydra" is deprecated. Use "flydra_core" or ' '"flydra_camnode" as appropriate instead.') if os.environ.get('FLYDRA_NO_BACKWARDS_COMPAT','0') != '0': raise ImportError(err_str) warnings.warn(err_str, DeprecationWarning)
true
true
f7f3e66a5be1ae0e22867e4f3957cc4e86c4f87c
4,908
py
Python
app/map.py
mbroz/feel-the-streets
6e21a496f1530b0500ca66e11712f3f31cd857ae
[ "MIT" ]
null
null
null
app/map.py
mbroz/feel-the-streets
6e21a496f1530b0500ca66e11712f3f31cd857ae
[ "MIT" ]
null
null
null
app/map.py
mbroz/feel-the-streets
6e21a496f1530b0500ca66e11712f3f31cd857ae
[ "MIT" ]
null
null
null
import logging from osm_db import EntitiesQuery, FieldNamed, AreaDatabase from pygeodesy.ellipsoidalVincenty import LatLon import shapely.wkb as wkb from shapely.geometry.point import Point from .geometry_utils import distance_filter, effective_width_filter, xy_ranges_bounding_square from .measuring import measure from .models import Bookmark, LastLocation from . import services log = logging.getLogger(__name__) class Map: def __init__(self, map_id, map_name): self._id = map_id self._name = map_name self._db = AreaDatabase.open_existing(map_id, False) self._rough_distant_cache = None def intersections_at_position(self, position, effective_width, fast=True): x, y = (position.lon, position.lat) min_x, min_y, max_x, max_y = xy_ranges_bounding_square(position, effective_width or 1.0) query = EntitiesQuery() query.set_rectangle_of_interest(min_x, max_x, min_y, max_y) if fast: query.set_excluded_discriminators(["Route", "Boundary"]) with measure("Retrieve candidates"): candidates = self._db.get_entities(query) candidate_ids = [e.id for e in candidates] effectively_inside = effective_width_filter(candidates, position) with measure("Intersection query"): intersecting = self._db.get_entities_really_intersecting(candidate_ids, x, y, fast) return list(intersecting) + effectively_inside def roughly_within_distance(self, position, distance, fast=True): if fast and self._rough_distant_cache is not None and self._rough_distant_cache[0] == position: return self._rough_distant_cache[1] min_x, min_y, max_x, max_y = xy_ranges_bounding_square(position, distance*2) query = EntitiesQuery() query.set_rectangle_of_interest(min_x, max_x, min_y, max_y) if fast: query.set_excluded_discriminators(["Boundary", "Route"]) with measure("Index query"): rough_distant = self._db.get_entities(query) if fast: self._rough_distant_cache = (position, rough_distant) return rough_distant def within_distance(self, position, distance, fast=True): rough_distant = self.roughly_within_distance(position, distance, fast) entities = distance_filter(rough_distant, position, distance) log.debug("The distance filter decreased the count of entities from %s to %s.", len(rough_distant), len(entities)) return entities def add_bookmark(self, name, lat, lon): bookmark = Bookmark(name=name, longitude=lon, latitude=lat, area=self._id, id=0) services.app_db().add_bookmark(bookmark) @property def bookmarks(self): return services.app_db().bookmarks_for_area(self._id) def remove_bookmark(self, mark): services.app_db().remove_bookmark(mark.id) @property def _last_location_entity(self): return services.app_db().last_location_for(str(self._id)) @property def last_location(self): loc = self._last_location_entity if loc: return LatLon(loc.latitude, loc.longitude) else: return None @last_location.setter def last_location(self, val): services.app_db().update_last_location_for(str(self._id), val.lat, val.lon) @property def default_start_location(self): query = EntitiesQuery() query.set_limit(1) query.set_included_discriminators(["Place"]) query.add_condition(FieldNamed("name").eq(self._name)) candidates =self._db.get_entities(query) if not candidates: log.warn("Area %s does not have a Place entity, falling back to the first entity in the database.", self._name) query = EntitiesQuery() query.set_limit(1) candidates = self._db.get_entities(query) entity = candidates[0] geom = wkb.loads(entity.geometry) if not isinstance(geom, Point): geom = geom.representative_point() lon = geom.x lat = geom.y return LatLon(lat, lon) def parents_of(self, entity): query = EntitiesQuery() query.set_parent_id(entity.id) return self._db.get_entities(query) def children_of(self, entity): query = EntitiesQuery() query.set_child_id(entity.id) return self._db.get_entities(query) def get_child_count(self, parent_id): return self._db.get_child_count(parent_id) def get_parent_count(self, child_id): return self._db.get_parent_count(child_id) def get_entities(self, query): #db = AreaDatabase.open_existing(self._id, server_side=False) return self._db.get_entities(query)
41.243697
124
0.66361
import logging from osm_db import EntitiesQuery, FieldNamed, AreaDatabase from pygeodesy.ellipsoidalVincenty import LatLon import shapely.wkb as wkb from shapely.geometry.point import Point from .geometry_utils import distance_filter, effective_width_filter, xy_ranges_bounding_square from .measuring import measure from .models import Bookmark, LastLocation from . import services log = logging.getLogger(__name__) class Map: def __init__(self, map_id, map_name): self._id = map_id self._name = map_name self._db = AreaDatabase.open_existing(map_id, False) self._rough_distant_cache = None def intersections_at_position(self, position, effective_width, fast=True): x, y = (position.lon, position.lat) min_x, min_y, max_x, max_y = xy_ranges_bounding_square(position, effective_width or 1.0) query = EntitiesQuery() query.set_rectangle_of_interest(min_x, max_x, min_y, max_y) if fast: query.set_excluded_discriminators(["Route", "Boundary"]) with measure("Retrieve candidates"): candidates = self._db.get_entities(query) candidate_ids = [e.id for e in candidates] effectively_inside = effective_width_filter(candidates, position) with measure("Intersection query"): intersecting = self._db.get_entities_really_intersecting(candidate_ids, x, y, fast) return list(intersecting) + effectively_inside def roughly_within_distance(self, position, distance, fast=True): if fast and self._rough_distant_cache is not None and self._rough_distant_cache[0] == position: return self._rough_distant_cache[1] min_x, min_y, max_x, max_y = xy_ranges_bounding_square(position, distance*2) query = EntitiesQuery() query.set_rectangle_of_interest(min_x, max_x, min_y, max_y) if fast: query.set_excluded_discriminators(["Boundary", "Route"]) with measure("Index query"): rough_distant = self._db.get_entities(query) if fast: self._rough_distant_cache = (position, rough_distant) return rough_distant def within_distance(self, position, distance, fast=True): rough_distant = self.roughly_within_distance(position, distance, fast) entities = distance_filter(rough_distant, position, distance) log.debug("The distance filter decreased the count of entities from %s to %s.", len(rough_distant), len(entities)) return entities def add_bookmark(self, name, lat, lon): bookmark = Bookmark(name=name, longitude=lon, latitude=lat, area=self._id, id=0) services.app_db().add_bookmark(bookmark) @property def bookmarks(self): return services.app_db().bookmarks_for_area(self._id) def remove_bookmark(self, mark): services.app_db().remove_bookmark(mark.id) @property def _last_location_entity(self): return services.app_db().last_location_for(str(self._id)) @property def last_location(self): loc = self._last_location_entity if loc: return LatLon(loc.latitude, loc.longitude) else: return None @last_location.setter def last_location(self, val): services.app_db().update_last_location_for(str(self._id), val.lat, val.lon) @property def default_start_location(self): query = EntitiesQuery() query.set_limit(1) query.set_included_discriminators(["Place"]) query.add_condition(FieldNamed("name").eq(self._name)) candidates =self._db.get_entities(query) if not candidates: log.warn("Area %s does not have a Place entity, falling back to the first entity in the database.", self._name) query = EntitiesQuery() query.set_limit(1) candidates = self._db.get_entities(query) entity = candidates[0] geom = wkb.loads(entity.geometry) if not isinstance(geom, Point): geom = geom.representative_point() lon = geom.x lat = geom.y return LatLon(lat, lon) def parents_of(self, entity): query = EntitiesQuery() query.set_parent_id(entity.id) return self._db.get_entities(query) def children_of(self, entity): query = EntitiesQuery() query.set_child_id(entity.id) return self._db.get_entities(query) def get_child_count(self, parent_id): return self._db.get_child_count(parent_id) def get_parent_count(self, child_id): return self._db.get_parent_count(child_id) def get_entities(self, query): return self._db.get_entities(query)
true
true
f7f3e721b0c4175f354707eecb8a4ada1528d845
4,757
py
Python
etl/imap_to_redshift.py
airflow-plugins/example_dags
3cf6b9bb59aa99dfadfef0391530b55a599bc55c
[ "Apache-2.0" ]
297
2018-02-14T03:36:35.000Z
2022-03-30T22:18:07.000Z
etl/imap_to_redshift.py
airflow-plugins/example_dags
3cf6b9bb59aa99dfadfef0391530b55a599bc55c
[ "Apache-2.0" ]
1
2018-09-28T23:16:41.000Z
2018-09-28T23:16:41.000Z
etl/imap_to_redshift.py
airflow-plugins/example_dags
3cf6b9bb59aa99dfadfef0391530b55a599bc55c
[ "Apache-2.0" ]
68
2018-03-02T03:43:58.000Z
2022-01-18T05:11:04.000Z
""" An example DAG designed to: 1) Access an IMAP Server 2) Search the inbox for an email with a specific subject 3) Pull in the csv attachments of the email and store them in S3 4) Load these files into Redshift. This files contains one dag: - An ongoing daily workflow. Each DAG makes use of two custom operators: - IMAPToS3Operator https://github.com/airflow-plugins/imap_plugin/blob/master/operators/imap_to_s3_operator.py#L13 - S3ToRedshiftOperator https://github.com/airflow-plugins/redshift_plugin/blob/master/operators/s3_to_redshift_operator.py#L13 """ from datetime import datetime, timedelta from airflow import DAG from airflow.operators.dummy_operator import DummyOperator from airflow.operators import ImapToS3Operator from airflow.operators import S3ToRedshiftOperator IMAP_CONN_ID = '' IMAP_EMAIL = '' S3_CONN_ID = '' S3_BUCKET = '' REDSHIFT_SCHEMA = '' REDSHIFT_CONN_ID = '' TIME = '{{ ts_nodash }}' email_workflows = [ { 'id': 'transaction', 'name': 'Transaction', 'fields': [ {'name': "event_code", 'type': "varchar(256)"}, {'name': "customer_id", 'type': "varchar(256)"}, {'name': "date", 'type': "timestamp"}, {'name': "code", 'type': "varchar(256)"}, {'name': "name", 'type': "varchar(256)"}, {'name': "class_code", 'type': "varchar(256)"}, {'name': "price", 'type': "varchar(256)"}, {'name': "order_qty", 'type': "varchar(256)"}, ] }, { 'id': 'customer', 'name': 'Customers', 'fields': [ {'name': "customer_id", 'type': "varchar(256)"}, {'name': "full_name", 'type': "varchar(256)"}, {'name': "mail_addr1", 'type': "varchar(256)"}, {'name': "mail_addr2", 'type': "varchar(256)"}, {'name': "mail_city", 'type': "varchar(256)"}, {'name': "mail_state", 'type': "varchar(256)"}, {'name': "mail_zip", 'type': "varchar(256)"}, {'name': "mail_country", 'type': "varchar(256)"}, {'name': "bill_addr1", 'type': "varchar(256)"}, {'name': "bill_addr2", 'type': "varchar(256)"}, {'name': "bill_state", 'type': "varchar(256)"}, {'name': "bill_city", 'type': "varchar(256)"}, {'name': "bill_zip", 'type': "varchar(256)"}, {'name': "bill_country", 'type': "varchar(256)"}, {'name': "bill_name", 'type': "varchar(256)"}, {'name': "phone", 'type': "varchar(256)"}, {'name': "email", 'type': "varchar(256)"} ] }, { 'id': 'event', 'name': 'Events', 'fields': [ {'name': "code", 'type': "varchar(256)"}, {'name': "name", 'type': "varchar(256)"}, {'name': "facility_code", 'type': "varchar(256)"}, {'name': "facility_name", 'type': "varchar(256)"}, {'name': "group_code", 'type': "varchar(256)"}, {'name': "group_name", 'type': "varchar(256)"}, {'name': "type_code", 'type': "varchar(256)"}, {'name': "type", 'type': "varchar(256)"}, {'name': "date", 'type': "timestamp"}, {'name': "keywords", 'type': "varchar"}, {'name': "tags", 'type': "varchar"} ] } ] default_args = { 'start_date': datetime(2017, 2, 14, 0, 0), 'email': [], 'email_on_failure': True, 'email_on_retry': False, 'retries': 2, 'retry_delay': timedelta(minutes=5) } dag = DAG( 'caa_imap_to_redshift', schedule_interval='@daily', default_args=default_args, catchup=False ) with dag: kick_off_dag = DummyOperator(task_id='kick_off_dag') for workflow in email_workflows: type = workflow.get('id', None) name = workflow.get('name', None) fields = workflow.get('fields', None) S3_KEY = '{type}_{time}.csv'.format(type=workflow['id'], time=TIME) imap_to_s3 = ImapToS3Operator( task_id='{}_to_s3'.format(type), imap_conn_id=IMAP_CONN_ID, imap_email=IMAP_EMAIL, imap_subject=name, s3_conn_id=S3_CONN_ID, s3_bucket=S3_BUCKET, s3_key=S3_KEY, ) s3_to_redshift = S3ToRedshiftOperator( task_id='{}_to_redshift'.format(type), s3_conn_id=S3_CONN_ID, s3_bucket=S3_BUCKET, s3_key=S3_KEY, redshift_conn_id=REDSHIFT_CONN_ID, redshift_schema=REDSHIFT_SCHEMA, table=type, origin_schema=fields, schema_location='local', ) kick_off_dag >> imap_to_s3 >> s3_to_redshift
32.582192
107
0.54383
from datetime import datetime, timedelta from airflow import DAG from airflow.operators.dummy_operator import DummyOperator from airflow.operators import ImapToS3Operator from airflow.operators import S3ToRedshiftOperator IMAP_CONN_ID = '' IMAP_EMAIL = '' S3_CONN_ID = '' S3_BUCKET = '' REDSHIFT_SCHEMA = '' REDSHIFT_CONN_ID = '' TIME = '{{ ts_nodash }}' email_workflows = [ { 'id': 'transaction', 'name': 'Transaction', 'fields': [ {'name': "event_code", 'type': "varchar(256)"}, {'name': "customer_id", 'type': "varchar(256)"}, {'name': "date", 'type': "timestamp"}, {'name': "code", 'type': "varchar(256)"}, {'name': "name", 'type': "varchar(256)"}, {'name': "class_code", 'type': "varchar(256)"}, {'name': "price", 'type': "varchar(256)"}, {'name': "order_qty", 'type': "varchar(256)"}, ] }, { 'id': 'customer', 'name': 'Customers', 'fields': [ {'name': "customer_id", 'type': "varchar(256)"}, {'name': "full_name", 'type': "varchar(256)"}, {'name': "mail_addr1", 'type': "varchar(256)"}, {'name': "mail_addr2", 'type': "varchar(256)"}, {'name': "mail_city", 'type': "varchar(256)"}, {'name': "mail_state", 'type': "varchar(256)"}, {'name': "mail_zip", 'type': "varchar(256)"}, {'name': "mail_country", 'type': "varchar(256)"}, {'name': "bill_addr1", 'type': "varchar(256)"}, {'name': "bill_addr2", 'type': "varchar(256)"}, {'name': "bill_state", 'type': "varchar(256)"}, {'name': "bill_city", 'type': "varchar(256)"}, {'name': "bill_zip", 'type': "varchar(256)"}, {'name': "bill_country", 'type': "varchar(256)"}, {'name': "bill_name", 'type': "varchar(256)"}, {'name': "phone", 'type': "varchar(256)"}, {'name': "email", 'type': "varchar(256)"} ] }, { 'id': 'event', 'name': 'Events', 'fields': [ {'name': "code", 'type': "varchar(256)"}, {'name': "name", 'type': "varchar(256)"}, {'name': "facility_code", 'type': "varchar(256)"}, {'name': "facility_name", 'type': "varchar(256)"}, {'name': "group_code", 'type': "varchar(256)"}, {'name': "group_name", 'type': "varchar(256)"}, {'name': "type_code", 'type': "varchar(256)"}, {'name': "type", 'type': "varchar(256)"}, {'name': "date", 'type': "timestamp"}, {'name': "keywords", 'type': "varchar"}, {'name': "tags", 'type': "varchar"} ] } ] default_args = { 'start_date': datetime(2017, 2, 14, 0, 0), 'email': [], 'email_on_failure': True, 'email_on_retry': False, 'retries': 2, 'retry_delay': timedelta(minutes=5) } dag = DAG( 'caa_imap_to_redshift', schedule_interval='@daily', default_args=default_args, catchup=False ) with dag: kick_off_dag = DummyOperator(task_id='kick_off_dag') for workflow in email_workflows: type = workflow.get('id', None) name = workflow.get('name', None) fields = workflow.get('fields', None) S3_KEY = '{type}_{time}.csv'.format(type=workflow['id'], time=TIME) imap_to_s3 = ImapToS3Operator( task_id='{}_to_s3'.format(type), imap_conn_id=IMAP_CONN_ID, imap_email=IMAP_EMAIL, imap_subject=name, s3_conn_id=S3_CONN_ID, s3_bucket=S3_BUCKET, s3_key=S3_KEY, ) s3_to_redshift = S3ToRedshiftOperator( task_id='{}_to_redshift'.format(type), s3_conn_id=S3_CONN_ID, s3_bucket=S3_BUCKET, s3_key=S3_KEY, redshift_conn_id=REDSHIFT_CONN_ID, redshift_schema=REDSHIFT_SCHEMA, table=type, origin_schema=fields, schema_location='local', ) kick_off_dag >> imap_to_s3 >> s3_to_redshift
true
true
f7f3e8706acc596ed0eef493ac28fd2a40d8bded
4,983
py
Python
test/py/ganeti.utils.filelock_unittest.py
modulus-sa/ganeti
592c0e945cc2c7b0013f813ea8c9d8ec0d5bab98
[ "BSD-2-Clause" ]
396
2015-01-22T11:44:32.000Z
2022-03-31T14:14:29.000Z
test/py/ganeti.utils.filelock_unittest.py
modulus-sa/ganeti
592c0e945cc2c7b0013f813ea8c9d8ec0d5bab98
[ "BSD-2-Clause" ]
1,550
2015-04-05T09:53:50.000Z
2022-03-28T17:42:20.000Z
test/py/ganeti.utils.filelock_unittest.py
modulus-sa/ganeti
592c0e945cc2c7b0013f813ea8c9d8ec0d5bab98
[ "BSD-2-Clause" ]
119
2015-01-06T21:37:15.000Z
2022-03-07T06:36:26.000Z
#!/usr/bin/python3 # # Copyright (C) 2006, 2007, 2010, 2011 Google Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # 1. Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """Script for testing ganeti.utils.filelock""" import os import tempfile import unittest from ganeti import constants from ganeti import utils from ganeti import errors import testutils class _BaseFileLockTest: """Test case for the FileLock class""" def testSharedNonblocking(self): self.lock.Shared(blocking=False) self.lock.Close() def testExclusiveNonblocking(self): self.lock.Exclusive(blocking=False) self.lock.Close() def testUnlockNonblocking(self): self.lock.Unlock(blocking=False) self.lock.Close() def testSharedBlocking(self): self.lock.Shared(blocking=True) self.lock.Close() def testExclusiveBlocking(self): self.lock.Exclusive(blocking=True) self.lock.Close() def testUnlockBlocking(self): self.lock.Unlock(blocking=True) self.lock.Close() def testSharedExclusiveUnlock(self): self.lock.Shared(blocking=False) self.lock.Exclusive(blocking=False) self.lock.Unlock(blocking=False) self.lock.Close() def testExclusiveSharedUnlock(self): self.lock.Exclusive(blocking=False) self.lock.Shared(blocking=False) self.lock.Unlock(blocking=False) self.lock.Close() def testSimpleTimeout(self): # These will succeed on the first attempt, hence a short timeout self.lock.Shared(blocking=True, timeout=10.0) self.lock.Exclusive(blocking=False, timeout=10.0) self.lock.Unlock(blocking=True, timeout=10.0) self.lock.Close() @staticmethod def _TryLockInner(filename, shared, blocking): lock = utils.FileLock.Open(filename) if shared: fn = lock.Shared else: fn = lock.Exclusive try: # The timeout doesn't really matter as the parent process waits for us to # finish anyway. fn(blocking=blocking, timeout=0.01) except errors.LockError as err: return False return True def _TryLock(self, *args): return utils.RunInSeparateProcess(self._TryLockInner, self.tmpfile.name, *args) def testTimeout(self): for blocking in [True, False]: self.lock.Exclusive(blocking=True) self.assertFalse(self._TryLock(False, blocking)) self.assertFalse(self._TryLock(True, blocking)) self.lock.Shared(blocking=True) self.assertTrue(self._TryLock(True, blocking)) self.assertFalse(self._TryLock(False, blocking)) def testCloseShared(self): self.lock.Close() self.assertRaises(AssertionError, self.lock.Shared, blocking=False) def testCloseExclusive(self): self.lock.Close() self.assertRaises(AssertionError, self.lock.Exclusive, blocking=False) def testCloseUnlock(self): self.lock.Close() self.assertRaises(AssertionError, self.lock.Unlock, blocking=False) class TestFileLockWithFilename(testutils.GanetiTestCase, _BaseFileLockTest): TESTDATA = "Hello World\n" * 10 def setUp(self): testutils.GanetiTestCase.setUp(self) self.tmpfile = tempfile.NamedTemporaryFile() utils.WriteFile(self.tmpfile.name, data=self.TESTDATA) self.lock = utils.FileLock.Open(self.tmpfile.name) # Ensure "Open" didn't truncate file self.assertFileContent(self.tmpfile.name, self.TESTDATA) def tearDown(self): self.assertFileContent(self.tmpfile.name, self.TESTDATA) testutils.GanetiTestCase.tearDown(self) class TestFileLockWithFileObject(unittest.TestCase, _BaseFileLockTest): def setUp(self): self.tmpfile = tempfile.NamedTemporaryFile() self.lock = utils.FileLock(open(self.tmpfile.name, "w"), self.tmpfile.name) if __name__ == "__main__": testutils.GanetiTestProgram()
30.759259
79
0.737307
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED import os import tempfile import unittest from ganeti import constants from ganeti import utils from ganeti import errors import testutils class _BaseFileLockTest: def testSharedNonblocking(self): self.lock.Shared(blocking=False) self.lock.Close() def testExclusiveNonblocking(self): self.lock.Exclusive(blocking=False) self.lock.Close() def testUnlockNonblocking(self): self.lock.Unlock(blocking=False) self.lock.Close() def testSharedBlocking(self): self.lock.Shared(blocking=True) self.lock.Close() def testExclusiveBlocking(self): self.lock.Exclusive(blocking=True) self.lock.Close() def testUnlockBlocking(self): self.lock.Unlock(blocking=True) self.lock.Close() def testSharedExclusiveUnlock(self): self.lock.Shared(blocking=False) self.lock.Exclusive(blocking=False) self.lock.Unlock(blocking=False) self.lock.Close() def testExclusiveSharedUnlock(self): self.lock.Exclusive(blocking=False) self.lock.Shared(blocking=False) self.lock.Unlock(blocking=False) self.lock.Close() def testSimpleTimeout(self): self.lock.Shared(blocking=True, timeout=10.0) self.lock.Exclusive(blocking=False, timeout=10.0) self.lock.Unlock(blocking=True, timeout=10.0) self.lock.Close() @staticmethod def _TryLockInner(filename, shared, blocking): lock = utils.FileLock.Open(filename) if shared: fn = lock.Shared else: fn = lock.Exclusive try: # finish anyway. fn(blocking=blocking, timeout=0.01) except errors.LockError as err: return False return True def _TryLock(self, *args): return utils.RunInSeparateProcess(self._TryLockInner, self.tmpfile.name, *args) def testTimeout(self): for blocking in [True, False]: self.lock.Exclusive(blocking=True) self.assertFalse(self._TryLock(False, blocking)) self.assertFalse(self._TryLock(True, blocking)) self.lock.Shared(blocking=True) self.assertTrue(self._TryLock(True, blocking)) self.assertFalse(self._TryLock(False, blocking)) def testCloseShared(self): self.lock.Close() self.assertRaises(AssertionError, self.lock.Shared, blocking=False) def testCloseExclusive(self): self.lock.Close() self.assertRaises(AssertionError, self.lock.Exclusive, blocking=False) def testCloseUnlock(self): self.lock.Close() self.assertRaises(AssertionError, self.lock.Unlock, blocking=False) class TestFileLockWithFilename(testutils.GanetiTestCase, _BaseFileLockTest): TESTDATA = "Hello World\n" * 10 def setUp(self): testutils.GanetiTestCase.setUp(self) self.tmpfile = tempfile.NamedTemporaryFile() utils.WriteFile(self.tmpfile.name, data=self.TESTDATA) self.lock = utils.FileLock.Open(self.tmpfile.name) # Ensure "Open" didn't truncate file self.assertFileContent(self.tmpfile.name, self.TESTDATA) def tearDown(self): self.assertFileContent(self.tmpfile.name, self.TESTDATA) testutils.GanetiTestCase.tearDown(self) class TestFileLockWithFileObject(unittest.TestCase, _BaseFileLockTest): def setUp(self): self.tmpfile = tempfile.NamedTemporaryFile() self.lock = utils.FileLock(open(self.tmpfile.name, "w"), self.tmpfile.name) if __name__ == "__main__": testutils.GanetiTestProgram()
true
true
f7f3e8d60512c804f1371da5a0a56013b61aa0f9
2,873
py
Python
pgoapi/protos/pogoprotos/networking/requests/messages/set_favorite_pokemon_message_pb2.py
linherest/pgoapi
e3bdce71b06c099663e9796c8df166883059edd9
[ "MIT" ]
14
2017-03-28T16:32:24.000Z
2021-03-13T23:03:57.000Z
pgoapi/protos/pogoprotos/networking/requests/messages/set_favorite_pokemon_message_pb2.py
linherest/pgoapi
e3bdce71b06c099663e9796c8df166883059edd9
[ "MIT" ]
8
2017-03-01T07:56:09.000Z
2017-08-15T07:37:12.000Z
pgoapi/protos/pogoprotos/networking/requests/messages/set_favorite_pokemon_message_pb2.py
linherest/pgoapi
e3bdce71b06c099663e9796c8df166883059edd9
[ "MIT" ]
15
2017-02-24T01:30:23.000Z
2021-06-27T08:46:43.000Z
# Generated by the protocol buffer compiler. DO NOT EDIT! # source: pogoprotos/networking/requests/messages/set_favorite_pokemon_message.proto import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection from google.protobuf import symbol_database as _symbol_database from google.protobuf import descriptor_pb2 # @@protoc_insertion_point(imports) _sym_db = _symbol_database.Default() DESCRIPTOR = _descriptor.FileDescriptor( name='pogoprotos/networking/requests/messages/set_favorite_pokemon_message.proto', package='pogoprotos.networking.requests.messages', syntax='proto3', serialized_pb=_b('\nJpogoprotos/networking/requests/messages/set_favorite_pokemon_message.proto\x12\'pogoprotos.networking.requests.messages\"D\n\x19SetFavoritePokemonMessage\x12\x12\n\npokemon_id\x18\x01 \x01(\x03\x12\x13\n\x0bis_favorite\x18\x02 \x01(\x08\x62\x06proto3') ) _SETFAVORITEPOKEMONMESSAGE = _descriptor.Descriptor( name='SetFavoritePokemonMessage', full_name='pogoprotos.networking.requests.messages.SetFavoritePokemonMessage', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='pokemon_id', full_name='pogoprotos.networking.requests.messages.SetFavoritePokemonMessage.pokemon_id', index=0, number=1, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='is_favorite', full_name='pogoprotos.networking.requests.messages.SetFavoritePokemonMessage.is_favorite', index=1, number=2, type=8, cpp_type=7, label=1, has_default_value=False, default_value=False, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), ], extensions=[ ], nested_types=[], enum_types=[ ], options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=119, serialized_end=187, ) DESCRIPTOR.message_types_by_name['SetFavoritePokemonMessage'] = _SETFAVORITEPOKEMONMESSAGE _sym_db.RegisterFileDescriptor(DESCRIPTOR) SetFavoritePokemonMessage = _reflection.GeneratedProtocolMessageType('SetFavoritePokemonMessage', (_message.Message,), dict( DESCRIPTOR = _SETFAVORITEPOKEMONMESSAGE, __module__ = 'pogoprotos.networking.requests.messages.set_favorite_pokemon_message_pb2' # @@protoc_insertion_point(class_scope:pogoprotos.networking.requests.messages.SetFavoritePokemonMessage) )) _sym_db.RegisterMessage(SetFavoritePokemonMessage) # @@protoc_insertion_point(module_scope)
37.311688
275
0.79464
import sys _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message from google.protobuf import reflection as _reflection from google.protobuf import symbol_database as _symbol_database from google.protobuf import descriptor_pb2 _sym_db = _symbol_database.Default() DESCRIPTOR = _descriptor.FileDescriptor( name='pogoprotos/networking/requests/messages/set_favorite_pokemon_message.proto', package='pogoprotos.networking.requests.messages', syntax='proto3', serialized_pb=_b('\nJpogoprotos/networking/requests/messages/set_favorite_pokemon_message.proto\x12\'pogoprotos.networking.requests.messages\"D\n\x19SetFavoritePokemonMessage\x12\x12\n\npokemon_id\x18\x01 \x01(\x03\x12\x13\n\x0bis_favorite\x18\x02 \x01(\x08\x62\x06proto3') ) _SETFAVORITEPOKEMONMESSAGE = _descriptor.Descriptor( name='SetFavoritePokemonMessage', full_name='pogoprotos.networking.requests.messages.SetFavoritePokemonMessage', filename=None, file=DESCRIPTOR, containing_type=None, fields=[ _descriptor.FieldDescriptor( name='pokemon_id', full_name='pogoprotos.networking.requests.messages.SetFavoritePokemonMessage.pokemon_id', index=0, number=1, type=3, cpp_type=2, label=1, has_default_value=False, default_value=0, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), _descriptor.FieldDescriptor( name='is_favorite', full_name='pogoprotos.networking.requests.messages.SetFavoritePokemonMessage.is_favorite', index=1, number=2, type=8, cpp_type=7, label=1, has_default_value=False, default_value=False, message_type=None, enum_type=None, containing_type=None, is_extension=False, extension_scope=None, options=None), ], extensions=[ ], nested_types=[], enum_types=[ ], options=None, is_extendable=False, syntax='proto3', extension_ranges=[], oneofs=[ ], serialized_start=119, serialized_end=187, ) DESCRIPTOR.message_types_by_name['SetFavoritePokemonMessage'] = _SETFAVORITEPOKEMONMESSAGE _sym_db.RegisterFileDescriptor(DESCRIPTOR) SetFavoritePokemonMessage = _reflection.GeneratedProtocolMessageType('SetFavoritePokemonMessage', (_message.Message,), dict( DESCRIPTOR = _SETFAVORITEPOKEMONMESSAGE, __module__ = 'pogoprotos.networking.requests.messages.set_favorite_pokemon_message_pb2' # @@protoc_insertion_point(class_scope:pogoprotos.networking.requests.messages.SetFavoritePokemonMessage) )) _sym_db.RegisterMessage(SetFavoritePokemonMessage) # @@protoc_insertion_point(module_scope)
true
true
f7f3e90b2429ce72a4f1dab94e578a3c8861ace0
2,724
py
Python
py/desispec/io/sky.py
Srheft/desispec
f7adfd70e245cfe861b1e6eb781d1216017bed28
[ "BSD-3-Clause" ]
null
null
null
py/desispec/io/sky.py
Srheft/desispec
f7adfd70e245cfe861b1e6eb781d1216017bed28
[ "BSD-3-Clause" ]
null
null
null
py/desispec/io/sky.py
Srheft/desispec
f7adfd70e245cfe861b1e6eb781d1216017bed28
[ "BSD-3-Clause" ]
null
null
null
""" desispec.io.sky =============== IO routines for sky. """ from __future__ import absolute_import, division import os from astropy.io import fits def write_sky(outfile, skymodel, header=None): """Write sky model. Args: outfile : filename or (night, expid, camera) tuple skymodel : SkyModel object, with the following attributes wave : 1D wavelength in vacuum Angstroms flux : 2D[nspec, nwave] sky flux ivar : 2D inverse variance of sky flux mask : 2D mask for sky flux stat_ivar : 2D inverse variance of sky flux (statistical only) header : optional fits header data (fits.Header, dict, or list) """ from desiutil.depend import add_dependencies from .util import fitsheader, makepath outfile = makepath(outfile, 'sky') #- Convert header to fits.Header if needed if header is not None: hdr = fitsheader(header) else: hdr = fitsheader(skymodel.header) add_dependencies(hdr) hx = fits.HDUList() hdr['EXTNAME'] = ('SKY', 'no dimension') hx.append( fits.PrimaryHDU(skymodel.flux.astype('f4'), header=hdr) ) hx.append( fits.ImageHDU(skymodel.ivar.astype('f4'), name='IVAR') ) hx.append( fits.CompImageHDU(skymodel.mask, name='MASK') ) hx.append( fits.ImageHDU(skymodel.wave.astype('f4'), name='WAVELENGTH') ) if skymodel.stat_ivar is not None : hx.append( fits.ImageHDU(skymodel.stat_ivar.astype('f4'), name='STATIVAR') ) hx[-1].header['BUNIT'] = 'Angstrom' hx.writeto(outfile+'.tmp', overwrite=True, checksum=True) os.rename(outfile+'.tmp', outfile) return outfile def read_sky(filename) : """Read sky model and return SkyModel object with attributes wave, flux, ivar, mask, header. skymodel.wave is 1D common wavelength grid, the others are 2D[nspec, nwave] """ from .meta import findfile from .util import native_endian from ..sky import SkyModel #- check if filename is (night, expid, camera) tuple instead if not isinstance(filename, str): night, expid, camera = filename filename = findfile('sky', night, expid, camera) fx = fits.open(filename, memmap=False, uint=True) hdr = fx[0].header wave = native_endian(fx["WAVELENGTH"].data.astype('f8')) skyflux = native_endian(fx["SKY"].data.astype('f8')) ivar = native_endian(fx["IVAR"].data.astype('f8')) mask = native_endian(fx["MASK"].data) if "STATIVAR" in fx : stat_ivar = native_endian(fx["STATIVAR"].data.astype('f8')) else : stat_ivar = None fx.close() skymodel = SkyModel(wave, skyflux, ivar, mask, header=hdr,stat_ivar=stat_ivar) return skymodel
31.674419
83
0.654552
from __future__ import absolute_import, division import os from astropy.io import fits def write_sky(outfile, skymodel, header=None): from desiutil.depend import add_dependencies from .util import fitsheader, makepath outfile = makepath(outfile, 'sky') if header is not None: hdr = fitsheader(header) else: hdr = fitsheader(skymodel.header) add_dependencies(hdr) hx = fits.HDUList() hdr['EXTNAME'] = ('SKY', 'no dimension') hx.append( fits.PrimaryHDU(skymodel.flux.astype('f4'), header=hdr) ) hx.append( fits.ImageHDU(skymodel.ivar.astype('f4'), name='IVAR') ) hx.append( fits.CompImageHDU(skymodel.mask, name='MASK') ) hx.append( fits.ImageHDU(skymodel.wave.astype('f4'), name='WAVELENGTH') ) if skymodel.stat_ivar is not None : hx.append( fits.ImageHDU(skymodel.stat_ivar.astype('f4'), name='STATIVAR') ) hx[-1].header['BUNIT'] = 'Angstrom' hx.writeto(outfile+'.tmp', overwrite=True, checksum=True) os.rename(outfile+'.tmp', outfile) return outfile def read_sky(filename) : from .meta import findfile from .util import native_endian from ..sky import SkyModel if not isinstance(filename, str): night, expid, camera = filename filename = findfile('sky', night, expid, camera) fx = fits.open(filename, memmap=False, uint=True) hdr = fx[0].header wave = native_endian(fx["WAVELENGTH"].data.astype('f8')) skyflux = native_endian(fx["SKY"].data.astype('f8')) ivar = native_endian(fx["IVAR"].data.astype('f8')) mask = native_endian(fx["MASK"].data) if "STATIVAR" in fx : stat_ivar = native_endian(fx["STATIVAR"].data.astype('f8')) else : stat_ivar = None fx.close() skymodel = SkyModel(wave, skyflux, ivar, mask, header=hdr,stat_ivar=stat_ivar) return skymodel
true
true
f7f3e99268870f25eacb1330d625529215573109
106
py
Python
Ch2/helloworld_start.py
prottoyghose/python_essentials
029e3208b4be343315d384b6f6a4d77eb25f9fcb
[ "Apache-2.0" ]
null
null
null
Ch2/helloworld_start.py
prottoyghose/python_essentials
029e3208b4be343315d384b6f6a4d77eb25f9fcb
[ "Apache-2.0" ]
null
null
null
Ch2/helloworld_start.py
prottoyghose/python_essentials
029e3208b4be343315d384b6f6a4d77eb25f9fcb
[ "Apache-2.0" ]
null
null
null
# # Example file for HelloWorld # def main(): print("hello world") if __name__ == "__main__": main()
11.777778
29
0.641509
def main(): print("hello world") if __name__ == "__main__": main()
true
true
f7f3ea328c80e6b8da0d6675dab4712f016ff19d
36
py
Python
torchfold/__init__.py
mhoangvslev/torchfold
9285c7889f2e1966fb94c4b8a3e91bcd60e40ab2
[ "Apache-2.0" ]
160
2017-08-22T23:32:08.000Z
2018-06-05T02:58:58.000Z
torchfold/__init__.py
mhoangvslev/torchfold
9285c7889f2e1966fb94c4b8a3e91bcd60e40ab2
[ "Apache-2.0" ]
4
2018-08-02T15:37:20.000Z
2020-02-28T18:30:41.000Z
torchfold/__init__.py
mhoangvslev/torchfold
9285c7889f2e1966fb94c4b8a3e91bcd60e40ab2
[ "Apache-2.0" ]
13
2017-09-07T14:55:06.000Z
2018-06-07T18:03:08.000Z
from .torchfold import Fold, Unfold
18
35
0.805556
from .torchfold import Fold, Unfold
true
true
f7f3eb1a505efdcbc9fe19f1db0cdf99c7afce65
1,733
py
Python
fds/fds_request.py
XiaoMi/galaxy-fds-sdk-python
fd6f0203d879effc9db853b2691f0fbb5a46639b
[ "Apache-2.0" ]
42
2015-07-23T07:02:06.000Z
2022-03-30T09:08:30.000Z
fds/fds_request.py
XiaoMi/galaxy-fds-sdk-python
fd6f0203d879effc9db853b2691f0fbb5a46639b
[ "Apache-2.0" ]
3
2017-02-08T09:36:37.000Z
2020-08-03T02:04:27.000Z
fds/fds_request.py
XiaoMi/galaxy-fds-sdk-python
fd6f0203d879effc9db853b2691f0fbb5a46639b
[ "Apache-2.0" ]
24
2016-04-01T12:30:23.000Z
2022-03-29T02:04:35.000Z
# wrap the requests library import requests from requests.sessions import HTTPAdapter class FDSRequest: def __init__(self, timeout, max_retries): self._max_retries = max_retries self._timeout = timeout def request(self, method, url, kwargs): ''' Constructs a specified session and sends quest. Returns :class:`Response <Response>` object. ''' kwargs.setdefault('timeout', self._timeout) session = requests.Session() session.mount("http://", HTTPAdapter(max_retries=self._max_retries)) session.mount("https://", HTTPAdapter(max_retries=self._max_retries)) response = session.request(method=method, url=url, **kwargs) # By explicitly closing the session, we avoid leaving sockets open which # can trigger a ResourceWarning in some cases, and look like a memory leak # in others. session.close() return response def get(self, url, **kwargs): kwargs.setdefault('allow_redirects', True) return self.request('get', url, kwargs) def options(self, url, **kwargs): kwargs.setdefault('allow_redirects', True) return self.request('options', url, kwargs) def head(self, url, **kwargs): kwargs.setdefault('allow_redirects', False) return self.request('head', url, kwargs) def post(self, url, data=None, json=None, **kwargs): kwargs['data'] = data kwargs['json'] = json return self.request('post', url, kwargs) def put(self, url, data=None, **kwargs): kwargs['data'] = data return self.request('put', url, kwargs) def patch(self, url, data=None, **kwargs): kwargs['data'] = data return self.request('patch', url, kwargs) def delete(self, url, **kwargs): return self.request('delete', url, kwargs)
30.946429
78
0.684362
import requests from requests.sessions import HTTPAdapter class FDSRequest: def __init__(self, timeout, max_retries): self._max_retries = max_retries self._timeout = timeout def request(self, method, url, kwargs): kwargs.setdefault('timeout', self._timeout) session = requests.Session() session.mount("http://", HTTPAdapter(max_retries=self._max_retries)) session.mount("https://", HTTPAdapter(max_retries=self._max_retries)) response = session.request(method=method, url=url, **kwargs) session.close() return response def get(self, url, **kwargs): kwargs.setdefault('allow_redirects', True) return self.request('get', url, kwargs) def options(self, url, **kwargs): kwargs.setdefault('allow_redirects', True) return self.request('options', url, kwargs) def head(self, url, **kwargs): kwargs.setdefault('allow_redirects', False) return self.request('head', url, kwargs) def post(self, url, data=None, json=None, **kwargs): kwargs['data'] = data kwargs['json'] = json return self.request('post', url, kwargs) def put(self, url, data=None, **kwargs): kwargs['data'] = data return self.request('put', url, kwargs) def patch(self, url, data=None, **kwargs): kwargs['data'] = data return self.request('patch', url, kwargs) def delete(self, url, **kwargs): return self.request('delete', url, kwargs)
true
true
f7f3eb5c195c6b58b7d1750db99e9038af7bfd68
7,235
py
Python
fuzzers/aflplusplus/fuzzer.py
zzyyrr/fuzzbench
7805093436f36ddaef155da8b045da2b57ec02b2
[ "Apache-2.0" ]
1
2021-03-30T01:23:33.000Z
2021-03-30T01:23:33.000Z
fuzzers/aflplusplus/fuzzer.py
zzyyrr/fuzzbench
7805093436f36ddaef155da8b045da2b57ec02b2
[ "Apache-2.0" ]
null
null
null
fuzzers/aflplusplus/fuzzer.py
zzyyrr/fuzzbench
7805093436f36ddaef155da8b045da2b57ec02b2
[ "Apache-2.0" ]
null
null
null
# Copyright 2020 Google LLC # # 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. # """Integration code for AFLplusplus fuzzer.""" import os import shutil from fuzzers.afl import fuzzer as afl_fuzzer from fuzzers import utils # OUT environment variable is the location of build directory (default is /out). def get_cmplog_build_directory(target_directory): """Return path to CmpLog target directory.""" return os.path.join(target_directory, 'cmplog') def build(*args): # pylint: disable=too-many-branches,too-many-statements """Build benchmark.""" # BUILD_MODES is not already supported by fuzzbench, meanwhile we provide # a default configuration. build_modes = list(args) if 'BUILD_MODES' in os.environ: build_modes = os.environ['BUILD_MODES'].split(',') build_directory = os.environ['OUT'] # If nothing was set this is the default: if not build_modes: build_modes = ['tracepc', 'nozero'] # Instrumentation coverage modes: if 'lto' in build_modes: os.environ['CC'] = '/afl/afl-clang-lto' os.environ['CXX'] = '/afl/afl-clang-lto++' os.environ['RANLIB'] = 'llvm-ranlib-11' os.environ['AR'] = 'llvm-ar-11' elif 'qemu' in build_modes: os.environ['CC'] = 'clang' os.environ['CXX'] = 'clang++' else: os.environ['CC'] = '/afl/afl-clang-fast' os.environ['CXX'] = '/afl/afl-clang-fast++' if 'instrim' in build_modes: # We dont set AFL_LLVM_INSTRIM_LOOPHEAD for better coverage os.environ['AFL_LLVM_INSTRIM'] = 'CFG' elif 'tracepc' in build_modes: os.environ['AFL_LLVM_USE_TRACE_PC'] = '1' elif 'classic' in build_modes: os.environ['AFL_LLVM_INSTRUMENT'] = 'CLASSIC' # Instrumentation coverage options: # Do not use a fixed map location (LTO only) if 'dynamic' in build_modes: os.environ['AFL_LLVM_MAP_DYNAMIC'] = '1' # Skip over single block functions if 'skipsingle' in build_modes: os.environ['AFL_LLVM_SKIPSINGLEBLOCK'] = '1' # Enable context sentitivity for LLVM mode (non LTO only) if 'ctx' in build_modes: os.environ['AFL_LLVM_CTX'] = '1' # Enable N-gram coverage for LLVM mode (non LTO only) if 'ngram2' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '2' elif 'ngram3' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '3' elif 'ngram4' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '4' elif 'ngram5' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '5' elif 'ngram6' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '6' elif 'ngram7' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '7' elif 'ngram8' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '8' elif 'ngram16' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '16' # Further instrumentation options: # Disable neverZero implementation if 'nozero' in build_modes: os.environ['AFL_LLVM_SKIP_NEVERZERO'] = '1' # Only one of the following OR cmplog # enable laf-intel compare splitting if 'laf' in build_modes: os.environ['AFL_LLVM_LAF_SPLIT_SWITCHES'] = '1' os.environ['AFL_LLVM_LAF_SPLIT_COMPARES'] = '1' os.environ['AFL_LLVM_LAF_SPLIT_FLOATS'] = '1' if 'autodict' not in build_modes: os.environ['AFL_LLVM_LAF_TRANSFORM_COMPARES'] = '1' # enable auto dictionary for LTO if 'autodict' in build_modes: os.environ['AFL_LLVM_LTO_AUTODICTIONARY'] = '1' os.environ['FUZZER_LIB'] = '/libAFLDriver.a' # Some benchmarks like lcms # (see: https://github.com/mm2/Little-CMS/commit/ab1093539b4287c233aca6a3cf53b234faceb792#diff-f0e6d05e72548974e852e8e55dffc4ccR212) # fail to compile if the compiler outputs things to stderr in unexpected # cases. Prevent these failures by using AFL_QUIET to stop afl-clang-fast # from writing AFL specific messages to stderr. os.environ['AFL_QUIET'] = '1' src = os.getenv('SRC') work = os.getenv('WORK') with utils.restore_directory(src), utils.restore_directory(work): # Restore SRC to its initial state so we can build again without any # trouble. For some OSS-Fuzz projects, build_benchmark cannot be run # twice in the same directory without this. utils.build_benchmark() if 'cmplog' in build_modes and 'qemu' not in build_modes: # CmpLog requires an build with different instrumentation. new_env = os.environ.copy() new_env['AFL_LLVM_CMPLOG'] = '1' # For CmpLog build, set the OUT and FUZZ_TARGET environment # variable to point to the new CmpLog build directory. cmplog_build_directory = get_cmplog_build_directory(build_directory) os.mkdir(cmplog_build_directory) new_env['OUT'] = cmplog_build_directory fuzz_target = os.getenv('FUZZ_TARGET') if fuzz_target: new_env['FUZZ_TARGET'] = os.path.join(cmplog_build_directory, os.path.basename(fuzz_target)) print('Re-building benchmark for CmpLog fuzzing target') utils.build_benchmark(env=new_env) shutil.copy('/afl/afl-fuzz', build_directory) if os.path.exists('/afl/afl-qemu-trace'): shutil.copy('/afl/afl-qemu-trace', build_directory) if os.path.exists('/aflpp_qemu_driver_hook.so'): shutil.copy('/aflpp_qemu_driver_hook.so', build_directory) def fuzz(input_corpus, output_corpus, target_binary, flags=tuple()): """Run fuzzer.""" # Calculate CmpLog binary path from the instrumented target binary. target_binary_directory = os.path.dirname(target_binary) cmplog_target_binary_directory = ( get_cmplog_build_directory(target_binary_directory)) target_binary_name = os.path.basename(target_binary) cmplog_target_binary = os.path.join(cmplog_target_binary_directory, target_binary_name) afl_fuzzer.prepare_fuzz_environment(input_corpus) # decomment this to enable libdislocator # os.environ['AFL_ALIGNED_ALLOC'] = '1' # align malloc to max_align_t # os.environ['AFL_PRELOAD'] = '/afl/libdislocator.so' flags = list(flags) if os.path.exists(cmplog_target_binary): flags += ['-c', cmplog_target_binary] if 'ADDITIONAL_ARGS' in os.environ: flags += os.environ['ADDITIONAL_ARGS'].split(' ') # needed for LTO mode to run c++ targets os.environ['LD_LIBRARY_PATH'] = '/out' afl_fuzzer.run_afl_fuzz(input_corpus, output_corpus, target_binary, additional_flags=flags)
39.752747
136
0.672564
import os import shutil from fuzzers.afl import fuzzer as afl_fuzzer from fuzzers import utils def get_cmplog_build_directory(target_directory): return os.path.join(target_directory, 'cmplog') def build(*args): build_modes = list(args) if 'BUILD_MODES' in os.environ: build_modes = os.environ['BUILD_MODES'].split(',') build_directory = os.environ['OUT'] if not build_modes: build_modes = ['tracepc', 'nozero'] if 'lto' in build_modes: os.environ['CC'] = '/afl/afl-clang-lto' os.environ['CXX'] = '/afl/afl-clang-lto++' os.environ['RANLIB'] = 'llvm-ranlib-11' os.environ['AR'] = 'llvm-ar-11' elif 'qemu' in build_modes: os.environ['CC'] = 'clang' os.environ['CXX'] = 'clang++' else: os.environ['CC'] = '/afl/afl-clang-fast' os.environ['CXX'] = '/afl/afl-clang-fast++' if 'instrim' in build_modes: os.environ['AFL_LLVM_INSTRIM'] = 'CFG' elif 'tracepc' in build_modes: os.environ['AFL_LLVM_USE_TRACE_PC'] = '1' elif 'classic' in build_modes: os.environ['AFL_LLVM_INSTRUMENT'] = 'CLASSIC' if 'dynamic' in build_modes: os.environ['AFL_LLVM_MAP_DYNAMIC'] = '1' if 'skipsingle' in build_modes: os.environ['AFL_LLVM_SKIPSINGLEBLOCK'] = '1' if 'ctx' in build_modes: os.environ['AFL_LLVM_CTX'] = '1' if 'ngram2' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '2' elif 'ngram3' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '3' elif 'ngram4' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '4' elif 'ngram5' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '5' elif 'ngram6' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '6' elif 'ngram7' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '7' elif 'ngram8' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '8' elif 'ngram16' in build_modes: os.environ['AFL_LLVM_NGRAM_SIZE'] = '16' if 'nozero' in build_modes: os.environ['AFL_LLVM_SKIP_NEVERZERO'] = '1' if 'laf' in build_modes: os.environ['AFL_LLVM_LAF_SPLIT_SWITCHES'] = '1' os.environ['AFL_LLVM_LAF_SPLIT_COMPARES'] = '1' os.environ['AFL_LLVM_LAF_SPLIT_FLOATS'] = '1' if 'autodict' not in build_modes: os.environ['AFL_LLVM_LAF_TRANSFORM_COMPARES'] = '1' if 'autodict' in build_modes: os.environ['AFL_LLVM_LTO_AUTODICTIONARY'] = '1' os.environ['FUZZER_LIB'] = '/libAFLDriver.a' = '1' src = os.getenv('SRC') work = os.getenv('WORK') with utils.restore_directory(src), utils.restore_directory(work): utils.build_benchmark() if 'cmplog' in build_modes and 'qemu' not in build_modes: new_env = os.environ.copy() new_env['AFL_LLVM_CMPLOG'] = '1' cmplog_build_directory = get_cmplog_build_directory(build_directory) os.mkdir(cmplog_build_directory) new_env['OUT'] = cmplog_build_directory fuzz_target = os.getenv('FUZZ_TARGET') if fuzz_target: new_env['FUZZ_TARGET'] = os.path.join(cmplog_build_directory, os.path.basename(fuzz_target)) print('Re-building benchmark for CmpLog fuzzing target') utils.build_benchmark(env=new_env) shutil.copy('/afl/afl-fuzz', build_directory) if os.path.exists('/afl/afl-qemu-trace'): shutil.copy('/afl/afl-qemu-trace', build_directory) if os.path.exists('/aflpp_qemu_driver_hook.so'): shutil.copy('/aflpp_qemu_driver_hook.so', build_directory) def fuzz(input_corpus, output_corpus, target_binary, flags=tuple()): target_binary_directory = os.path.dirname(target_binary) cmplog_target_binary_directory = ( get_cmplog_build_directory(target_binary_directory)) target_binary_name = os.path.basename(target_binary) cmplog_target_binary = os.path.join(cmplog_target_binary_directory, target_binary_name) afl_fuzzer.prepare_fuzz_environment(input_corpus) ) if os.path.exists(cmplog_target_binary): flags += ['-c', cmplog_target_binary] if 'ADDITIONAL_ARGS' in os.environ: flags += os.environ['ADDITIONAL_ARGS'].split(' ') os.environ['LD_LIBRARY_PATH'] = '/out' afl_fuzzer.run_afl_fuzz(input_corpus, output_corpus, target_binary, additional_flags=flags)
true
true
f7f3eb8d00a84ed5e552cb82612616f7fbe779c4
2,415
py
Python
cls_ann.py
ZHUXUHAN/Tools
98a0776f460febc69af5523e2c69d7702ee04876
[ "MIT" ]
1
2019-11-20T12:16:21.000Z
2019-11-20T12:16:21.000Z
cls_ann.py
ZHUXUHAN/Python-Tools
98a0776f460febc69af5523e2c69d7702ee04876
[ "MIT" ]
null
null
null
cls_ann.py
ZHUXUHAN/Python-Tools
98a0776f460febc69af5523e2c69d7702ee04876
[ "MIT" ]
null
null
null
import os import random import shutil dir = '/home/xuhanzhu/panet/data/cifar2..' dir2 = '/home/xuhanzhu/panet/cifar2' files = os.listdir(dir) def split(): length = [0, 0] file_split = [[], []] for file in files: if 'Normal' in file: length[0] += 1 file_split[0].append(file) else: length[1] += 1 file_split[1].append(file) length_test = [length[0]//10, length[1]//10] file_test = [random.sample(file_split[0], length_test[0]), random.sample(file_split[1], length_test[1])] file_train = [list(set(file_split[0]) - set(file_test[0])), list(set(file_split[1]) - set(file_test[1]))] files_test = [] for i in range(len(file_test)): for file in file_test[i]: files_test.append(file) random.shuffle(files_test) with open(os.path.join(dir2, "test_tmp.txt"), 'w') as f: for file in files_test: if 'Normal' in file: label = 0 filename = file else: label = 1 filename = file shutil.copy(os.path.join(dir, filename), os.path.join(dir2, 'Images/test', filename)) f.write(filename + ' ' + str(label) + '\n') for i in range(len(file_train)): for file in file_test[i]: files_test.append(file) random.shuffle(files_test) with open(os.path.join(dir2, "train_tmp.txt"), 'w') as f: for file in files_test: if 'Normal' in file: label = 0 filename = file else: label = 1 filename = file shutil.copy(os.path.join(dir, filename), os.path.join(dir2, 'Images/train', filename)) f.write(filename + ' ' + str(label) + '\n') def imagenet(): with open('/home/xuhanzhu/panet/data/cifar2/train.txt', 'r') as f: lines = f.readlines() for l in lines: filename = l.strip().split(' ')[0] label = l.strip().split(' ')[1] if label == '0': shutil.copy(os.path.join('/home/xuhanzhu/panet/data/cifar2/Images/train', filename), '/home/xuhanzhu/panet/data/imagenet2/train/0') else: shutil.copy(os.path.join('/home/xuhanzhu/panet/data/cifar2/Images/train', filename), '/home/xuhanzhu/panet/data/imagenet2/train/1') # split() imagenet()
35
109
0.549482
import os import random import shutil dir = '/home/xuhanzhu/panet/data/cifar2..' dir2 = '/home/xuhanzhu/panet/cifar2' files = os.listdir(dir) def split(): length = [0, 0] file_split = [[], []] for file in files: if 'Normal' in file: length[0] += 1 file_split[0].append(file) else: length[1] += 1 file_split[1].append(file) length_test = [length[0]//10, length[1]//10] file_test = [random.sample(file_split[0], length_test[0]), random.sample(file_split[1], length_test[1])] file_train = [list(set(file_split[0]) - set(file_test[0])), list(set(file_split[1]) - set(file_test[1]))] files_test = [] for i in range(len(file_test)): for file in file_test[i]: files_test.append(file) random.shuffle(files_test) with open(os.path.join(dir2, "test_tmp.txt"), 'w') as f: for file in files_test: if 'Normal' in file: label = 0 filename = file else: label = 1 filename = file shutil.copy(os.path.join(dir, filename), os.path.join(dir2, 'Images/test', filename)) f.write(filename + ' ' + str(label) + '\n') for i in range(len(file_train)): for file in file_test[i]: files_test.append(file) random.shuffle(files_test) with open(os.path.join(dir2, "train_tmp.txt"), 'w') as f: for file in files_test: if 'Normal' in file: label = 0 filename = file else: label = 1 filename = file shutil.copy(os.path.join(dir, filename), os.path.join(dir2, 'Images/train', filename)) f.write(filename + ' ' + str(label) + '\n') def imagenet(): with open('/home/xuhanzhu/panet/data/cifar2/train.txt', 'r') as f: lines = f.readlines() for l in lines: filename = l.strip().split(' ')[0] label = l.strip().split(' ')[1] if label == '0': shutil.copy(os.path.join('/home/xuhanzhu/panet/data/cifar2/Images/train', filename), '/home/xuhanzhu/panet/data/imagenet2/train/0') else: shutil.copy(os.path.join('/home/xuhanzhu/panet/data/cifar2/Images/train', filename), '/home/xuhanzhu/panet/data/imagenet2/train/1') imagenet()
true
true
f7f3ebab586a51790f18aec397c4c6f90237218a
4,613
py
Python
onnx_chainer/functions/normalization.py
disktnk/onnx-chainer
e4542568009e63e7da83aa0f11b2cb5504e8cef8
[ "MIT" ]
null
null
null
onnx_chainer/functions/normalization.py
disktnk/onnx-chainer
e4542568009e63e7da83aa0f11b2cb5504e8cef8
[ "MIT" ]
null
null
null
onnx_chainer/functions/normalization.py
disktnk/onnx-chainer
e4542568009e63e7da83aa0f11b2cb5504e8cef8
[ "MIT" ]
null
null
null
import sys import chainer import numpy as np from onnx_chainer.functions.opset_version import support from onnx_chainer import onnx_helper @support((1, 6, 7)) def convert_BatchNormalization(func, opset_version, input_names, output_names, context, parameters): is_fixed_bn = len(func.inputs) > 3 # NOTE(disktnk): # if `use_beta=False`, beta_param is None, `use_gamma=False` is same. beta_param = func.inputs[2].get_variable_or_none() gamma_param = func.inputs[1].get_variable_or_none() namedlink = context.get_link(beta_param) or context.get_link(gamma_param) if namedlink is not None: prefix, link = namedlink if is_fixed_bn: mean = link.avg_mean var = link.avg_var else: # on train mode, avg_mean would be updated, so make them from x x = func.inputs[0].get_variable().array mean = x.mean(axis=func.axis) var = x.var(axis=func.axis) else: prefix = None if is_fixed_bn: mean = func.inputs[3].get_variable().array var = func.inputs[4].get_variable().array else: x = func.inputs[0].get_variable().array mean = x.mean(axis=func.axis) var = x.var(axis=func.axis) def add_param(v, suffix): if prefix is None: return context.add_param(v, suffix) else: return context.add_param( v, '{}_{}'.format(prefix, suffix), use_original_name=True) maen_name = add_param(mean, 'avg_mean') var_name = add_param(var, 'avg_var') if is_fixed_bn: input_names[3] = maen_name input_names[4] = var_name else: input_names.extend([maen_name, var_name]) if beta_param is None: beta_name = add_param(np.zeros_like(mean, dtype=mean.dtype), 'beta') input_names[2] = beta_name if gamma_param is None: gamma_name = add_param(np.ones_like(mean, dtype=mean.dtype), 'gamma') input_names[1] = gamma_name momentum = getattr(func, 'decay', 0.) # TODO(disktnk): On definition of ONNX's BatchNormalization operator, # outputs one required output and four optional outputs. This converter # must make 5 values for output and return them. if opset_version == 1: return onnx_helper.make_node( 'BatchNormalization', input_names, output_names, epsilon=func.eps, momentum=momentum, is_test=not chainer.config.train, consumed_inputs=[False, False, False, True, True], ), elif opset_version == 6: return onnx_helper.make_node( 'BatchNormalization', input_names, output_names, epsilon=func.eps, momentum=momentum, is_test=not chainer.config.train, ), elif opset_version == 7: return onnx_helper.make_node( 'BatchNormalization', input_names, output_names, epsilon=func.eps, momentum=momentum, ), @support((1, 6, 7)) def convert_FixedBatchNormalization(func, opset_version, input_names, output_names, context, parameters): return convert_BatchNormalization( func, opset_version, input_names, output_names, context, parameters) def convert_LocalResponseNormalization(func, opset_version, input_names, output_names, context, parameters): size = int(func.n) return onnx_helper.make_node( 'LRN', input_names, output_names, alpha=float(func.alpha) * size, beta=float(func.beta), bias=float(func.k), size=size, ), def convert_NormalizeL2(func, opset_version, input_names, output_names, context, parameters): if isinstance(func.axis, tuple) and len(func.axis) != 1: raise ValueError( 'Normalization along with multiple axes ({}) are not supported in ' 'the ONNX\'s LpNormalization operator.'.format(func.axis)) if abs(func.eps - 1e-5) > sys.float_info.epsilon: # default value of F.normaize eps is 1e-5 raise ValueError( '\'eps\' is not supported in the ONNX\'s LpNormalization operator,' ' so that ONNX-Chainer does not accept custom values for \'eps\' ' '({})'.format(func.eps)) return onnx_helper.make_node( 'LpNormalization', input_names, output_names, axis=int(func.axis[0]), p=2, ),
35.21374
79
0.608281
import sys import chainer import numpy as np from onnx_chainer.functions.opset_version import support from onnx_chainer import onnx_helper @support((1, 6, 7)) def convert_BatchNormalization(func, opset_version, input_names, output_names, context, parameters): is_fixed_bn = len(func.inputs) > 3 beta_param = func.inputs[2].get_variable_or_none() gamma_param = func.inputs[1].get_variable_or_none() namedlink = context.get_link(beta_param) or context.get_link(gamma_param) if namedlink is not None: prefix, link = namedlink if is_fixed_bn: mean = link.avg_mean var = link.avg_var else: x = func.inputs[0].get_variable().array mean = x.mean(axis=func.axis) var = x.var(axis=func.axis) else: prefix = None if is_fixed_bn: mean = func.inputs[3].get_variable().array var = func.inputs[4].get_variable().array else: x = func.inputs[0].get_variable().array mean = x.mean(axis=func.axis) var = x.var(axis=func.axis) def add_param(v, suffix): if prefix is None: return context.add_param(v, suffix) else: return context.add_param( v, '{}_{}'.format(prefix, suffix), use_original_name=True) maen_name = add_param(mean, 'avg_mean') var_name = add_param(var, 'avg_var') if is_fixed_bn: input_names[3] = maen_name input_names[4] = var_name else: input_names.extend([maen_name, var_name]) if beta_param is None: beta_name = add_param(np.zeros_like(mean, dtype=mean.dtype), 'beta') input_names[2] = beta_name if gamma_param is None: gamma_name = add_param(np.ones_like(mean, dtype=mean.dtype), 'gamma') input_names[1] = gamma_name momentum = getattr(func, 'decay', 0.) # outputs one required output and four optional outputs. This converter # must make 5 values for output and return them. if opset_version == 1: return onnx_helper.make_node( 'BatchNormalization', input_names, output_names, epsilon=func.eps, momentum=momentum, is_test=not chainer.config.train, consumed_inputs=[False, False, False, True, True], ), elif opset_version == 6: return onnx_helper.make_node( 'BatchNormalization', input_names, output_names, epsilon=func.eps, momentum=momentum, is_test=not chainer.config.train, ), elif opset_version == 7: return onnx_helper.make_node( 'BatchNormalization', input_names, output_names, epsilon=func.eps, momentum=momentum, ), @support((1, 6, 7)) def convert_FixedBatchNormalization(func, opset_version, input_names, output_names, context, parameters): return convert_BatchNormalization( func, opset_version, input_names, output_names, context, parameters) def convert_LocalResponseNormalization(func, opset_version, input_names, output_names, context, parameters): size = int(func.n) return onnx_helper.make_node( 'LRN', input_names, output_names, alpha=float(func.alpha) * size, beta=float(func.beta), bias=float(func.k), size=size, ), def convert_NormalizeL2(func, opset_version, input_names, output_names, context, parameters): if isinstance(func.axis, tuple) and len(func.axis) != 1: raise ValueError( 'Normalization along with multiple axes ({}) are not supported in ' 'the ONNX\'s LpNormalization operator.'.format(func.axis)) if abs(func.eps - 1e-5) > sys.float_info.epsilon: raise ValueError( '\'eps\' is not supported in the ONNX\'s LpNormalization operator,' ' so that ONNX-Chainer does not accept custom values for \'eps\' ' '({})'.format(func.eps)) return onnx_helper.make_node( 'LpNormalization', input_names, output_names, axis=int(func.axis[0]), p=2, ),
true
true
f7f3ec4b28aa9e90f75fc4de08f156743cca8e87
1,295
py
Python
apps/odoo/lib/odoo-10.0.post20170615-py2.7.egg/odoo/addons/hr_holidays/wizard/hr_holidays_summary_department.py
gtfarng/Odoo_migrade
9cc28fae4c379e407645248a29d22139925eafe7
[ "Apache-2.0" ]
1
2019-12-19T01:53:13.000Z
2019-12-19T01:53:13.000Z
apps/odoo/lib/odoo-10.0.post20170615-py2.7.egg/odoo/addons/hr_holidays/wizard/hr_holidays_summary_department.py
gtfarng/Odoo_migrade
9cc28fae4c379e407645248a29d22139925eafe7
[ "Apache-2.0" ]
null
null
null
apps/odoo/lib/odoo-10.0.post20170615-py2.7.egg/odoo/addons/hr_holidays/wizard/hr_holidays_summary_department.py
gtfarng/Odoo_migrade
9cc28fae4c379e407645248a29d22139925eafe7
[ "Apache-2.0" ]
null
null
null
# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. import time from odoo import api, fields, models, _ from odoo.exceptions import UserError class HolidaysSummaryDept(models.TransientModel): _name = 'hr.holidays.summary.dept' _description = 'HR Leaves Summary Report By Department' date_from = fields.Date(string='From', required=True, default=lambda *a: time.strftime('%Y-%m-01')) depts = fields.Many2many('hr.department', 'summary_dept_rel', 'sum_id', 'dept_id', string='Department(s)') holiday_type = fields.Selection([ ('Approved', 'Approved'), ('Confirmed', 'Confirmed'), ('both', 'Both Approved and Confirmed') ], string='Leave Type', required=True, default='Approved') @api.multi def print_report(self): self.ensure_one() [data] = self.read() if not data.get('depts'): raise UserError(_('You have to select at least one Department. And try again.')) departments = self.env['hr.department'].browse(data['depts']) datas = { 'ids': [], 'model': 'hr.department', 'form': data } return self.env['report'].get_action(departments, 'hr_holidays.report_holidayssummary', data=datas)
37
110
0.639382
import time from odoo import api, fields, models, _ from odoo.exceptions import UserError class HolidaysSummaryDept(models.TransientModel): _name = 'hr.holidays.summary.dept' _description = 'HR Leaves Summary Report By Department' date_from = fields.Date(string='From', required=True, default=lambda *a: time.strftime('%Y-%m-01')) depts = fields.Many2many('hr.department', 'summary_dept_rel', 'sum_id', 'dept_id', string='Department(s)') holiday_type = fields.Selection([ ('Approved', 'Approved'), ('Confirmed', 'Confirmed'), ('both', 'Both Approved and Confirmed') ], string='Leave Type', required=True, default='Approved') @api.multi def print_report(self): self.ensure_one() [data] = self.read() if not data.get('depts'): raise UserError(_('You have to select at least one Department. And try again.')) departments = self.env['hr.department'].browse(data['depts']) datas = { 'ids': [], 'model': 'hr.department', 'form': data } return self.env['report'].get_action(departments, 'hr_holidays.report_holidayssummary', data=datas)
true
true
f7f3ed8d742bf7fa720677c7a38e6fbf2e2b3645
989
py
Python
src/enemy.py
mshopper/acv
e8d2ee8c082c6a9e4c0255b5113ade357fb9848d
[ "Apache-2.0" ]
1
2015-08-25T13:33:06.000Z
2015-08-25T13:33:06.000Z
src/enemy.py
maigimenez/acv
e8d2ee8c082c6a9e4c0255b5113ade357fb9848d
[ "Apache-2.0" ]
null
null
null
src/enemy.py
maigimenez/acv
e8d2ee8c082c6a9e4c0255b5113ade357fb9848d
[ "Apache-2.0" ]
null
null
null
import pygame class Enemy(pygame.sprite.Sprite): def __init__(self, location, *groups): super(Enemy, self).__init__(*groups) self.direction = 1 self.image_left = pygame.image.load('resources/characters/enemy1_izquierda.png') self.image_right = pygame.image.load('resources/characters/enemy1_derecha.png') self.image = self.image_left self.rect = pygame.rect.Rect(location, self.image.get_size()) def update(self, dt, game): self.rect.x += self.direction * 100 * dt for cell in game.tile_map.layers['triggers'].collide(self.rect, 'reverse'): if self.direction > 0: self.rect.right = cell.left self.image = self.image_left else: self.rect.left = cell.right self.image = self.image_right self.direction *= -1 break if self.rect.colliderect(game.player.rect): game.player.is_dead = True
39.56
88
0.607685
import pygame class Enemy(pygame.sprite.Sprite): def __init__(self, location, *groups): super(Enemy, self).__init__(*groups) self.direction = 1 self.image_left = pygame.image.load('resources/characters/enemy1_izquierda.png') self.image_right = pygame.image.load('resources/characters/enemy1_derecha.png') self.image = self.image_left self.rect = pygame.rect.Rect(location, self.image.get_size()) def update(self, dt, game): self.rect.x += self.direction * 100 * dt for cell in game.tile_map.layers['triggers'].collide(self.rect, 'reverse'): if self.direction > 0: self.rect.right = cell.left self.image = self.image_left else: self.rect.left = cell.right self.image = self.image_right self.direction *= -1 break if self.rect.colliderect(game.player.rect): game.player.is_dead = True
true
true
f7f3ef8cf0d4a008df4b2cb0cf8dc8bc53925875
9,799
py
Python
lib/googlecloudsdk/core/cache/sqlite_cache.py
bopopescu/Google-Cloud-SDK-1
c4683bacb2f6192d8a816932e438a0493085469b
[ "Apache-2.0" ]
null
null
null
lib/googlecloudsdk/core/cache/sqlite_cache.py
bopopescu/Google-Cloud-SDK-1
c4683bacb2f6192d8a816932e438a0493085469b
[ "Apache-2.0" ]
null
null
null
lib/googlecloudsdk/core/cache/sqlite_cache.py
bopopescu/Google-Cloud-SDK-1
c4683bacb2f6192d8a816932e438a0493085469b
[ "Apache-2.0" ]
1
2020-07-24T20:13:29.000Z
2020-07-24T20:13:29.000Z
# Copyright 2017 Google Inc. 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. """A persistent cache implementation using sqlite3. See the persistent_cache module for a detailed description. """ # Pytype fails to analyze this file. # type: ignore from __future__ import absolute_import from __future__ import division import errno import os from googlecloudsdk.core.cache import exceptions from googlecloudsdk.core.cache import metadata_table from googlecloudsdk.core.cache import persistent_cache_base import six from six.moves import range # pylint: disable=redefined-builtin import sqlite3 def _FieldRef(column): """Returns a field reference name. Args: column: The field column number counting from 0. Returns: A field reference name. """ return 'f{column}'.format(column=column) def _Where(row_template=None): """Returns a WHERE clause for the row template. Column string matching supports * and ? match ops. Args: row_template: A template row tuple. A column value None means match all values for this column. A None value for row means all rows. Returns: A WHERE clause for the row template or the empty string if there is no none. """ terms = [] if row_template: for index in range(len(row_template)): term = row_template[index] if term is None: continue if isinstance(term, six.string_types): pattern = term.replace('*', '%').replace('.', '_').replace('"', '""') terms.append(u'{field} LIKE "{pattern}"'.format( field=_FieldRef(index), pattern=pattern)) else: terms.append(u'{field} = {term}'.format( field=_FieldRef(index), term=term)) if not terms: return '' return ' WHERE ' + ' AND '.join(terms) class _Table(persistent_cache_base.Table): """A persistent cache table. Attributes: name: The table name. deleted: Table was deleted if True. modified: Table modify timestamp. timeout: Tables older than timeout are invalid. _cache: The parent cache object. _fields: The f1,... fields name string. _values: The ?,... parameter replacement string for INSERT. """ def __init__(self, cache, name, columns=1, keys=1, timeout=0, modified=0, restricted=False): self._rows = None super(_Table, self).__init__(cache, name, columns=columns, keys=keys, timeout=timeout, modified=modified, restricted=restricted) if restricted: self._cache._restricted.add(name) # pylint: disable=protected-access self._fields = ', '.join([_FieldRef(i) for i in range(columns)]) self._values = ', '.join(['?'] * columns) self.deleted = False # pylint: disable=protected-access if self._cache._metadata: self._cache._tables[name] = self def Delete(self): """Deletes the table.""" self.Invalidate() self._cache.cursor.execute( 'DROP TABLE "{table}"'.format(table=self.name)) # pylint: disable=protected-access self._cache._db.commit() self._cache._metadata.DeleteRows([(self.name,)]) self.deleted = True def _Commit(self): """Commits changed/deleted table data.""" if self.changed: self.changed = False # pylint: disable=protected-access if self.deleted: self.deleted = False self._cache._metadata.DeleteRows([(self.name,)]) del self._cache._tables[self.name] else: self._cache._metadata.AddRows( [metadata_table.Metadata.Row( name=self.name, columns=self.columns, keys=self.keys, timeout=self.timeout, modified=self.modified, restricted=self.restricted, version=self._cache.version)]) def AddRows(self, rows): """Adds each row in rows to the table.""" self._CheckRows(rows) self._cache.cursor.executemany( 'INSERT OR REPLACE INTO "{table}" ({fields}) VALUES ({values})'. format( table=self.name, fields=self._fields, values=self._values), rows) self._cache._db.commit() # pylint: disable=protected-access def DeleteRows(self, row_templates=None): """Deletes each row in the table matching any of the row_templates.""" if row_templates: self._CheckRowTemplates(row_templates) for template in row_templates: self._cache.cursor.execute( 'DELETE FROM "{table}"{where}'.format( table=self.name, where=_Where(template))) else: self._cache.cursor.execute( 'DELETE FROM "{table}" WHERE 1'.format(table=self.name)) self._cache._db.commit() # pylint: disable=protected-access def Select(self, row_template=None, ignore_expiration=False): # type: (...) -> list[tuple] """Returns the list of rows that match row_template, None for all.""" if row_template is not None: self._CheckRowTemplates([row_template]) if not ignore_expiration and not self.restricted and not self.modified: raise exceptions.CacheTableExpired( '[{}] cache table [{}] has expired.'.format( self._cache.name, self.name)) self._cache.cursor.execute( u'SELECT {fields} FROM "{table}"{where}'.format( fields=self._fields, table=self.name, where=_Where(row_template))) return self._cache.cursor.fetchall() class Cache(metadata_table.CacheUsingMetadataTable): """A persistent cache object. Attributes: cursor: The _db operations cursor. name: The db path name. Created/removed by this object. May be a file or directory. In this implementation its a file. timeout: The default table timeout. version: A caller defined version string that must match the version string stored when the persistent object was created. _db: The db connection. _metadata: The metadata restricted _Table. _persistent: True if the persistent object has been committed at least once. _restricted: The set of restricted table names. _start: The cache instance start time. _tables: The map of open table objects. """ _EXPECTED_MAGIC = 'SQLite format 3' def __init__(self, name, create=True, timeout=None, version=None): super(Cache, self).__init__( _Table, name, create=create, timeout=timeout, version=version) self._persistent = False # Check if the db file exists and is an sqlite3 db. # Surprise, we have to do the heavy lifting. # That stops here. try: with open(name, 'r') as f: actual_magic = f.read(len(self._EXPECTED_MAGIC)) if actual_magic != self._EXPECTED_MAGIC: raise exceptions.CacheInvalid( '[{}] is not a persistent cache.'.format(self.name)) self._persistent = True except IOError as e: if e.errno in (errno.EISDIR, errno.EACCES): raise exceptions.CacheInvalid( '[{}] is not a persistent cache.'.format(self.name)) elif e.errno != errno.ENOENT: raise elif not create: raise exceptions.CacheNotFound( 'Persistent cache [{}] not found.'.format(self.name)) self._db = sqlite3.connect(name) self.cursor = self._db.cursor() self._restricted = set(['__lock__']) self._tables = {} self._metadata = None self._start = persistent_cache_base.Now() try: self.InitializeMetadata() except exceptions.Error: # Make sure we clean up any dangling resources. self.Close(commit=False) raise def _DeleteCacheFile(self): """Permanently deletes the persistent cache file.""" try: os.remove(self.name) except OSError as e: if e.errno not in (errno.ENOENT, errno.EISDIR): raise def Delete(self): """Closes and permanently deletes the persistent cache.""" self.Close(commit=False) self._DeleteCacheFile() def Commit(self): """Commits all operations up to this point.""" # Update the changed tables. for table in [x for x in self._tables.values() if x.changed]: table._Commit() # pylint: disable=protected-access if self._metadata.changed: self._metadata._Commit() # pylint: disable=protected-access self._db.commit() self._persistent = True def Close(self, commit=True): """Closes the cache, optionally committing any changes. Args: commit: Commits any changes before closing if True. """ if self._db: if commit: self.Commit() del self.cursor self._db.close() self._db = None self._tables = None if not commit and not self._persistent: # Need this because sqlite3 creates a filesystem artifact even if there # were no commits. self._DeleteCacheFile() def _ImplementationCreateTable(self, name, columns, keys): """sqlite3 implementation specific _CreateTable.""" field_list = [_FieldRef(i) for i in range(columns)] key_list = [_FieldRef(i) for i in range(keys or 1)] field_list.append('PRIMARY KEY ({keys})'.format(keys=', '.join(key_list))) fields = '({fields})'.format(fields=', '.join(field_list)) self.cursor.execute( 'CREATE TABLE IF NOT EXISTS "{name}" {fields}'.format( name=name, fields=fields))
34.996429
80
0.662925
from __future__ import absolute_import from __future__ import division import errno import os from googlecloudsdk.core.cache import exceptions from googlecloudsdk.core.cache import metadata_table from googlecloudsdk.core.cache import persistent_cache_base import six from six.moves import range import sqlite3 def _FieldRef(column): return 'f{column}'.format(column=column) def _Where(row_template=None): terms = [] if row_template: for index in range(len(row_template)): term = row_template[index] if term is None: continue if isinstance(term, six.string_types): pattern = term.replace('*', '%').replace('.', '_').replace('"', '""') terms.append(u'{field} LIKE "{pattern}"'.format( field=_FieldRef(index), pattern=pattern)) else: terms.append(u'{field} = {term}'.format( field=_FieldRef(index), term=term)) if not terms: return '' return ' WHERE ' + ' AND '.join(terms) class _Table(persistent_cache_base.Table): def __init__(self, cache, name, columns=1, keys=1, timeout=0, modified=0, restricted=False): self._rows = None super(_Table, self).__init__(cache, name, columns=columns, keys=keys, timeout=timeout, modified=modified, restricted=restricted) if restricted: self._cache._restricted.add(name) # pylint: disable=protected-access self._fields = ', '.join([_FieldRef(i) for i in range(columns)]) self._values = ', '.join(['?'] * columns) self.deleted = False # pylint: disable=protected-access if self._cache._metadata: self._cache._tables[name] = self def Delete(self): self.Invalidate() self._cache.cursor.execute( 'DROP TABLE "{table}"'.format(table=self.name)) # pylint: disable=protected-access self._cache._db.commit() self._cache._metadata.DeleteRows([(self.name,)]) self.deleted = True def _Commit(self): if self.changed: self.changed = False # pylint: disable=protected-access if self.deleted: self.deleted = False self._cache._metadata.DeleteRows([(self.name,)]) del self._cache._tables[self.name] else: self._cache._metadata.AddRows( [metadata_table.Metadata.Row( name=self.name, columns=self.columns, keys=self.keys, timeout=self.timeout, modified=self.modified, restricted=self.restricted, version=self._cache.version)]) def AddRows(self, rows): self._CheckRows(rows) self._cache.cursor.executemany( 'INSERT OR REPLACE INTO "{table}" ({fields}) VALUES ({values})'. format( table=self.name, fields=self._fields, values=self._values), rows) self._cache._db.commit() # pylint: disable=protected-access def DeleteRows(self, row_templates=None): if row_templates: self._CheckRowTemplates(row_templates) for template in row_templates: self._cache.cursor.execute( 'DELETE FROM "{table}"{where}'.format( table=self.name, where=_Where(template))) else: self._cache.cursor.execute( 'DELETE FROM "{table}" WHERE 1'.format(table=self.name)) self._cache._db.commit() # pylint: disable=protected-access def Select(self, row_template=None, ignore_expiration=False): # type: (...) -> list[tuple] if row_template is not None: self._CheckRowTemplates([row_template]) if not ignore_expiration and not self.restricted and not self.modified: raise exceptions.CacheTableExpired( '[{}] cache table [{}] has expired.'.format( self._cache.name, self.name)) self._cache.cursor.execute( u'SELECT {fields} FROM "{table}"{where}'.format( fields=self._fields, table=self.name, where=_Where(row_template))) return self._cache.cursor.fetchall() class Cache(metadata_table.CacheUsingMetadataTable): _EXPECTED_MAGIC = 'SQLite format 3' def __init__(self, name, create=True, timeout=None, version=None): super(Cache, self).__init__( _Table, name, create=create, timeout=timeout, version=version) self._persistent = False # Check if the db file exists and is an sqlite3 db. # Surprise, we have to do the heavy lifting. # That stops here. try: with open(name, 'r') as f: actual_magic = f.read(len(self._EXPECTED_MAGIC)) if actual_magic != self._EXPECTED_MAGIC: raise exceptions.CacheInvalid( '[{}] is not a persistent cache.'.format(self.name)) self._persistent = True except IOError as e: if e.errno in (errno.EISDIR, errno.EACCES): raise exceptions.CacheInvalid( '[{}] is not a persistent cache.'.format(self.name)) elif e.errno != errno.ENOENT: raise elif not create: raise exceptions.CacheNotFound( 'Persistent cache [{}] not found.'.format(self.name)) self._db = sqlite3.connect(name) self.cursor = self._db.cursor() self._restricted = set(['__lock__']) self._tables = {} self._metadata = None self._start = persistent_cache_base.Now() try: self.InitializeMetadata() except exceptions.Error: # Make sure we clean up any dangling resources. self.Close(commit=False) raise def _DeleteCacheFile(self): try: os.remove(self.name) except OSError as e: if e.errno not in (errno.ENOENT, errno.EISDIR): raise def Delete(self): self.Close(commit=False) self._DeleteCacheFile() def Commit(self): # Update the changed tables. for table in [x for x in self._tables.values() if x.changed]: table._Commit() # pylint: disable=protected-access if self._metadata.changed: self._metadata._Commit() # pylint: disable=protected-access self._db.commit() self._persistent = True def Close(self, commit=True): if self._db: if commit: self.Commit() del self.cursor self._db.close() self._db = None self._tables = None if not commit and not self._persistent: # Need this because sqlite3 creates a filesystem artifact even if there # were no commits. self._DeleteCacheFile() def _ImplementationCreateTable(self, name, columns, keys): field_list = [_FieldRef(i) for i in range(columns)] key_list = [_FieldRef(i) for i in range(keys or 1)] field_list.append('PRIMARY KEY ({keys})'.format(keys=', '.join(key_list))) fields = '({fields})'.format(fields=', '.join(field_list)) self.cursor.execute( 'CREATE TABLE IF NOT EXISTS "{name}" {fields}'.format( name=name, fields=fields))
true
true
f7f3f02200d922de128116b97d7b01806f2ee190
4,596
py
Python
src/app/drivers/mslookup/seqspace.py
husensofteng/msstitch
a917ed24fbc8b018b3f2bbec31e852aa76cc715c
[ "MIT" ]
null
null
null
src/app/drivers/mslookup/seqspace.py
husensofteng/msstitch
a917ed24fbc8b018b3f2bbec31e852aa76cc715c
[ "MIT" ]
null
null
null
src/app/drivers/mslookup/seqspace.py
husensofteng/msstitch
a917ed24fbc8b018b3f2bbec31e852aa76cc715c
[ "MIT" ]
null
null
null
from app.drivers.mslookup import base from app.actions.mslookup import searchspace as preparation from app.drivers.options import mslookup_options, sequence_options from Bio import SeqIO class SeqspaceLookupDriver(base.LookupDriver): """Creates an SQLite lookup DB from a FASTA file. Sequences are trypsinized and stored. It's possible to store sequences reversed for N-terminal falloff indexing, and it can be specified to cut tryptic before proline. """ lookuptype = 'searchspace' command = 'seqspace' commandhelp = """Create a lookup DB from a FASTA file. Sequences are trypsinized and stored. It's possible to store sequences reversed for N-terminal falloff indexing, and it can be specified to cut tryptic before proline.""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options(['falloff', 'proline', 'minlength'], mslookup_options)) self.options.update(self.define_options(['trypsinize', 'miss_cleavage'], sequence_options)) def create_lookup(self): preparation.create_searchspace(self.lookup, self.fn, self.minlength, self.proline, self.falloff, self.trypsinize, self.miss_cleavage) class WholeProteinSeqspaceLookupDriver(base.LookupDriver): lookuptype = 'searchspace' command = 'protspace' commandhelp = """Create a full-length protein lookup DB from a FASTA file. Protein sequences are stored as short peptides starting from every one of the proteins' amino acids.""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options(['minlength'], mslookup_options)) def create_lookup(self): preparation.create_searchspace_wholeproteins(self.lookup, self.fn, self.minlength) class DecoySeqDriver(base.LookupDriver): outsuffix = '_decoy.fa' lookuptype = 'searchspace' command = 'makedecoy' commandhelp = """Create a decoy database from a FASTA file. tryp_rev reverses tryptic peptides prot_rev reverses full protein Both make sure no decoys are accidentally identical to a target sequence, unless --ignore-target-hits is passed""" # FIXME doesnt really fit in mslookup category # maybe we should dump the categories in next version def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options([ 'fn', 'outfile', 'scramble', 'ignoretarget', 'trypsinize', 'miss_cleavage', 'minlength', 'max_shuffle'], sequence_options)) def run(self): outfn = self.create_outfilepath(self.fn, self.outsuffix) if self.lookup is None and not self.ignoretarget: self.initialize_lookup('decoychecker.sqlite') preparation.create_searchspace(self.lookup, self.fn, self.minlength, reverse_seqs=False, miss_cleavage=self.miss_cleavage) decoyfa = preparation.create_decoy_fa(self.fn, self.scramble, self.lookup, self.trypsinize, self.miss_cleavage, self.minlength, self.max_shuffle) with open(outfn, 'w') as fp: SeqIO.write(decoyfa, fp, 'fasta') class TrypsinizeDriver(base.LookupDriver): outsuffix = '_tryp.fa' command = 'trypsinize' commandhelp = """Trypsinize a FASTA file""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options([ 'fn', 'outfile', 'miss_cleavage', 'minlength', 'proline'], sequence_options)) def run(self): outfn = self.create_outfilepath(self.fn, self.outsuffix) with open(self.fn) as fp, open(outfn, 'w') as wfp: seqs = SeqIO.parse(fp, 'fasta') decoyfa = preparation.create_trypsinized(seqs, self.proline, self.miss_cleavage, self.minlength) SeqIO.write(decoyfa, wfp, 'fasta')
40.315789
153
0.665579
from app.drivers.mslookup import base from app.actions.mslookup import searchspace as preparation from app.drivers.options import mslookup_options, sequence_options from Bio import SeqIO class SeqspaceLookupDriver(base.LookupDriver): lookuptype = 'searchspace' command = 'seqspace' commandhelp = """Create a lookup DB from a FASTA file. Sequences are trypsinized and stored. It's possible to store sequences reversed for N-terminal falloff indexing, and it can be specified to cut tryptic before proline.""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options(['falloff', 'proline', 'minlength'], mslookup_options)) self.options.update(self.define_options(['trypsinize', 'miss_cleavage'], sequence_options)) def create_lookup(self): preparation.create_searchspace(self.lookup, self.fn, self.minlength, self.proline, self.falloff, self.trypsinize, self.miss_cleavage) class WholeProteinSeqspaceLookupDriver(base.LookupDriver): lookuptype = 'searchspace' command = 'protspace' commandhelp = """Create a full-length protein lookup DB from a FASTA file. Protein sequences are stored as short peptides starting from every one of the proteins' amino acids.""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options(['minlength'], mslookup_options)) def create_lookup(self): preparation.create_searchspace_wholeproteins(self.lookup, self.fn, self.minlength) class DecoySeqDriver(base.LookupDriver): outsuffix = '_decoy.fa' lookuptype = 'searchspace' command = 'makedecoy' commandhelp = """Create a decoy database from a FASTA file. tryp_rev reverses tryptic peptides prot_rev reverses full protein Both make sure no decoys are accidentally identical to a target sequence, unless --ignore-target-hits is passed""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options([ 'fn', 'outfile', 'scramble', 'ignoretarget', 'trypsinize', 'miss_cleavage', 'minlength', 'max_shuffle'], sequence_options)) def run(self): outfn = self.create_outfilepath(self.fn, self.outsuffix) if self.lookup is None and not self.ignoretarget: self.initialize_lookup('decoychecker.sqlite') preparation.create_searchspace(self.lookup, self.fn, self.minlength, reverse_seqs=False, miss_cleavage=self.miss_cleavage) decoyfa = preparation.create_decoy_fa(self.fn, self.scramble, self.lookup, self.trypsinize, self.miss_cleavage, self.minlength, self.max_shuffle) with open(outfn, 'w') as fp: SeqIO.write(decoyfa, fp, 'fasta') class TrypsinizeDriver(base.LookupDriver): outsuffix = '_tryp.fa' command = 'trypsinize' commandhelp = """Trypsinize a FASTA file""" def __init__(self): super().__init__() self.infiletype = 'FASTA' def set_options(self): super().set_options() self.options['--dbfile'].update({'required': False, 'default': None}) self.options.update(self.define_options([ 'fn', 'outfile', 'miss_cleavage', 'minlength', 'proline'], sequence_options)) def run(self): outfn = self.create_outfilepath(self.fn, self.outsuffix) with open(self.fn) as fp, open(outfn, 'w') as wfp: seqs = SeqIO.parse(fp, 'fasta') decoyfa = preparation.create_trypsinized(seqs, self.proline, self.miss_cleavage, self.minlength) SeqIO.write(decoyfa, wfp, 'fasta')
true
true
f7f3f04f76fb3911a064e6d7ad1dc598333f95e2
61,546
py
Python
release/stubs/Autodesk/Revit/DB/Lighting.py
htlcnn/ironpython-stubs
780d829e2104b2789d5f4d6f32b0ec9f2930ca03
[ "MIT" ]
182
2017-06-27T02:26:15.000Z
2022-03-30T18:53:43.000Z
release/stubs/Autodesk/Revit/DB/Lighting.py
htlcnn/ironpython-stubs
780d829e2104b2789d5f4d6f32b0ec9f2930ca03
[ "MIT" ]
28
2017-06-27T13:38:23.000Z
2022-03-15T11:19:44.000Z
release/stubs/Autodesk/Revit/DB/Lighting.py
htlcnn/ironpython-stubs
780d829e2104b2789d5f4d6f32b0ec9f2930ca03
[ "MIT" ]
67
2017-06-28T09:43:59.000Z
2022-03-20T21:17:10.000Z
# encoding: utf-8 # module Autodesk.Revit.DB.Lighting calls itself Lighting # from RevitAPI, Version=17.0.0.0, Culture=neutral, PublicKeyToken=null # by generator 1.145 # no doc # no imports # no functions # classes class LossFactor(object, IDisposable): """ This class is the base class for calculating lighting loss factor. """ def Clone(self): """ Clone(self: LossFactor) -> LossFactor Creates a copy of the LossFactor derived object. """ pass def Dispose(self): """ Dispose(self: LossFactor) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LossFactor, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LossFactor) -> bool """ LossFactorValue = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The calculated loss factor value Get: LossFactorValue(self: LossFactor) -> float """ class AdvancedLossFactor(LossFactor, IDisposable): """ This class encapsulates advanced lighting loss factor calculation. AdvancedLossFactor(other: AdvancedLossFactor) AdvancedLossFactor(ballastLossFactorIn: float, lampLumenDepreciationIn: float, lampTiltLossFactorIn: float, luminaireDirtDepreciationIn: float, surfaceDepreciationLossFactorIn: float, temperatureLossFactorIn: float, voltageLossFactorIn: float) AdvancedLossFactor() """ def Dispose(self): """ Dispose(self: LossFactor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LossFactor, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: AdvancedLossFactor) __new__(cls: type, ballastLossFactorIn: float, lampLumenDepreciationIn: float, lampTiltLossFactorIn: float, luminaireDirtDepreciationIn: float, surfaceDepreciationLossFactorIn: float, temperatureLossFactorIn: float, voltageLossFactorIn: float) __new__(cls: type) """ pass BallastLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The ballast loss factor. Get: BallastLossFactor(self: AdvancedLossFactor) -> float Set: BallastLossFactor(self: AdvancedLossFactor) = value """ LampLumenDepreciation = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The lamp lumen depreciation loss factor. Get: LampLumenDepreciation(self: AdvancedLossFactor) -> float Set: LampLumenDepreciation(self: AdvancedLossFactor) = value """ LampTiltLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The lamp tilt loss factor. Get: LampTiltLossFactor(self: AdvancedLossFactor) -> float Set: LampTiltLossFactor(self: AdvancedLossFactor) = value """ LuminaireDirtDepreciation = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The luminaire dirt depreciation loss factor. Get: LuminaireDirtDepreciation(self: AdvancedLossFactor) -> float Set: LuminaireDirtDepreciation(self: AdvancedLossFactor) = value """ SurfaceDepreciationLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The surface depreciation loss factor. Get: SurfaceDepreciationLossFactor(self: AdvancedLossFactor) -> float Set: SurfaceDepreciationLossFactor(self: AdvancedLossFactor) = value """ TemperatureLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The temperature loss factor. Get: TemperatureLossFactor(self: AdvancedLossFactor) -> float Set: TemperatureLossFactor(self: AdvancedLossFactor) = value """ VoltageLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The voltage loss factor. Get: VoltageLossFactor(self: AdvancedLossFactor) -> float Set: VoltageLossFactor(self: AdvancedLossFactor) = value """ class BasicLossFactor(LossFactor, IDisposable): """ This class encapsulates basic lighting loss factor calculation. BasicLossFactor(other: BasicLossFactor) BasicLossFactor(lossFactorIn: float) BasicLossFactor() """ def Dispose(self): """ Dispose(self: LossFactor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LossFactor, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: BasicLossFactor) __new__(cls: type, lossFactorIn: float) __new__(cls: type) """ pass LossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The loss factor. Get: LossFactor(self: BasicLossFactor) -> float Set: LossFactor(self: BasicLossFactor) = value """ class LightShape(object, IDisposable): """ This class is the base class for specifying light shape. """ def Clone(self): """ Clone(self: LightShape) -> LightShape Creates a copy of the LightShape derived object. """ pass def Dispose(self): """ Dispose(self: LightShape) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightShape) -> bool """ class CircleLightShape(LightShape, IDisposable): """ This class encapsulates a circle light shape. CircleLightShape(other: CircleLightShape) CircleLightShape(emitDiameter: float) CircleLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: CircleLightShape) __new__(cls: type, emitDiameter: float) __new__(cls: type) """ pass EmitDiameter = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The emit diameter. Get: EmitDiameter(self: CircleLightShape) -> float Set: EmitDiameter(self: CircleLightShape) = value """ class ColorPreset(Enum, IComparable, IFormattable, IConvertible): """ Preset values of initial colors for specific lighting types enum ColorPreset, values: D50 (1), D65 (0), FluorescentCool (7), FluorescentDayLight (9), FluorescentLightWhite (10), FluorescentWarm (6), FluorescentWhite (8), Halogen (2), HighPressureSodium (12), Incandescent (3), LowPressureSodium (13), Mercury (14), MetalHalide (11), PhosphorMercury (15), Quartz (5), Xenon (4) """ def __eq__(self, *args): #cannot find CLR method """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): #cannot find CLR method """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): #cannot find CLR method pass def __gt__(self, *args): #cannot find CLR method pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): #cannot find CLR method pass def __lt__(self, *args): #cannot find CLR method pass def __ne__(self, *args): #cannot find CLR method pass def __reduce_ex__(self, *args): #cannot find CLR method pass def __str__(self, *args): #cannot find CLR method pass D50 = None D65 = None FluorescentCool = None FluorescentDayLight = None FluorescentLightWhite = None FluorescentWarm = None FluorescentWhite = None Halogen = None HighPressureSodium = None Incandescent = None LowPressureSodium = None Mercury = None MetalHalide = None PhosphorMercury = None Quartz = None value__ = None Xenon = None class InitialColor(object, IDisposable): """ This class is the base class for calculating initial light color. """ def Clone(self): """ Clone(self: InitialColor) -> InitialColor Creates a copy of the InitialColor derived object. """ pass def Dispose(self): """ Dispose(self: InitialColor) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialColor, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: InitialColor) -> bool """ TemperatureValue = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The light color temperature value in Kelvins. Get: TemperatureValue(self: InitialColor) -> float """ class CustomInitialColor(InitialColor, IDisposable): """ This class encapsulates a custom initial lighting color. CustomInitialColor(other: CustomInitialColor) CustomInitialColor(temperature: float) """ def Dispose(self): """ Dispose(self: InitialColor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialColor, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: CustomInitialColor) __new__(cls: type, temperature: float) """ pass Temperature = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The custom color temperature value. Get: Temperature(self: CustomInitialColor) -> float Set: Temperature(self: CustomInitialColor) = value """ class LightDistribution(object, IDisposable): """ This class is the base class for specifying light distribution. """ def Clone(self): """ Clone(self: LightDistribution) -> LightDistribution Creates a copy of the LightDistribution derived object. """ pass def Dispose(self): """ Dispose(self: LightDistribution) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightDistribution) -> bool """ class HemisphericalLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a hemispherical light distribution. HemisphericalLightDistribution(other: HemisphericalLightDistribution) HemisphericalLightDistribution() """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, other=None): """ __new__(cls: type, other: HemisphericalLightDistribution) __new__(cls: type) """ pass class InitialIntensity(object, IDisposable): """ This class is the base class for calculating lighting initial intensity. """ def Clone(self): """ Clone(self: InitialIntensity) -> InitialIntensity Creates a copy of the InitialIntensity derived object. """ pass def Dispose(self): """ Dispose(self: InitialIntensity) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass InitialIntensityValue = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The calculated initial intensity value. Get: InitialIntensityValue(self: InitialIntensity) -> float """ IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: InitialIntensity) -> bool """ class InitialFluxIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial flux intensity calculation. InitialFluxIntensity(other: InitialFluxIntensity) InitialFluxIntensity(flux: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: InitialFluxIntensity) __new__(cls: type, flux: float) """ pass Flux = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The flux intensity value. Get: Flux(self: InitialFluxIntensity) -> float Set: Flux(self: InitialFluxIntensity) = value """ class InitialIlluminanceIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial illuminance intensity calculation. InitialIlluminanceIntensity(other: InitialIlluminanceIntensity) InitialIlluminanceIntensity(distance: float, illuminance: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: InitialIlluminanceIntensity) __new__(cls: type, distance: float, illuminance: float) """ pass Distance = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The illuminance intensity distance value. Get: Distance(self: InitialIlluminanceIntensity) -> float Set: Distance(self: InitialIlluminanceIntensity) = value """ Illuminance = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The illuminance intensity value. Get: Illuminance(self: InitialIlluminanceIntensity) -> float Set: Illuminance(self: InitialIlluminanceIntensity) = value """ class InitialLuminousIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial luminous intensity calculation. InitialLuminousIntensity(other: InitialLuminousIntensity) InitialLuminousIntensity(luminosity: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: InitialLuminousIntensity) __new__(cls: type, luminosity: float) """ pass Luminosity = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The luminosity value. Get: Luminosity(self: InitialLuminousIntensity) -> float Set: Luminosity(self: InitialLuminousIntensity) = value """ class InitialWattageIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial wattage intensity calculation. InitialWattageIntensity(other: InitialWattageIntensity) InitialWattageIntensity(efficacy: float, wattage: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: InitialWattageIntensity) __new__(cls: type, efficacy: float, wattage: float) """ pass Efficacy = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The efficacy value. Get: Efficacy(self: InitialWattageIntensity) -> float Set: Efficacy(self: InitialWattageIntensity) = value """ Wattage = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The wattage value. Get: Wattage(self: InitialWattageIntensity) -> float Set: Wattage(self: InitialWattageIntensity) = value """ class LightDimmingColor(Enum, IComparable, IFormattable, IConvertible): """ Tags for specific light dimming colors enum LightDimmingColor, values: Incandescent (1), None (0) """ def __eq__(self, *args): #cannot find CLR method """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): #cannot find CLR method """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): #cannot find CLR method pass def __gt__(self, *args): #cannot find CLR method pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): #cannot find CLR method pass def __lt__(self, *args): #cannot find CLR method pass def __ne__(self, *args): #cannot find CLR method pass def __reduce_ex__(self, *args): #cannot find CLR method pass def __str__(self, *args): #cannot find CLR method pass Incandescent = None None = None value__ = None class LightDistributionStyle(Enum, IComparable, IFormattable, IConvertible): """ Tags for specific light distribution styles enum LightDistributionStyle, values: Hemispherical (1), PhotometricWeb (3), Spherical (0), Spot (2) """ def __eq__(self, *args): #cannot find CLR method """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): #cannot find CLR method """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): #cannot find CLR method pass def __gt__(self, *args): #cannot find CLR method pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): #cannot find CLR method pass def __lt__(self, *args): #cannot find CLR method pass def __ne__(self, *args): #cannot find CLR method pass def __reduce_ex__(self, *args): #cannot find CLR method pass def __str__(self, *args): #cannot find CLR method pass Hemispherical = None PhotometricWeb = None Spherical = None Spot = None value__ = None class LightFamily(object, IDisposable): """ This class encapsulates light family information. """ def Dispose(self): """ Dispose(self: LightFamily) """ pass def GetLightDistributionStyle(self): """ GetLightDistributionStyle(self: LightFamily) -> LightDistributionStyle Returns a LightDistributionStyle value for the light distribution """ pass @staticmethod def GetLightFamily(document): """ GetLightFamily(document: Document) -> LightFamily Creates a light family object from the given family document document: The family document Returns: The newly created LightFamily object """ pass def GetLightShapeStyle(self): """ GetLightShapeStyle(self: LightFamily) -> LightShapeStyle Returns a LightShapeStyle value for the light shape """ pass def GetLightSourceTransform(self): """ GetLightSourceTransform(self: LightFamily) -> Transform Returns a Transform value for the transform of light source. Returns: The light source transform. """ pass def GetLightType(self, index): """ GetLightType(self: LightFamily, index: int) -> LightType Return a LightType object for the light type at the given index index: The index of the light type Returns: A LightType object for the light type at the given index """ pass def GetLightTypeName(self, index): """ GetLightTypeName(self: LightFamily, index: int) -> str Return the name for the light type at the given index index: The index of the light type Returns: The name of the light type at the given index """ pass def GetNumberOfLightTypes(self): """ GetNumberOfLightTypes(self: LightFamily) -> int Return the number of light types contained in this light family Returns: The number of light types contained in this light family """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightFamily, disposing: bool) """ pass def SetLightDistributionStyle(self, lightDistributionStyle): """ SetLightDistributionStyle(self: LightFamily, lightDistributionStyle: LightDistributionStyle) Set the light distribution style to the given shape distribution lightDistributionStyle: The light distribution style to set the light distribution type to """ pass def SetLightShapeStyle(self, lightShapeStyle): """ SetLightShapeStyle(self: LightFamily, lightShapeStyle: LightShapeStyle) Set the light shape style to the given shape style lightShapeStyle: The light shape style value to set the light shape style to """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightFamily) -> bool """ class LightGroup(object, IDisposable): """ This class represents a set of lights grouped together for easier management of various lighting scenarios """ def AddLight(self, lightId): """ AddLight(self: LightGroup, lightId: ElementId) Add a new light instance to the group lightId: The ID of the light instance to add to the group """ pass def Dispose(self): """ Dispose(self: LightGroup) """ pass def GetLights(self): """ GetLights(self: LightGroup) -> ICollection[ElementId] Get the set of contained light instances The set of light instances """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightGroup, disposing: bool) """ pass def RemoveLight(self, lightId): """ RemoveLight(self: LightGroup, lightId: ElementId) Remove the given light instance from the set of light instances in this group lightId: The light instance to remove """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass Id = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The ElementId of the LightGroup Get: Id(self: LightGroup) -> ElementId """ IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightGroup) -> bool """ Name = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The name of the LightGroup Get: Name(self: LightGroup) -> str Set: Name(self: LightGroup) = value """ class LightGroupManager(object, IDisposable): """ This class represents a set of light groups that are used for easier management of various lighting scenarios """ def CreateGroup(self, name): """ CreateGroup(self: LightGroupManager, name: str) -> LightGroup Create a new LightGroup object with the given name name: The name to use for the new LightGroup object Returns: The new LightGroup object that was created """ pass def DeleteGroup(self, groupId): """ DeleteGroup(self: LightGroupManager, groupId: ElementId) Remove the given LightGroup object from the set of LightGroup objects groupId: The Id of the LightGroup object to remove """ pass def Dispose(self): """ Dispose(self: LightGroupManager) """ pass def GetGroups(self): """ GetGroups(self: LightGroupManager) -> IList[LightGroup] Get the set of contained LightGroup objects The set of LightGroup objects """ pass def GetLightDimmer(self, viewId, lightId): """ GetLightDimmer(self: LightGroupManager, viewId: ElementId, lightId: ElementId) -> float Gets the dimmer value for the given light for rendering the given view viewId: The Id of the view lightId: The Id of the light to turn on or off """ pass @staticmethod def GetLightGroupManager(document): """ GetLightGroupManager(document: Document) -> LightGroupManager Creates a light group manager object from the given document document: The document the manager is from Returns: The newly created Light group manager object """ pass def IsLightGroupOn(self, viewId, groupId): """ IsLightGroupOn(self: LightGroupManager, viewId: ElementId, groupId: ElementId) -> bool Returns true if the given light group is on viewId: The Id of the view groupId: The Id of the light group """ pass def IsLightOn(self, viewId, lightId): """ IsLightOn(self: LightGroupManager, viewId: ElementId, lightId: ElementId) -> bool Returns true if the given light is on for rendering the given view viewId: The Id of the view lightId: The Id of the light """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightGroupManager, disposing: bool) """ pass def SetLightDimmer(self, viewId, lightId, dimmingValue): """ SetLightDimmer(self: LightGroupManager, viewId: ElementId, lightId: ElementId, dimmingValue: float) Sets the dimmer value for the given light for rendering the given view viewId: The Id of the view lightId: The Id of the light to turn on or off dimmingValue: The dimmer value to set int the range of [0.0, 1.0] """ pass def SetLightGroupOn(self, viewId, groupId, turnOn): """ SetLightGroupOn(self: LightGroupManager, viewId: ElementId, groupId: ElementId, turnOn: bool) Turns the given light group on or off for rendering the given view depending on the bool argument viewId: The Id of the view groupId: The Id of the light group turnOn: Turns the light group on if true, off if false """ pass def SetLightOn(self, viewId, lightId, turnOn): """ SetLightOn(self: LightGroupManager, viewId: ElementId, lightId: ElementId, turnOn: bool) Turns the given light on or off for rendering the given view depending on the bool argument viewId: The Id of the view lightId: The Id of the light to turn on or off turnOn: Turns the light on if true, off if false """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightGroupManager) -> bool """ class LightShapeStyle(Enum, IComparable, IFormattable, IConvertible): """ Tags for specific light shape styles enum LightShapeStyle, values: Circle (3), Line (1), Point (0), Rectangle (2) """ def __eq__(self, *args): #cannot find CLR method """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): #cannot find CLR method """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): #cannot find CLR method pass def __gt__(self, *args): #cannot find CLR method pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): #cannot find CLR method pass def __lt__(self, *args): #cannot find CLR method pass def __ne__(self, *args): #cannot find CLR method pass def __reduce_ex__(self, *args): #cannot find CLR method pass def __str__(self, *args): #cannot find CLR method pass Circle = None Line = None Point = None Rectangle = None value__ = None class LightType(object, IDisposable): """ This class encapsulates light information. """ def Dispose(self): """ Dispose(self: LightType) """ pass def GetInitialColor(self): """ GetInitialColor(self: LightType) -> InitialColor Return a copy of an object derived from InitialColor """ pass def GetInitialIntensity(self): """ GetInitialIntensity(self: LightType) -> InitialIntensity Return a copy of an object derived from InitialIntensity """ pass def GetLightDistribution(self): """ GetLightDistribution(self: LightType) -> LightDistribution Return a copy of an object derived from LightDistribution """ pass def GetLightShape(self): """ GetLightShape(self: LightType) -> LightShape Return a copy of an object derived from LightShape """ pass @staticmethod def GetLightType(document, typeId): """ GetLightType(document: Document, typeId: ElementId) -> LightType Creates a light type object from the given document and family type ID document: The document the typeId is from typeId: The ID of the light family type Returns: The newly created LightType object """ pass @staticmethod def GetLightTypeFromInstance(document, instanceId): """ GetLightTypeFromInstance(document: Document, instanceId: ElementId) -> LightType Creates a light type object from the given document and element ID document: The document the instanceId is from instanceId: The ID of the light fixture instance Returns: The newly created LightType object """ pass def GetLossFactor(self): """ GetLossFactor(self: LightType) -> LossFactor Return a copy of an object derived from LossFactor """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightType, disposing: bool) """ pass def SetInitialColor(self, initialColor): """ SetInitialColor(self: LightType, initialColor: InitialColor) Replace the current initial color object with the given object initialColor: An object derived from an InitialColor object The object pointed to is cloned internally """ pass def SetInitialIntensity(self, initialIntensity): """ SetInitialIntensity(self: LightType, initialIntensity: InitialIntensity) Replace the current initial intensity object with the given object initialIntensity: An object derived from an InitialIntensity object """ pass def SetLightDistribution(self, lightDistribution): """ SetLightDistribution(self: LightType, lightDistribution: LightDistribution) Replace the current LightDistribution object with the given object lightDistribution: An instance of an object derived from LightDistribution """ pass def SetLightShape(self, lightShape): """ SetLightShape(self: LightType, lightShape: LightShape) Replace the current LightShape object with the given object lightShape: An instance of an object derived from LightShape """ pass def SetLossFactor(self, lossFactor): """ SetLossFactor(self: LightType, lossFactor: LossFactor) Replace the current loss factor object with the given object lossFactor: An object derived from a LossFactor object """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): #cannot find CLR method """ __repr__(self: object) -> str """ pass ColorFilter = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The light filter color. Get: ColorFilter(self: LightType) -> Color Set: ColorFilter(self: LightType) = value """ DimmingColor = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The dimming temperature value in Kelvins. Get: DimmingColor(self: LightType) -> LightDimmingColor Set: DimmingColor(self: LightType) = value """ IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightType) -> bool """ class LineLightShape(LightShape, IDisposable): """ This class encapsulates a line light shape. LineLightShape(other: LineLightShape) LineLightShape(emitLength: float) LineLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: LineLightShape) __new__(cls: type, emitLength: float) __new__(cls: type) """ pass EmitLength = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The emit length. Get: EmitLength(self: LineLightShape) -> float Set: EmitLength(self: LineLightShape) = value """ class PhotometricWebLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a photometric web light distribution. PhotometricWebLightDistribution(other: PhotometricWebLightDistribution) PhotometricWebLightDistribution(photometricWebFile: str, tiltAngle: float) """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: PhotometricWebLightDistribution) __new__(cls: type, photometricWebFile: str, tiltAngle: float) """ pass PhotometricWebFile = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The filename of an IES photometric web file. Get: PhotometricWebFile(self: PhotometricWebLightDistribution) -> str Set: PhotometricWebFile(self: PhotometricWebLightDistribution) = value """ TiltAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The tilt angle. Get: TiltAngle(self: PhotometricWebLightDistribution) -> float Set: TiltAngle(self: PhotometricWebLightDistribution) = value """ class PointLightShape(LightShape, IDisposable): """ This class encapsulates a point light shape. PointLightShape(other: PointLightShape) PointLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, other=None): """ __new__(cls: type, other: PointLightShape) __new__(cls: type) """ pass class PresetInitialColor(InitialColor, IDisposable): """ This class encapsulates a preset initial lighting color. PresetInitialColor(other: PresetInitialColor) PresetInitialColor(presetIn: ColorPreset) """ def Dispose(self): """ Dispose(self: InitialColor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: InitialColor, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: PresetInitialColor) __new__(cls: type, presetIn: ColorPreset) """ pass Preset = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The preset value Get: Preset(self: PresetInitialColor) -> ColorPreset Set: Preset(self: PresetInitialColor) = value """ class RectangleLightShape(LightShape, IDisposable): """ This class encapsulates a rectangle light shape. RectangleLightShape(other: RectangleLightShape) RectangleLightShape(emitLength: float, emitWidth: float) RectangleLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: RectangleLightShape) __new__(cls: type, emitLength: float, emitWidth: float) __new__(cls: type) """ pass EmitLength = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The emit length. Get: EmitLength(self: RectangleLightShape) -> float Set: EmitLength(self: RectangleLightShape) = value """ EmitWidth = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The emit width. Get: EmitWidth(self: RectangleLightShape) -> float Set: EmitWidth(self: RectangleLightShape) = value """ class SphericalLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a spherical light distribution. SphericalLightDistribution(other: SphericalLightDistribution) SphericalLightDistribution() """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, other=None): """ __new__(cls: type, other: SphericalLightDistribution) __new__(cls: type) """ pass class SpotLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a spot light distribution. SpotLightDistribution(other: SpotLightDistribution) SpotLightDistribution(spotBeamAngle: float, spotFieldAngle: float, tiltAngle: float) SpotLightDistribution() """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): #cannot find CLR method """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): #cannot find CLR method """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): #cannot find CLR method """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): #cannot find CLR method """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod # known case of __new__ def __new__(self, *__args): """ __new__(cls: type, other: SpotLightDistribution) __new__(cls: type, spotBeamAngle: float, spotFieldAngle: float, tiltAngle: float) __new__(cls: type) """ pass SpotBeamAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The spot beam angle. Get: SpotBeamAngle(self: SpotLightDistribution) -> float Set: SpotBeamAngle(self: SpotLightDistribution) = value """ SpotFieldAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The spot field angle. Get: SpotFieldAngle(self: SpotLightDistribution) -> float Set: SpotFieldAngle(self: SpotLightDistribution) = value """ TiltAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) # default """The tilt angle. Get: TiltAngle(self: SpotLightDistribution) -> float Set: TiltAngle(self: SpotLightDistribution) = value """
35.169143
321
0.627661
class LossFactor(object, IDisposable): """ This class is the base class for calculating lighting loss factor. """ def Clone(self): """ Clone(self: LossFactor) -> LossFactor Creates a copy of the LossFactor derived object. """ pass def Dispose(self): """ Dispose(self: LossFactor) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LossFactor, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LossFactor) -> bool """ LossFactorValue = property(lambda self: object(), lambda self, v: None, lambda self: None) """The calculated loss factor value Get: LossFactorValue(self: LossFactor) -> float """ class AdvancedLossFactor(LossFactor, IDisposable): """ This class encapsulates advanced lighting loss factor calculation. AdvancedLossFactor(other: AdvancedLossFactor) AdvancedLossFactor(ballastLossFactorIn: float, lampLumenDepreciationIn: float, lampTiltLossFactorIn: float, luminaireDirtDepreciationIn: float, surfaceDepreciationLossFactorIn: float, temperatureLossFactorIn: float, voltageLossFactorIn: float) AdvancedLossFactor() """ def Dispose(self): """ Dispose(self: LossFactor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LossFactor, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: AdvancedLossFactor) __new__(cls: type, ballastLossFactorIn: float, lampLumenDepreciationIn: float, lampTiltLossFactorIn: float, luminaireDirtDepreciationIn: float, surfaceDepreciationLossFactorIn: float, temperatureLossFactorIn: float, voltageLossFactorIn: float) __new__(cls: type) """ pass BallastLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The ballast loss factor. Get: BallastLossFactor(self: AdvancedLossFactor) -> float Set: BallastLossFactor(self: AdvancedLossFactor) = value """ LampLumenDepreciation = property(lambda self: object(), lambda self, v: None, lambda self: None) """The lamp lumen depreciation loss factor. Get: LampLumenDepreciation(self: AdvancedLossFactor) -> float Set: LampLumenDepreciation(self: AdvancedLossFactor) = value """ LampTiltLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The lamp tilt loss factor. Get: LampTiltLossFactor(self: AdvancedLossFactor) -> float Set: LampTiltLossFactor(self: AdvancedLossFactor) = value """ LuminaireDirtDepreciation = property(lambda self: object(), lambda self, v: None, lambda self: None) """The luminaire dirt depreciation loss factor. Get: LuminaireDirtDepreciation(self: AdvancedLossFactor) -> float Set: LuminaireDirtDepreciation(self: AdvancedLossFactor) = value """ SurfaceDepreciationLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The surface depreciation loss factor. Get: SurfaceDepreciationLossFactor(self: AdvancedLossFactor) -> float Set: SurfaceDepreciationLossFactor(self: AdvancedLossFactor) = value """ TemperatureLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The temperature loss factor. Get: TemperatureLossFactor(self: AdvancedLossFactor) -> float Set: TemperatureLossFactor(self: AdvancedLossFactor) = value """ VoltageLossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The voltage loss factor. Get: VoltageLossFactor(self: AdvancedLossFactor) -> float Set: VoltageLossFactor(self: AdvancedLossFactor) = value """ class BasicLossFactor(LossFactor, IDisposable): """ This class encapsulates basic lighting loss factor calculation. BasicLossFactor(other: BasicLossFactor) BasicLossFactor(lossFactorIn: float) BasicLossFactor() """ def Dispose(self): """ Dispose(self: LossFactor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LossFactor, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: BasicLossFactor) __new__(cls: type, lossFactorIn: float) __new__(cls: type) """ pass LossFactor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The loss factor. Get: LossFactor(self: BasicLossFactor) -> float Set: LossFactor(self: BasicLossFactor) = value """ class LightShape(object, IDisposable): """ This class is the base class for specifying light shape. """ def Clone(self): """ Clone(self: LightShape) -> LightShape Creates a copy of the LightShape derived object. """ pass def Dispose(self): """ Dispose(self: LightShape) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightShape) -> bool """ class CircleLightShape(LightShape, IDisposable): """ This class encapsulates a circle light shape. CircleLightShape(other: CircleLightShape) CircleLightShape(emitDiameter: float) CircleLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: CircleLightShape) __new__(cls: type, emitDiameter: float) __new__(cls: type) """ pass EmitDiameter = property(lambda self: object(), lambda self, v: None, lambda self: None) """The emit diameter. Get: EmitDiameter(self: CircleLightShape) -> float Set: EmitDiameter(self: CircleLightShape) = value """ class ColorPreset(Enum, IComparable, IFormattable, IConvertible): """ Preset values of initial colors for specific lighting types enum ColorPreset, values: D50 (1), D65 (0), FluorescentCool (7), FluorescentDayLight (9), FluorescentLightWhite (10), FluorescentWarm (6), FluorescentWhite (8), Halogen (2), HighPressureSodium (12), Incandescent (3), LowPressureSodium (13), Mercury (14), MetalHalide (11), PhosphorMercury (15), Quartz (5), Xenon (4) """ def __eq__(self, *args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): pass def __gt__(self, *args): pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): pass def __lt__(self, *args): pass def __ne__(self, *args): pass def __reduce_ex__(self, *args): pass def __str__(self, *args): pass D50 = None D65 = None FluorescentCool = None FluorescentDayLight = None FluorescentLightWhite = None FluorescentWarm = None FluorescentWhite = None Halogen = None HighPressureSodium = None Incandescent = None LowPressureSodium = None Mercury = None MetalHalide = None PhosphorMercury = None Quartz = None value__ = None Xenon = None class InitialColor(object, IDisposable): """ This class is the base class for calculating initial light color. """ def Clone(self): """ Clone(self: InitialColor) -> InitialColor Creates a copy of the InitialColor derived object. """ pass def Dispose(self): """ Dispose(self: InitialColor) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialColor, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: InitialColor) -> bool """ TemperatureValue = property(lambda self: object(), lambda self, v: None, lambda self: None) """The light color temperature value in Kelvins. Get: TemperatureValue(self: InitialColor) -> float """ class CustomInitialColor(InitialColor, IDisposable): """ This class encapsulates a custom initial lighting color. CustomInitialColor(other: CustomInitialColor) CustomInitialColor(temperature: float) """ def Dispose(self): """ Dispose(self: InitialColor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialColor, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: CustomInitialColor) __new__(cls: type, temperature: float) """ pass Temperature = property(lambda self: object(), lambda self, v: None, lambda self: None) """The custom color temperature value. Get: Temperature(self: CustomInitialColor) -> float Set: Temperature(self: CustomInitialColor) = value """ class LightDistribution(object, IDisposable): """ This class is the base class for specifying light distribution. """ def Clone(self): """ Clone(self: LightDistribution) -> LightDistribution Creates a copy of the LightDistribution derived object. """ pass def Dispose(self): """ Dispose(self: LightDistribution) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightDistribution) -> bool """ class HemisphericalLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a hemispherical light distribution. HemisphericalLightDistribution(other: HemisphericalLightDistribution) HemisphericalLightDistribution() """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, other=None): """ __new__(cls: type, other: HemisphericalLightDistribution) __new__(cls: type) """ pass class InitialIntensity(object, IDisposable): """ This class is the base class for calculating lighting initial intensity. """ def Clone(self): """ Clone(self: InitialIntensity) -> InitialIntensity Creates a copy of the InitialIntensity derived object. """ pass def Dispose(self): """ Dispose(self: InitialIntensity) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass InitialIntensityValue = property(lambda self: object(), lambda self, v: None, lambda self: None) """The calculated initial intensity value. Get: InitialIntensityValue(self: InitialIntensity) -> float """ IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: InitialIntensity) -> bool """ class InitialFluxIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial flux intensity calculation. InitialFluxIntensity(other: InitialFluxIntensity) InitialFluxIntensity(flux: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: InitialFluxIntensity) __new__(cls: type, flux: float) """ pass Flux = property(lambda self: object(), lambda self, v: None, lambda self: None) """The flux intensity value. Get: Flux(self: InitialFluxIntensity) -> float Set: Flux(self: InitialFluxIntensity) = value """ class InitialIlluminanceIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial illuminance intensity calculation. InitialIlluminanceIntensity(other: InitialIlluminanceIntensity) InitialIlluminanceIntensity(distance: float, illuminance: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: InitialIlluminanceIntensity) __new__(cls: type, distance: float, illuminance: float) """ pass Distance = property(lambda self: object(), lambda self, v: None, lambda self: None) """The illuminance intensity distance value. Get: Distance(self: InitialIlluminanceIntensity) -> float Set: Distance(self: InitialIlluminanceIntensity) = value """ Illuminance = property(lambda self: object(), lambda self, v: None, lambda self: None) """The illuminance intensity value. Get: Illuminance(self: InitialIlluminanceIntensity) -> float Set: Illuminance(self: InitialIlluminanceIntensity) = value """ class InitialLuminousIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial luminous intensity calculation. InitialLuminousIntensity(other: InitialLuminousIntensity) InitialLuminousIntensity(luminosity: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: InitialLuminousIntensity) __new__(cls: type, luminosity: float) """ pass Luminosity = property(lambda self: object(), lambda self, v: None, lambda self: None) """The luminosity value. Get: Luminosity(self: InitialLuminousIntensity) -> float Set: Luminosity(self: InitialLuminousIntensity) = value """ class InitialWattageIntensity(InitialIntensity, IDisposable): """ This class encapsulates initial wattage intensity calculation. InitialWattageIntensity(other: InitialWattageIntensity) InitialWattageIntensity(efficacy: float, wattage: float) """ def Dispose(self): """ Dispose(self: InitialIntensity, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialIntensity, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: InitialWattageIntensity) __new__(cls: type, efficacy: float, wattage: float) """ pass Efficacy = property(lambda self: object(), lambda self, v: None, lambda self: None) """The efficacy value. Get: Efficacy(self: InitialWattageIntensity) -> float Set: Efficacy(self: InitialWattageIntensity) = value """ Wattage = property(lambda self: object(), lambda self, v: None, lambda self: None) """The wattage value. Get: Wattage(self: InitialWattageIntensity) -> float Set: Wattage(self: InitialWattageIntensity) = value """ class LightDimmingColor(Enum, IComparable, IFormattable, IConvertible): """ Tags for specific light dimming colors enum LightDimmingColor, values: Incandescent (1), None (0) """ def __eq__(self, *args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): pass def __gt__(self, *args): pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): pass def __lt__(self, *args): pass def __ne__(self, *args): pass def __reduce_ex__(self, *args): pass def __str__(self, *args): pass Incandescent = None None = None value__ = None class LightDistributionStyle(Enum, IComparable, IFormattable, IConvertible): """ Tags for specific light distribution styles enum LightDistributionStyle, values: Hemispherical (1), PhotometricWeb (3), Spherical (0), Spot (2) """ def __eq__(self, *args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): pass def __gt__(self, *args): pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): pass def __lt__(self, *args): pass def __ne__(self, *args): pass def __reduce_ex__(self, *args): pass def __str__(self, *args): pass Hemispherical = None PhotometricWeb = None Spherical = None Spot = None value__ = None class LightFamily(object, IDisposable): """ This class encapsulates light family information. """ def Dispose(self): """ Dispose(self: LightFamily) """ pass def GetLightDistributionStyle(self): """ GetLightDistributionStyle(self: LightFamily) -> LightDistributionStyle Returns a LightDistributionStyle value for the light distribution """ pass @staticmethod def GetLightFamily(document): """ GetLightFamily(document: Document) -> LightFamily Creates a light family object from the given family document document: The family document Returns: The newly created LightFamily object """ pass def GetLightShapeStyle(self): """ GetLightShapeStyle(self: LightFamily) -> LightShapeStyle Returns a LightShapeStyle value for the light shape """ pass def GetLightSourceTransform(self): """ GetLightSourceTransform(self: LightFamily) -> Transform Returns a Transform value for the transform of light source. Returns: The light source transform. """ pass def GetLightType(self, index): """ GetLightType(self: LightFamily, index: int) -> LightType Return a LightType object for the light type at the given index index: The index of the light type Returns: A LightType object for the light type at the given index """ pass def GetLightTypeName(self, index): """ GetLightTypeName(self: LightFamily, index: int) -> str Return the name for the light type at the given index index: The index of the light type Returns: The name of the light type at the given index """ pass def GetNumberOfLightTypes(self): """ GetNumberOfLightTypes(self: LightFamily) -> int Return the number of light types contained in this light family Returns: The number of light types contained in this light family """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightFamily, disposing: bool) """ pass def SetLightDistributionStyle(self, lightDistributionStyle): """ SetLightDistributionStyle(self: LightFamily, lightDistributionStyle: LightDistributionStyle) Set the light distribution style to the given shape distribution lightDistributionStyle: The light distribution style to set the light distribution type to """ pass def SetLightShapeStyle(self, lightShapeStyle): """ SetLightShapeStyle(self: LightFamily, lightShapeStyle: LightShapeStyle) Set the light shape style to the given shape style lightShapeStyle: The light shape style value to set the light shape style to """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightFamily) -> bool """ class LightGroup(object, IDisposable): """ This class represents a set of lights grouped together for easier management of various lighting scenarios """ def AddLight(self, lightId): """ AddLight(self: LightGroup, lightId: ElementId) Add a new light instance to the group lightId: The ID of the light instance to add to the group """ pass def Dispose(self): """ Dispose(self: LightGroup) """ pass def GetLights(self): """ GetLights(self: LightGroup) -> ICollection[ElementId] Get the set of contained light instances The set of light instances """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightGroup, disposing: bool) """ pass def RemoveLight(self, lightId): """ RemoveLight(self: LightGroup, lightId: ElementId) Remove the given light instance from the set of light instances in this group lightId: The light instance to remove """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass Id = property(lambda self: object(), lambda self, v: None, lambda self: None) """The ElementId of the LightGroup Get: Id(self: LightGroup) -> ElementId """ IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightGroup) -> bool """ Name = property(lambda self: object(), lambda self, v: None, lambda self: None) """The name of the LightGroup Get: Name(self: LightGroup) -> str Set: Name(self: LightGroup) = value """ class LightGroupManager(object, IDisposable): """ This class represents a set of light groups that are used for easier management of various lighting scenarios """ def CreateGroup(self, name): """ CreateGroup(self: LightGroupManager, name: str) -> LightGroup Create a new LightGroup object with the given name name: The name to use for the new LightGroup object Returns: The new LightGroup object that was created """ pass def DeleteGroup(self, groupId): """ DeleteGroup(self: LightGroupManager, groupId: ElementId) Remove the given LightGroup object from the set of LightGroup objects groupId: The Id of the LightGroup object to remove """ pass def Dispose(self): """ Dispose(self: LightGroupManager) """ pass def GetGroups(self): """ GetGroups(self: LightGroupManager) -> IList[LightGroup] Get the set of contained LightGroup objects The set of LightGroup objects """ pass def GetLightDimmer(self, viewId, lightId): """ GetLightDimmer(self: LightGroupManager, viewId: ElementId, lightId: ElementId) -> float Gets the dimmer value for the given light for rendering the given view viewId: The Id of the view lightId: The Id of the light to turn on or off """ pass @staticmethod def GetLightGroupManager(document): """ GetLightGroupManager(document: Document) -> LightGroupManager Creates a light group manager object from the given document document: The document the manager is from Returns: The newly created Light group manager object """ pass def IsLightGroupOn(self, viewId, groupId): """ IsLightGroupOn(self: LightGroupManager, viewId: ElementId, groupId: ElementId) -> bool Returns true if the given light group is on viewId: The Id of the view groupId: The Id of the light group """ pass def IsLightOn(self, viewId, lightId): """ IsLightOn(self: LightGroupManager, viewId: ElementId, lightId: ElementId) -> bool Returns true if the given light is on for rendering the given view viewId: The Id of the view lightId: The Id of the light """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightGroupManager, disposing: bool) """ pass def SetLightDimmer(self, viewId, lightId, dimmingValue): """ SetLightDimmer(self: LightGroupManager, viewId: ElementId, lightId: ElementId, dimmingValue: float) Sets the dimmer value for the given light for rendering the given view viewId: The Id of the view lightId: The Id of the light to turn on or off dimmingValue: The dimmer value to set int the range of [0.0, 1.0] """ pass def SetLightGroupOn(self, viewId, groupId, turnOn): """ SetLightGroupOn(self: LightGroupManager, viewId: ElementId, groupId: ElementId, turnOn: bool) Turns the given light group on or off for rendering the given view depending on the bool argument viewId: The Id of the view groupId: The Id of the light group turnOn: Turns the light group on if true, off if false """ pass def SetLightOn(self, viewId, lightId, turnOn): """ SetLightOn(self: LightGroupManager, viewId: ElementId, lightId: ElementId, turnOn: bool) Turns the given light on or off for rendering the given view depending on the bool argument viewId: The Id of the view lightId: The Id of the light to turn on or off turnOn: Turns the light on if true, off if false """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightGroupManager) -> bool """ class LightShapeStyle(Enum, IComparable, IFormattable, IConvertible): """ Tags for specific light shape styles enum LightShapeStyle, values: Circle (3), Line (1), Point (0), Rectangle (2) """ def __eq__(self, *args): """ x.__eq__(y) <==> x==yx.__eq__(y) <==> x==yx.__eq__(y) <==> x==y """ pass def __format__(self, *args): """ __format__(formattable: IFormattable, format: str) -> str """ pass def __ge__(self, *args): pass def __gt__(self, *args): pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __le__(self, *args): pass def __lt__(self, *args): pass def __ne__(self, *args): pass def __reduce_ex__(self, *args): pass def __str__(self, *args): pass Circle = None Line = None Point = None Rectangle = None value__ = None class LightType(object, IDisposable): """ This class encapsulates light information. """ def Dispose(self): """ Dispose(self: LightType) """ pass def GetInitialColor(self): """ GetInitialColor(self: LightType) -> InitialColor Return a copy of an object derived from InitialColor """ pass def GetInitialIntensity(self): """ GetInitialIntensity(self: LightType) -> InitialIntensity Return a copy of an object derived from InitialIntensity """ pass def GetLightDistribution(self): """ GetLightDistribution(self: LightType) -> LightDistribution Return a copy of an object derived from LightDistribution """ pass def GetLightShape(self): """ GetLightShape(self: LightType) -> LightShape Return a copy of an object derived from LightShape """ pass @staticmethod def GetLightType(document, typeId): """ GetLightType(document: Document, typeId: ElementId) -> LightType Creates a light type object from the given document and family type ID document: The document the typeId is from typeId: The ID of the light family type Returns: The newly created LightType object """ pass @staticmethod def GetLightTypeFromInstance(document, instanceId): """ GetLightTypeFromInstance(document: Document, instanceId: ElementId) -> LightType Creates a light type object from the given document and element ID document: The document the instanceId is from instanceId: The ID of the light fixture instance Returns: The newly created LightType object """ pass def GetLossFactor(self): """ GetLossFactor(self: LightType) -> LossFactor Return a copy of an object derived from LossFactor """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightType, disposing: bool) """ pass def SetInitialColor(self, initialColor): """ SetInitialColor(self: LightType, initialColor: InitialColor) Replace the current initial color object with the given object initialColor: An object derived from an InitialColor object The object pointed to is cloned internally """ pass def SetInitialIntensity(self, initialIntensity): """ SetInitialIntensity(self: LightType, initialIntensity: InitialIntensity) Replace the current initial intensity object with the given object initialIntensity: An object derived from an InitialIntensity object """ pass def SetLightDistribution(self, lightDistribution): """ SetLightDistribution(self: LightType, lightDistribution: LightDistribution) Replace the current LightDistribution object with the given object lightDistribution: An instance of an object derived from LightDistribution """ pass def SetLightShape(self, lightShape): """ SetLightShape(self: LightType, lightShape: LightShape) Replace the current LightShape object with the given object lightShape: An instance of an object derived from LightShape """ pass def SetLossFactor(self, lossFactor): """ SetLossFactor(self: LightType, lossFactor: LossFactor) Replace the current loss factor object with the given object lossFactor: An object derived from a LossFactor object """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __repr__(self, *args): """ __repr__(self: object) -> str """ pass ColorFilter = property(lambda self: object(), lambda self, v: None, lambda self: None) """The light filter color. Get: ColorFilter(self: LightType) -> Color Set: ColorFilter(self: LightType) = value """ DimmingColor = property(lambda self: object(), lambda self, v: None, lambda self: None) """The dimming temperature value in Kelvins. Get: DimmingColor(self: LightType) -> LightDimmingColor Set: DimmingColor(self: LightType) = value """ IsValidObject = property(lambda self: object(), lambda self, v: None, lambda self: None) """Specifies whether the .NET object represents a valid Revit entity. Get: IsValidObject(self: LightType) -> bool """ class LineLightShape(LightShape, IDisposable): """ This class encapsulates a line light shape. LineLightShape(other: LineLightShape) LineLightShape(emitLength: float) LineLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: LineLightShape) __new__(cls: type, emitLength: float) __new__(cls: type) """ pass EmitLength = property(lambda self: object(), lambda self, v: None, lambda self: None) """The emit length. Get: EmitLength(self: LineLightShape) -> float Set: EmitLength(self: LineLightShape) = value """ class PhotometricWebLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a photometric web light distribution. PhotometricWebLightDistribution(other: PhotometricWebLightDistribution) PhotometricWebLightDistribution(photometricWebFile: str, tiltAngle: float) """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: PhotometricWebLightDistribution) __new__(cls: type, photometricWebFile: str, tiltAngle: float) """ pass PhotometricWebFile = property(lambda self: object(), lambda self, v: None, lambda self: None) """The filename of an IES photometric web file. Get: PhotometricWebFile(self: PhotometricWebLightDistribution) -> str Set: PhotometricWebFile(self: PhotometricWebLightDistribution) = value """ TiltAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) """The tilt angle. Get: TiltAngle(self: PhotometricWebLightDistribution) -> float Set: TiltAngle(self: PhotometricWebLightDistribution) = value """ class PointLightShape(LightShape, IDisposable): """ This class encapsulates a point light shape. PointLightShape(other: PointLightShape) PointLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, other=None): """ __new__(cls: type, other: PointLightShape) __new__(cls: type) """ pass class PresetInitialColor(InitialColor, IDisposable): """ This class encapsulates a preset initial lighting color. PresetInitialColor(other: PresetInitialColor) PresetInitialColor(presetIn: ColorPreset) """ def Dispose(self): """ Dispose(self: InitialColor, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: InitialColor, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: PresetInitialColor) __new__(cls: type, presetIn: ColorPreset) """ pass Preset = property(lambda self: object(), lambda self, v: None, lambda self: None) """The preset value Get: Preset(self: PresetInitialColor) -> ColorPreset Set: Preset(self: PresetInitialColor) = value """ class RectangleLightShape(LightShape, IDisposable): """ This class encapsulates a rectangle light shape. RectangleLightShape(other: RectangleLightShape) RectangleLightShape(emitLength: float, emitWidth: float) RectangleLightShape() """ def Dispose(self): """ Dispose(self: LightShape, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightShape, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: RectangleLightShape) __new__(cls: type, emitLength: float, emitWidth: float) __new__(cls: type) """ pass EmitLength = property(lambda self: object(), lambda self, v: None, lambda self: None) """The emit length. Get: EmitLength(self: RectangleLightShape) -> float Set: EmitLength(self: RectangleLightShape) = value """ EmitWidth = property(lambda self: object(), lambda self, v: None, lambda self: None) """The emit width. Get: EmitWidth(self: RectangleLightShape) -> float Set: EmitWidth(self: RectangleLightShape) = value """ class SphericalLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a spherical light distribution. SphericalLightDistribution(other: SphericalLightDistribution) SphericalLightDistribution() """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, other=None): """ __new__(cls: type, other: SphericalLightDistribution) __new__(cls: type) """ pass class SpotLightDistribution(LightDistribution, IDisposable): """ This class encapsulates a spot light distribution. SpotLightDistribution(other: SpotLightDistribution) SpotLightDistribution(spotBeamAngle: float, spotFieldAngle: float, tiltAngle: float) SpotLightDistribution() """ def Dispose(self): """ Dispose(self: LightDistribution, A_0: bool) """ pass def ReleaseUnmanagedResources(self, *args): """ ReleaseUnmanagedResources(self: LightDistribution, disposing: bool) """ pass def __enter__(self, *args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self, *args): """ __exit__(self: IDisposable, exc_type: object, exc_value: object, exc_back: object) """ pass def __init__(self, *args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass @staticmethod def __new__(self, *__args): """ __new__(cls: type, other: SpotLightDistribution) __new__(cls: type, spotBeamAngle: float, spotFieldAngle: float, tiltAngle: float) __new__(cls: type) """ pass SpotBeamAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) """The spot beam angle. Get: SpotBeamAngle(self: SpotLightDistribution) -> float Set: SpotBeamAngle(self: SpotLightDistribution) = value """ SpotFieldAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) """The spot field angle. Get: SpotFieldAngle(self: SpotLightDistribution) -> float Set: SpotFieldAngle(self: SpotLightDistribution) = value """ TiltAngle = property(lambda self: object(), lambda self, v: None, lambda self: None) """The tilt angle. Get: TiltAngle(self: SpotLightDistribution) -> float Set: TiltAngle(self: SpotLightDistribution) = value """
false
true
f7f3f1fa0c13dc06da409995111447a84e2e8c70
4,698
py
Python
pandas/tests/test_common.py
Abishek15592/pandas
6929e262dd22ac35baabf87a5236d451255fb66d
[ "BSD-3-Clause" ]
1
2020-09-28T06:15:13.000Z
2020-09-28T06:15:13.000Z
pandas/tests/test_common.py
Abishek15592/pandas
6929e262dd22ac35baabf87a5236d451255fb66d
[ "BSD-3-Clause" ]
null
null
null
pandas/tests/test_common.py
Abishek15592/pandas
6929e262dd22ac35baabf87a5236d451255fb66d
[ "BSD-3-Clause" ]
2
2021-07-17T19:28:31.000Z
2021-11-28T17:14:58.000Z
import collections from distutils.version import LooseVersion from functools import partial import string import numpy as np import pytest from pandas.compat.numpy import np_version_under1p17 import pandas as pd from pandas import Series, Timestamp import pandas._testing as tm from pandas.core import ops import pandas.core.common as com def test_get_callable_name(): getname = com.get_callable_name def fn(x): return x lambda_ = lambda x: x # noqa: E731 part1 = partial(fn) part2 = partial(part1) class somecall: def __call__(self): return x # noqa assert getname(fn) == "fn" assert getname(lambda_) assert getname(part1) == "fn" assert getname(part2) == "fn" assert getname(somecall()) == "somecall" assert getname(1) is None def test_any_none(): assert com.any_none(1, 2, 3, None) assert not com.any_none(1, 2, 3, 4) def test_all_not_none(): assert com.all_not_none(1, 2, 3, 4) assert not com.all_not_none(1, 2, 3, None) assert not com.all_not_none(None, None, None, None) def test_random_state(): import numpy.random as npr # Check with seed state = com.random_state(5) assert state.uniform() == npr.RandomState(5).uniform() # Check with random state object state2 = npr.RandomState(10) assert com.random_state(state2).uniform() == npr.RandomState(10).uniform() # check with no arg random state assert com.random_state() is np.random # check array-like # GH32503 state_arr_like = npr.randint(0, 2 ** 31, size=624, dtype="uint32") assert ( com.random_state(state_arr_like).uniform() == npr.RandomState(state_arr_like).uniform() ) # Check BitGenerators # GH32503 if not np_version_under1p17: assert ( com.random_state(npr.MT19937(3)).uniform() == npr.RandomState(npr.MT19937(3)).uniform() ) assert ( com.random_state(npr.PCG64(11)).uniform() == npr.RandomState(npr.PCG64(11)).uniform() ) # Error for floats or strings msg = ( "random_state must be an integer, array-like, a BitGenerator, " "a numpy RandomState, or None" ) with pytest.raises(ValueError, match=msg): com.random_state("test") with pytest.raises(ValueError, match=msg): com.random_state(5.5) @pytest.mark.parametrize( "left, right, expected", [ (Series([1], name="x"), Series([2], name="x"), "x"), (Series([1], name="x"), Series([2], name="y"), None), (Series([1]), Series([2], name="x"), None), (Series([1], name="x"), Series([2]), None), (Series([1], name="x"), [2], "x"), ([1], Series([2], name="y"), "y"), ], ) def test_maybe_match_name(left, right, expected): assert ops._maybe_match_name(left, right) == expected def test_dict_compat(): data_datetime64 = {np.datetime64("1990-03-15"): 1, np.datetime64("2015-03-15"): 2} data_unchanged = {1: 2, 3: 4, 5: 6} expected = {Timestamp("1990-3-15"): 1, Timestamp("2015-03-15"): 2} assert com.dict_compat(data_datetime64) == expected assert com.dict_compat(expected) == expected assert com.dict_compat(data_unchanged) == data_unchanged def test_standardize_mapping(): # No uninitialized defaultdicts msg = r"to_dict\(\) only accepts initialized defaultdicts" with pytest.raises(TypeError, match=msg): com.standardize_mapping(collections.defaultdict) # No non-mapping subtypes, instance msg = "unsupported type: <class 'list'>" with pytest.raises(TypeError, match=msg): com.standardize_mapping([]) # No non-mapping subtypes, class with pytest.raises(TypeError, match=msg): com.standardize_mapping(list) fill = {"bad": "data"} assert com.standardize_mapping(fill) == dict # Convert instance to type assert com.standardize_mapping({}) == dict dd = collections.defaultdict(list) assert isinstance(com.standardize_mapping(dd), partial) def test_git_version(): # GH 21295 git_version = pd.__git_version__ assert len(git_version) == 40 assert all(c in string.hexdigits for c in git_version) def test_version_tag(): version = pd.__version__ try: version > LooseVersion("0.0.1") except TypeError: raise ValueError( "No git tags exist, please sync tags between upstream and your repo" ) @pytest.mark.parametrize( "obj", [(obj,) for obj in pd.__dict__.values() if callable(obj)] ) def test_serializable(obj): # GH 35611 unpickled = tm.round_trip_pickle(obj) assert type(obj) == type(unpickled)
27.635294
86
0.647935
import collections from distutils.version import LooseVersion from functools import partial import string import numpy as np import pytest from pandas.compat.numpy import np_version_under1p17 import pandas as pd from pandas import Series, Timestamp import pandas._testing as tm from pandas.core import ops import pandas.core.common as com def test_get_callable_name(): getname = com.get_callable_name def fn(x): return x lambda_ = lambda x: x part1 = partial(fn) part2 = partial(part1) class somecall: def __call__(self): return x assert getname(fn) == "fn" assert getname(lambda_) assert getname(part1) == "fn" assert getname(part2) == "fn" assert getname(somecall()) == "somecall" assert getname(1) is None def test_any_none(): assert com.any_none(1, 2, 3, None) assert not com.any_none(1, 2, 3, 4) def test_all_not_none(): assert com.all_not_none(1, 2, 3, 4) assert not com.all_not_none(1, 2, 3, None) assert not com.all_not_none(None, None, None, None) def test_random_state(): import numpy.random as npr state = com.random_state(5) assert state.uniform() == npr.RandomState(5).uniform() state2 = npr.RandomState(10) assert com.random_state(state2).uniform() == npr.RandomState(10).uniform() assert com.random_state() is np.random state_arr_like = npr.randint(0, 2 ** 31, size=624, dtype="uint32") assert ( com.random_state(state_arr_like).uniform() == npr.RandomState(state_arr_like).uniform() ) if not np_version_under1p17: assert ( com.random_state(npr.MT19937(3)).uniform() == npr.RandomState(npr.MT19937(3)).uniform() ) assert ( com.random_state(npr.PCG64(11)).uniform() == npr.RandomState(npr.PCG64(11)).uniform() ) msg = ( "random_state must be an integer, array-like, a BitGenerator, " "a numpy RandomState, or None" ) with pytest.raises(ValueError, match=msg): com.random_state("test") with pytest.raises(ValueError, match=msg): com.random_state(5.5) @pytest.mark.parametrize( "left, right, expected", [ (Series([1], name="x"), Series([2], name="x"), "x"), (Series([1], name="x"), Series([2], name="y"), None), (Series([1]), Series([2], name="x"), None), (Series([1], name="x"), Series([2]), None), (Series([1], name="x"), [2], "x"), ([1], Series([2], name="y"), "y"), ], ) def test_maybe_match_name(left, right, expected): assert ops._maybe_match_name(left, right) == expected def test_dict_compat(): data_datetime64 = {np.datetime64("1990-03-15"): 1, np.datetime64("2015-03-15"): 2} data_unchanged = {1: 2, 3: 4, 5: 6} expected = {Timestamp("1990-3-15"): 1, Timestamp("2015-03-15"): 2} assert com.dict_compat(data_datetime64) == expected assert com.dict_compat(expected) == expected assert com.dict_compat(data_unchanged) == data_unchanged def test_standardize_mapping(): msg = r"to_dict\(\) only accepts initialized defaultdicts" with pytest.raises(TypeError, match=msg): com.standardize_mapping(collections.defaultdict) msg = "unsupported type: <class 'list'>" with pytest.raises(TypeError, match=msg): com.standardize_mapping([]) with pytest.raises(TypeError, match=msg): com.standardize_mapping(list) fill = {"bad": "data"} assert com.standardize_mapping(fill) == dict assert com.standardize_mapping({}) == dict dd = collections.defaultdict(list) assert isinstance(com.standardize_mapping(dd), partial) def test_git_version(): git_version = pd.__git_version__ assert len(git_version) == 40 assert all(c in string.hexdigits for c in git_version) def test_version_tag(): version = pd.__version__ try: version > LooseVersion("0.0.1") except TypeError: raise ValueError( "No git tags exist, please sync tags between upstream and your repo" ) @pytest.mark.parametrize( "obj", [(obj,) for obj in pd.__dict__.values() if callable(obj)] ) def test_serializable(obj): unpickled = tm.round_trip_pickle(obj) assert type(obj) == type(unpickled)
true
true
f7f3f202992ebedad65adc3a861bd6efc79ad33d
40,679
py
Python
stable_baselines3/common/policies.py
adbelniak/stable-baselines3
61e3b9c3fc4b113b5de65dd3b083de7550676018
[ "MIT" ]
null
null
null
stable_baselines3/common/policies.py
adbelniak/stable-baselines3
61e3b9c3fc4b113b5de65dd3b083de7550676018
[ "MIT" ]
null
null
null
stable_baselines3/common/policies.py
adbelniak/stable-baselines3
61e3b9c3fc4b113b5de65dd3b083de7550676018
[ "MIT" ]
null
null
null
"""Policies: abstract base class and concrete implementations.""" import collections import copy import warnings from abc import ABC, abstractmethod from functools import partial from typing import Any, Dict, List, Optional, Tuple, Type, Union import gym import numpy as np import torch as th from torch import nn from stable_baselines3.common.distributions import ( BernoulliDistribution, CategoricalDistribution, DiagGaussianDistribution, Distribution, MultiCategoricalDistribution, StateDependentNoiseDistribution, ConditionalCategoricalDistribution, make_proba_distribution, ) from stable_baselines3.common.preprocessing import get_action_dim, is_image_space, maybe_transpose, preprocess_obs from stable_baselines3.common.torch_layers import ( BaseFeaturesExtractor, CombinedExtractor, FlattenExtractor, MlpExtractor, NatureCNN, create_mlp, ) from stable_baselines3.common.type_aliases import Schedule from stable_baselines3.common.utils import get_device, is_vectorized_observation, obs_as_tensor class BaseModel(nn.Module, ABC): """ The base model object: makes predictions in response to observations. In the case of policies, the prediction is an action. In the case of critics, it is the estimated value of the observation. :param observation_space: The observation space of the environment :param action_space: The action space of the environment :param features_extractor_class: Features extractor to use. :param features_extractor_kwargs: Keyword arguments to pass to the features extractor. :param features_extractor: Network to extract features (a CNN when using images, a nn.Flatten() layer otherwise) :param normalize_images: Whether to normalize images or not, dividing by 255.0 (True by default) :param optimizer_class: The optimizer to use, ``th.optim.Adam`` by default :param optimizer_kwargs: Additional keyword arguments, excluding the learning rate, to pass to the optimizer """ def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, features_extractor_class: Type[BaseFeaturesExtractor] = FlattenExtractor, features_extractor_kwargs: Optional[Dict[str, Any]] = None, features_extractor: Optional[nn.Module] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): super(BaseModel, self).__init__() if optimizer_kwargs is None: optimizer_kwargs = {} if features_extractor_kwargs is None: features_extractor_kwargs = {} self.observation_space = observation_space self.action_space = action_space self.features_extractor = features_extractor self.normalize_images = normalize_images self.optimizer_class = optimizer_class self.optimizer_kwargs = optimizer_kwargs self.optimizer = None # type: Optional[th.optim.Optimizer] self.features_extractor_class = features_extractor_class self.features_extractor_kwargs = features_extractor_kwargs @abstractmethod def forward(self, *args, **kwargs): pass def _update_features_extractor( self, net_kwargs: Dict[str, Any], features_extractor: Optional[BaseFeaturesExtractor] = None, ) -> Dict[str, Any]: """ Update the network keyword arguments and create a new features extractor object if needed. If a ``features_extractor`` object is passed, then it will be shared. :param net_kwargs: the base network keyword arguments, without the ones related to features extractor :param features_extractor: a features extractor object. If None, a new object will be created. :return: The updated keyword arguments """ net_kwargs = net_kwargs.copy() if features_extractor is None: # The features extractor is not shared, create a new one features_extractor = self.make_features_extractor() net_kwargs.update(dict(features_extractor=features_extractor, features_dim=features_extractor.features_dim)) return net_kwargs def make_features_extractor(self) -> BaseFeaturesExtractor: """Helper method to create a features extractor.""" return self.features_extractor_class(self.observation_space, **self.features_extractor_kwargs) def extract_features(self, obs: th.Tensor) -> th.Tensor: """ Preprocess the observation if needed and extract features. :param obs: :return: """ assert self.features_extractor is not None, "No features extractor was set" preprocessed_obs = preprocess_obs(obs, self.observation_space, normalize_images=self.normalize_images) return self.features_extractor(preprocessed_obs) def _get_constructor_parameters(self) -> Dict[str, Any]: """ Get data that need to be saved in order to re-create the model when loading it from disk. :return: The dictionary to pass to the as kwargs constructor when reconstruction this model. """ return dict( observation_space=self.observation_space, action_space=self.action_space, # Passed to the constructor by child class # squash_output=self.squash_output, # features_extractor=self.features_extractor normalize_images=self.normalize_images, ) @property def device(self) -> th.device: """Infer which device this policy lives on by inspecting its parameters. If it has no parameters, the 'cpu' device is used as a fallback. :return:""" for param in self.parameters(): return param.device return get_device("cpu") def save(self, path: str) -> None: """ Save model to a given location. :param path: """ th.save({"state_dict": self.state_dict(), "data": self._get_constructor_parameters()}, path) @classmethod def load(cls, path: str, device: Union[th.device, str] = "auto") -> "BaseModel": """ Load model from path. :param path: :param device: Device on which the policy should be loaded. :return: """ device = get_device(device) saved_variables = th.load(path, map_location=device) # Allow to load policy saved with older version of SB3 if "sde_net_arch" in saved_variables["data"]: warnings.warn( "sde_net_arch is deprecated, please downgrade to SB3 v1.2.0 if you need such parameter.", DeprecationWarning, ) del saved_variables["data"]["sde_net_arch"] # Create policy object model = cls(**saved_variables["data"]) # pytype: disable=not-instantiable # Load weights model.load_state_dict(saved_variables["state_dict"]) model.to(device) return model def load_from_vector(self, vector: np.ndarray) -> None: """ Load parameters from a 1D vector. :param vector: """ th.nn.utils.vector_to_parameters(th.FloatTensor(vector).to(self.device), self.parameters()) def parameters_to_vector(self) -> np.ndarray: """ Convert the parameters to a 1D vector. :return: """ return th.nn.utils.parameters_to_vector(self.parameters()).detach().cpu().numpy() def set_training_mode(self, mode: bool) -> None: """ Put the policy in either training or evaluation mode. This affects certain modules, such as batch normalisation and dropout. :param mode: if true, set to training mode, else set to evaluation mode """ self.train(mode) def obs_to_tensor(self, observation: Union[np.ndarray, Dict[str, np.ndarray]]) -> Tuple[th.Tensor, bool]: """ Convert an input observation to a PyTorch tensor that can be fed to a model. Includes sugar-coating to handle different observations (e.g. normalizing images). :param observation: the input observation :return: The observation as PyTorch tensor and whether the observation is vectorized or not """ vectorized_env = False if isinstance(observation, dict): # need to copy the dict as the dict in VecFrameStack will become a torch tensor observation = copy.deepcopy(observation) for key, obs in observation.items(): obs_space = self.observation_space.spaces[key] if is_image_space(obs_space): obs_ = maybe_transpose(obs, obs_space) else: obs_ = np.array(obs) vectorized_env = vectorized_env or is_vectorized_observation(obs_, obs_space) # Add batch dimension if needed observation[key] = obs_.reshape((-1,) + self.observation_space[key].shape) elif is_image_space(self.observation_space): # Handle the different cases for images # as PyTorch use channel first format observation = maybe_transpose(observation, self.observation_space) else: observation = np.array(observation) if not isinstance(observation, dict): # Dict obs need to be handled separately vectorized_env = is_vectorized_observation(observation, self.observation_space) # Add batch dimension if needed observation = observation.reshape((-1,) + self.observation_space.shape) observation = obs_as_tensor(observation, self.device) return observation, vectorized_env class BasePolicy(BaseModel): """The base policy object. Parameters are mostly the same as `BaseModel`; additions are documented below. :param args: positional arguments passed through to `BaseModel`. :param kwargs: keyword arguments passed through to `BaseModel`. :param squash_output: For continuous actions, whether the output is squashed or not using a ``tanh()`` function. """ def __init__(self, *args, squash_output: bool = False, **kwargs): super(BasePolicy, self).__init__(*args, **kwargs) self._squash_output = squash_output @staticmethod def _dummy_schedule(progress_remaining: float) -> float: """(float) Useful for pickling policy.""" del progress_remaining return 0.0 @property def squash_output(self) -> bool: """(bool) Getter for squash_output.""" return self._squash_output @staticmethod def init_weights(module: nn.Module, gain: float = 1) -> None: """ Orthogonal initialization (used in PPO and A2C) """ if isinstance(module, (nn.Linear, nn.Conv2d)): nn.init.orthogonal_(module.weight, gain=gain) if module.bias is not None: module.bias.data.fill_(0.0) @abstractmethod def _predict(self, observation: th.Tensor, deterministic: bool = False) -> th.Tensor: """ Get the action according to the policy for a given observation. By default provides a dummy implementation -- not all BasePolicy classes implement this, e.g. if they are a Critic in an Actor-Critic method. :param observation: :param deterministic: Whether to use stochastic or deterministic actions :return: Taken action according to the policy """ def predict( self, observation: Union[np.ndarray, Dict[str, np.ndarray]], state: Optional[Tuple[np.ndarray, ...]] = None, episode_start: Optional[np.ndarray] = None, deterministic: bool = False, ) -> Tuple[np.ndarray, Optional[Tuple[np.ndarray, ...]]]: """ Get the policy action from an observation (and optional hidden state). Includes sugar-coating to handle different observations (e.g. normalizing images). :param observation: the input observation :param state: The last hidden states (can be None, used in recurrent policies) :param episode_start: The last masks (can be None, used in recurrent policies) this correspond to beginning of episodes, where the hidden states of the RNN must be reset. :param deterministic: Whether or not to return deterministic actions. :return: the model's action and the next hidden state (used in recurrent policies) """ # TODO (GH/1): add support for RNN policies # if state is None: # state = self.initial_state # if episode_start is None: # episode_start = [False for _ in range(self.n_envs)] # Switch to eval mode (this affects batch norm / dropout) self.set_training_mode(False) observation, vectorized_env = self.obs_to_tensor(observation) with th.no_grad(): actions = self._predict(observation, deterministic=deterministic) # Convert to numpy actions = actions.cpu().numpy() if isinstance(self.action_space, gym.spaces.Box): if self.squash_output: # Rescale to proper domain when using squashing actions = self.unscale_action(actions) else: # Actions could be on arbitrary scale, so clip the actions to avoid # out of bound error (e.g. if sampling from a Gaussian distribution) actions = np.clip(actions, self.action_space.low, self.action_space.high) # Remove batch dimension if needed if not vectorized_env: actions = actions[0] return actions, state def scale_action(self, action: np.ndarray) -> np.ndarray: """ Rescale the action from [low, high] to [-1, 1] (no need for symmetric action space) :param action: Action to scale :return: Scaled action """ low, high = self.action_space.low, self.action_space.high return 2.0 * ((action - low) / (high - low)) - 1.0 def unscale_action(self, scaled_action: np.ndarray) -> np.ndarray: """ Rescale the action from [-1, 1] to [low, high] (no need for symmetric action space) :param scaled_action: Action to un-scale """ low, high = self.action_space.low, self.action_space.high return low + (0.5 * (scaled_action + 1.0) * (high - low)) class ActorCriticPolicy(BasePolicy): """ Policy class for actor-critic algorithms (has both policy and value prediction). Used by A2C, PPO and the likes. :param observation_space: Observation space :param action_space: Action space :param lr_schedule: Learning rate schedule (could be constant) :param net_arch: The specification of the policy and value networks. :param activation_fn: Activation function :param ortho_init: Whether to use or not orthogonal initialization :param use_sde: Whether to use State Dependent Exploration or not :param log_std_init: Initial value for the log standard deviation :param full_std: Whether to use (n_features x n_actions) parameters for the std instead of only (n_features,) when using gSDE :param sde_net_arch: Network architecture for extracting features when using gSDE. If None, the latent features from the policy will be used. Pass an empty list to use the states as features. :param use_expln: Use ``expln()`` function instead of ``exp()`` to ensure a positive standard deviation (cf paper). It allows to keep variance above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough. :param squash_output: Whether to squash the output using a tanh function, this allows to ensure boundaries when using gSDE. :param features_extractor_class: Features extractor to use. :param features_extractor_kwargs: Keyword arguments to pass to the features extractor. :param normalize_images: Whether to normalize images or not, dividing by 255.0 (True by default) :param optimizer_class: The optimizer to use, ``th.optim.Adam`` by default :param optimizer_kwargs: Additional keyword arguments, excluding the learning rate, to pass to the optimizer """ def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, lr_schedule: Schedule, net_arch: Optional[List[Union[int, Dict[str, List[int]]]]] = None, activation_fn: Type[nn.Module] = nn.ReLU, ortho_init: bool = True, use_sde: bool = False, log_std_init: float = 0.0, full_std: bool = True, sde_net_arch: Optional[List[int]] = None, use_expln: bool = False, squash_output: bool = False, features_extractor_class: Type[BaseFeaturesExtractor] = FlattenExtractor, features_extractor_kwargs: Optional[Dict[str, Any]] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): if optimizer_kwargs is None: optimizer_kwargs = {} # Small values to avoid NaN in Adam optimizer if optimizer_class == th.optim.Adam: optimizer_kwargs["eps"] = 1e-5 super(ActorCriticPolicy, self).__init__( observation_space, action_space, features_extractor_class, features_extractor_kwargs, optimizer_class=optimizer_class, optimizer_kwargs=optimizer_kwargs, squash_output=squash_output, ) # Default network architecture, from stable-baselines if net_arch is None: if features_extractor_class == NatureCNN: net_arch = [] else: net_arch = [dict(pi=[64, 64], vf=[64, 64])] self.net_arch = net_arch self.activation_fn = activation_fn self.ortho_init = ortho_init self.features_extractor = features_extractor_class(self.observation_space, **self.features_extractor_kwargs) self.features_dim = self.features_extractor.features_dim self.normalize_images = normalize_images self.log_std_init = log_std_init dist_kwargs = None # Keyword arguments for gSDE distribution if use_sde: dist_kwargs = { "full_std": full_std, "squash_output": squash_output, "use_expln": use_expln, "learn_features": False, } if sde_net_arch is not None: warnings.warn("sde_net_arch is deprecated and will be removed in SB3 v2.4.0.", DeprecationWarning) self.use_sde = use_sde self.dist_kwargs = dist_kwargs # Action distribution self.action_dist = make_proba_distribution(action_space, use_sde=use_sde, dist_kwargs=dist_kwargs) self._build(lr_schedule) def _get_constructor_parameters(self) -> Dict[str, Any]: data = super()._get_constructor_parameters() default_none_kwargs = self.dist_kwargs or collections.defaultdict(lambda: None) data.update( dict( net_arch=self.net_arch, activation_fn=self.activation_fn, use_sde=self.use_sde, log_std_init=self.log_std_init, squash_output=default_none_kwargs["squash_output"], full_std=default_none_kwargs["full_std"], use_expln=default_none_kwargs["use_expln"], lr_schedule=self._dummy_schedule, # dummy lr schedule, not needed for loading policy alone ortho_init=self.ortho_init, optimizer_class=self.optimizer_class, optimizer_kwargs=self.optimizer_kwargs, features_extractor_class=self.features_extractor_class, features_extractor_kwargs=self.features_extractor_kwargs, ) ) return data def reset_noise(self, n_envs: int = 1) -> None: """ Sample new weights for the exploration matrix. :param n_envs: """ assert isinstance(self.action_dist, StateDependentNoiseDistribution), "reset_noise() is only available when using gSDE" self.action_dist.sample_weights(self.log_std, batch_size=n_envs) def _build_mlp_extractor(self) -> None: """ Create the policy and value networks. Part of the layers can be shared. """ # Note: If net_arch is None and some features extractor is used, # net_arch here is an empty list and mlp_extractor does not # really contain any layers (acts like an identity module). self.mlp_extractor = MlpExtractor( self.features_dim, net_arch=self.net_arch, activation_fn=self.activation_fn, device=self.device, ) def _build(self, lr_schedule: Schedule) -> None: """ Create the networks and the optimizer. :param lr_schedule: Learning rate schedule lr_schedule(1) is the initial learning rate """ self._build_mlp_extractor() latent_dim_pi = self.mlp_extractor.latent_dim_pi if isinstance(self.action_dist, DiagGaussianDistribution): self.action_net, self.log_std = self.action_dist.proba_distribution_net( latent_dim=latent_dim_pi, log_std_init=self.log_std_init ) elif isinstance(self.action_dist, StateDependentNoiseDistribution): self.action_net, self.log_std = self.action_dist.proba_distribution_net( latent_dim=latent_dim_pi, latent_sde_dim=latent_dim_pi, log_std_init=self.log_std_init ) elif isinstance(self.action_dist, (CategoricalDistribution, MultiCategoricalDistribution, BernoulliDistribution)): self.action_net = self.action_dist.proba_distribution_net(latent_dim=latent_dim_pi) elif isinstance(self.action_dist, (ConditionalCategoricalDistribution)): self.action_net, self.embedding, self.other = self.action_dist.proba_distribution_net(latent_dim=latent_dim_pi) else: raise NotImplementedError(f"Unsupported distribution '{self.action_dist}'.") self.value_net = nn.Linear(self.mlp_extractor.latent_dim_vf, 1) # Init weights: use orthogonal initialization # with small initial weight for the output if self.ortho_init: # TODO: check for features_extractor # Values from stable-baselines. # features_extractor/mlp values are # originally from openai/baselines (default gains/init_scales). module_gains = { self.features_extractor: np.sqrt(2), self.mlp_extractor: np.sqrt(2), self.action_net: 0.01, self.value_net: 1, } for module, gain in module_gains.items(): module.apply(partial(self.init_weights, gain=gain)) # Setup optimizer with initial learning rate self.optimizer = self.optimizer_class(self.parameters(), lr=lr_schedule(1), **self.optimizer_kwargs) def forward(self, obs: th.Tensor, deterministic: bool = False) -> Tuple[th.Tensor, th.Tensor, th.Tensor]: """ Forward pass in all the networks (actor and critic) :param obs: Observation :param deterministic: Whether to sample or use deterministic actions :return: action, value and log probability of the action """ # Preprocess the observation if needed features = self.extract_features(obs) latent_pi, latent_vf = self.mlp_extractor(features) # Evaluate the values for the given observations values = self.value_net(latent_vf) if isinstance(self.action_dist, ConditionalCategoricalDistribution): # mean_actions = self.action_net[0](latent_pi) mean_actions = self.action_net(latent_pi) # mean_actions = F.relu(mean_actions) # distribution = self.action_dist.proba_distribution(mean_actions) actions, distribution = self.action_dist.sample_all(mean_actions) else: distribution = self._get_action_dist_from_latent(latent_pi) actions = distribution.get_actions(deterministic=deterministic) log_prob = distribution.log_prob(actions) return actions, values, log_prob def _get_action_dist_from_latent(self, latent_pi: th.Tensor) -> Distribution: """ Retrieve action distribution given the latent codes. :param latent_pi: Latent code for the actor :return: Action distribution """ mean_actions = self.action_net(latent_pi) if isinstance(self.action_dist, DiagGaussianDistribution): return self.action_dist.proba_distribution(mean_actions, self.log_std) elif isinstance(self.action_dist, CategoricalDistribution): # Here mean_actions are the logits before the softmax return self.action_dist.proba_distribution(action_logits=mean_actions) elif isinstance(self.action_dist, MultiCategoricalDistribution): # Here mean_actions are the flattened logits return self.action_dist.proba_distribution(action_logits=mean_actions) elif isinstance(self.action_dist, BernoulliDistribution): # Here mean_actions are the logits (before rounding to get the binary actions) return self.action_dist.proba_distribution(action_logits=mean_actions) elif isinstance(self.action_dist, StateDependentNoiseDistribution): return self.action_dist.proba_distribution(mean_actions, self.log_std, latent_pi) else: raise ValueError("Invalid action distribution") def _predict(self, observation: th.Tensor, deterministic: bool = False) -> th.Tensor: """ Get the action according to the policy for a given observation. :param observation: :param deterministic: Whether to use stochastic or deterministic actions :return: Taken action according to the policy """ return self.get_distribution(observation).get_actions(deterministic=deterministic) def evaluate_actions(self, obs: th.Tensor, actions: th.Tensor) -> Tuple[th.Tensor, th.Tensor, th.Tensor]: """ Evaluate actions according to the current policy, given the observations. :param obs: :param actions: :return: estimated value, log likelihood of taking those actions and entropy of the action distribution. """ # Preprocess the observation if needed features = self.extract_features(obs) latent_pi, latent_vf = self.mlp_extractor(features) if isinstance(self.action_dist, ConditionalCategoricalDistribution): mean_actions = self.action_net(latent_pi) _, distribution = self.action_dist.sample_all(mean_actions) else: distribution = self._get_action_dist_from_latent(latent_pi) log_prob = distribution.log_prob(actions) values = self.value_net(latent_vf) return values, log_prob, distribution.entropy() def get_distribution(self, obs: th.Tensor) -> Distribution: """ Get the current policy distribution given the observations. :param obs: :return: the action distribution. """ features = self.extract_features(obs) latent_pi = self.mlp_extractor.forward_actor(features) return self._get_action_dist_from_latent(latent_pi) def predict_values(self, obs: th.Tensor) -> th.Tensor: """ Get the estimated values according to the current policy given the observations. :param obs: :return: the estimated values. """ features = self.extract_features(obs) latent_vf = self.mlp_extractor.forward_critic(features) return self.value_net(latent_vf) class ActorCriticCnnPolicy(ActorCriticPolicy): """ CNN policy class for actor-critic algorithms (has both policy and value prediction). Used by A2C, PPO and the likes. :param observation_space: Observation space :param action_space: Action space :param lr_schedule: Learning rate schedule (could be constant) :param net_arch: The specification of the policy and value networks. :param activation_fn: Activation function :param ortho_init: Whether to use or not orthogonal initialization :param use_sde: Whether to use State Dependent Exploration or not :param log_std_init: Initial value for the log standard deviation :param full_std: Whether to use (n_features x n_actions) parameters for the std instead of only (n_features,) when using gSDE :param sde_net_arch: Network architecture for extracting features when using gSDE. If None, the latent features from the policy will be used. Pass an empty list to use the states as features. :param use_expln: Use ``expln()`` function instead of ``exp()`` to ensure a positive standard deviation (cf paper). It allows to keep variance above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough. :param squash_output: Whether to squash the output using a tanh function, this allows to ensure boundaries when using gSDE. :param features_extractor_class: Features extractor to use. :param features_extractor_kwargs: Keyword arguments to pass to the features extractor. :param normalize_images: Whether to normalize images or not, dividing by 255.0 (True by default) :param optimizer_class: The optimizer to use, ``th.optim.Adam`` by default :param optimizer_kwargs: Additional keyword arguments, excluding the learning rate, to pass to the optimizer """ def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, lr_schedule: Schedule, net_arch: Optional[List[Union[int, Dict[str, List[int]]]]] = None, activation_fn: Type[nn.Module] = nn.Tanh, ortho_init: bool = True, use_sde: bool = False, log_std_init: float = 0.0, full_std: bool = True, sde_net_arch: Optional[List[int]] = None, use_expln: bool = False, squash_output: bool = False, features_extractor_class: Type[BaseFeaturesExtractor] = NatureCNN, features_extractor_kwargs: Optional[Dict[str, Any]] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): super(ActorCriticCnnPolicy, self).__init__( observation_space, action_space, lr_schedule, net_arch, activation_fn, ortho_init, use_sde, log_std_init, full_std, sde_net_arch, use_expln, squash_output, features_extractor_class, features_extractor_kwargs, normalize_images, optimizer_class, optimizer_kwargs, ) class MultiInputActorCriticPolicy(ActorCriticPolicy): """ MultiInputActorClass policy class for actor-critic algorithms (has both policy and value prediction). Used by A2C, PPO and the likes. :param observation_space: Observation space (Tuple) :param action_space: Action space :param lr_schedule: Learning rate schedule (could be constant) :param net_arch: The specification of the policy and value networks. :param activation_fn: Activation function :param ortho_init: Whether to use or not orthogonal initialization :param use_sde: Whether to use State Dependent Exploration or not :param log_std_init: Initial value for the log standard deviation :param full_std: Whether to use (n_features x n_actions) parameters for the std instead of only (n_features,) when using gSDE :param sde_net_arch: Network architecture for extracting features when using gSDE. If None, the latent features from the policy will be used. Pass an empty list to use the states as features. :param use_expln: Use ``expln()`` function instead of ``exp()`` to ensure a positive standard deviation (cf paper). It allows to keep variance above zero and prevent it from growing too fast. In practice, ``exp()`` is usually enough. :param squash_output: Whether to squash the output using a tanh function, this allows to ensure boundaries when using gSDE. :param features_extractor_class: Uses the CombinedExtractor :param features_extractor_kwargs: Keyword arguments to pass to the feature extractor. :param normalize_images: Whether to normalize images or not, dividing by 255.0 (True by default) :param optimizer_class: The optimizer to use, ``th.optim.Adam`` by default :param optimizer_kwargs: Additional keyword arguments, excluding the learning rate, to pass to the optimizer """ def __init__( self, observation_space: gym.spaces.Dict, action_space: gym.spaces.Space, lr_schedule: Schedule, net_arch: Optional[List[Union[int, Dict[str, List[int]]]]] = None, activation_fn: Type[nn.Module] = nn.Tanh, ortho_init: bool = True, use_sde: bool = False, log_std_init: float = 0.0, full_std: bool = True, sde_net_arch: Optional[List[int]] = None, use_expln: bool = False, squash_output: bool = False, features_extractor_class: Type[BaseFeaturesExtractor] = CombinedExtractor, features_extractor_kwargs: Optional[Dict[str, Any]] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): super(MultiInputActorCriticPolicy, self).__init__( observation_space, action_space, lr_schedule, net_arch, activation_fn, ortho_init, use_sde, log_std_init, full_std, sde_net_arch, use_expln, squash_output, features_extractor_class, features_extractor_kwargs, normalize_images, optimizer_class, optimizer_kwargs, ) class ContinuousCritic(BaseModel): """ Critic network(s) for DDPG/SAC/TD3. It represents the action-state value function (Q-value function). Compared to A2C/PPO critics, this one represents the Q-value and takes the continuous action as input. It is concatenated with the state and then fed to the network which outputs a single value: Q(s, a). For more recent algorithms like SAC/TD3, multiple networks are created to give different estimates. By default, it creates two critic networks used to reduce overestimation thanks to clipped Q-learning (cf TD3 paper). :param observation_space: Obervation space :param action_space: Action space :param net_arch: Network architecture :param features_extractor: Network to extract features (a CNN when using images, a nn.Flatten() layer otherwise) :param features_dim: Number of features :param activation_fn: Activation function :param normalize_images: Whether to normalize images or not, dividing by 255.0 (True by default) :param n_critics: Number of critic networks to create. :param share_features_extractor: Whether the features extractor is shared or not between the actor and the critic (this saves computation time) """ def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, net_arch: List[int], features_extractor: nn.Module, features_dim: int, activation_fn: Type[nn.Module] = nn.ReLU, normalize_images: bool = True, n_critics: int = 2, share_features_extractor: bool = True, ): super().__init__( observation_space, action_space, features_extractor=features_extractor, normalize_images=normalize_images, ) action_dim = get_action_dim(self.action_space) self.share_features_extractor = share_features_extractor self.n_critics = n_critics self.q_networks = [] for idx in range(n_critics): q_net = create_mlp(features_dim + action_dim, 1, net_arch, activation_fn) q_net = nn.Sequential(*q_net) self.add_module(f"qf{idx}", q_net) self.q_networks.append(q_net) def forward(self, obs: th.Tensor, actions: th.Tensor) -> Tuple[th.Tensor, ...]: # Learn the features extractor using the policy loss only # when the features_extractor is shared with the actor with th.set_grad_enabled(not self.share_features_extractor): features = self.extract_features(obs) qvalue_input = th.cat([features, actions], dim=1) return tuple(q_net(qvalue_input) for q_net in self.q_networks) def q1_forward(self, obs: th.Tensor, actions: th.Tensor) -> th.Tensor: """ Only predict the Q-value using the first network. This allows to reduce computation when all the estimates are not needed (e.g. when updating the policy in TD3). """ with th.no_grad(): features = self.extract_features(obs) return self.q_networks[0](th.cat([features, actions], dim=1)) _policy_registry = dict() # type: Dict[Type[BasePolicy], Dict[str, Type[BasePolicy]]] def get_policy_from_name(base_policy_type: Type[BasePolicy], name: str) -> Type[BasePolicy]: """ Returns the registered policy from the base type and name. See `register_policy` for registering policies and explanation. :param base_policy_type: the base policy class :param name: the policy name :return: the policy """ if base_policy_type not in _policy_registry: raise KeyError(f"Error: the policy type {base_policy_type} is not registered!") if name not in _policy_registry[base_policy_type]: raise KeyError( f"Error: unknown policy type {name}," f"the only registed policy type are: {list(_policy_registry[base_policy_type].keys())}!" ) return _policy_registry[base_policy_type][name] def register_policy(name: str, policy: Type[BasePolicy]) -> None: """ Register a policy, so it can be called using its name. e.g. SAC('MlpPolicy', ...) instead of SAC(MlpPolicy, ...). The goal here is to standardize policy naming, e.g. all algorithms can call upon "MlpPolicy" or "CnnPolicy", and they receive respective policies that work for them. Consider following: OnlinePolicy -- OnlineMlpPolicy ("MlpPolicy") -- OnlineCnnPolicy ("CnnPolicy") OfflinePolicy -- OfflineMlpPolicy ("MlpPolicy") -- OfflineCnnPolicy ("CnnPolicy") Two policies have name "MlpPolicy" and two have "CnnPolicy". In `get_policy_from_name`, the parent class (e.g. OnlinePolicy) is given and used to select and return the correct policy. :param name: the policy name :param policy: the policy class """ sub_class = None for cls in BasePolicy.__subclasses__(): if issubclass(policy, cls): sub_class = cls break if sub_class is None: raise ValueError(f"Error: the policy {policy} is not of any known subclasses of BasePolicy!") if sub_class not in _policy_registry: _policy_registry[sub_class] = {} if name in _policy_registry[sub_class]: # Check if the registered policy is same # we try to register. If not so, # do not override and complain. if _policy_registry[sub_class][name] != policy: raise ValueError(f"Error: the name {name} is already registered for a different policy, will not override.") _policy_registry[sub_class][name] = policy
41.679303
127
0.664667
import collections import copy import warnings from abc import ABC, abstractmethod from functools import partial from typing import Any, Dict, List, Optional, Tuple, Type, Union import gym import numpy as np import torch as th from torch import nn from stable_baselines3.common.distributions import ( BernoulliDistribution, CategoricalDistribution, DiagGaussianDistribution, Distribution, MultiCategoricalDistribution, StateDependentNoiseDistribution, ConditionalCategoricalDistribution, make_proba_distribution, ) from stable_baselines3.common.preprocessing import get_action_dim, is_image_space, maybe_transpose, preprocess_obs from stable_baselines3.common.torch_layers import ( BaseFeaturesExtractor, CombinedExtractor, FlattenExtractor, MlpExtractor, NatureCNN, create_mlp, ) from stable_baselines3.common.type_aliases import Schedule from stable_baselines3.common.utils import get_device, is_vectorized_observation, obs_as_tensor class BaseModel(nn.Module, ABC): def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, features_extractor_class: Type[BaseFeaturesExtractor] = FlattenExtractor, features_extractor_kwargs: Optional[Dict[str, Any]] = None, features_extractor: Optional[nn.Module] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): super(BaseModel, self).__init__() if optimizer_kwargs is None: optimizer_kwargs = {} if features_extractor_kwargs is None: features_extractor_kwargs = {} self.observation_space = observation_space self.action_space = action_space self.features_extractor = features_extractor self.normalize_images = normalize_images self.optimizer_class = optimizer_class self.optimizer_kwargs = optimizer_kwargs self.optimizer = None self.features_extractor_class = features_extractor_class self.features_extractor_kwargs = features_extractor_kwargs @abstractmethod def forward(self, *args, **kwargs): pass def _update_features_extractor( self, net_kwargs: Dict[str, Any], features_extractor: Optional[BaseFeaturesExtractor] = None, ) -> Dict[str, Any]: net_kwargs = net_kwargs.copy() if features_extractor is None: features_extractor = self.make_features_extractor() net_kwargs.update(dict(features_extractor=features_extractor, features_dim=features_extractor.features_dim)) return net_kwargs def make_features_extractor(self) -> BaseFeaturesExtractor: return self.features_extractor_class(self.observation_space, **self.features_extractor_kwargs) def extract_features(self, obs: th.Tensor) -> th.Tensor: assert self.features_extractor is not None, "No features extractor was set" preprocessed_obs = preprocess_obs(obs, self.observation_space, normalize_images=self.normalize_images) return self.features_extractor(preprocessed_obs) def _get_constructor_parameters(self) -> Dict[str, Any]: return dict( observation_space=self.observation_space, action_space=self.action_space, normalize_images=self.normalize_images, ) @property def device(self) -> th.device: for param in self.parameters(): return param.device return get_device("cpu") def save(self, path: str) -> None: th.save({"state_dict": self.state_dict(), "data": self._get_constructor_parameters()}, path) @classmethod def load(cls, path: str, device: Union[th.device, str] = "auto") -> "BaseModel": device = get_device(device) saved_variables = th.load(path, map_location=device) if "sde_net_arch" in saved_variables["data"]: warnings.warn( "sde_net_arch is deprecated, please downgrade to SB3 v1.2.0 if you need such parameter.", DeprecationWarning, ) del saved_variables["data"]["sde_net_arch"] model = cls(**saved_variables["data"]) model.load_state_dict(saved_variables["state_dict"]) model.to(device) return model def load_from_vector(self, vector: np.ndarray) -> None: th.nn.utils.vector_to_parameters(th.FloatTensor(vector).to(self.device), self.parameters()) def parameters_to_vector(self) -> np.ndarray: return th.nn.utils.parameters_to_vector(self.parameters()).detach().cpu().numpy() def set_training_mode(self, mode: bool) -> None: self.train(mode) def obs_to_tensor(self, observation: Union[np.ndarray, Dict[str, np.ndarray]]) -> Tuple[th.Tensor, bool]: vectorized_env = False if isinstance(observation, dict): observation = copy.deepcopy(observation) for key, obs in observation.items(): obs_space = self.observation_space.spaces[key] if is_image_space(obs_space): obs_ = maybe_transpose(obs, obs_space) else: obs_ = np.array(obs) vectorized_env = vectorized_env or is_vectorized_observation(obs_, obs_space) observation[key] = obs_.reshape((-1,) + self.observation_space[key].shape) elif is_image_space(self.observation_space): observation = maybe_transpose(observation, self.observation_space) else: observation = np.array(observation) if not isinstance(observation, dict): vectorized_env = is_vectorized_observation(observation, self.observation_space) observation = observation.reshape((-1,) + self.observation_space.shape) observation = obs_as_tensor(observation, self.device) return observation, vectorized_env class BasePolicy(BaseModel): def __init__(self, *args, squash_output: bool = False, **kwargs): super(BasePolicy, self).__init__(*args, **kwargs) self._squash_output = squash_output @staticmethod def _dummy_schedule(progress_remaining: float) -> float: del progress_remaining return 0.0 @property def squash_output(self) -> bool: return self._squash_output @staticmethod def init_weights(module: nn.Module, gain: float = 1) -> None: if isinstance(module, (nn.Linear, nn.Conv2d)): nn.init.orthogonal_(module.weight, gain=gain) if module.bias is not None: module.bias.data.fill_(0.0) @abstractmethod def _predict(self, observation: th.Tensor, deterministic: bool = False) -> th.Tensor: def predict( self, observation: Union[np.ndarray, Dict[str, np.ndarray]], state: Optional[Tuple[np.ndarray, ...]] = None, episode_start: Optional[np.ndarray] = None, deterministic: bool = False, ) -> Tuple[np.ndarray, Optional[Tuple[np.ndarray, ...]]]: self.set_training_mode(False) observation, vectorized_env = self.obs_to_tensor(observation) with th.no_grad(): actions = self._predict(observation, deterministic=deterministic) actions = actions.cpu().numpy() if isinstance(self.action_space, gym.spaces.Box): if self.squash_output: actions = self.unscale_action(actions) else: actions = np.clip(actions, self.action_space.low, self.action_space.high) if not vectorized_env: actions = actions[0] return actions, state def scale_action(self, action: np.ndarray) -> np.ndarray: low, high = self.action_space.low, self.action_space.high return 2.0 * ((action - low) / (high - low)) - 1.0 def unscale_action(self, scaled_action: np.ndarray) -> np.ndarray: low, high = self.action_space.low, self.action_space.high return low + (0.5 * (scaled_action + 1.0) * (high - low)) class ActorCriticPolicy(BasePolicy): def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, lr_schedule: Schedule, net_arch: Optional[List[Union[int, Dict[str, List[int]]]]] = None, activation_fn: Type[nn.Module] = nn.ReLU, ortho_init: bool = True, use_sde: bool = False, log_std_init: float = 0.0, full_std: bool = True, sde_net_arch: Optional[List[int]] = None, use_expln: bool = False, squash_output: bool = False, features_extractor_class: Type[BaseFeaturesExtractor] = FlattenExtractor, features_extractor_kwargs: Optional[Dict[str, Any]] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): if optimizer_kwargs is None: optimizer_kwargs = {} if optimizer_class == th.optim.Adam: optimizer_kwargs["eps"] = 1e-5 super(ActorCriticPolicy, self).__init__( observation_space, action_space, features_extractor_class, features_extractor_kwargs, optimizer_class=optimizer_class, optimizer_kwargs=optimizer_kwargs, squash_output=squash_output, ) if net_arch is None: if features_extractor_class == NatureCNN: net_arch = [] else: net_arch = [dict(pi=[64, 64], vf=[64, 64])] self.net_arch = net_arch self.activation_fn = activation_fn self.ortho_init = ortho_init self.features_extractor = features_extractor_class(self.observation_space, **self.features_extractor_kwargs) self.features_dim = self.features_extractor.features_dim self.normalize_images = normalize_images self.log_std_init = log_std_init dist_kwargs = None if use_sde: dist_kwargs = { "full_std": full_std, "squash_output": squash_output, "use_expln": use_expln, "learn_features": False, } if sde_net_arch is not None: warnings.warn("sde_net_arch is deprecated and will be removed in SB3 v2.4.0.", DeprecationWarning) self.use_sde = use_sde self.dist_kwargs = dist_kwargs self.action_dist = make_proba_distribution(action_space, use_sde=use_sde, dist_kwargs=dist_kwargs) self._build(lr_schedule) def _get_constructor_parameters(self) -> Dict[str, Any]: data = super()._get_constructor_parameters() default_none_kwargs = self.dist_kwargs or collections.defaultdict(lambda: None) data.update( dict( net_arch=self.net_arch, activation_fn=self.activation_fn, use_sde=self.use_sde, log_std_init=self.log_std_init, squash_output=default_none_kwargs["squash_output"], full_std=default_none_kwargs["full_std"], use_expln=default_none_kwargs["use_expln"], lr_schedule=self._dummy_schedule, ortho_init=self.ortho_init, optimizer_class=self.optimizer_class, optimizer_kwargs=self.optimizer_kwargs, features_extractor_class=self.features_extractor_class, features_extractor_kwargs=self.features_extractor_kwargs, ) ) return data def reset_noise(self, n_envs: int = 1) -> None: assert isinstance(self.action_dist, StateDependentNoiseDistribution), "reset_noise() is only available when using gSDE" self.action_dist.sample_weights(self.log_std, batch_size=n_envs) def _build_mlp_extractor(self) -> None: self.mlp_extractor = MlpExtractor( self.features_dim, net_arch=self.net_arch, activation_fn=self.activation_fn, device=self.device, ) def _build(self, lr_schedule: Schedule) -> None: self._build_mlp_extractor() latent_dim_pi = self.mlp_extractor.latent_dim_pi if isinstance(self.action_dist, DiagGaussianDistribution): self.action_net, self.log_std = self.action_dist.proba_distribution_net( latent_dim=latent_dim_pi, log_std_init=self.log_std_init ) elif isinstance(self.action_dist, StateDependentNoiseDistribution): self.action_net, self.log_std = self.action_dist.proba_distribution_net( latent_dim=latent_dim_pi, latent_sde_dim=latent_dim_pi, log_std_init=self.log_std_init ) elif isinstance(self.action_dist, (CategoricalDistribution, MultiCategoricalDistribution, BernoulliDistribution)): self.action_net = self.action_dist.proba_distribution_net(latent_dim=latent_dim_pi) elif isinstance(self.action_dist, (ConditionalCategoricalDistribution)): self.action_net, self.embedding, self.other = self.action_dist.proba_distribution_net(latent_dim=latent_dim_pi) else: raise NotImplementedError(f"Unsupported distribution '{self.action_dist}'.") self.value_net = nn.Linear(self.mlp_extractor.latent_dim_vf, 1) if self.ortho_init: module_gains = { self.features_extractor: np.sqrt(2), self.mlp_extractor: np.sqrt(2), self.action_net: 0.01, self.value_net: 1, } for module, gain in module_gains.items(): module.apply(partial(self.init_weights, gain=gain)) self.optimizer = self.optimizer_class(self.parameters(), lr=lr_schedule(1), **self.optimizer_kwargs) def forward(self, obs: th.Tensor, deterministic: bool = False) -> Tuple[th.Tensor, th.Tensor, th.Tensor]: features = self.extract_features(obs) latent_pi, latent_vf = self.mlp_extractor(features) values = self.value_net(latent_vf) if isinstance(self.action_dist, ConditionalCategoricalDistribution): mean_actions = self.action_net(latent_pi) actions, distribution = self.action_dist.sample_all(mean_actions) else: distribution = self._get_action_dist_from_latent(latent_pi) actions = distribution.get_actions(deterministic=deterministic) log_prob = distribution.log_prob(actions) return actions, values, log_prob def _get_action_dist_from_latent(self, latent_pi: th.Tensor) -> Distribution: mean_actions = self.action_net(latent_pi) if isinstance(self.action_dist, DiagGaussianDistribution): return self.action_dist.proba_distribution(mean_actions, self.log_std) elif isinstance(self.action_dist, CategoricalDistribution): return self.action_dist.proba_distribution(action_logits=mean_actions) elif isinstance(self.action_dist, MultiCategoricalDistribution): return self.action_dist.proba_distribution(action_logits=mean_actions) elif isinstance(self.action_dist, BernoulliDistribution): return self.action_dist.proba_distribution(action_logits=mean_actions) elif isinstance(self.action_dist, StateDependentNoiseDistribution): return self.action_dist.proba_distribution(mean_actions, self.log_std, latent_pi) else: raise ValueError("Invalid action distribution") def _predict(self, observation: th.Tensor, deterministic: bool = False) -> th.Tensor: return self.get_distribution(observation).get_actions(deterministic=deterministic) def evaluate_actions(self, obs: th.Tensor, actions: th.Tensor) -> Tuple[th.Tensor, th.Tensor, th.Tensor]: features = self.extract_features(obs) latent_pi, latent_vf = self.mlp_extractor(features) if isinstance(self.action_dist, ConditionalCategoricalDistribution): mean_actions = self.action_net(latent_pi) _, distribution = self.action_dist.sample_all(mean_actions) else: distribution = self._get_action_dist_from_latent(latent_pi) log_prob = distribution.log_prob(actions) values = self.value_net(latent_vf) return values, log_prob, distribution.entropy() def get_distribution(self, obs: th.Tensor) -> Distribution: features = self.extract_features(obs) latent_pi = self.mlp_extractor.forward_actor(features) return self._get_action_dist_from_latent(latent_pi) def predict_values(self, obs: th.Tensor) -> th.Tensor: features = self.extract_features(obs) latent_vf = self.mlp_extractor.forward_critic(features) return self.value_net(latent_vf) class ActorCriticCnnPolicy(ActorCriticPolicy): def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, lr_schedule: Schedule, net_arch: Optional[List[Union[int, Dict[str, List[int]]]]] = None, activation_fn: Type[nn.Module] = nn.Tanh, ortho_init: bool = True, use_sde: bool = False, log_std_init: float = 0.0, full_std: bool = True, sde_net_arch: Optional[List[int]] = None, use_expln: bool = False, squash_output: bool = False, features_extractor_class: Type[BaseFeaturesExtractor] = NatureCNN, features_extractor_kwargs: Optional[Dict[str, Any]] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): super(ActorCriticCnnPolicy, self).__init__( observation_space, action_space, lr_schedule, net_arch, activation_fn, ortho_init, use_sde, log_std_init, full_std, sde_net_arch, use_expln, squash_output, features_extractor_class, features_extractor_kwargs, normalize_images, optimizer_class, optimizer_kwargs, ) class MultiInputActorCriticPolicy(ActorCriticPolicy): def __init__( self, observation_space: gym.spaces.Dict, action_space: gym.spaces.Space, lr_schedule: Schedule, net_arch: Optional[List[Union[int, Dict[str, List[int]]]]] = None, activation_fn: Type[nn.Module] = nn.Tanh, ortho_init: bool = True, use_sde: bool = False, log_std_init: float = 0.0, full_std: bool = True, sde_net_arch: Optional[List[int]] = None, use_expln: bool = False, squash_output: bool = False, features_extractor_class: Type[BaseFeaturesExtractor] = CombinedExtractor, features_extractor_kwargs: Optional[Dict[str, Any]] = None, normalize_images: bool = True, optimizer_class: Type[th.optim.Optimizer] = th.optim.Adam, optimizer_kwargs: Optional[Dict[str, Any]] = None, ): super(MultiInputActorCriticPolicy, self).__init__( observation_space, action_space, lr_schedule, net_arch, activation_fn, ortho_init, use_sde, log_std_init, full_std, sde_net_arch, use_expln, squash_output, features_extractor_class, features_extractor_kwargs, normalize_images, optimizer_class, optimizer_kwargs, ) class ContinuousCritic(BaseModel): def __init__( self, observation_space: gym.spaces.Space, action_space: gym.spaces.Space, net_arch: List[int], features_extractor: nn.Module, features_dim: int, activation_fn: Type[nn.Module] = nn.ReLU, normalize_images: bool = True, n_critics: int = 2, share_features_extractor: bool = True, ): super().__init__( observation_space, action_space, features_extractor=features_extractor, normalize_images=normalize_images, ) action_dim = get_action_dim(self.action_space) self.share_features_extractor = share_features_extractor self.n_critics = n_critics self.q_networks = [] for idx in range(n_critics): q_net = create_mlp(features_dim + action_dim, 1, net_arch, activation_fn) q_net = nn.Sequential(*q_net) self.add_module(f"qf{idx}", q_net) self.q_networks.append(q_net) def forward(self, obs: th.Tensor, actions: th.Tensor) -> Tuple[th.Tensor, ...]: with th.set_grad_enabled(not self.share_features_extractor): features = self.extract_features(obs) qvalue_input = th.cat([features, actions], dim=1) return tuple(q_net(qvalue_input) for q_net in self.q_networks) def q1_forward(self, obs: th.Tensor, actions: th.Tensor) -> th.Tensor: with th.no_grad(): features = self.extract_features(obs) return self.q_networks[0](th.cat([features, actions], dim=1)) _policy_registry = dict() def get_policy_from_name(base_policy_type: Type[BasePolicy], name: str) -> Type[BasePolicy]: if base_policy_type not in _policy_registry: raise KeyError(f"Error: the policy type {base_policy_type} is not registered!") if name not in _policy_registry[base_policy_type]: raise KeyError( f"Error: unknown policy type {name}," f"the only registed policy type are: {list(_policy_registry[base_policy_type].keys())}!" ) return _policy_registry[base_policy_type][name] def register_policy(name: str, policy: Type[BasePolicy]) -> None: sub_class = None for cls in BasePolicy.__subclasses__(): if issubclass(policy, cls): sub_class = cls break if sub_class is None: raise ValueError(f"Error: the policy {policy} is not of any known subclasses of BasePolicy!") if sub_class not in _policy_registry: _policy_registry[sub_class] = {} if name in _policy_registry[sub_class]: if _policy_registry[sub_class][name] != policy: raise ValueError(f"Error: the name {name} is already registered for a different policy, will not override.") _policy_registry[sub_class][name] = policy
true
true
f7f3f49b4f097667b43331576493ca556c14c066
3,756
py
Python
contrib/macdeploy/custom_dsstore.py
AnonymousGlobal/LegionCoin
d60a526513bc8c1ceba6664c30beb3fb01e30d46
[ "MIT" ]
null
null
null
contrib/macdeploy/custom_dsstore.py
AnonymousGlobal/LegionCoin
d60a526513bc8c1ceba6664c30beb3fb01e30d46
[ "MIT" ]
null
null
null
contrib/macdeploy/custom_dsstore.py
AnonymousGlobal/LegionCoin
d60a526513bc8c1ceba6664c30beb3fb01e30d46
[ "MIT" ]
null
null
null
#!/usr/bin/env python3 # Copyright (c) 2013-2015 The Bitcoin Core developers # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. import biplist from ds_store import DSStore from mac_alias import Alias import sys output_file = sys.argv[1] package_name_ns = sys.argv[2] ds = DSStore.open(output_file, 'w+') ds['.']['bwsp'] = { 'ShowStatusBar': False, 'WindowBounds': b'{{300, 280}, {500, 343}}', 'ContainerShowSidebar': False, 'SidebarWidth': 0, 'ShowTabView': False, 'PreviewPaneVisibility': False, 'ShowToolbar': False, 'ShowSidebar': False, 'ShowPathbar': True } icvp = { 'gridOffsetX': 0.0, 'textSize': 12.0, 'viewOptionsVersion': 1, 'backgroundImageAlias': b'\x00\x00\x00\x00\x02\x1e\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd1\x94\\\xb0H+\x00\x05\x00\x00\x00\x98\x0fbackground.tiff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x99\xd19\xb0\xf8\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\r\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b.background\x00\x00\x10\x00\x08\x00\x00\xd1\x94\\\xb0\x00\x00\x00\x11\x00\x08\x00\x00\xd19\xb0\xf8\x00\x00\x00\x01\x00\x04\x00\x00\x00\x98\x00\x0e\x00 \x00\x0f\x00b\x00a\x00c\x00k\x00g\x00r\x00o\x00u\x00n\x00d\x00.\x00t\x00i\x00f\x00f\x00\x0f\x00\x02\x00\x00\x00\x12\x00\x1c/.background/background.tiff\x00\x14\x01\x06\x00\x00\x00\x00\x01\x06\x00\x02\x00\x00\x0cMacintosh HD\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x97\xab\xc3H+\x00\x00\x01\x88[\x88\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02u\xab\x8d\xd1\x94\\\xb0devrddsk\xff\xff\xff\xff\x00\x00\t \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07bitcoin\x00\x00\x10\x00\x08\x00\x00\xce\x97\xab\xc3\x00\x00\x00\x11\x00\x08\x00\x00\xd1\x94\\\xb0\x00\x00\x00\x01\x00\x14\x01\x88[\x88\x00\x16\xa9\t\x00\x08\xfaR\x00\x08\xfaQ\x00\x02d\x8e\x00\x0e\x00\x02\x00\x00\x00\x0f\x00\x1a\x00\x0c\x00M\x00a\x00c\x00i\x00n\x00t\x00o\x00s\x00h\x00 \x00H\x00D\x00\x13\x00\x01/\x00\x00\x15\x00\x02\x00\x14\xff\xff\x00\x00\xff\xff\x00\x00', 'backgroundColorBlue': 1.0, 'iconSize': 96.0, 'backgroundColorGreen': 1.0, 'arrangeBy': 'none', 'showIconPreview': True, 'gridSpacing': 100.0, 'gridOffsetY': 0.0, 'showItemInfo': False, 'labelOnBottom': True, 'backgroundType': 2, 'backgroundColorRed': 1.0 } alias = Alias.from_bytes(icvp['backgroundImageAlias']) alias.volume.name = package_name_ns alias.volume.posix_path = '/Volumes/' + package_name_ns alias.volume.disk_image_alias.target.filename = package_name_ns + '.temp.dmg' alias.volume.disk_image_alias.target.carbon_path = 'Macintosh HD:Users:\x00legioncoincoreuser:\x00Documents:\x00legioncoincore:\x00legioncoincore:\x00' + package_name_ns + '.temp.dmg' alias.volume.disk_image_alias.target.posix_path = 'Users/legioncoincoreuser/Documents/legioncoincore/legioncoincore/' + package_name_ns + '.temp.dmg' alias.target.carbon_path = package_name_ns + ':.background:\x00background.tiff' icvp['backgroundImageAlias'] = biplist.Data(alias.to_bytes()) ds['.']['icvp'] = icvp ds['.']['vSrn'] = ('long', 1) ds['Applications']['Iloc'] = (370, 156) ds['LegionCoin-Qt.app']['Iloc'] = (128, 156) ds.flush() ds.close()
62.6
1,817
0.727636
import biplist from ds_store import DSStore from mac_alias import Alias import sys output_file = sys.argv[1] package_name_ns = sys.argv[2] ds = DSStore.open(output_file, 'w+') ds['.']['bwsp'] = { 'ShowStatusBar': False, 'WindowBounds': b'{{300, 280}, {500, 343}}', 'ContainerShowSidebar': False, 'SidebarWidth': 0, 'ShowTabView': False, 'PreviewPaneVisibility': False, 'ShowToolbar': False, 'ShowSidebar': False, 'ShowPathbar': True } icvp = { 'gridOffsetX': 0.0, 'textSize': 12.0, 'viewOptionsVersion': 1, 'backgroundImageAlias': b'\x00\x00\x00\x00\x02\x1e\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xd1\x94\\\xb0H+\x00\x05\x00\x00\x00\x98\x0fbackground.tiff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x99\xd19\xb0\xf8\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\r\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0b.background\x00\x00\x10\x00\x08\x00\x00\xd1\x94\\\xb0\x00\x00\x00\x11\x00\x08\x00\x00\xd19\xb0\xf8\x00\x00\x00\x01\x00\x04\x00\x00\x00\x98\x00\x0e\x00 \x00\x0f\x00b\x00a\x00c\x00k\x00g\x00r\x00o\x00u\x00n\x00d\x00.\x00t\x00i\x00f\x00f\x00\x0f\x00\x02\x00\x00\x00\x12\x00\x1c/.background/background.tiff\x00\x14\x01\x06\x00\x00\x00\x00\x01\x06\x00\x02\x00\x00\x0cMacintosh HD\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xce\x97\xab\xc3H+\x00\x00\x01\x88[\x88\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02u\xab\x8d\xd1\x94\\\xb0devrddsk\xff\xff\xff\xff\x00\x00\t \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07bitcoin\x00\x00\x10\x00\x08\x00\x00\xce\x97\xab\xc3\x00\x00\x00\x11\x00\x08\x00\x00\xd1\x94\\\xb0\x00\x00\x00\x01\x00\x14\x01\x88[\x88\x00\x16\xa9\t\x00\x08\xfaR\x00\x08\xfaQ\x00\x02d\x8e\x00\x0e\x00\x02\x00\x00\x00\x0f\x00\x1a\x00\x0c\x00M\x00a\x00c\x00i\x00n\x00t\x00o\x00s\x00h\x00 \x00H\x00D\x00\x13\x00\x01/\x00\x00\x15\x00\x02\x00\x14\xff\xff\x00\x00\xff\xff\x00\x00', 'backgroundColorBlue': 1.0, 'iconSize': 96.0, 'backgroundColorGreen': 1.0, 'arrangeBy': 'none', 'showIconPreview': True, 'gridSpacing': 100.0, 'gridOffsetY': 0.0, 'showItemInfo': False, 'labelOnBottom': True, 'backgroundType': 2, 'backgroundColorRed': 1.0 } alias = Alias.from_bytes(icvp['backgroundImageAlias']) alias.volume.name = package_name_ns alias.volume.posix_path = '/Volumes/' + package_name_ns alias.volume.disk_image_alias.target.filename = package_name_ns + '.temp.dmg' alias.volume.disk_image_alias.target.carbon_path = 'Macintosh HD:Users:\x00legioncoincoreuser:\x00Documents:\x00legioncoincore:\x00legioncoincore:\x00' + package_name_ns + '.temp.dmg' alias.volume.disk_image_alias.target.posix_path = 'Users/legioncoincoreuser/Documents/legioncoincore/legioncoincore/' + package_name_ns + '.temp.dmg' alias.target.carbon_path = package_name_ns + ':.background:\x00background.tiff' icvp['backgroundImageAlias'] = biplist.Data(alias.to_bytes()) ds['.']['icvp'] = icvp ds['.']['vSrn'] = ('long', 1) ds['Applications']['Iloc'] = (370, 156) ds['LegionCoin-Qt.app']['Iloc'] = (128, 156) ds.flush() ds.close()
true
true
f7f3f4a6ef998119d896425edb4bf5dadab229dc
260
py
Python
toga/platform/ios/widgets/__init__.py
r1chardj0n3s/toga
76a8aa44854cac31c7c29d96a2717a711411cde0
[ "BSD-3-Clause" ]
null
null
null
toga/platform/ios/widgets/__init__.py
r1chardj0n3s/toga
76a8aa44854cac31c7c29d96a2717a711411cde0
[ "BSD-3-Clause" ]
null
null
null
toga/platform/ios/widgets/__init__.py
r1chardj0n3s/toga
76a8aa44854cac31c7c29d96a2717a711411cde0
[ "BSD-3-Clause" ]
null
null
null
from __future__ import print_function, absolute_import, division from .button import Button from .container import Container from .label import Label # from .splitview import SplitView from .passwordinput import PasswordInput from .textinput import TextInput
28.888889
64
0.842308
from __future__ import print_function, absolute_import, division from .button import Button from .container import Container from .label import Label from .passwordinput import PasswordInput from .textinput import TextInput
true
true
f7f3f4afba07be1f6beddad607c719ce06a0bde7
5,444
py
Python
disqus/management/commands/disqus_export.py
alxpy/django-disqus
2efa714d60cd2facd403720c908b089f70c97436
[ "BSD-3-Clause" ]
2
2015-09-24T19:53:14.000Z
2015-11-06T10:46:16.000Z
disqus/management/commands/disqus_export.py
alxpy/django-disqus
2efa714d60cd2facd403720c908b089f70c97436
[ "BSD-3-Clause" ]
null
null
null
disqus/management/commands/disqus_export.py
alxpy/django-disqus
2efa714d60cd2facd403720c908b089f70c97436
[ "BSD-3-Clause" ]
1
2020-03-05T18:44:55.000Z
2020-03-05T18:44:55.000Z
from optparse import make_option import os.path from django.conf import settings from django.contrib import comments from django.contrib.sites.models import Site from django.core.management.base import NoArgsCommand from django.utils import simplejson as json from disqus.api import DisqusClient class Command(NoArgsCommand): option_list = NoArgsCommand.option_list + ( make_option('-d', '--dry-run', action="store_true", dest="dry_run", help='Does not export any comments, but merely outputs' + 'the comments which would have been exported.'), make_option('-s', '--state-file', action="store", dest="state_file", help="Saves the state of the export in the given file " + "and auto-resumes from this file if possible."), ) help = 'Export comments from contrib.comments to DISQUS' requires_model_validation = False def _get_comments_to_export(self, last_export_id=None): """Return comments which should be exported.""" qs = comments.get_model().objects.order_by('pk')\ .filter(is_public=True, is_removed=False) if last_export_id is not None: print "Resuming after comment %s" % str(last_export_id) qs = qs.filter(id__gt=last_export_id) return qs def _get_last_state(self, state_file): """Checks the given path for the last exported comment's id""" state = None fp = open(state_file) try: state = int(fp.read()) print "Found previous state: %d" % (state,) finally: fp.close() return state def _save_state(self, state_file, last_pk): """Saves the last_pk into the given state_file""" fp = open(state_file, 'w+') try: fp.write(str(last_pk)) finally: fp.close() def handle(self, **options): current_site = Site.objects.get_current() client = DisqusClient() verbosity = int(options.get('verbosity')) dry_run = bool(options.get('dry_run')) state_file = options.get('state_file') last_exported_id = None if state_file is not None and os.path.exists(state_file): last_exported_id = self._get_last_state(state_file) comments = self._get_comments_to_export(last_exported_id) comments_count = comments.count() if verbosity >= 1: print "Exporting %d comment(s)" % comments_count # if this is a dry run, we output the comments and exit if dry_run: print comments return # if no comments were found we also exit if not comments_count: return # Get a list of all forums for an API key. Each API key can have # multiple forums associated. This application only supports the one # set in the DISQUS_WEBSITE_SHORTNAME variable forum_list = client.get_forum_list(user_api_key=settings.DISQUS_API_KEY) try: forum = [f for f in forum_list\ if f['shortname'] == settings.DISQUS_WEBSITE_SHORTNAME][0] except IndexError: raise CommandError("Could not find forum. " + "Please check your " + "'DISQUS_WEBSITE_SHORTNAME' setting.") # Get the forum API key forum_api_key = client.get_forum_api_key( user_api_key=settings.DISQUS_API_KEY, forum_id=forum['id']) for comment in comments: if verbosity >= 1: print "Exporting comment '%s'" % comment # Try to find a thread with the comments URL. url = 'http://%s%s' % ( current_site.domain, comment.content_object.get_absolute_url()) thread = client.get_thread_by_url( url=url, forum_api_key=forum_api_key) # if no thread with the URL could be found, we create a new one. # to do this, we first need to create the thread and then # update the thread with a URL. if not thread: thread = client.thread_by_identifier( forum_api_key=forum_api_key, identifier=unicode(comment.content_object), title=unicode(comment.content_object), )['thread'] client.update_thread( forum_api_key=forum_api_key, thread_id=thread['id'], url=url) # name and email are optional in contrib.comments but required # in DISQUS. If they are not set, dummy values will be used client.create_post( forum_api_key=forum_api_key, thread_id=thread['id'], message=comment.comment.encode('utf-8'), author_name=comment.userinfo.get('name', 'nobody').encode('utf-8'), author_email=comment.userinfo.get('email', 'nobody@example.org'), author_url=comment.userinfo.get('url', ''), created_at=comment.submit_date.strftime('%Y-%m-%dT%H:%M')) if state_file is not None: self._save_state(state_file, comment.pk)
40.626866
80
0.579537
from optparse import make_option import os.path from django.conf import settings from django.contrib import comments from django.contrib.sites.models import Site from django.core.management.base import NoArgsCommand from django.utils import simplejson as json from disqus.api import DisqusClient class Command(NoArgsCommand): option_list = NoArgsCommand.option_list + ( make_option('-d', '--dry-run', action="store_true", dest="dry_run", help='Does not export any comments, but merely outputs' + 'the comments which would have been exported.'), make_option('-s', '--state-file', action="store", dest="state_file", help="Saves the state of the export in the given file " + "and auto-resumes from this file if possible."), ) help = 'Export comments from contrib.comments to DISQUS' requires_model_validation = False def _get_comments_to_export(self, last_export_id=None): """Return comments which should be exported.""" qs = comments.get_model().objects.order_by('pk')\ .filter(is_public=True, is_removed=False) if last_export_id is not None: print "Resuming after comment %s" % str(last_export_id) qs = qs.filter(id__gt=last_export_id) return qs def _get_last_state(self, state_file): """Checks the given path for the last exported comment's id""" state = None fp = open(state_file) try: state = int(fp.read()) print "Found previous state: %d" % (state,) finally: fp.close() return state def _save_state(self, state_file, last_pk): """Saves the last_pk into the given state_file""" fp = open(state_file, 'w+') try: fp.write(str(last_pk)) finally: fp.close() def handle(self, **options): current_site = Site.objects.get_current() client = DisqusClient() verbosity = int(options.get('verbosity')) dry_run = bool(options.get('dry_run')) state_file = options.get('state_file') last_exported_id = None if state_file is not None and os.path.exists(state_file): last_exported_id = self._get_last_state(state_file) comments = self._get_comments_to_export(last_exported_id) comments_count = comments.count() if verbosity >= 1: print "Exporting %d comment(s)" % comments_count # if this is a dry run, we output the comments and exit if dry_run: print comments return # if no comments were found we also exit if not comments_count: return # Get a list of all forums for an API key. Each API key can have # multiple forums associated. This application only supports the one # set in the DISQUS_WEBSITE_SHORTNAME variable forum_list = client.get_forum_list(user_api_key=settings.DISQUS_API_KEY) try: forum = [f for f in forum_list\ if f['shortname'] == settings.DISQUS_WEBSITE_SHORTNAME][0] except IndexError: raise CommandError("Could not find forum. " + "Please check your " + "'DISQUS_WEBSITE_SHORTNAME' setting.") # Get the forum API key forum_api_key = client.get_forum_api_key( user_api_key=settings.DISQUS_API_KEY, forum_id=forum['id']) for comment in comments: if verbosity >= 1: print "Exporting comment '%s'" % comment # Try to find a thread with the comments URL. url = 'http://%s%s' % ( current_site.domain, comment.content_object.get_absolute_url()) thread = client.get_thread_by_url( url=url, forum_api_key=forum_api_key) # if no thread with the URL could be found, we create a new one. # to do this, we first need to create the thread and then # update the thread with a URL. if not thread: thread = client.thread_by_identifier( forum_api_key=forum_api_key, identifier=unicode(comment.content_object), title=unicode(comment.content_object), )['thread'] client.update_thread( forum_api_key=forum_api_key, thread_id=thread['id'], url=url) # name and email are optional in contrib.comments but required # in DISQUS. If they are not set, dummy values will be used client.create_post( forum_api_key=forum_api_key, thread_id=thread['id'], message=comment.comment.encode('utf-8'), author_name=comment.userinfo.get('name', 'nobody').encode('utf-8'), author_email=comment.userinfo.get('email', 'nobody@example.org'), author_url=comment.userinfo.get('url', ''), created_at=comment.submit_date.strftime('%Y-%m-%dT%H:%M')) if state_file is not None: self._save_state(state_file, comment.pk)
false
true
f7f3f4e9b956adc38c4ed469cfddee9e30679e04
466
py
Python
src/mosaic_plot.py
LSchultebraucks/matplotlib_examples
cac02668ce6b81dcbbdf0ff3238cc01506c8f76a
[ "MIT" ]
null
null
null
src/mosaic_plot.py
LSchultebraucks/matplotlib_examples
cac02668ce6b81dcbbdf0ff3238cc01506c8f76a
[ "MIT" ]
null
null
null
src/mosaic_plot.py
LSchultebraucks/matplotlib_examples
cac02668ce6b81dcbbdf0ff3238cc01506c8f76a
[ "MIT" ]
null
null
null
import pandas as pd from statsmodels.graphics.mosaicplot import mosaic import pylab from itertools import product import numpy as np rand = np.random.random speaks_mul_foreign_languages = list(product(['male', 'female'], ['yes', 'no'])) index = pd.MultiIndex.from_tuples(speaks_mul_foreign_languages, names=['male', 'female']) data = pd.Series(rand(4), index=index) mosaic(data, gap=0.01, title='Who knows multiple foregin languages? - Mosaic Chart') pylab.show()
33.285714
89
0.763948
import pandas as pd from statsmodels.graphics.mosaicplot import mosaic import pylab from itertools import product import numpy as np rand = np.random.random speaks_mul_foreign_languages = list(product(['male', 'female'], ['yes', 'no'])) index = pd.MultiIndex.from_tuples(speaks_mul_foreign_languages, names=['male', 'female']) data = pd.Series(rand(4), index=index) mosaic(data, gap=0.01, title='Who knows multiple foregin languages? - Mosaic Chart') pylab.show()
true
true
f7f3f580369c02c3d66ff981c817d42b4a3a6391
131,658
py
Python
nova/tests/network/test_manager.py
bopopescu/nova-22
e94e289c663b37df2a12dafc9ceaecf8d04432a8
[ "Apache-2.0" ]
7
2017-06-19T19:37:00.000Z
2019-06-16T02:06:14.000Z
nova/tests/network/test_manager.py
bopopescu/nova-22
e94e289c663b37df2a12dafc9ceaecf8d04432a8
[ "Apache-2.0" ]
null
null
null
nova/tests/network/test_manager.py
bopopescu/nova-22
e94e289c663b37df2a12dafc9ceaecf8d04432a8
[ "Apache-2.0" ]
6
2015-06-20T16:07:28.000Z
2020-08-19T14:57:59.000Z
# Copyright 2011 Rackspace # Copyright (c) 2011 X.commerce, a business unit of eBay Inc. # Copyright 2013 IBM Corp. # 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. import fixtures import mock import mox import netaddr from oslo.config import cfg from oslo import messaging from nova import context from nova import db from nova.db.sqlalchemy import models from nova import exception from nova import ipv6 from nova.network import floating_ips from nova.network import linux_net from nova.network import manager as network_manager from nova.network import model as net_model from nova.objects import fixed_ip as fixed_ip_obj from nova.objects import floating_ip as floating_ip_obj from nova.objects import instance as instance_obj from nova.objects import network as network_obj from nova.objects import quotas as quotas_obj from nova.openstack.common.db import exception as db_exc from nova.openstack.common import importutils from nova.openstack.common import log as logging from nova.openstack.common import processutils from nova import test from nova.tests import fake_instance from nova.tests import fake_ldap from nova.tests import fake_network from nova.tests import matchers from nova.tests.objects import test_fixed_ip from nova.tests.objects import test_floating_ip from nova.tests.objects import test_network from nova.tests.objects import test_service from nova import utils CONF = cfg.CONF LOG = logging.getLogger(__name__) HOST = "testhost" FAKEUUID = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa" fake_inst = fake_instance.fake_db_instance networks = [{'id': 0, 'uuid': FAKEUUID, 'label': 'test0', 'injected': False, 'multi_host': False, 'cidr': '192.168.0.0/24', 'cidr_v6': '2001:db8::/64', 'gateway_v6': '2001:db8::1', 'netmask_v6': '64', 'netmask': '255.255.255.0', 'bridge': 'fa0', 'bridge_interface': 'fake_fa0', 'gateway': '192.168.0.1', 'broadcast': '192.168.0.255', 'dns1': '192.168.0.1', 'dns2': '192.168.0.2', 'vlan': None, 'host': HOST, 'project_id': 'fake_project', 'vpn_public_address': '192.168.0.2', 'vpn_public_port': '22', 'vpn_private_address': '10.0.0.2'}, {'id': 1, 'uuid': 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 'label': 'test1', 'injected': False, 'multi_host': False, 'cidr': '192.168.1.0/24', 'cidr_v6': '2001:db9::/64', 'gateway_v6': '2001:db9::1', 'netmask_v6': '64', 'netmask': '255.255.255.0', 'bridge': 'fa1', 'bridge_interface': 'fake_fa1', 'gateway': '192.168.1.1', 'broadcast': '192.168.1.255', 'dns1': '192.168.0.1', 'dns2': '192.168.0.2', 'vlan': None, 'host': HOST, 'project_id': 'fake_project', 'vpn_public_address': '192.168.1.2', 'vpn_public_port': '22', 'vpn_private_address': '10.0.0.2'}] fixed_ips = [{'id': 0, 'network_id': 0, 'address': '192.168.0.100', 'instance_uuid': 0, 'allocated': False, 'virtual_interface_id': 0, 'floating_ips': []}, {'id': 0, 'network_id': 1, 'address': '192.168.1.100', 'instance_uuid': 0, 'allocated': False, 'virtual_interface_id': 0, 'floating_ips': []}, {'id': 0, 'network_id': 1, 'address': '2001:db9:0:1::10', 'instance_uuid': 0, 'allocated': False, 'virtual_interface_id': 0, 'floating_ips': []}] flavor = {'id': 0, 'rxtx_cap': 3} floating_ip_fields = {'id': 0, 'address': '192.168.10.100', 'pool': 'nova', 'interface': 'eth0', 'fixed_ip_id': 0, 'project_id': None, 'auto_assigned': False} vifs = [{'id': 0, 'created_at': None, 'updated_at': None, 'deleted_at': None, 'deleted': 0, 'address': 'DE:AD:BE:EF:00:00', 'uuid': '00000000-0000-0000-0000-0000000000000000', 'network_id': 0, 'instance_uuid': 0}, {'id': 1, 'created_at': None, 'updated_at': None, 'deleted_at': None, 'deleted': 0, 'address': 'DE:AD:BE:EF:00:01', 'uuid': '00000000-0000-0000-0000-0000000000000001', 'network_id': 1, 'instance_uuid': 0}, {'id': 2, 'created_at': None, 'updated_at': None, 'deleted_at': None, 'deleted': 0, 'address': 'DE:AD:BE:EF:00:02', 'uuid': '00000000-0000-0000-0000-0000000000000002', 'network_id': 2, 'instance_uuid': 0}] class FlatNetworkTestCase(test.TestCase): def setUp(self): super(FlatNetworkTestCase, self).setUp() self.tempdir = self.useFixture(fixtures.TempDir()).path self.flags(log_dir=self.tempdir) self.flags(use_local=True, group='conductor') self.network = network_manager.FlatManager(host=HOST) self.network.instance_dns_domain = '' self.network.db = db self.context = context.RequestContext('testuser', 'testproject', is_admin=False) def test_get_instance_nw_info(self): fake_get_instance_nw_info = fake_network.fake_get_instance_nw_info nw_info = fake_get_instance_nw_info(self.stubs, 0, 2) self.assertFalse(nw_info) nw_info = fake_get_instance_nw_info(self.stubs, 1, 2) for i, vif in enumerate(nw_info): nid = i + 1 check = {'bridge': 'fake_br%d' % nid, 'cidr': '192.168.%s.0/24' % nid, 'cidr_v6': '2001:db8:0:%x::/64' % nid, 'id': '00000000-0000-0000-0000-00000000000000%02d' % nid, 'multi_host': False, 'injected': False, 'bridge_interface': None, 'vlan': None, 'broadcast': '192.168.%d.255' % nid, 'dhcp_server': '192.168.1.1', 'dns': ['192.168.%d.3' % nid, '192.168.%d.4' % nid], 'gateway': '192.168.%d.1' % nid, 'gateway_v6': '2001:db8:0:1::1', 'label': 'test%d' % nid, 'mac': 'DE:AD:BE:EF:00:%02x' % nid, 'rxtx_cap': 30, 'vif_type': net_model.VIF_TYPE_BRIDGE, 'vif_devname': None, 'vif_uuid': '00000000-0000-0000-0000-00000000000000%02d' % nid, 'ovs_interfaceid': None, 'qbh_params': None, 'qbg_params': None, 'should_create_vlan': False, 'should_create_bridge': False, 'ip': '192.168.%d.%03d' % (nid, nid + 99), 'ip_v6': '2001:db8:0:1::%x' % nid, 'netmask': '255.255.255.0', 'netmask_v6': 64, 'physical_network': None, } network = vif['network'] net_v4 = vif['network']['subnets'][0] net_v6 = vif['network']['subnets'][1] vif_dict = dict(bridge=network['bridge'], cidr=net_v4['cidr'], cidr_v6=net_v6['cidr'], id=vif['id'], multi_host=network.get_meta('multi_host', False), injected=network.get_meta('injected', False), bridge_interface= network.get_meta('bridge_interface'), vlan=network.get_meta('vlan'), broadcast=str(net_v4.as_netaddr().broadcast), dhcp_server=network.get_meta('dhcp_server', net_v4['gateway']['address']), dns=[ip['address'] for ip in net_v4['dns']], gateway=net_v4['gateway']['address'], gateway_v6=net_v6['gateway']['address'], label=network['label'], mac=vif['address'], rxtx_cap=vif.get_meta('rxtx_cap'), vif_type=vif['type'], vif_devname=vif.get('devname'), vif_uuid=vif['id'], ovs_interfaceid=vif.get('ovs_interfaceid'), qbh_params=vif.get('qbh_params'), qbg_params=vif.get('qbg_params'), should_create_vlan= network.get_meta('should_create_vlan', False), should_create_bridge= network.get_meta('should_create_bridge', False), ip=net_v4['ips'][i]['address'], ip_v6=net_v6['ips'][i]['address'], netmask=str(net_v4.as_netaddr().netmask), netmask_v6=net_v6.as_netaddr()._prefixlen, physical_network= network.get_meta('physical_network', None)) self.assertThat(vif_dict, matchers.DictMatches(check)) def test_validate_networks(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') self.mox.StubOutWithMock(db, 'fixed_ip_get_by_address') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) ip = dict(test_fixed_ip.fake_fixed_ip, **fixed_ips[1]) ip['network'] = dict(test_network.fake_network, **networks[1]) ip['instance_uuid'] = None db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(ip) ip = dict(test_fixed_ip.fake_fixed_ip, **fixed_ips[0]) ip['network'] = dict(test_network.fake_network, **networks[0]) ip['instance_uuid'] = None db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(ip) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_valid_fixed_ipv6(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') self.mox.StubOutWithMock(db, 'fixed_ip_get_by_address') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '2001:db9:0:1::10')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **networks[1])]) ip = dict(test_fixed_ip.fake_fixed_ip, **fixed_ips[2]) ip['network'] = dict(test_network.fake_network, **networks[1]) ip['instance_uuid'] = None db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(ip) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_reserved(self): context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) nets = self.network.create_networks(context_admin, 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) self.assertEqual(1, len(nets)) network = nets[0] self.assertEqual(3, db.network_count_reserved_ips(context_admin, network['id'])) def test_validate_networks_none_requested_networks(self): self.network.validate_networks(self.context, None) def test_validate_networks_empty_requested_networks(self): requested_networks = [] self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_invalid_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100.1'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100.1')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_empty_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', ''), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_none_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', None), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', None)] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) @mock.patch('nova.objects.quotas.Quotas.reserve') def test_add_fixed_ip_instance_using_id_without_vpn(self, reserve): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'network_get') self.mox.StubOutWithMock(db, 'network_update') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) inst = fake_inst(display_name=HOST, uuid=FAKEUUID) db.instance_get_by_uuid(self.context, mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(inst) db.network_get(mox.IgnoreArg(), mox.IgnoreArg(), project_only=mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.network_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['id']) exp_project, exp_user = quotas_obj.ids_from_instance(self.context, inst) reserve.assert_called_once_with(self.context, fixed_ips=1, project_id=exp_project, user_id=exp_user) @mock.patch('nova.objects.quotas.Quotas.reserve') def test_add_fixed_ip_instance_using_uuid_without_vpn(self, reserve): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'network_get_by_uuid') self.mox.StubOutWithMock(db, 'network_update') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) inst = fake_inst(display_name=HOST, uuid=FAKEUUID) db.instance_get_by_uuid(self.context, mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(inst) db.network_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.network_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['uuid']) exp_project, exp_user = quotas_obj.ids_from_instance(self.context, inst) reserve.assert_called_once_with(self.context, fixed_ips=1, project_id=exp_project, user_id=exp_user) def test_mini_dns_driver(self): zone1 = "example.org" zone2 = "example.com" driver = self.network.instance_dns_manager driver.create_entry("hostone", "10.0.0.1", "A", zone1) driver.create_entry("hosttwo", "10.0.0.2", "A", zone1) driver.create_entry("hostthree", "10.0.0.3", "A", zone1) driver.create_entry("hostfour", "10.0.0.4", "A", zone1) driver.create_entry("hostfive", "10.0.0.5", "A", zone2) driver.delete_entry("hostone", zone1) driver.modify_address("hostfour", "10.0.0.1", zone1) driver.modify_address("hostthree", "10.0.0.1", zone1) names = driver.get_entries_by_address("10.0.0.1", zone1) self.assertEqual(len(names), 2) self.assertIn('hostthree', names) self.assertIn('hostfour', names) names = driver.get_entries_by_address("10.0.0.5", zone2) self.assertEqual(len(names), 1) self.assertIn('hostfive', names) addresses = driver.get_entries_by_name("hosttwo", zone1) self.assertEqual(len(addresses), 1) self.assertIn('10.0.0.2', addresses) self.assertRaises(exception.InvalidInput, driver.create_entry, "hostname", "10.10.10.10", "invalidtype", zone1) def test_mini_dns_driver_with_mixed_case(self): zone1 = "example.org" driver = self.network.instance_dns_manager driver.create_entry("HostTen", "10.0.0.10", "A", zone1) addresses = driver.get_entries_by_address("10.0.0.10", zone1) self.assertEqual(len(addresses), 1) for n in addresses: driver.delete_entry(n, zone1) addresses = driver.get_entries_by_address("10.0.0.10", zone1) self.assertEqual(len(addresses), 0) @mock.patch('nova.objects.quotas.Quotas.reserve') def test_instance_dns(self, reserve): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) fixedip = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') self.mox.StubOutWithMock(db, 'network_get_by_uuid') self.mox.StubOutWithMock(db, 'network_update') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None ).AndReturn(fixedip) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) inst = fake_inst(display_name=HOST, uuid=FAKEUUID) db.instance_get_by_uuid(self.context, mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(inst) db.network_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.network_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['uuid']) instance_manager = self.network.instance_dns_manager addresses = instance_manager.get_entries_by_name(HOST, self.network.instance_dns_domain) self.assertEqual(len(addresses), 1) self.assertEqual(addresses[0], fixedip['address']) addresses = instance_manager.get_entries_by_name(FAKEUUID, self.network.instance_dns_domain) self.assertEqual(len(addresses), 1) self.assertEqual(addresses[0], fixedip['address']) exp_project, exp_user = quotas_obj.ids_from_instance(self.context, inst) reserve.assert_called_once_with(self.context, fixed_ips=1, project_id=exp_project, user_id=exp_user) def test_allocate_floating_ip(self): self.assertIsNone(self.network.allocate_floating_ip(self.context, 1, None)) def test_deallocate_floating_ip(self): self.assertIsNone(self.network.deallocate_floating_ip(self.context, 1, None)) def test_associate_floating_ip(self): self.assertIsNone(self.network.associate_floating_ip(self.context, None, None)) def test_disassociate_floating_ip(self): self.assertIsNone(self.network.disassociate_floating_ip(self.context, None, None)) def test_get_networks_by_uuids_ordering(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = ['bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() res = self.network._get_networks_by_uuids(self.context, requested_networks) self.assertEqual(res[0]['id'], 1) self.assertEqual(res[1]['id'], 0) @mock.patch('nova.objects.instance.Instance.get_by_uuid') @mock.patch('nova.objects.quotas.Quotas.reserve') @mock.patch('nova.objects.quotas.ids_from_instance') def test_allocate_calculates_quota_auth(self, util_method, reserve, get_by_uuid): inst = instance_obj.Instance() get_by_uuid.return_value = inst reserve.side_effect = exception.OverQuota(overs='testing') util_method.return_value = ('foo', 'bar') self.assertRaises(exception.FixedIpLimitExceeded, self.network.allocate_fixed_ip, self.context, 123, None) util_method.assert_called_once_with(self.context, inst) @mock.patch('nova.objects.fixed_ip.FixedIP.get_by_address') @mock.patch('nova.objects.quotas.Quotas.reserve') @mock.patch('nova.objects.quotas.ids_from_instance') def test_deallocate_calculates_quota_auth(self, util_method, reserve, get_by_address): inst = instance_obj.Instance(uuid='fake-uuid') fip = fixed_ip_obj.FixedIP(instance_uuid='fake-uuid', virtual_interface_id=1) get_by_address.return_value = fip util_method.return_value = ('foo', 'bar') # This will fail right after the reserve call when it tries # to look up the fake instance we created above self.assertRaises(exception.InstanceNotFound, self.network.deallocate_fixed_ip, self.context, '1.2.3.4', instance=inst) util_method.assert_called_once_with(self.context, inst) class VlanNetworkTestCase(test.TestCase): def setUp(self): super(VlanNetworkTestCase, self).setUp() self.useFixture(test.SampleNetworks()) self.flags(use_local=True, group='conductor') self.network = network_manager.VlanManager(host=HOST) self.network.db = db self.context = context.RequestContext('testuser', 'testproject', is_admin=False) self.context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) def test_quota_driver_type(self): self.assertEqual(quotas_obj.QuotasNoOp, self.network.quotas_cls) def test_vpn_allocate_fixed_ip(self): self.mox.StubOutWithMock(db, 'fixed_ip_associate') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.1') db.fixed_ip_associate(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), network_id=mox.IgnoreArg(), reserved=True).AndReturn(fixed) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(fake_inst(display_name=HOST, uuid=FAKEUUID)) self.mox.ReplayAll() network = network_obj.Network._from_db_object( self.context, network_obj.Network(), dict(test_network.fake_network, **networks[0])) network.vpn_private_address = '192.168.0.2' self.network.allocate_fixed_ip(self.context, FAKEUUID, network, vpn=True) def test_vpn_allocate_fixed_ip_no_network_id(self): network = dict(networks[0]) network['vpn_private_address'] = '192.168.0.2' network['id'] = None instance = db.instance_create(self.context, {}) self.assertRaises(exception.FixedIpNotFoundForNetwork, self.network.allocate_fixed_ip, self.context_admin, instance['uuid'], network, vpn=True) def test_allocate_fixed_ip(self): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.1') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(fake_inst(display_name=HOST, uuid=FAKEUUID)) self.mox.ReplayAll() network = network_obj.Network._from_db_object( self.context, network_obj.Network(), dict(test_network.fake_network, **networks[0])) network.vpn_private_address = '192.168.0.2' self.network.allocate_fixed_ip(self.context, FAKEUUID, network) def test_create_networks_too_big(self): self.assertRaises(ValueError, self.network.create_networks, None, num_networks=4094, vlan_start=1) def test_create_networks_too_many(self): self.assertRaises(ValueError, self.network.create_networks, None, num_networks=100, vlan_start=1, cidr='192.168.0.1/24', network_size=100) def test_duplicate_vlan_raises(self): # VLAN 100 is already used and we force the network to be created # in that vlan (vlan=100). self.assertRaises(exception.DuplicateVlan, self.network.create_networks, self.context_admin, label="fake", num_networks=1, vlan=100, cidr='192.168.0.1/24', network_size=100) def test_vlan_start(self): # VLAN 100 and 101 are used, so this network shoud be created in 102 networks = self.network.create_networks( self.context_admin, label="fake", num_networks=1, vlan_start=100, cidr='192.168.3.1/24', network_size=100) self.assertEqual(networks[0]["vlan"], 102) def test_vlan_start_multiple(self): # VLAN 100 and 101 are used, so these networks shoud be created in 102 # and 103 networks = self.network.create_networks( self.context_admin, label="fake", num_networks=2, vlan_start=100, cidr='192.168.3.1/24', network_size=100) self.assertEqual(networks[0]["vlan"], 102) self.assertEqual(networks[1]["vlan"], 103) def test_vlan_start_used(self): # VLAN 100 and 101 are used, but vlan_start=99. networks = self.network.create_networks( self.context_admin, label="fake", num_networks=1, vlan_start=99, cidr='192.168.3.1/24', network_size=100) self.assertEqual(networks[0]["vlan"], 102) @mock.patch('nova.db.network_get') def test_validate_networks(self, net_get): def network_get(_context, network_id, project_only='allow_none'): return dict(test_network.fake_network, **networks[network_id]) net_get.side_effect = network_get self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') self.mox.StubOutWithMock(db, "fixed_ip_get_by_address") requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) db_fixed1 = dict(test_fixed_ip.fake_fixed_ip, network_id=networks[1]['id'], network=dict(test_network.fake_network, **networks[1]), instance_uuid=None) db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(db_fixed1) db_fixed2 = dict(test_fixed_ip.fake_fixed_ip, network_id=networks[0]['id'], network=dict(test_network.fake_network, **networks[0]), instance_uuid=None) db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(db_fixed2) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_none_requested_networks(self): self.network.validate_networks(self.context, None) def test_validate_networks_empty_requested_networks(self): requested_networks = [] self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_invalid_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100.1'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100.1')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_empty_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', ''), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_none_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', None), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', None)] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_floating_ip_owned_by_project(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) # raises because floating_ip project_id is None floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id=None) self.assertRaises(exception.NotAuthorized, self.network._floating_ip_owned_by_project, ctxt, floating_ip) # raises because floating_ip project_id is not equal to ctxt project_id floating_ip = floating_ip_obj.FloatingIP( address='10.0.0.1', project_id=ctxt.project_id + '1') self.assertRaises(exception.NotAuthorized, self.network._floating_ip_owned_by_project, ctxt, floating_ip) # does not raise (floating ip is owned by ctxt project) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id=ctxt.project_id) self.network._floating_ip_owned_by_project(ctxt, floating_ip) ctxt = context.RequestContext(None, None, is_admin=True) # does not raise (ctxt is admin) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id=None) self.network._floating_ip_owned_by_project(ctxt, floating_ip) # does not raise (ctxt is admin) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id='testproject') self.network._floating_ip_owned_by_project(ctxt, floating_ip) def test_allocate_floating_ip(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake_allocate_address(*args, **kwargs): return {'address': '10.0.0.1', 'project_id': ctxt.project_id} self.stubs.Set(self.network.db, 'floating_ip_allocate_address', fake_allocate_address) self.network.allocate_floating_ip(ctxt, ctxt.project_id) def test_deallocate_floating_ip(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake1(*args, **kwargs): pass def fake2(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', fixed_ip_id=1) def fake3(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', fixed_ip_id=None, project_id=ctxt.project_id) self.stubs.Set(self.network.db, 'floating_ip_deallocate', fake1) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) # this time should raise because floating ip is associated to fixed_ip self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake2) self.assertRaises(exception.FloatingIpAssociated, self.network.deallocate_floating_ip, ctxt, mox.IgnoreArg()) # this time should not raise self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake3) self.network.deallocate_floating_ip(ctxt, ctxt.project_id) @mock.patch('nova.db.fixed_ip_get') def test_associate_floating_ip(self, fixed_get): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake1(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', network=test_network.fake_network) # floating ip that's already associated def fake2(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=1) # floating ip that isn't associated def fake3(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=None) # fixed ip with remote host def fake4(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=123) def fake4_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='jibberjabber') # fixed ip with local host def fake5(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=1234) def fake5_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='testhost') def fake6(ctxt, method, **kwargs): self.local = False def fake7(*args, **kwargs): self.local = True def fake8(*args, **kwargs): raise processutils.ProcessExecutionError('', 'Cannot find device "em0"\n') def fake9(*args, **kwargs): raise test.TestingException() # raises because interface doesn't exist self.stubs.Set(self.network.db, 'floating_ip_fixed_ip_associate', fake1) self.stubs.Set(self.network.db, 'floating_ip_disassociate', fake1) self.stubs.Set(self.network.driver, 'ensure_floating_forward', fake8) self.assertRaises(exception.NoFloatingIpInterface, self.network._associate_floating_ip, ctxt, '1.2.3.4', '1.2.3.5', mox.IgnoreArg(), mox.IgnoreArg()) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) # raises because floating_ip is already associated to a fixed_ip self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake2) self.stubs.Set(self.network, 'disassociate_floating_ip', fake9) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address='1.2.3.4', instance_uuid='fake_uuid', network=test_network.fake_network) # doesn't raise because we exit early if the address is the same self.network.associate_floating_ip(ctxt, mox.IgnoreArg(), '1.2.3.4') # raises because we call disassociate which is mocked self.assertRaises(test.TestingException, self.network.associate_floating_ip, ctxt, mox.IgnoreArg(), 'new') self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake3) # does not raise and makes call remotely self.local = True self.stubs.Set(self.network.db, 'fixed_ip_get_by_address', fake4) self.stubs.Set(self.network.db, 'network_get', fake4_network) self.stubs.Set(self.network.network_rpcapi.client, 'prepare', lambda **kw: self.network.network_rpcapi.client) self.stubs.Set(self.network.network_rpcapi.client, 'call', fake6) self.network.associate_floating_ip(ctxt, mox.IgnoreArg(), mox.IgnoreArg()) self.assertFalse(self.local) # does not raise and makes call locally self.local = False self.stubs.Set(self.network.db, 'fixed_ip_get_by_address', fake5) self.stubs.Set(self.network.db, 'network_get', fake5_network) self.stubs.Set(self.network, '_associate_floating_ip', fake7) self.network.associate_floating_ip(ctxt, mox.IgnoreArg(), mox.IgnoreArg()) self.assertTrue(self.local) def test_add_floating_ip_nat_before_bind(self): # Tried to verify order with documented mox record/verify # functionality, but it doesn't seem to work since I can't make it # fail. I'm using stubs and a flag for now, but if this mox feature # can be made to work, it would be a better way to test this. # # self.mox.StubOutWithMock(self.network.driver, # 'ensure_floating_forward') # self.mox.StubOutWithMock(self.network.driver, 'bind_floating_ip') # # self.network.driver.ensure_floating_forward(mox.IgnoreArg(), # mox.IgnoreArg(), # mox.IgnoreArg(), # mox.IgnoreArg()) # self.network.driver.bind_floating_ip(mox.IgnoreArg(), # mox.IgnoreArg()) # self.mox.ReplayAll() nat_called = [False] def fake_nat(*args, **kwargs): nat_called[0] = True def fake_bind(*args, **kwargs): self.assertTrue(nat_called[0]) self.stubs.Set(self.network.driver, 'ensure_floating_forward', fake_nat) self.stubs.Set(self.network.driver, 'bind_floating_ip', fake_bind) self.network.l3driver.add_floating_ip('fakefloat', 'fakefixed', 'fakeiface', 'fakenet') @mock.patch('nova.db.floating_ip_get_all_by_host') @mock.patch('nova.db.fixed_ip_get') def _test_floating_ip_init_host(self, fixed_get, floating_get, public_interface, expected_arg): floating_get.return_value = [ dict(test_floating_ip.fake_floating_ip, interface='foo', address='1.2.3.4'), dict(test_floating_ip.fake_floating_ip, interface='fakeiface', address='1.2.3.5', fixed_ip_id=1), dict(test_floating_ip.fake_floating_ip, interface='bar', address='1.2.3.6', fixed_ip_id=2), ] def fixed_ip_get(_context, fixed_ip_id, get_network): if fixed_ip_id == 1: return dict(test_fixed_ip.fake_fixed_ip, address='1.2.3.4', network=test_network.fake_network) raise exception.FixedIpNotFound(id=fixed_ip_id) fixed_get.side_effect = fixed_ip_get self.mox.StubOutWithMock(self.network.l3driver, 'add_floating_ip') self.flags(public_interface=public_interface) self.network.l3driver.add_floating_ip(netaddr.IPAddress('1.2.3.5'), netaddr.IPAddress('1.2.3.4'), expected_arg, mox.IsA(network_obj.Network)) self.mox.ReplayAll() self.network.init_host_floating_ips() self.mox.UnsetStubs() self.mox.VerifyAll() def test_floating_ip_init_host_without_public_interface(self): self._test_floating_ip_init_host(public_interface=False, expected_arg='fakeiface') def test_floating_ip_init_host_with_public_interface(self): self._test_floating_ip_init_host(public_interface='fooiface', expected_arg='fooiface') def test_disassociate_floating_ip(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake1(*args, **kwargs): pass # floating ip that isn't associated def fake2(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=None) # floating ip that is associated def fake3(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=1, project_id=ctxt.project_id) # fixed ip with remote host def fake4(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=123) def fake4_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='jibberjabber') # fixed ip with local host def fake5(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=1234) def fake5_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='testhost') def fake6(ctxt, method, **kwargs): self.local = False def fake7(*args, **kwargs): self.local = True def fake8(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=1, auto_assigned=True, project_id=ctxt.project_id) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) # raises because floating_ip is not associated to a fixed_ip self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake2) self.assertRaises(exception.FloatingIpNotAssociated, self.network.disassociate_floating_ip, ctxt, mox.IgnoreArg()) self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake3) # does not raise and makes call remotely self.local = True self.stubs.Set(self.network.db, 'fixed_ip_get', fake4) self.stubs.Set(self.network.db, 'network_get', fake4_network) self.stubs.Set(self.network.network_rpcapi.client, 'prepare', lambda **kw: self.network.network_rpcapi.client) self.stubs.Set(self.network.network_rpcapi.client, 'call', fake6) self.network.disassociate_floating_ip(ctxt, mox.IgnoreArg()) self.assertFalse(self.local) # does not raise and makes call locally self.local = False self.stubs.Set(self.network.db, 'fixed_ip_get', fake5) self.stubs.Set(self.network.db, 'network_get', fake5_network) self.stubs.Set(self.network, '_disassociate_floating_ip', fake7) self.network.disassociate_floating_ip(ctxt, mox.IgnoreArg()) self.assertTrue(self.local) # raises because auto_assigned floating IP cannot be disassociated self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake8) self.assertRaises(exception.CannotDisassociateAutoAssignedFloatingIP, self.network.disassociate_floating_ip, ctxt, mox.IgnoreArg()) def test_add_fixed_ip_instance_without_vpn_requested_networks(self): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'network_get') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.network_get(mox.IgnoreArg(), mox.IgnoreArg(), project_only=mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(fake_inst(display_name=HOST, uuid=FAKEUUID)) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['id']) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') def test_ip_association_and_allocation_of_other_project(self, net_get, fixed_get): """Makes sure that we cannot deallocaate or disassociate a public ip of other project. """ net_get.return_value = dict(test_network.fake_network, **networks[1]) context1 = context.RequestContext('user', 'project1') context2 = context.RequestContext('user', 'project2') float_ip = db.floating_ip_create(context1.elevated(), {'address': '1.2.3.4', 'project_id': context1.project_id}) float_addr = float_ip['address'] instance = db.instance_create(context1, {'project_id': 'project1'}) fix_addr = db.fixed_ip_associate_pool(context1.elevated(), 1, instance['uuid']).address fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr, instance_uuid=instance.uuid, network=dict(test_network.fake_network, **networks[1])) # Associate the IP with non-admin user context self.assertRaises(exception.NotAuthorized, self.network.associate_floating_ip, context2, float_addr, fix_addr) # Deallocate address from other project self.assertRaises(exception.NotAuthorized, self.network.deallocate_floating_ip, context2, float_addr) # Now Associates the address to the actual project self.network.associate_floating_ip(context1, float_addr, fix_addr) # Now try dis-associating from other project self.assertRaises(exception.NotAuthorized, self.network.disassociate_floating_ip, context2, float_addr) # Clean up the ip addresses self.network.disassociate_floating_ip(context1, float_addr) self.network.deallocate_floating_ip(context1, float_addr) self.network.deallocate_fixed_ip(context1, fix_addr, 'fake') db.floating_ip_destroy(context1.elevated(), float_addr) db.fixed_ip_disassociate(context1.elevated(), fix_addr) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ip_update') def test_deallocate_fixed(self, fixed_update, net_get, fixed_get): """Verify that release is called properly. Ensures https://bugs.launchpad.net/nova/+bug/973442 doesn't return """ net_get.return_value = dict(test_network.fake_network, **networks[1]) def vif_get(_context, _vif_id): return vifs[0] self.stubs.Set(db, 'virtual_interface_get', vif_get) context1 = context.RequestContext('user', 'project1') instance = db.instance_create(context1, {'project_id': 'project1'}) elevated = context1.elevated() fix_addr = db.fixed_ip_associate_pool(elevated, 1, instance['uuid']) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr.address, instance_uuid=instance.uuid, allocated=True, virtual_interface_id=3, network=dict(test_network.fake_network, **networks[1])) self.flags(force_dhcp_release=True) self.mox.StubOutWithMock(linux_net, 'release_dhcp') linux_net.release_dhcp(networks[1]['bridge'], fix_addr.address, 'DE:AD:BE:EF:00:00') self.mox.ReplayAll() self.network.deallocate_fixed_ip(context1, fix_addr.address, 'fake') fixed_update.assert_called_once_with(context1, fix_addr.address, {'allocated': False, 'virtual_interface_id': None}) def test_deallocate_fixed_deleted(self): # Verify doesn't deallocate deleted fixed_ip from deleted network. def teardown_network_on_host(_context, network): if network['id'] == 0: raise test.TestingException() self.stubs.Set(self.network, '_teardown_network_on_host', teardown_network_on_host) context1 = context.RequestContext('user', 'project1') elevated = context1.elevated() instance = db.instance_create(context1, {'project_id': 'project1'}) network = db.network_create_safe(elevated, networks[0]) _fix_addr = db.fixed_ip_associate_pool(elevated, 1, instance['uuid']) fix_addr = _fix_addr.address db.fixed_ip_update(elevated, fix_addr, {'deleted': 1}) elevated.read_deleted = 'yes' delfixed = db.fixed_ip_get_by_address(elevated, fix_addr) values = {'address': fix_addr, 'network_id': network.id, 'instance_uuid': delfixed['instance_uuid']} db.fixed_ip_create(elevated, values) elevated.read_deleted = 'no' elevated.read_deleted = 'yes' deallocate = self.network.deallocate_fixed_ip self.assertRaises(test.TestingException, deallocate, context1, fix_addr, 'fake') @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ip_update') def test_deallocate_fixed_no_vif(self, fixed_update, net_get, fixed_get): """Verify that deallocate doesn't raise when no vif is returned. Ensures https://bugs.launchpad.net/nova/+bug/968457 doesn't return """ net_get.return_value = dict(test_network.fake_network, **networks[1]) def vif_get(_context, _vif_id): return None self.stubs.Set(db, 'virtual_interface_get', vif_get) context1 = context.RequestContext('user', 'project1') instance = db.instance_create(context1, {'project_id': 'project1'}) elevated = context1.elevated() fix_addr = db.fixed_ip_associate_pool(elevated, 1, instance['uuid']) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr.address, allocated=True, virtual_interface_id=3, instance_uuid=instance.uuid, network=dict(test_network.fake_network, **networks[1])) self.flags(force_dhcp_release=True) fixed_update.return_value = fixed_get.return_value self.network.deallocate_fixed_ip(context1, fix_addr.address, 'fake') fixed_update.assert_called_once_with(context1, fix_addr.address, {'allocated': False, 'virtual_interface_id': None}) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ip_update') def test_fixed_ip_cleanup_fail(self, fixed_update, net_get, fixed_get): # Verify IP is not deallocated if the security group refresh fails. net_get.return_value = dict(test_network.fake_network, **networks[1]) context1 = context.RequestContext('user', 'project1') instance = db.instance_create(context1, {'project_id': 'project1'}) elevated = context1.elevated() fix_addr = fixed_ip_obj.FixedIP.associate_pool(elevated, 1, instance['uuid']) def fake_refresh(instance_uuid): raise test.TestingException() self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', fake_refresh) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr.address, allocated=True, virtual_interface_id=3, instance_uuid=instance.uuid, network=dict(test_network.fake_network, **networks[1])) self.assertRaises(test.TestingException, self.network.deallocate_fixed_ip, context1, str(fix_addr.address), 'fake') self.assertFalse(fixed_update.called) def test_get_networks_by_uuids_ordering(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = ['bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() res = self.network._get_networks_by_uuids(self.context, requested_networks) self.assertEqual(res[0]['id'], 1) self.assertEqual(res[1]['id'], 0) class _TestDomainObject(object): def __init__(self, **kwargs): for k, v in kwargs.iteritems(): self.__setattr__(k, v) class FakeNetwork(object): def __init__(self, **kwargs): self.vlan = None for k, v in kwargs.iteritems(): self.__setattr__(k, v) def __getitem__(self, item): return getattr(self, item) class CommonNetworkTestCase(test.TestCase): def setUp(self): super(CommonNetworkTestCase, self).setUp() self.context = context.RequestContext('fake', 'fake') self.flags(ipv6_backend='rfc2462') self.flags(use_local=True, group='conductor') ipv6.reset_backend() def test_validate_instance_zone_for_dns_domain(self): domain = 'example.com' az = 'test_az' domains = { domain: _TestDomainObject( domain=domain, availability_zone=az)} def dnsdomain_get(context, instance_domain): return domains.get(instance_domain) self.stubs.Set(db, 'dnsdomain_get', dnsdomain_get) fake_instance = {'uuid': FAKEUUID, 'availability_zone': az} manager = network_manager.NetworkManager() res = manager._validate_instance_zone_for_dns_domain(self.context, fake_instance) self.assertTrue(res) def fake_create_fixed_ips(self, context, network_id, fixed_cidr=None): return None def test_get_instance_nw_info_client_exceptions(self): manager = network_manager.NetworkManager() self.mox.StubOutWithMock(manager.db, 'virtual_interface_get_by_instance') manager.db.virtual_interface_get_by_instance( self.context, FAKEUUID, use_slave=False).AndRaise(exception.InstanceNotFound( instance_id=FAKEUUID)) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, manager.get_instance_nw_info, self.context, FAKEUUID, 'fake_rxtx_factor', HOST) @mock.patch('nova.db.instance_get') @mock.patch('nova.db.fixed_ip_get_by_instance') def test_deallocate_for_instance_passes_host_info(self, fixed_get, instance_get): manager = fake_network.FakeNetworkManager() db = manager.db instance_get.return_value = fake_inst(uuid='ignoreduuid') db.virtual_interface_delete_by_instance = lambda _x, _y: None ctx = context.RequestContext('igonre', 'igonre') fixed_get.return_value = [dict(test_fixed_ip.fake_fixed_ip, address='1.2.3.4', network_id=123)] manager.deallocate_for_instance( ctx, instance=instance_obj.Instance._from_db_object(self.context, instance_obj.Instance(), instance_get.return_value)) self.assertEqual([ (ctx, '1.2.3.4', 'fake-host') ], manager.deallocate_fixed_ip_calls) @mock.patch('nova.db.fixed_ip_get_by_instance') @mock.patch('nova.db.fixed_ip_disassociate') def test_remove_fixed_ip_from_instance(self, disassociate, get): manager = fake_network.FakeNetworkManager() get.return_value = [ dict(test_fixed_ip.fake_fixed_ip, **x) for x in manager.db.fixed_ip_get_by_instance(None, FAKEUUID)] manager.remove_fixed_ip_from_instance(self.context, FAKEUUID, HOST, '10.0.0.1') self.assertEqual(manager.deallocate_called, '10.0.0.1') disassociate.assert_called_once_with(self.context, '10.0.0.1') @mock.patch('nova.db.fixed_ip_get_by_instance') def test_remove_fixed_ip_from_instance_bad_input(self, get): manager = fake_network.FakeNetworkManager() get.return_value = [] self.assertRaises(exception.FixedIpNotFoundForSpecificInstance, manager.remove_fixed_ip_from_instance, self.context, 99, HOST, 'bad input') def test_validate_cidrs(self): manager = fake_network.FakeNetworkManager() nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) self.assertEqual(1, len(nets)) cidrs = [str(net['cidr']) for net in nets] self.assertIn('192.168.0.0/24', cidrs) def test_validate_cidrs_split_exact_in_half(self): manager = fake_network.FakeNetworkManager() nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/24', False, 2, 128, None, None, None, None, None) self.assertEqual(2, len(nets)) cidrs = [str(net['cidr']) for net in nets] self.assertIn('192.168.0.0/25', cidrs) self.assertIn('192.168.0.128/25', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_cidr_in_use_middle_of_range(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.0/24')] nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/16', False, 4, 256, None, None, None, None, None) self.assertEqual(4, len(nets)) cidrs = [str(net['cidr']) for net in nets] exp_cidrs = ['192.168.0.0/24', '192.168.1.0/24', '192.168.3.0/24', '192.168.4.0/24'] for exp_cidr in exp_cidrs: self.assertIn(exp_cidr, cidrs) self.assertNotIn('192.168.2.0/24', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_smaller_subnet_in_use(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.9/25')] # CidrConflict: requested cidr (192.168.2.0/24) conflicts with # existing smaller cidr args = (self.context.elevated(), 'fake', '192.168.2.0/24', False, 1, 256, None, None, None, None, None) self.assertRaises(exception.CidrConflict, manager.create_networks, *args) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_smaller_cidr_in_use(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.0/25')] nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/16', False, 4, 256, None, None, None, None, None) self.assertEqual(4, len(nets)) cidrs = [str(net['cidr']) for net in nets] exp_cidrs = ['192.168.0.0/24', '192.168.1.0/24', '192.168.3.0/24', '192.168.4.0/24'] for exp_cidr in exp_cidrs: self.assertIn(exp_cidr, cidrs) self.assertNotIn('192.168.2.0/24', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_smaller_cidr_in_use2(self, get_all): manager = fake_network.FakeNetworkManager() self.mox.StubOutWithMock(manager.db, 'network_get_all') get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.9/29')] nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.2.0/24', False, 3, 32, None, None, None, None, None) self.assertEqual(3, len(nets)) cidrs = [str(net['cidr']) for net in nets] exp_cidrs = ['192.168.2.32/27', '192.168.2.64/27', '192.168.2.96/27'] for exp_cidr in exp_cidrs: self.assertIn(exp_cidr, cidrs) self.assertNotIn('192.168.2.0/27', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_all_in_use(self, get_all): manager = fake_network.FakeNetworkManager() in_use = [dict(test_network.fake_network, **values) for values in [{'id': 1, 'cidr': '192.168.2.9/29'}, {'id': 2, 'cidr': '192.168.2.64/26'}, {'id': 3, 'cidr': '192.168.2.128/26'}]] get_all.return_value = in_use args = (self.context.elevated(), 'fake', '192.168.2.0/24', False, 3, 64, None, None, None, None, None) # CidrConflict: Not enough subnets avail to satisfy requested num_ # networks - some subnets in requested range already # in use self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_validate_cidrs_one_in_use(self): manager = fake_network.FakeNetworkManager() args = (None, 'fake', '192.168.0.0/24', False, 2, 256, None, None, None, None, None) # ValueError: network_size * num_networks exceeds cidr size self.assertRaises(ValueError, manager.create_networks, *args) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_already_used(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, cidr='192.168.0.0/24')] # CidrConflict: cidr already in use args = (self.context.elevated(), 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_validate_cidrs_too_many(self): manager = fake_network.FakeNetworkManager() args = (None, 'fake', '192.168.0.0/24', False, 200, 256, None, None, None, None, None) # ValueError: Not enough subnets avail to satisfy requested # num_networks self.assertRaises(ValueError, manager.create_networks, *args) def test_validate_cidrs_split_partial(self): manager = fake_network.FakeNetworkManager() nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/16', False, 2, 256, None, None, None, None, None) returned_cidrs = [str(net['cidr']) for net in nets] self.assertIn('192.168.0.0/24', returned_cidrs) self.assertIn('192.168.1.0/24', returned_cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_conflict_existing_supernet(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.0.0/8')] args = (self.context.elevated(), 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) # CidrConflict: requested cidr (192.168.0.0/24) conflicts # with existing supernet self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_create_networks(self): cidr = '192.168.0.0/24' manager = fake_network.FakeNetworkManager() self.stubs.Set(manager, '_create_fixed_ips', self.fake_create_fixed_ips) args = [self.context.elevated(), 'foo', cidr, None, 1, 256, 'fd00::/48', None, None, None, None, None] self.assertTrue(manager.create_networks(*args)) @mock.patch('nova.db.network_get_all') def test_create_networks_cidr_already_used(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.0.0/24')] args = [self.context.elevated(), 'foo', '192.168.0.0/24', None, 1, 256, 'fd00::/48', None, None, None, None, None] self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_create_networks_many(self): cidr = '192.168.0.0/16' manager = fake_network.FakeNetworkManager() self.stubs.Set(manager, '_create_fixed_ips', self.fake_create_fixed_ips) args = [self.context.elevated(), 'foo', cidr, None, 10, 256, 'fd00::/48', None, None, None, None, None] self.assertTrue(manager.create_networks(*args)) @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ips_by_virtual_interface') def test_get_instance_uuids_by_ip_regex(self, fixed_get, network_get): manager = fake_network.FakeNetworkManager(self.stubs) fixed_get.side_effect = manager.db.fixed_ips_by_virtual_interface _vifs = manager.db.virtual_interface_get_all(None) fake_context = context.RequestContext('user', 'project') network_get.return_value = dict(test_network.fake_network, **manager.db.network_get(None, 1)) # Greedy get eveything res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '.*'}) self.assertEqual(len(res), len(_vifs)) # Doesn't exist res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '10.0.0.1'}) self.assertFalse(res) # Get instance 1 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '172.16.0.2'}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 2 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '173.16.0.2'}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[2]['instance_uuid']) # Get instance 0 and 1 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '172.16.0.*'}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[0]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 1 and 2 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '17..16.0.2'}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[2]['instance_uuid']) @mock.patch('nova.db.network_get') def test_get_instance_uuids_by_ipv6_regex(self, network_get): manager = fake_network.FakeNetworkManager(self.stubs) _vifs = manager.db.virtual_interface_get_all(None) fake_context = context.RequestContext('user', 'project') def _network_get(context, network_id, **args): return dict(test_network.fake_network, **manager.db.network_get(context, network_id)) network_get.side_effect = _network_get # Greedy get eveything res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '.*'}) self.assertEqual(len(res), len(_vifs)) # Doesn't exist res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '.*1034.*'}) self.assertFalse(res) # Get instance 1 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '2001:.*2'}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 2 ip6 = '2001:db8:69:1f:dead:beff:feff:ef03' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': ip6}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[2]['instance_uuid']) # Get instance 0 and 1 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '.*ef0[1,2]'}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[0]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 1 and 2 ip6 = '2001:db8:69:1.:dead:beff:feff:ef0.' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': ip6}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[2]['instance_uuid']) @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ips_by_virtual_interface') def test_get_instance_uuids_by_ip(self, fixed_get, network_get): manager = fake_network.FakeNetworkManager(self.stubs) fixed_get.side_effect = manager.db.fixed_ips_by_virtual_interface _vifs = manager.db.virtual_interface_get_all(None) fake_context = context.RequestContext('user', 'project') network_get.return_value = dict(test_network.fake_network, **manager.db.network_get(None, 1)) # No regex for you! res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': '.*'}) self.assertFalse(res) # Doesn't exist ip = '10.0.0.1' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': ip}) self.assertFalse(res) # Get instance 1 ip = '172.16.0.2' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': ip}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 2 ip = '173.16.0.2' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': ip}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[2]['instance_uuid']) @mock.patch('nova.db.network_get_by_uuid') def test_get_network(self, get): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get.return_value = dict(test_network.fake_network, **networks[0]) uuid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' network = manager.get_network(fake_context, uuid) self.assertEqual(network['uuid'], uuid) @mock.patch('nova.db.network_get_by_uuid') def test_get_network_not_found(self, get): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get.side_effect = exception.NetworkNotFoundForUUID(uuid='foo') uuid = 'eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee' self.assertRaises(exception.NetworkNotFound, manager.get_network, fake_context, uuid) @mock.patch('nova.db.network_get_all') def test_get_all_networks(self, get_all): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get_all.return_value = [dict(test_network.fake_network, **net) for net in networks] output = manager.get_all_networks(fake_context) self.assertEqual(len(networks), 2) self.assertEqual(output[0]['uuid'], 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa') self.assertEqual(output[1]['uuid'], 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb') @mock.patch('nova.db.network_get_by_uuid') @mock.patch('nova.db.network_disassociate') def test_disassociate_network(self, disassociate, get): manager = fake_network.FakeNetworkManager() disassociate.return_value = True fake_context = context.RequestContext('user', 'project') get.return_value = dict(test_network.fake_network, **networks[0]) uuid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' manager.disassociate_network(fake_context, uuid) @mock.patch('nova.db.network_get_by_uuid') def test_disassociate_network_not_found(self, get): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get.side_effect = exception.NetworkNotFoundForUUID(uuid='fake') uuid = 'eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee' self.assertRaises(exception.NetworkNotFound, manager.disassociate_network, fake_context, uuid) def _test_init_host_dynamic_fixed_range(self, net_manager): self.flags(fake_network=True, routing_source_ip='172.16.0.1', metadata_host='172.16.0.1', public_interface='eth1', dmz_cidr=['10.0.3.0/24']) binary_name = linux_net.get_binary_name() # Stub out calls we don't want to really run, mock the db self.stubs.Set(linux_net.iptables_manager, '_apply', lambda: None) self.stubs.Set(floating_ips.FloatingIP, 'init_host_floating_ips', lambda *args: None) self.stubs.Set(net_manager.l3driver, 'initialize_gateway', lambda *args: None) self.mox.StubOutWithMock(db, 'network_get_all_by_host') fake_networks = [dict(test_network.fake_network, **n) for n in networks] db.network_get_all_by_host(mox.IgnoreArg(), mox.IgnoreArg() ).MultipleTimes().AndReturn(fake_networks) self.mox.ReplayAll() net_manager.init_host() # Get the iptables rules that got created current_lines = [] new_lines = linux_net.iptables_manager._modify_rules(current_lines, linux_net.iptables_manager.ipv4['nat'], table_name='nat') expected_lines = ['[0:0] -A %s-snat -s %s -d 0.0.0.0/0 ' '-j SNAT --to-source %s -o %s' % (binary_name, networks[0]['cidr'], CONF.routing_source_ip, CONF.public_interface), '[0:0] -A %s-POSTROUTING -s %s -d %s/32 -j ACCEPT' % (binary_name, networks[0]['cidr'], CONF.metadata_host), '[0:0] -A %s-POSTROUTING -s %s -d %s -j ACCEPT' % (binary_name, networks[0]['cidr'], CONF.dmz_cidr[0]), '[0:0] -A %s-POSTROUTING -s %s -d %s -m conntrack ! ' '--ctstate DNAT -j ACCEPT' % (binary_name, networks[0]['cidr'], networks[0]['cidr']), '[0:0] -A %s-snat -s %s -d 0.0.0.0/0 ' '-j SNAT --to-source %s -o %s' % (binary_name, networks[1]['cidr'], CONF.routing_source_ip, CONF.public_interface), '[0:0] -A %s-POSTROUTING -s %s -d %s/32 -j ACCEPT' % (binary_name, networks[1]['cidr'], CONF.metadata_host), '[0:0] -A %s-POSTROUTING -s %s -d %s -j ACCEPT' % (binary_name, networks[1]['cidr'], CONF.dmz_cidr[0]), '[0:0] -A %s-POSTROUTING -s %s -d %s -m conntrack ! ' '--ctstate DNAT -j ACCEPT' % (binary_name, networks[1]['cidr'], networks[1]['cidr'])] # Compare the expected rules against the actual ones for line in expected_lines: self.assertIn(line, new_lines) # Add an additional network and ensure the rules get configured new_network = {'id': 2, 'uuid': 'cccccccc-cccc-cccc-cccc-cccccccc', 'label': 'test2', 'injected': False, 'multi_host': False, 'cidr': '192.168.2.0/24', 'cidr_v6': '2001:dba::/64', 'gateway_v6': '2001:dba::1', 'netmask_v6': '64', 'netmask': '255.255.255.0', 'bridge': 'fa1', 'bridge_interface': 'fake_fa1', 'gateway': '192.168.2.1', 'broadcast': '192.168.2.255', 'dns1': '192.168.2.1', 'dns2': '192.168.2.2', 'vlan': None, 'host': HOST, 'project_id': 'fake_project', 'vpn_public_address': '192.168.2.2', 'vpn_public_port': '22', 'vpn_private_address': '10.0.0.2'} new_network_obj = network_obj.Network._from_db_object( self.context, network_obj.Network(), dict(test_network.fake_network, **new_network)) ctxt = context.get_admin_context() net_manager._setup_network_on_host(ctxt, new_network_obj) # Get the new iptables rules that got created from adding a new network current_lines = [] new_lines = linux_net.iptables_manager._modify_rules(current_lines, linux_net.iptables_manager.ipv4['nat'], table_name='nat') # Add the new expected rules to the old ones expected_lines += ['[0:0] -A %s-snat -s %s -d 0.0.0.0/0 ' '-j SNAT --to-source %s -o %s' % (binary_name, new_network['cidr'], CONF.routing_source_ip, CONF.public_interface), '[0:0] -A %s-POSTROUTING -s %s -d %s/32 -j ACCEPT' % (binary_name, new_network['cidr'], CONF.metadata_host), '[0:0] -A %s-POSTROUTING -s %s -d %s -j ACCEPT' % (binary_name, new_network['cidr'], CONF.dmz_cidr[0]), '[0:0] -A %s-POSTROUTING -s %s -d %s -m conntrack ' '! --ctstate DNAT -j ACCEPT' % (binary_name, new_network['cidr'], new_network['cidr'])] # Compare the expected rules (with new network) against the actual ones for line in expected_lines: self.assertIn(line, new_lines) def test_flatdhcpmanager_dynamic_fixed_range(self): """Test FlatDHCPManager NAT rules for fixed_range.""" # Set the network manager self.network = network_manager.FlatDHCPManager(host=HOST) self.network.db = db # Test new behavior: # CONF.fixed_range is not set, defaults to None # Determine networks to NAT based on lookup self._test_init_host_dynamic_fixed_range(self.network) def test_vlanmanager_dynamic_fixed_range(self): """Test VlanManager NAT rules for fixed_range.""" # Set the network manager self.network = network_manager.VlanManager(host=HOST) self.network.db = db # Test new behavior: # CONF.fixed_range is not set, defaults to None # Determine networks to NAT based on lookup self._test_init_host_dynamic_fixed_range(self.network) class TestRPCFixedManager(network_manager.RPCAllocateFixedIP, network_manager.NetworkManager): """Dummy manager that implements RPCAllocateFixedIP.""" class RPCAllocateTestCase(test.TestCase): """Tests nova.network.manager.RPCAllocateFixedIP.""" def setUp(self): super(RPCAllocateTestCase, self).setUp() self.flags(use_local=True, group='conductor') self.rpc_fixed = TestRPCFixedManager() self.context = context.RequestContext('fake', 'fake') def test_rpc_allocate(self): """Test to verify bug 855030 doesn't resurface. Mekes sure _rpc_allocate_fixed_ip returns a value so the call returns properly and the greenpool completes. """ address = '10.10.10.10' def fake_allocate(*args, **kwargs): return address def fake_network_get(*args, **kwargs): return test_network.fake_network self.stubs.Set(self.rpc_fixed, 'allocate_fixed_ip', fake_allocate) self.stubs.Set(self.rpc_fixed.db, 'network_get', fake_network_get) rval = self.rpc_fixed._rpc_allocate_fixed_ip(self.context, 'fake_instance', 'fake_network') self.assertEqual(rval, address) class TestFloatingIPManager(floating_ips.FloatingIP, network_manager.NetworkManager): """Dummy manager that implements FloatingIP.""" class AllocateTestCase(test.TestCase): def setUp(self): super(AllocateTestCase, self).setUp() self.useFixture(test.SampleNetworks()) self.conductor = self.start_service( 'conductor', manager=CONF.conductor.manager) self.compute = self.start_service('compute') self.network = self.start_service('network') self.user_id = 'fake' self.project_id = 'fake' self.context = context.RequestContext(self.user_id, self.project_id, is_admin=True) def test_allocate_for_instance(self): address = "10.10.10.10" self.flags(auto_assign_floating_ip=True) db.floating_ip_create(self.context, {'address': address, 'pool': 'nova'}) inst = instance_obj.Instance() inst.host = self.compute.host inst.display_name = HOST inst.instance_type_id = 1 inst.uuid = FAKEUUID inst.create(self.context) networks = db.network_get_all(self.context) for network in networks: db.network_update(self.context, network['id'], {'host': self.network.host}) project_id = self.context.project_id nw_info = self.network.allocate_for_instance(self.context, instance_id=inst['id'], instance_uuid=inst['uuid'], host=inst['host'], vpn=None, rxtx_factor=3, project_id=project_id, macs=None) self.assertEqual(1, len(nw_info)) fixed_ip = nw_info.fixed_ips()[0]['address'] self.assertTrue(utils.is_valid_ipv4(fixed_ip)) self.network.deallocate_for_instance(self.context, instance=inst) def test_allocate_for_instance_with_mac(self): available_macs = set(['ca:fe:de:ad:be:ef']) inst = db.instance_create(self.context, {'host': self.compute.host, 'display_name': HOST, 'instance_type_id': 1}) networks = db.network_get_all(self.context) for network in networks: db.network_update(self.context, network['id'], {'host': self.network.host}) project_id = self.context.project_id nw_info = self.network.allocate_for_instance(self.context, instance_id=inst['id'], instance_uuid=inst['uuid'], host=inst['host'], vpn=None, rxtx_factor=3, project_id=project_id, macs=available_macs) assigned_macs = [vif['address'] for vif in nw_info] self.assertEqual(1, len(assigned_macs)) self.assertEqual(available_macs.pop(), assigned_macs[0]) self.network.deallocate_for_instance(self.context, instance_id=inst['id'], host=self.network.host, project_id=project_id) def test_allocate_for_instance_not_enough_macs(self): available_macs = set() inst = db.instance_create(self.context, {'host': self.compute.host, 'display_name': HOST, 'instance_type_id': 1}) networks = db.network_get_all(self.context) for network in networks: db.network_update(self.context, network['id'], {'host': self.network.host}) project_id = self.context.project_id self.assertRaises(exception.VirtualInterfaceCreateException, self.network.allocate_for_instance, self.context, instance_id=inst['id'], instance_uuid=inst['uuid'], host=inst['host'], vpn=None, rxtx_factor=3, project_id=project_id, macs=available_macs) class FloatingIPTestCase(test.TestCase): """Tests nova.network.manager.FloatingIP.""" def setUp(self): super(FloatingIPTestCase, self).setUp() self.tempdir = self.useFixture(fixtures.TempDir()).path self.flags(log_dir=self.tempdir) self.flags(use_local=True, group='conductor') self.network = TestFloatingIPManager() self.network.db = db self.project_id = 'testproject' self.context = context.RequestContext('testuser', self.project_id, is_admin=False) @mock.patch('nova.db.fixed_ip_get') @mock.patch('nova.db.network_get') @mock.patch('nova.db.instance_get_by_uuid') @mock.patch('nova.db.service_get_by_host_and_topic') @mock.patch('nova.db.floating_ip_get_by_address') def test_disassociate_floating_ip_multi_host_calls(self, floating_get, service_get, inst_get, net_get, fixed_get): floating_ip = dict(test_floating_ip.fake_floating_ip, fixed_ip_id=12) fixed_ip = dict(test_fixed_ip.fake_fixed_ip, network_id=None, instance_uuid='instance-uuid') network = dict(test_network.fake_network, multi_host=True) instance = dict(fake_instance.fake_db_instance(host='some-other-host')) ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) self.stubs.Set(self.network, '_floating_ip_owned_by_project', lambda _x, _y: True) floating_get.return_value = floating_ip fixed_get.return_value = fixed_ip net_get.return_value = network inst_get.return_value = instance service_get.return_value = test_service.fake_service self.stubs.Set(self.network.servicegroup_api, 'service_is_up', lambda _x: True) self.mox.StubOutWithMock( self.network.network_rpcapi, '_disassociate_floating_ip') self.network.network_rpcapi._disassociate_floating_ip( ctxt, 'fl_ip', mox.IgnoreArg(), 'some-other-host', 'instance-uuid') self.mox.ReplayAll() self.network.disassociate_floating_ip(ctxt, 'fl_ip', True) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.instance_get_by_uuid') @mock.patch('nova.db.floating_ip_get_by_address') def test_associate_floating_ip_multi_host_calls(self, floating_get, inst_get, net_get, fixed_get): floating_ip = dict(test_floating_ip.fake_floating_ip, fixed_ip_id=None) fixed_ip = dict(test_fixed_ip.fake_fixed_ip, network_id=None, instance_uuid='instance-uuid') network = dict(test_network.fake_network, multi_host=True) instance = dict(fake_instance.fake_db_instance(host='some-other-host')) ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) self.stubs.Set(self.network, '_floating_ip_owned_by_project', lambda _x, _y: True) floating_get.return_value = floating_ip fixed_get.return_value = fixed_ip net_get.return_value = network inst_get.return_value = instance self.mox.StubOutWithMock( self.network.network_rpcapi, '_associate_floating_ip') self.network.network_rpcapi._associate_floating_ip( ctxt, 'fl_ip', 'fix_ip', mox.IgnoreArg(), 'some-other-host', 'instance-uuid') self.mox.ReplayAll() self.network.associate_floating_ip(ctxt, 'fl_ip', 'fix_ip', True) def test_double_deallocation(self): instance_ref = db.instance_create(self.context, {"project_id": self.project_id}) # Run it twice to make it fault if it does not handle # instances without fixed networks # If this fails in either, it does not handle having no addresses self.network.deallocate_for_instance(self.context, instance_id=instance_ref['id']) self.network.deallocate_for_instance(self.context, instance_id=instance_ref['id']) def test_deallocation_deleted_instance(self): self.stubs.Set(self.network, '_teardown_network_on_host', lambda *args, **kwargs: None) instance = instance_obj.Instance() instance.project_id = self.project_id instance.deleted = True instance.create(self.context) network = db.network_create_safe(self.context.elevated(), { 'project_id': self.project_id, 'host': CONF.host, 'label': 'foo'}) fixed = db.fixed_ip_create(self.context, {'allocated': True, 'instance_uuid': instance.uuid, 'address': '10.1.1.1', 'network_id': network['id']}) db.floating_ip_create(self.context, { 'address': '10.10.10.10', 'instance_uuid': instance.uuid, 'fixed_ip_id': fixed['id'], 'project_id': self.project_id}) self.network.deallocate_for_instance(self.context, instance=instance) def test_deallocation_duplicate_floating_ip(self): self.stubs.Set(self.network, '_teardown_network_on_host', lambda *args, **kwargs: None) instance = instance_obj.Instance() instance.project_id = self.project_id instance.create(self.context) network = db.network_create_safe(self.context.elevated(), { 'project_id': self.project_id, 'host': CONF.host, 'label': 'foo'}) fixed = db.fixed_ip_create(self.context, {'allocated': True, 'instance_uuid': instance.uuid, 'address': '10.1.1.1', 'network_id': network['id']}) db.floating_ip_create(self.context, { 'address': '10.10.10.10', 'deleted': True}) db.floating_ip_create(self.context, { 'address': '10.10.10.10', 'instance_uuid': instance.uuid, 'fixed_ip_id': fixed['id'], 'project_id': self.project_id}) self.network.deallocate_for_instance(self.context, instance=instance) @mock.patch('nova.db.fixed_ip_get') @mock.patch('nova.db.floating_ip_get_by_address') @mock.patch('nova.db.floating_ip_update') def test_migrate_instance_start(self, floating_update, floating_get, fixed_get): called = {'count': 0} def fake_floating_ip_get_by_address(context, address): return dict(test_floating_ip.fake_floating_ip, address=address, fixed_ip_id=0) def fake_is_stale_floating_ip_address(context, floating_ip): return str(floating_ip.address) == '172.24.4.23' floating_get.side_effect = fake_floating_ip_get_by_address fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, instance_uuid='fake_uuid', address='10.0.0.2', network=test_network.fake_network) floating_update.return_value = fake_floating_ip_get_by_address( None, '1.2.3.4') def fake_remove_floating_ip(floating_addr, fixed_addr, interface, network): called['count'] += 1 def fake_clean_conntrack(fixed_ip): if not str(fixed_ip) == "10.0.0.2": raise exception.FixedIpInvalid(address=fixed_ip) self.stubs.Set(self.network, '_is_stale_floating_ip_address', fake_is_stale_floating_ip_address) self.stubs.Set(self.network.l3driver, 'remove_floating_ip', fake_remove_floating_ip) self.stubs.Set(self.network.l3driver, 'clean_conntrack', fake_clean_conntrack) self.mox.ReplayAll() addresses = ['172.24.4.23', '172.24.4.24', '172.24.4.25'] self.network.migrate_instance_start(self.context, instance_uuid=FAKEUUID, floating_addresses=addresses, rxtx_factor=3, project_id=self.project_id, source='fake_source', dest='fake_dest') self.assertEqual(called['count'], 2) @mock.patch('nova.db.fixed_ip_get') @mock.patch('nova.db.floating_ip_update') def test_migrate_instance_finish(self, floating_update, fixed_get): called = {'count': 0} def fake_floating_ip_get_by_address(context, address): return dict(test_floating_ip.fake_floating_ip, address=address, fixed_ip_id=0) def fake_is_stale_floating_ip_address(context, floating_ip): return str(floating_ip.address) == '172.24.4.23' fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, instance_uuid='fake_uuid', address='10.0.0.2', network=test_network.fake_network) floating_update.return_value = fake_floating_ip_get_by_address( None, '1.2.3.4') def fake_add_floating_ip(floating_addr, fixed_addr, interface, network): called['count'] += 1 self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake_floating_ip_get_by_address) self.stubs.Set(self.network, '_is_stale_floating_ip_address', fake_is_stale_floating_ip_address) self.stubs.Set(self.network.l3driver, 'add_floating_ip', fake_add_floating_ip) self.mox.ReplayAll() addresses = ['172.24.4.23', '172.24.4.24', '172.24.4.25'] self.network.migrate_instance_finish(self.context, instance_uuid=FAKEUUID, floating_addresses=addresses, host='fake_dest', rxtx_factor=3, project_id=self.project_id, source='fake_source') self.assertEqual(called['count'], 2) def test_floating_dns_create_conflict(self): zone = "example.org" address1 = "10.10.10.11" name1 = "foo" self.network.add_dns_entry(self.context, address1, name1, "A", zone) self.assertRaises(exception.FloatingIpDNSExists, self.network.add_dns_entry, self.context, address1, name1, "A", zone) def test_floating_create_and_get(self): zone = "example.org" address1 = "10.10.10.11" name1 = "foo" name2 = "bar" entries = self.network.get_dns_entries_by_address(self.context, address1, zone) self.assertFalse(entries) self.network.add_dns_entry(self.context, address1, name1, "A", zone) self.network.add_dns_entry(self.context, address1, name2, "A", zone) entries = self.network.get_dns_entries_by_address(self.context, address1, zone) self.assertEqual(len(entries), 2) self.assertEqual(entries[0], name1) self.assertEqual(entries[1], name2) entries = self.network.get_dns_entries_by_name(self.context, name1, zone) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], address1) def test_floating_dns_delete(self): zone = "example.org" address1 = "10.10.10.11" name1 = "foo" name2 = "bar" self.network.add_dns_entry(self.context, address1, name1, "A", zone) self.network.add_dns_entry(self.context, address1, name2, "A", zone) self.network.delete_dns_entry(self.context, name1, zone) entries = self.network.get_dns_entries_by_address(self.context, address1, zone) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], name2) self.assertRaises(exception.NotFound, self.network.delete_dns_entry, self.context, name1, zone) def test_floating_dns_domains_public(self): zone1 = "testzone" domain1 = "example.org" domain2 = "example.com" address1 = '10.10.10.10' entryname = 'testentry' context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) self.assertRaises(exception.AdminRequired, self.network.create_public_dns_domain, self.context, domain1, zone1) self.network.create_public_dns_domain(context_admin, domain1, 'testproject') self.network.create_public_dns_domain(context_admin, domain2, 'fakeproject') domains = self.network.get_dns_domains(self.context) self.assertEqual(len(domains), 2) self.assertEqual(domains[0]['domain'], domain1) self.assertEqual(domains[1]['domain'], domain2) self.assertEqual(domains[0]['project'], 'testproject') self.assertEqual(domains[1]['project'], 'fakeproject') self.network.add_dns_entry(self.context, address1, entryname, 'A', domain1) entries = self.network.get_dns_entries_by_name(self.context, entryname, domain1) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], address1) self.assertRaises(exception.AdminRequired, self.network.delete_dns_domain, self.context, domain1) self.network.delete_dns_domain(context_admin, domain1) self.network.delete_dns_domain(context_admin, domain2) # Verify that deleting the domain deleted the associated entry entries = self.network.get_dns_entries_by_name(self.context, entryname, domain1) self.assertFalse(entries) def test_delete_all_by_ip(self): domain1 = "example.org" domain2 = "example.com" address = "10.10.10.10" name1 = "foo" name2 = "bar" def fake_domains(context): return [{'domain': 'example.org', 'scope': 'public'}, {'domain': 'example.com', 'scope': 'public'}, {'domain': 'test.example.org', 'scope': 'public'}] self.stubs.Set(self.network, 'get_dns_domains', fake_domains) context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) self.network.create_public_dns_domain(context_admin, domain1, 'testproject') self.network.create_public_dns_domain(context_admin, domain2, 'fakeproject') domains = self.network.get_dns_domains(self.context) for domain in domains: self.network.add_dns_entry(self.context, address, name1, "A", domain['domain']) self.network.add_dns_entry(self.context, address, name2, "A", domain['domain']) entries = self.network.get_dns_entries_by_address(self.context, address, domain['domain']) self.assertEqual(len(entries), 2) self.network._delete_all_entries_for_ip(self.context, address) for domain in domains: entries = self.network.get_dns_entries_by_address(self.context, address, domain['domain']) self.assertFalse(entries) self.network.delete_dns_domain(context_admin, domain1) self.network.delete_dns_domain(context_admin, domain2) def test_mac_conflicts(self): # Make sure MAC collisions are retried. self.flags(create_unique_mac_address_attempts=3) ctxt = context.RequestContext('testuser', 'testproject', is_admin=True) macs = ['bb:bb:bb:bb:bb:bb', 'aa:aa:aa:aa:aa:aa'] # Create a VIF with aa:aa:aa:aa:aa:aa crash_test_dummy_vif = { 'address': macs[1], 'instance_uuid': 'fake_uuid', 'network_id': 123, 'uuid': 'fake_uuid', } self.network.db.virtual_interface_create(ctxt, crash_test_dummy_vif) # Hand out a collision first, then a legit MAC def fake_gen_mac(): return macs.pop() self.stubs.Set(utils, 'generate_mac_address', fake_gen_mac) # SQLite doesn't seem to honor the uniqueness constraint on the # address column, so fake the collision-avoidance here def fake_vif_save(vif): if vif.address == crash_test_dummy_vif['address']: raise db_exc.DBError("If you're smart, you'll retry!") # NOTE(russellb) The VirtualInterface object requires an ID to be # set, and we expect it to get set automatically when we do the # save. vif.id = 1 self.stubs.Set(models.VirtualInterface, 'save', fake_vif_save) # Attempt to add another and make sure that both MACs are consumed # by the retry loop self.network._add_virtual_interface(ctxt, 'fake_uuid', 123) self.assertEqual(macs, []) def test_deallocate_client_exceptions(self): # Ensure that FloatingIpNotFoundForAddress is wrapped. self.mox.StubOutWithMock(self.network.db, 'floating_ip_get_by_address') self.network.db.floating_ip_get_by_address( self.context, '1.2.3.4').AndRaise( exception.FloatingIpNotFoundForAddress(address='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.deallocate_floating_ip, self.context, '1.2.3.4') def test_associate_client_exceptions(self): # Ensure that FloatingIpNotFoundForAddress is wrapped. self.mox.StubOutWithMock(self.network.db, 'floating_ip_get_by_address') self.network.db.floating_ip_get_by_address( self.context, '1.2.3.4').AndRaise( exception.FloatingIpNotFoundForAddress(address='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.associate_floating_ip, self.context, '1.2.3.4', '10.0.0.1') def test_disassociate_client_exceptions(self): # Ensure that FloatingIpNotFoundForAddress is wrapped. self.mox.StubOutWithMock(self.network.db, 'floating_ip_get_by_address') self.network.db.floating_ip_get_by_address( self.context, '1.2.3.4').AndRaise( exception.FloatingIpNotFoundForAddress(address='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.disassociate_floating_ip, self.context, '1.2.3.4') def test_get_floating_ip_client_exceptions(self): # Ensure that FloatingIpNotFoundForAddress is wrapped. self.mox.StubOutWithMock(self.network.db, 'floating_ip_get') self.network.db.floating_ip_get(self.context, 'fake-id').AndRaise( exception.FloatingIpNotFound(id='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.get_floating_ip, self.context, 'fake-id') def _test_associate_floating_ip_failure(self, stdout, expected_exception): def _fake_catchall(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, network=test_network.fake_network) def _fake_add_floating_ip(*args, **kwargs): raise processutils.ProcessExecutionError(stdout) self.stubs.Set(self.network.db, 'floating_ip_fixed_ip_associate', _fake_catchall) self.stubs.Set(self.network.db, 'floating_ip_disassociate', _fake_catchall) self.stubs.Set(self.network.l3driver, 'add_floating_ip', _fake_add_floating_ip) self.assertRaises(expected_exception, self.network._associate_floating_ip, self.context, '1.2.3.4', '1.2.3.5', '', '') def test_associate_floating_ip_failure(self): self._test_associate_floating_ip_failure(None, processutils.ProcessExecutionError) def test_associate_floating_ip_failure_interface_not_found(self): self._test_associate_floating_ip_failure('Cannot find device', exception.NoFloatingIpInterface) class InstanceDNSTestCase(test.TestCase): """Tests nova.network.manager instance DNS.""" def setUp(self): super(InstanceDNSTestCase, self).setUp() self.tempdir = self.useFixture(fixtures.TempDir()).path self.flags(log_dir=self.tempdir) self.flags(use_local=True, group='conductor') self.network = TestFloatingIPManager() self.network.db = db self.project_id = 'testproject' self.context = context.RequestContext('testuser', self.project_id, is_admin=False) def test_dns_domains_private(self): zone1 = 'testzone' domain1 = 'example.org' context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) self.assertRaises(exception.AdminRequired, self.network.create_private_dns_domain, self.context, domain1, zone1) self.network.create_private_dns_domain(context_admin, domain1, zone1) domains = self.network.get_dns_domains(self.context) self.assertEqual(len(domains), 1) self.assertEqual(domains[0]['domain'], domain1) self.assertEqual(domains[0]['availability_zone'], zone1) self.assertRaises(exception.AdminRequired, self.network.delete_dns_domain, self.context, domain1) self.network.delete_dns_domain(context_admin, domain1) domain1 = "example.org" domain2 = "example.com" class LdapDNSTestCase(test.TestCase): """Tests nova.network.ldapdns.LdapDNS.""" def setUp(self): super(LdapDNSTestCase, self).setUp() self.useFixture(test.ReplaceModule('ldap', fake_ldap)) dns_class = 'nova.network.ldapdns.LdapDNS' self.driver = importutils.import_object(dns_class) attrs = {'objectClass': ['domainrelatedobject', 'dnsdomain', 'domain', 'dcobject', 'top'], 'associateddomain': ['root'], 'dc': ['root']} self.driver.lobj.add_s("ou=hosts,dc=example,dc=org", attrs.items()) self.driver.create_domain(domain1) self.driver.create_domain(domain2) def tearDown(self): self.driver.delete_domain(domain1) self.driver.delete_domain(domain2) super(LdapDNSTestCase, self).tearDown() def test_ldap_dns_domains(self): domains = self.driver.get_domains() self.assertEqual(len(domains), 2) self.assertIn(domain1, domains) self.assertIn(domain2, domains) def test_ldap_dns_create_conflict(self): address1 = "10.10.10.11" name1 = "foo" self.driver.create_entry(name1, address1, "A", domain1) self.assertRaises(exception.FloatingIpDNSExists, self.driver.create_entry, name1, address1, "A", domain1) def test_ldap_dns_create_and_get(self): address1 = "10.10.10.11" name1 = "foo" name2 = "bar" entries = self.driver.get_entries_by_address(address1, domain1) self.assertFalse(entries) self.driver.create_entry(name1, address1, "A", domain1) self.driver.create_entry(name2, address1, "A", domain1) entries = self.driver.get_entries_by_address(address1, domain1) self.assertEqual(len(entries), 2) self.assertEqual(entries[0], name1) self.assertEqual(entries[1], name2) entries = self.driver.get_entries_by_name(name1, domain1) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], address1) def test_ldap_dns_delete(self): address1 = "10.10.10.11" name1 = "foo" name2 = "bar" self.driver.create_entry(name1, address1, "A", domain1) self.driver.create_entry(name2, address1, "A", domain1) entries = self.driver.get_entries_by_address(address1, domain1) self.assertEqual(len(entries), 2) self.driver.delete_entry(name1, domain1) entries = self.driver.get_entries_by_address(address1, domain1) LOG.debug("entries: %s" % entries) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], name2) self.assertRaises(exception.NotFound, self.driver.delete_entry, name1, domain1)
45.446324
79
0.555021
import fixtures import mock import mox import netaddr from oslo.config import cfg from oslo import messaging from nova import context from nova import db from nova.db.sqlalchemy import models from nova import exception from nova import ipv6 from nova.network import floating_ips from nova.network import linux_net from nova.network import manager as network_manager from nova.network import model as net_model from nova.objects import fixed_ip as fixed_ip_obj from nova.objects import floating_ip as floating_ip_obj from nova.objects import instance as instance_obj from nova.objects import network as network_obj from nova.objects import quotas as quotas_obj from nova.openstack.common.db import exception as db_exc from nova.openstack.common import importutils from nova.openstack.common import log as logging from nova.openstack.common import processutils from nova import test from nova.tests import fake_instance from nova.tests import fake_ldap from nova.tests import fake_network from nova.tests import matchers from nova.tests.objects import test_fixed_ip from nova.tests.objects import test_floating_ip from nova.tests.objects import test_network from nova.tests.objects import test_service from nova import utils CONF = cfg.CONF LOG = logging.getLogger(__name__) HOST = "testhost" FAKEUUID = "aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa" fake_inst = fake_instance.fake_db_instance networks = [{'id': 0, 'uuid': FAKEUUID, 'label': 'test0', 'injected': False, 'multi_host': False, 'cidr': '192.168.0.0/24', 'cidr_v6': '2001:db8::/64', 'gateway_v6': '2001:db8::1', 'netmask_v6': '64', 'netmask': '255.255.255.0', 'bridge': 'fa0', 'bridge_interface': 'fake_fa0', 'gateway': '192.168.0.1', 'broadcast': '192.168.0.255', 'dns1': '192.168.0.1', 'dns2': '192.168.0.2', 'vlan': None, 'host': HOST, 'project_id': 'fake_project', 'vpn_public_address': '192.168.0.2', 'vpn_public_port': '22', 'vpn_private_address': '10.0.0.2'}, {'id': 1, 'uuid': 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 'label': 'test1', 'injected': False, 'multi_host': False, 'cidr': '192.168.1.0/24', 'cidr_v6': '2001:db9::/64', 'gateway_v6': '2001:db9::1', 'netmask_v6': '64', 'netmask': '255.255.255.0', 'bridge': 'fa1', 'bridge_interface': 'fake_fa1', 'gateway': '192.168.1.1', 'broadcast': '192.168.1.255', 'dns1': '192.168.0.1', 'dns2': '192.168.0.2', 'vlan': None, 'host': HOST, 'project_id': 'fake_project', 'vpn_public_address': '192.168.1.2', 'vpn_public_port': '22', 'vpn_private_address': '10.0.0.2'}] fixed_ips = [{'id': 0, 'network_id': 0, 'address': '192.168.0.100', 'instance_uuid': 0, 'allocated': False, 'virtual_interface_id': 0, 'floating_ips': []}, {'id': 0, 'network_id': 1, 'address': '192.168.1.100', 'instance_uuid': 0, 'allocated': False, 'virtual_interface_id': 0, 'floating_ips': []}, {'id': 0, 'network_id': 1, 'address': '2001:db9:0:1::10', 'instance_uuid': 0, 'allocated': False, 'virtual_interface_id': 0, 'floating_ips': []}] flavor = {'id': 0, 'rxtx_cap': 3} floating_ip_fields = {'id': 0, 'address': '192.168.10.100', 'pool': 'nova', 'interface': 'eth0', 'fixed_ip_id': 0, 'project_id': None, 'auto_assigned': False} vifs = [{'id': 0, 'created_at': None, 'updated_at': None, 'deleted_at': None, 'deleted': 0, 'address': 'DE:AD:BE:EF:00:00', 'uuid': '00000000-0000-0000-0000-0000000000000000', 'network_id': 0, 'instance_uuid': 0}, {'id': 1, 'created_at': None, 'updated_at': None, 'deleted_at': None, 'deleted': 0, 'address': 'DE:AD:BE:EF:00:01', 'uuid': '00000000-0000-0000-0000-0000000000000001', 'network_id': 1, 'instance_uuid': 0}, {'id': 2, 'created_at': None, 'updated_at': None, 'deleted_at': None, 'deleted': 0, 'address': 'DE:AD:BE:EF:00:02', 'uuid': '00000000-0000-0000-0000-0000000000000002', 'network_id': 2, 'instance_uuid': 0}] class FlatNetworkTestCase(test.TestCase): def setUp(self): super(FlatNetworkTestCase, self).setUp() self.tempdir = self.useFixture(fixtures.TempDir()).path self.flags(log_dir=self.tempdir) self.flags(use_local=True, group='conductor') self.network = network_manager.FlatManager(host=HOST) self.network.instance_dns_domain = '' self.network.db = db self.context = context.RequestContext('testuser', 'testproject', is_admin=False) def test_get_instance_nw_info(self): fake_get_instance_nw_info = fake_network.fake_get_instance_nw_info nw_info = fake_get_instance_nw_info(self.stubs, 0, 2) self.assertFalse(nw_info) nw_info = fake_get_instance_nw_info(self.stubs, 1, 2) for i, vif in enumerate(nw_info): nid = i + 1 check = {'bridge': 'fake_br%d' % nid, 'cidr': '192.168.%s.0/24' % nid, 'cidr_v6': '2001:db8:0:%x::/64' % nid, 'id': '00000000-0000-0000-0000-00000000000000%02d' % nid, 'multi_host': False, 'injected': False, 'bridge_interface': None, 'vlan': None, 'broadcast': '192.168.%d.255' % nid, 'dhcp_server': '192.168.1.1', 'dns': ['192.168.%d.3' % nid, '192.168.%d.4' % nid], 'gateway': '192.168.%d.1' % nid, 'gateway_v6': '2001:db8:0:1::1', 'label': 'test%d' % nid, 'mac': 'DE:AD:BE:EF:00:%02x' % nid, 'rxtx_cap': 30, 'vif_type': net_model.VIF_TYPE_BRIDGE, 'vif_devname': None, 'vif_uuid': '00000000-0000-0000-0000-00000000000000%02d' % nid, 'ovs_interfaceid': None, 'qbh_params': None, 'qbg_params': None, 'should_create_vlan': False, 'should_create_bridge': False, 'ip': '192.168.%d.%03d' % (nid, nid + 99), 'ip_v6': '2001:db8:0:1::%x' % nid, 'netmask': '255.255.255.0', 'netmask_v6': 64, 'physical_network': None, } network = vif['network'] net_v4 = vif['network']['subnets'][0] net_v6 = vif['network']['subnets'][1] vif_dict = dict(bridge=network['bridge'], cidr=net_v4['cidr'], cidr_v6=net_v6['cidr'], id=vif['id'], multi_host=network.get_meta('multi_host', False), injected=network.get_meta('injected', False), bridge_interface= network.get_meta('bridge_interface'), vlan=network.get_meta('vlan'), broadcast=str(net_v4.as_netaddr().broadcast), dhcp_server=network.get_meta('dhcp_server', net_v4['gateway']['address']), dns=[ip['address'] for ip in net_v4['dns']], gateway=net_v4['gateway']['address'], gateway_v6=net_v6['gateway']['address'], label=network['label'], mac=vif['address'], rxtx_cap=vif.get_meta('rxtx_cap'), vif_type=vif['type'], vif_devname=vif.get('devname'), vif_uuid=vif['id'], ovs_interfaceid=vif.get('ovs_interfaceid'), qbh_params=vif.get('qbh_params'), qbg_params=vif.get('qbg_params'), should_create_vlan= network.get_meta('should_create_vlan', False), should_create_bridge= network.get_meta('should_create_bridge', False), ip=net_v4['ips'][i]['address'], ip_v6=net_v6['ips'][i]['address'], netmask=str(net_v4.as_netaddr().netmask), netmask_v6=net_v6.as_netaddr()._prefixlen, physical_network= network.get_meta('physical_network', None)) self.assertThat(vif_dict, matchers.DictMatches(check)) def test_validate_networks(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') self.mox.StubOutWithMock(db, 'fixed_ip_get_by_address') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) ip = dict(test_fixed_ip.fake_fixed_ip, **fixed_ips[1]) ip['network'] = dict(test_network.fake_network, **networks[1]) ip['instance_uuid'] = None db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(ip) ip = dict(test_fixed_ip.fake_fixed_ip, **fixed_ips[0]) ip['network'] = dict(test_network.fake_network, **networks[0]) ip['instance_uuid'] = None db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(ip) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_valid_fixed_ipv6(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') self.mox.StubOutWithMock(db, 'fixed_ip_get_by_address') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '2001:db9:0:1::10')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **networks[1])]) ip = dict(test_fixed_ip.fake_fixed_ip, **fixed_ips[2]) ip['network'] = dict(test_network.fake_network, **networks[1]) ip['instance_uuid'] = None db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(ip) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_reserved(self): context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) nets = self.network.create_networks(context_admin, 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) self.assertEqual(1, len(nets)) network = nets[0] self.assertEqual(3, db.network_count_reserved_ips(context_admin, network['id'])) def test_validate_networks_none_requested_networks(self): self.network.validate_networks(self.context, None) def test_validate_networks_empty_requested_networks(self): requested_networks = [] self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_invalid_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100.1'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100.1')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_empty_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', ''), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_none_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', None), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', None)] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) @mock.patch('nova.objects.quotas.Quotas.reserve') def test_add_fixed_ip_instance_using_id_without_vpn(self, reserve): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'network_get') self.mox.StubOutWithMock(db, 'network_update') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) inst = fake_inst(display_name=HOST, uuid=FAKEUUID) db.instance_get_by_uuid(self.context, mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(inst) db.network_get(mox.IgnoreArg(), mox.IgnoreArg(), project_only=mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.network_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['id']) exp_project, exp_user = quotas_obj.ids_from_instance(self.context, inst) reserve.assert_called_once_with(self.context, fixed_ips=1, project_id=exp_project, user_id=exp_user) @mock.patch('nova.objects.quotas.Quotas.reserve') def test_add_fixed_ip_instance_using_uuid_without_vpn(self, reserve): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'network_get_by_uuid') self.mox.StubOutWithMock(db, 'network_update') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) inst = fake_inst(display_name=HOST, uuid=FAKEUUID) db.instance_get_by_uuid(self.context, mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(inst) db.network_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.network_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['uuid']) exp_project, exp_user = quotas_obj.ids_from_instance(self.context, inst) reserve.assert_called_once_with(self.context, fixed_ips=1, project_id=exp_project, user_id=exp_user) def test_mini_dns_driver(self): zone1 = "example.org" zone2 = "example.com" driver = self.network.instance_dns_manager driver.create_entry("hostone", "10.0.0.1", "A", zone1) driver.create_entry("hosttwo", "10.0.0.2", "A", zone1) driver.create_entry("hostthree", "10.0.0.3", "A", zone1) driver.create_entry("hostfour", "10.0.0.4", "A", zone1) driver.create_entry("hostfive", "10.0.0.5", "A", zone2) driver.delete_entry("hostone", zone1) driver.modify_address("hostfour", "10.0.0.1", zone1) driver.modify_address("hostthree", "10.0.0.1", zone1) names = driver.get_entries_by_address("10.0.0.1", zone1) self.assertEqual(len(names), 2) self.assertIn('hostthree', names) self.assertIn('hostfour', names) names = driver.get_entries_by_address("10.0.0.5", zone2) self.assertEqual(len(names), 1) self.assertIn('hostfive', names) addresses = driver.get_entries_by_name("hosttwo", zone1) self.assertEqual(len(addresses), 1) self.assertIn('10.0.0.2', addresses) self.assertRaises(exception.InvalidInput, driver.create_entry, "hostname", "10.10.10.10", "invalidtype", zone1) def test_mini_dns_driver_with_mixed_case(self): zone1 = "example.org" driver = self.network.instance_dns_manager driver.create_entry("HostTen", "10.0.0.10", "A", zone1) addresses = driver.get_entries_by_address("10.0.0.10", zone1) self.assertEqual(len(addresses), 1) for n in addresses: driver.delete_entry(n, zone1) addresses = driver.get_entries_by_address("10.0.0.10", zone1) self.assertEqual(len(addresses), 0) @mock.patch('nova.objects.quotas.Quotas.reserve') def test_instance_dns(self, reserve): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) fixedip = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') self.mox.StubOutWithMock(db, 'network_get_by_uuid') self.mox.StubOutWithMock(db, 'network_update') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None ).AndReturn(fixedip) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) inst = fake_inst(display_name=HOST, uuid=FAKEUUID) db.instance_get_by_uuid(self.context, mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(inst) db.network_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.network_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['uuid']) instance_manager = self.network.instance_dns_manager addresses = instance_manager.get_entries_by_name(HOST, self.network.instance_dns_domain) self.assertEqual(len(addresses), 1) self.assertEqual(addresses[0], fixedip['address']) addresses = instance_manager.get_entries_by_name(FAKEUUID, self.network.instance_dns_domain) self.assertEqual(len(addresses), 1) self.assertEqual(addresses[0], fixedip['address']) exp_project, exp_user = quotas_obj.ids_from_instance(self.context, inst) reserve.assert_called_once_with(self.context, fixed_ips=1, project_id=exp_project, user_id=exp_user) def test_allocate_floating_ip(self): self.assertIsNone(self.network.allocate_floating_ip(self.context, 1, None)) def test_deallocate_floating_ip(self): self.assertIsNone(self.network.deallocate_floating_ip(self.context, 1, None)) def test_associate_floating_ip(self): self.assertIsNone(self.network.associate_floating_ip(self.context, None, None)) def test_disassociate_floating_ip(self): self.assertIsNone(self.network.disassociate_floating_ip(self.context, None, None)) def test_get_networks_by_uuids_ordering(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = ['bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() res = self.network._get_networks_by_uuids(self.context, requested_networks) self.assertEqual(res[0]['id'], 1) self.assertEqual(res[1]['id'], 0) @mock.patch('nova.objects.instance.Instance.get_by_uuid') @mock.patch('nova.objects.quotas.Quotas.reserve') @mock.patch('nova.objects.quotas.ids_from_instance') def test_allocate_calculates_quota_auth(self, util_method, reserve, get_by_uuid): inst = instance_obj.Instance() get_by_uuid.return_value = inst reserve.side_effect = exception.OverQuota(overs='testing') util_method.return_value = ('foo', 'bar') self.assertRaises(exception.FixedIpLimitExceeded, self.network.allocate_fixed_ip, self.context, 123, None) util_method.assert_called_once_with(self.context, inst) @mock.patch('nova.objects.fixed_ip.FixedIP.get_by_address') @mock.patch('nova.objects.quotas.Quotas.reserve') @mock.patch('nova.objects.quotas.ids_from_instance') def test_deallocate_calculates_quota_auth(self, util_method, reserve, get_by_address): inst = instance_obj.Instance(uuid='fake-uuid') fip = fixed_ip_obj.FixedIP(instance_uuid='fake-uuid', virtual_interface_id=1) get_by_address.return_value = fip util_method.return_value = ('foo', 'bar') self.assertRaises(exception.InstanceNotFound, self.network.deallocate_fixed_ip, self.context, '1.2.3.4', instance=inst) util_method.assert_called_once_with(self.context, inst) class VlanNetworkTestCase(test.TestCase): def setUp(self): super(VlanNetworkTestCase, self).setUp() self.useFixture(test.SampleNetworks()) self.flags(use_local=True, group='conductor') self.network = network_manager.VlanManager(host=HOST) self.network.db = db self.context = context.RequestContext('testuser', 'testproject', is_admin=False) self.context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) def test_quota_driver_type(self): self.assertEqual(quotas_obj.QuotasNoOp, self.network.quotas_cls) def test_vpn_allocate_fixed_ip(self): self.mox.StubOutWithMock(db, 'fixed_ip_associate') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.1') db.fixed_ip_associate(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), network_id=mox.IgnoreArg(), reserved=True).AndReturn(fixed) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(fake_inst(display_name=HOST, uuid=FAKEUUID)) self.mox.ReplayAll() network = network_obj.Network._from_db_object( self.context, network_obj.Network(), dict(test_network.fake_network, **networks[0])) network.vpn_private_address = '192.168.0.2' self.network.allocate_fixed_ip(self.context, FAKEUUID, network, vpn=True) def test_vpn_allocate_fixed_ip_no_network_id(self): network = dict(networks[0]) network['vpn_private_address'] = '192.168.0.2' network['id'] = None instance = db.instance_create(self.context, {}) self.assertRaises(exception.FixedIpNotFoundForNetwork, self.network.allocate_fixed_ip, self.context_admin, instance['uuid'], network, vpn=True) def test_allocate_fixed_ip(self): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.1') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(fake_inst(display_name=HOST, uuid=FAKEUUID)) self.mox.ReplayAll() network = network_obj.Network._from_db_object( self.context, network_obj.Network(), dict(test_network.fake_network, **networks[0])) network.vpn_private_address = '192.168.0.2' self.network.allocate_fixed_ip(self.context, FAKEUUID, network) def test_create_networks_too_big(self): self.assertRaises(ValueError, self.network.create_networks, None, num_networks=4094, vlan_start=1) def test_create_networks_too_many(self): self.assertRaises(ValueError, self.network.create_networks, None, num_networks=100, vlan_start=1, cidr='192.168.0.1/24', network_size=100) def test_duplicate_vlan_raises(self): self.assertRaises(exception.DuplicateVlan, self.network.create_networks, self.context_admin, label="fake", num_networks=1, vlan=100, cidr='192.168.0.1/24', network_size=100) def test_vlan_start(self): networks = self.network.create_networks( self.context_admin, label="fake", num_networks=1, vlan_start=100, cidr='192.168.3.1/24', network_size=100) self.assertEqual(networks[0]["vlan"], 102) def test_vlan_start_multiple(self): networks = self.network.create_networks( self.context_admin, label="fake", num_networks=2, vlan_start=100, cidr='192.168.3.1/24', network_size=100) self.assertEqual(networks[0]["vlan"], 102) self.assertEqual(networks[1]["vlan"], 103) def test_vlan_start_used(self): networks = self.network.create_networks( self.context_admin, label="fake", num_networks=1, vlan_start=99, cidr='192.168.3.1/24', network_size=100) self.assertEqual(networks[0]["vlan"], 102) @mock.patch('nova.db.network_get') def test_validate_networks(self, net_get): def network_get(_context, network_id, project_only='allow_none'): return dict(test_network.fake_network, **networks[network_id]) net_get.side_effect = network_get self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') self.mox.StubOutWithMock(db, "fixed_ip_get_by_address") requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) db_fixed1 = dict(test_fixed_ip.fake_fixed_ip, network_id=networks[1]['id'], network=dict(test_network.fake_network, **networks[1]), instance_uuid=None) db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(db_fixed1) db_fixed2 = dict(test_fixed_ip.fake_fixed_ip, network_id=networks[0]['id'], network=dict(test_network.fake_network, **networks[0]), instance_uuid=None) db.fixed_ip_get_by_address(mox.IgnoreArg(), mox.IgnoreArg(), columns_to_join=mox.IgnoreArg() ).AndReturn(db_fixed2) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_none_requested_networks(self): self.network.validate_networks(self.context, None) def test_validate_networks_empty_requested_networks(self): requested_networks = [] self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_validate_networks_invalid_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', '192.168.1.100.1'), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '192.168.0.100.1')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_empty_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', ''), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', '')] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.assertRaises(exception.FixedIpInvalid, self.network.validate_networks, self.context, requested_networks) def test_validate_networks_none_fixed_ip(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = [('bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', None), ('aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa', None)] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() self.network.validate_networks(self.context, requested_networks) def test_floating_ip_owned_by_project(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id=None) self.assertRaises(exception.NotAuthorized, self.network._floating_ip_owned_by_project, ctxt, floating_ip) floating_ip = floating_ip_obj.FloatingIP( address='10.0.0.1', project_id=ctxt.project_id + '1') self.assertRaises(exception.NotAuthorized, self.network._floating_ip_owned_by_project, ctxt, floating_ip) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id=ctxt.project_id) self.network._floating_ip_owned_by_project(ctxt, floating_ip) ctxt = context.RequestContext(None, None, is_admin=True) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id=None) self.network._floating_ip_owned_by_project(ctxt, floating_ip) floating_ip = floating_ip_obj.FloatingIP(address='10.0.0.1', project_id='testproject') self.network._floating_ip_owned_by_project(ctxt, floating_ip) def test_allocate_floating_ip(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake_allocate_address(*args, **kwargs): return {'address': '10.0.0.1', 'project_id': ctxt.project_id} self.stubs.Set(self.network.db, 'floating_ip_allocate_address', fake_allocate_address) self.network.allocate_floating_ip(ctxt, ctxt.project_id) def test_deallocate_floating_ip(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake1(*args, **kwargs): pass def fake2(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', fixed_ip_id=1) def fake3(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', fixed_ip_id=None, project_id=ctxt.project_id) self.stubs.Set(self.network.db, 'floating_ip_deallocate', fake1) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake2) self.assertRaises(exception.FloatingIpAssociated, self.network.deallocate_floating_ip, ctxt, mox.IgnoreArg()) self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake3) self.network.deallocate_floating_ip(ctxt, ctxt.project_id) @mock.patch('nova.db.fixed_ip_get') def test_associate_floating_ip(self, fixed_get): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake1(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', network=test_network.fake_network) def fake2(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=1) # floating ip that isn't associated def fake3(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=None) def fake4(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=123) def fake4_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='jibberjabber') def fake5(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=1234) def fake5_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='testhost') def fake6(ctxt, method, **kwargs): self.local = False def fake7(*args, **kwargs): self.local = True def fake8(*args, **kwargs): raise processutils.ProcessExecutionError('', 'Cannot find device "em0"\n') def fake9(*args, **kwargs): raise test.TestingException() self.stubs.Set(self.network.db, 'floating_ip_fixed_ip_associate', fake1) self.stubs.Set(self.network.db, 'floating_ip_disassociate', fake1) self.stubs.Set(self.network.driver, 'ensure_floating_forward', fake8) self.assertRaises(exception.NoFloatingIpInterface, self.network._associate_floating_ip, ctxt, '1.2.3.4', '1.2.3.5', mox.IgnoreArg(), mox.IgnoreArg()) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) # raises because floating_ip is already associated to a fixed_ip self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake2) self.stubs.Set(self.network, 'disassociate_floating_ip', fake9) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address='1.2.3.4', instance_uuid='fake_uuid', network=test_network.fake_network) # doesn't raise because we exit early if the address is the same self.network.associate_floating_ip(ctxt, mox.IgnoreArg(), '1.2.3.4') self.assertRaises(test.TestingException, self.network.associate_floating_ip, ctxt, mox.IgnoreArg(), 'new') self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake3) self.local = True self.stubs.Set(self.network.db, 'fixed_ip_get_by_address', fake4) self.stubs.Set(self.network.db, 'network_get', fake4_network) self.stubs.Set(self.network.network_rpcapi.client, 'prepare', lambda **kw: self.network.network_rpcapi.client) self.stubs.Set(self.network.network_rpcapi.client, 'call', fake6) self.network.associate_floating_ip(ctxt, mox.IgnoreArg(), mox.IgnoreArg()) self.assertFalse(self.local) self.local = False self.stubs.Set(self.network.db, 'fixed_ip_get_by_address', fake5) self.stubs.Set(self.network.db, 'network_get', fake5_network) self.stubs.Set(self.network, '_associate_floating_ip', fake7) self.network.associate_floating_ip(ctxt, mox.IgnoreArg(), mox.IgnoreArg()) self.assertTrue(self.local) def test_add_floating_ip_nat_before_bind(self): # can be made to work, it would be a better way to test this. # # self.mox.StubOutWithMock(self.network.driver, # 'ensure_floating_forward') # self.mox.StubOutWithMock(self.network.driver, 'bind_floating_ip') # # self.network.driver.ensure_floating_forward(mox.IgnoreArg(), # mox.IgnoreArg(), # mox.IgnoreArg(), # mox.IgnoreArg()) # self.network.driver.bind_floating_ip(mox.IgnoreArg(), # mox.IgnoreArg()) # self.mox.ReplayAll() nat_called = [False] def fake_nat(*args, **kwargs): nat_called[0] = True def fake_bind(*args, **kwargs): self.assertTrue(nat_called[0]) self.stubs.Set(self.network.driver, 'ensure_floating_forward', fake_nat) self.stubs.Set(self.network.driver, 'bind_floating_ip', fake_bind) self.network.l3driver.add_floating_ip('fakefloat', 'fakefixed', 'fakeiface', 'fakenet') @mock.patch('nova.db.floating_ip_get_all_by_host') @mock.patch('nova.db.fixed_ip_get') def _test_floating_ip_init_host(self, fixed_get, floating_get, public_interface, expected_arg): floating_get.return_value = [ dict(test_floating_ip.fake_floating_ip, interface='foo', address='1.2.3.4'), dict(test_floating_ip.fake_floating_ip, interface='fakeiface', address='1.2.3.5', fixed_ip_id=1), dict(test_floating_ip.fake_floating_ip, interface='bar', address='1.2.3.6', fixed_ip_id=2), ] def fixed_ip_get(_context, fixed_ip_id, get_network): if fixed_ip_id == 1: return dict(test_fixed_ip.fake_fixed_ip, address='1.2.3.4', network=test_network.fake_network) raise exception.FixedIpNotFound(id=fixed_ip_id) fixed_get.side_effect = fixed_ip_get self.mox.StubOutWithMock(self.network.l3driver, 'add_floating_ip') self.flags(public_interface=public_interface) self.network.l3driver.add_floating_ip(netaddr.IPAddress('1.2.3.5'), netaddr.IPAddress('1.2.3.4'), expected_arg, mox.IsA(network_obj.Network)) self.mox.ReplayAll() self.network.init_host_floating_ips() self.mox.UnsetStubs() self.mox.VerifyAll() def test_floating_ip_init_host_without_public_interface(self): self._test_floating_ip_init_host(public_interface=False, expected_arg='fakeiface') def test_floating_ip_init_host_with_public_interface(self): self._test_floating_ip_init_host(public_interface='fooiface', expected_arg='fooiface') def test_disassociate_floating_ip(self): ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) def fake1(*args, **kwargs): pass # floating ip that isn't associated def fake2(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=None) def fake3(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=1, project_id=ctxt.project_id) def fake4(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=123) def fake4_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='jibberjabber') def fake5(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, address='10.0.0.1', pool='nova', instance_uuid=FAKEUUID, interface='eth0', network_id=1234) def fake5_network(*args, **kwargs): return dict(test_network.fake_network, multi_host=False, host='testhost') def fake6(ctxt, method, **kwargs): self.local = False def fake7(*args, **kwargs): self.local = True def fake8(*args, **kwargs): return dict(test_floating_ip.fake_floating_ip, address='10.0.0.1', pool='nova', interface='eth0', fixed_ip_id=1, auto_assigned=True, project_id=ctxt.project_id) self.stubs.Set(self.network, '_floating_ip_owned_by_project', fake1) self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake2) self.assertRaises(exception.FloatingIpNotAssociated, self.network.disassociate_floating_ip, ctxt, mox.IgnoreArg()) self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake3) self.local = True self.stubs.Set(self.network.db, 'fixed_ip_get', fake4) self.stubs.Set(self.network.db, 'network_get', fake4_network) self.stubs.Set(self.network.network_rpcapi.client, 'prepare', lambda **kw: self.network.network_rpcapi.client) self.stubs.Set(self.network.network_rpcapi.client, 'call', fake6) self.network.disassociate_floating_ip(ctxt, mox.IgnoreArg()) self.assertFalse(self.local) self.local = False self.stubs.Set(self.network.db, 'fixed_ip_get', fake5) self.stubs.Set(self.network.db, 'network_get', fake5_network) self.stubs.Set(self.network, '_disassociate_floating_ip', fake7) self.network.disassociate_floating_ip(ctxt, mox.IgnoreArg()) self.assertTrue(self.local) self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake8) self.assertRaises(exception.CannotDisassociateAutoAssignedFloatingIP, self.network.disassociate_floating_ip, ctxt, mox.IgnoreArg()) def test_add_fixed_ip_instance_without_vpn_requested_networks(self): self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', lambda *a, **kw: None) self.mox.StubOutWithMock(db, 'network_get') self.mox.StubOutWithMock(db, 'fixed_ip_associate_pool') self.mox.StubOutWithMock(db, 'virtual_interface_get_by_instance_and_network') self.mox.StubOutWithMock(db, 'fixed_ip_update') self.mox.StubOutWithMock(db, 'instance_get_by_uuid') self.mox.StubOutWithMock(self.network, 'get_instance_nw_info') db.fixed_ip_update(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) db.virtual_interface_get_by_instance_and_network(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn(vifs[0]) fixed = dict(test_fixed_ip.fake_fixed_ip, address='192.168.0.101') db.fixed_ip_associate_pool(mox.IgnoreArg(), mox.IgnoreArg(), instance_uuid=mox.IgnoreArg(), host=None).AndReturn(fixed) db.network_get(mox.IgnoreArg(), mox.IgnoreArg(), project_only=mox.IgnoreArg() ).AndReturn(dict(test_network.fake_network, **networks[0])) db.instance_get_by_uuid(mox.IgnoreArg(), mox.IgnoreArg(), use_slave=False, columns_to_join=['info_cache', 'security_groups'] ).AndReturn(fake_inst(display_name=HOST, uuid=FAKEUUID)) self.network.get_instance_nw_info(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()) self.mox.ReplayAll() self.network.add_fixed_ip_to_instance(self.context, FAKEUUID, HOST, networks[0]['id']) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') def test_ip_association_and_allocation_of_other_project(self, net_get, fixed_get): net_get.return_value = dict(test_network.fake_network, **networks[1]) context1 = context.RequestContext('user', 'project1') context2 = context.RequestContext('user', 'project2') float_ip = db.floating_ip_create(context1.elevated(), {'address': '1.2.3.4', 'project_id': context1.project_id}) float_addr = float_ip['address'] instance = db.instance_create(context1, {'project_id': 'project1'}) fix_addr = db.fixed_ip_associate_pool(context1.elevated(), 1, instance['uuid']).address fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr, instance_uuid=instance.uuid, network=dict(test_network.fake_network, **networks[1])) self.assertRaises(exception.NotAuthorized, self.network.associate_floating_ip, context2, float_addr, fix_addr) self.assertRaises(exception.NotAuthorized, self.network.deallocate_floating_ip, context2, float_addr) self.network.associate_floating_ip(context1, float_addr, fix_addr) self.assertRaises(exception.NotAuthorized, self.network.disassociate_floating_ip, context2, float_addr) self.network.disassociate_floating_ip(context1, float_addr) self.network.deallocate_floating_ip(context1, float_addr) self.network.deallocate_fixed_ip(context1, fix_addr, 'fake') db.floating_ip_destroy(context1.elevated(), float_addr) db.fixed_ip_disassociate(context1.elevated(), fix_addr) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ip_update') def test_deallocate_fixed(self, fixed_update, net_get, fixed_get): net_get.return_value = dict(test_network.fake_network, **networks[1]) def vif_get(_context, _vif_id): return vifs[0] self.stubs.Set(db, 'virtual_interface_get', vif_get) context1 = context.RequestContext('user', 'project1') instance = db.instance_create(context1, {'project_id': 'project1'}) elevated = context1.elevated() fix_addr = db.fixed_ip_associate_pool(elevated, 1, instance['uuid']) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr.address, instance_uuid=instance.uuid, allocated=True, virtual_interface_id=3, network=dict(test_network.fake_network, **networks[1])) self.flags(force_dhcp_release=True) self.mox.StubOutWithMock(linux_net, 'release_dhcp') linux_net.release_dhcp(networks[1]['bridge'], fix_addr.address, 'DE:AD:BE:EF:00:00') self.mox.ReplayAll() self.network.deallocate_fixed_ip(context1, fix_addr.address, 'fake') fixed_update.assert_called_once_with(context1, fix_addr.address, {'allocated': False, 'virtual_interface_id': None}) def test_deallocate_fixed_deleted(self): def teardown_network_on_host(_context, network): if network['id'] == 0: raise test.TestingException() self.stubs.Set(self.network, '_teardown_network_on_host', teardown_network_on_host) context1 = context.RequestContext('user', 'project1') elevated = context1.elevated() instance = db.instance_create(context1, {'project_id': 'project1'}) network = db.network_create_safe(elevated, networks[0]) _fix_addr = db.fixed_ip_associate_pool(elevated, 1, instance['uuid']) fix_addr = _fix_addr.address db.fixed_ip_update(elevated, fix_addr, {'deleted': 1}) elevated.read_deleted = 'yes' delfixed = db.fixed_ip_get_by_address(elevated, fix_addr) values = {'address': fix_addr, 'network_id': network.id, 'instance_uuid': delfixed['instance_uuid']} db.fixed_ip_create(elevated, values) elevated.read_deleted = 'no' elevated.read_deleted = 'yes' deallocate = self.network.deallocate_fixed_ip self.assertRaises(test.TestingException, deallocate, context1, fix_addr, 'fake') @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ip_update') def test_deallocate_fixed_no_vif(self, fixed_update, net_get, fixed_get): net_get.return_value = dict(test_network.fake_network, **networks[1]) def vif_get(_context, _vif_id): return None self.stubs.Set(db, 'virtual_interface_get', vif_get) context1 = context.RequestContext('user', 'project1') instance = db.instance_create(context1, {'project_id': 'project1'}) elevated = context1.elevated() fix_addr = db.fixed_ip_associate_pool(elevated, 1, instance['uuid']) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr.address, allocated=True, virtual_interface_id=3, instance_uuid=instance.uuid, network=dict(test_network.fake_network, **networks[1])) self.flags(force_dhcp_release=True) fixed_update.return_value = fixed_get.return_value self.network.deallocate_fixed_ip(context1, fix_addr.address, 'fake') fixed_update.assert_called_once_with(context1, fix_addr.address, {'allocated': False, 'virtual_interface_id': None}) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ip_update') def test_fixed_ip_cleanup_fail(self, fixed_update, net_get, fixed_get): # Verify IP is not deallocated if the security group refresh fails. net_get.return_value = dict(test_network.fake_network, **networks[1]) context1 = context.RequestContext('user', 'project1') instance = db.instance_create(context1, {'project_id': 'project1'}) elevated = context1.elevated() fix_addr = fixed_ip_obj.FixedIP.associate_pool(elevated, 1, instance['uuid']) def fake_refresh(instance_uuid): raise test.TestingException() self.stubs.Set(self.network, '_do_trigger_security_group_members_refresh_for_instance', fake_refresh) fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, address=fix_addr.address, allocated=True, virtual_interface_id=3, instance_uuid=instance.uuid, network=dict(test_network.fake_network, **networks[1])) self.assertRaises(test.TestingException, self.network.deallocate_fixed_ip, context1, str(fix_addr.address), 'fake') self.assertFalse(fixed_update.called) def test_get_networks_by_uuids_ordering(self): self.mox.StubOutWithMock(db, 'network_get_all_by_uuids') requested_networks = ['bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb', 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'] db.network_get_all_by_uuids(mox.IgnoreArg(), mox.IgnoreArg(), mox.IgnoreArg()).AndReturn( [dict(test_network.fake_network, **net) for net in networks]) self.mox.ReplayAll() res = self.network._get_networks_by_uuids(self.context, requested_networks) self.assertEqual(res[0]['id'], 1) self.assertEqual(res[1]['id'], 0) class _TestDomainObject(object): def __init__(self, **kwargs): for k, v in kwargs.iteritems(): self.__setattr__(k, v) class FakeNetwork(object): def __init__(self, **kwargs): self.vlan = None for k, v in kwargs.iteritems(): self.__setattr__(k, v) def __getitem__(self, item): return getattr(self, item) class CommonNetworkTestCase(test.TestCase): def setUp(self): super(CommonNetworkTestCase, self).setUp() self.context = context.RequestContext('fake', 'fake') self.flags(ipv6_backend='rfc2462') self.flags(use_local=True, group='conductor') ipv6.reset_backend() def test_validate_instance_zone_for_dns_domain(self): domain = 'example.com' az = 'test_az' domains = { domain: _TestDomainObject( domain=domain, availability_zone=az)} def dnsdomain_get(context, instance_domain): return domains.get(instance_domain) self.stubs.Set(db, 'dnsdomain_get', dnsdomain_get) fake_instance = {'uuid': FAKEUUID, 'availability_zone': az} manager = network_manager.NetworkManager() res = manager._validate_instance_zone_for_dns_domain(self.context, fake_instance) self.assertTrue(res) def fake_create_fixed_ips(self, context, network_id, fixed_cidr=None): return None def test_get_instance_nw_info_client_exceptions(self): manager = network_manager.NetworkManager() self.mox.StubOutWithMock(manager.db, 'virtual_interface_get_by_instance') manager.db.virtual_interface_get_by_instance( self.context, FAKEUUID, use_slave=False).AndRaise(exception.InstanceNotFound( instance_id=FAKEUUID)) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, manager.get_instance_nw_info, self.context, FAKEUUID, 'fake_rxtx_factor', HOST) @mock.patch('nova.db.instance_get') @mock.patch('nova.db.fixed_ip_get_by_instance') def test_deallocate_for_instance_passes_host_info(self, fixed_get, instance_get): manager = fake_network.FakeNetworkManager() db = manager.db instance_get.return_value = fake_inst(uuid='ignoreduuid') db.virtual_interface_delete_by_instance = lambda _x, _y: None ctx = context.RequestContext('igonre', 'igonre') fixed_get.return_value = [dict(test_fixed_ip.fake_fixed_ip, address='1.2.3.4', network_id=123)] manager.deallocate_for_instance( ctx, instance=instance_obj.Instance._from_db_object(self.context, instance_obj.Instance(), instance_get.return_value)) self.assertEqual([ (ctx, '1.2.3.4', 'fake-host') ], manager.deallocate_fixed_ip_calls) @mock.patch('nova.db.fixed_ip_get_by_instance') @mock.patch('nova.db.fixed_ip_disassociate') def test_remove_fixed_ip_from_instance(self, disassociate, get): manager = fake_network.FakeNetworkManager() get.return_value = [ dict(test_fixed_ip.fake_fixed_ip, **x) for x in manager.db.fixed_ip_get_by_instance(None, FAKEUUID)] manager.remove_fixed_ip_from_instance(self.context, FAKEUUID, HOST, '10.0.0.1') self.assertEqual(manager.deallocate_called, '10.0.0.1') disassociate.assert_called_once_with(self.context, '10.0.0.1') @mock.patch('nova.db.fixed_ip_get_by_instance') def test_remove_fixed_ip_from_instance_bad_input(self, get): manager = fake_network.FakeNetworkManager() get.return_value = [] self.assertRaises(exception.FixedIpNotFoundForSpecificInstance, manager.remove_fixed_ip_from_instance, self.context, 99, HOST, 'bad input') def test_validate_cidrs(self): manager = fake_network.FakeNetworkManager() nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) self.assertEqual(1, len(nets)) cidrs = [str(net['cidr']) for net in nets] self.assertIn('192.168.0.0/24', cidrs) def test_validate_cidrs_split_exact_in_half(self): manager = fake_network.FakeNetworkManager() nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/24', False, 2, 128, None, None, None, None, None) self.assertEqual(2, len(nets)) cidrs = [str(net['cidr']) for net in nets] self.assertIn('192.168.0.0/25', cidrs) self.assertIn('192.168.0.128/25', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_cidr_in_use_middle_of_range(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.0/24')] nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/16', False, 4, 256, None, None, None, None, None) self.assertEqual(4, len(nets)) cidrs = [str(net['cidr']) for net in nets] exp_cidrs = ['192.168.0.0/24', '192.168.1.0/24', '192.168.3.0/24', '192.168.4.0/24'] for exp_cidr in exp_cidrs: self.assertIn(exp_cidr, cidrs) self.assertNotIn('192.168.2.0/24', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_smaller_subnet_in_use(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.9/25')] # CidrConflict: requested cidr (192.168.2.0/24) conflicts with # existing smaller cidr args = (self.context.elevated(), 'fake', '192.168.2.0/24', False, 1, 256, None, None, None, None, None) self.assertRaises(exception.CidrConflict, manager.create_networks, *args) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_smaller_cidr_in_use(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.0/25')] nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/16', False, 4, 256, None, None, None, None, None) self.assertEqual(4, len(nets)) cidrs = [str(net['cidr']) for net in nets] exp_cidrs = ['192.168.0.0/24', '192.168.1.0/24', '192.168.3.0/24', '192.168.4.0/24'] for exp_cidr in exp_cidrs: self.assertIn(exp_cidr, cidrs) self.assertNotIn('192.168.2.0/24', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_smaller_cidr_in_use2(self, get_all): manager = fake_network.FakeNetworkManager() self.mox.StubOutWithMock(manager.db, 'network_get_all') get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.2.9/29')] nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.2.0/24', False, 3, 32, None, None, None, None, None) self.assertEqual(3, len(nets)) cidrs = [str(net['cidr']) for net in nets] exp_cidrs = ['192.168.2.32/27', '192.168.2.64/27', '192.168.2.96/27'] for exp_cidr in exp_cidrs: self.assertIn(exp_cidr, cidrs) self.assertNotIn('192.168.2.0/27', cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_split_all_in_use(self, get_all): manager = fake_network.FakeNetworkManager() in_use = [dict(test_network.fake_network, **values) for values in [{'id': 1, 'cidr': '192.168.2.9/29'}, {'id': 2, 'cidr': '192.168.2.64/26'}, {'id': 3, 'cidr': '192.168.2.128/26'}]] get_all.return_value = in_use args = (self.context.elevated(), 'fake', '192.168.2.0/24', False, 3, 64, None, None, None, None, None) # CidrConflict: Not enough subnets avail to satisfy requested num_ # networks - some subnets in requested range already # in use self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_validate_cidrs_one_in_use(self): manager = fake_network.FakeNetworkManager() args = (None, 'fake', '192.168.0.0/24', False, 2, 256, None, None, None, None, None) # ValueError: network_size * num_networks exceeds cidr size self.assertRaises(ValueError, manager.create_networks, *args) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_already_used(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, cidr='192.168.0.0/24')] # CidrConflict: cidr already in use args = (self.context.elevated(), 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_validate_cidrs_too_many(self): manager = fake_network.FakeNetworkManager() args = (None, 'fake', '192.168.0.0/24', False, 200, 256, None, None, None, None, None) # ValueError: Not enough subnets avail to satisfy requested # num_networks self.assertRaises(ValueError, manager.create_networks, *args) def test_validate_cidrs_split_partial(self): manager = fake_network.FakeNetworkManager() nets = manager.create_networks(self.context.elevated(), 'fake', '192.168.0.0/16', False, 2, 256, None, None, None, None, None) returned_cidrs = [str(net['cidr']) for net in nets] self.assertIn('192.168.0.0/24', returned_cidrs) self.assertIn('192.168.1.0/24', returned_cidrs) @mock.patch('nova.db.network_get_all') def test_validate_cidrs_conflict_existing_supernet(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.0.0/8')] args = (self.context.elevated(), 'fake', '192.168.0.0/24', False, 1, 256, None, None, None, None, None) # CidrConflict: requested cidr (192.168.0.0/24) conflicts # with existing supernet self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_create_networks(self): cidr = '192.168.0.0/24' manager = fake_network.FakeNetworkManager() self.stubs.Set(manager, '_create_fixed_ips', self.fake_create_fixed_ips) args = [self.context.elevated(), 'foo', cidr, None, 1, 256, 'fd00::/48', None, None, None, None, None] self.assertTrue(manager.create_networks(*args)) @mock.patch('nova.db.network_get_all') def test_create_networks_cidr_already_used(self, get_all): manager = fake_network.FakeNetworkManager() get_all.return_value = [dict(test_network.fake_network, id=1, cidr='192.168.0.0/24')] args = [self.context.elevated(), 'foo', '192.168.0.0/24', None, 1, 256, 'fd00::/48', None, None, None, None, None] self.assertRaises(exception.CidrConflict, manager.create_networks, *args) def test_create_networks_many(self): cidr = '192.168.0.0/16' manager = fake_network.FakeNetworkManager() self.stubs.Set(manager, '_create_fixed_ips', self.fake_create_fixed_ips) args = [self.context.elevated(), 'foo', cidr, None, 10, 256, 'fd00::/48', None, None, None, None, None] self.assertTrue(manager.create_networks(*args)) @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ips_by_virtual_interface') def test_get_instance_uuids_by_ip_regex(self, fixed_get, network_get): manager = fake_network.FakeNetworkManager(self.stubs) fixed_get.side_effect = manager.db.fixed_ips_by_virtual_interface _vifs = manager.db.virtual_interface_get_all(None) fake_context = context.RequestContext('user', 'project') network_get.return_value = dict(test_network.fake_network, **manager.db.network_get(None, 1)) # Greedy get eveything res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '.*'}) self.assertEqual(len(res), len(_vifs)) # Doesn't exist res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '10.0.0.1'}) self.assertFalse(res) res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '172.16.0.2'}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '173.16.0.2'}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[2]['instance_uuid']) res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '172.16.0.*'}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[0]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[1]['instance_uuid']) res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip': '17..16.0.2'}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[2]['instance_uuid']) @mock.patch('nova.db.network_get') def test_get_instance_uuids_by_ipv6_regex(self, network_get): manager = fake_network.FakeNetworkManager(self.stubs) _vifs = manager.db.virtual_interface_get_all(None) fake_context = context.RequestContext('user', 'project') def _network_get(context, network_id, **args): return dict(test_network.fake_network, **manager.db.network_get(context, network_id)) network_get.side_effect = _network_get res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '.*'}) self.assertEqual(len(res), len(_vifs)) res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '.*1034.*'}) self.assertFalse(res) # Get instance 1 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '2001:.*2'}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 2 ip6 = '2001:db8:69:1f:dead:beff:feff:ef03' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': ip6}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[2]['instance_uuid']) # Get instance 0 and 1 res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': '.*ef0[1,2]'}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[0]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[1]['instance_uuid']) # Get instance 1 and 2 ip6 = '2001:db8:69:1.:dead:beff:feff:ef0.' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'ip6': ip6}) self.assertTrue(res) self.assertEqual(len(res), 2) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) self.assertEqual(res[1]['instance_uuid'], _vifs[2]['instance_uuid']) @mock.patch('nova.db.network_get') @mock.patch('nova.db.fixed_ips_by_virtual_interface') def test_get_instance_uuids_by_ip(self, fixed_get, network_get): manager = fake_network.FakeNetworkManager(self.stubs) fixed_get.side_effect = manager.db.fixed_ips_by_virtual_interface _vifs = manager.db.virtual_interface_get_all(None) fake_context = context.RequestContext('user', 'project') network_get.return_value = dict(test_network.fake_network, **manager.db.network_get(None, 1)) # No regex for you! res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': '.*'}) self.assertFalse(res) # Doesn't exist ip = '10.0.0.1' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': ip}) self.assertFalse(res) ip = '172.16.0.2' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': ip}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[1]['instance_uuid']) ip = '173.16.0.2' res = manager.get_instance_uuids_by_ip_filter(fake_context, {'fixed_ip': ip}) self.assertTrue(res) self.assertEqual(len(res), 1) self.assertEqual(res[0]['instance_uuid'], _vifs[2]['instance_uuid']) @mock.patch('nova.db.network_get_by_uuid') def test_get_network(self, get): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get.return_value = dict(test_network.fake_network, **networks[0]) uuid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' network = manager.get_network(fake_context, uuid) self.assertEqual(network['uuid'], uuid) @mock.patch('nova.db.network_get_by_uuid') def test_get_network_not_found(self, get): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get.side_effect = exception.NetworkNotFoundForUUID(uuid='foo') uuid = 'eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee' self.assertRaises(exception.NetworkNotFound, manager.get_network, fake_context, uuid) @mock.patch('nova.db.network_get_all') def test_get_all_networks(self, get_all): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get_all.return_value = [dict(test_network.fake_network, **net) for net in networks] output = manager.get_all_networks(fake_context) self.assertEqual(len(networks), 2) self.assertEqual(output[0]['uuid'], 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa') self.assertEqual(output[1]['uuid'], 'bbbbbbbb-bbbb-bbbb-bbbb-bbbbbbbbbbbb') @mock.patch('nova.db.network_get_by_uuid') @mock.patch('nova.db.network_disassociate') def test_disassociate_network(self, disassociate, get): manager = fake_network.FakeNetworkManager() disassociate.return_value = True fake_context = context.RequestContext('user', 'project') get.return_value = dict(test_network.fake_network, **networks[0]) uuid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' manager.disassociate_network(fake_context, uuid) @mock.patch('nova.db.network_get_by_uuid') def test_disassociate_network_not_found(self, get): manager = fake_network.FakeNetworkManager() fake_context = context.RequestContext('user', 'project') get.side_effect = exception.NetworkNotFoundForUUID(uuid='fake') uuid = 'eeeeeeee-eeee-eeee-eeee-eeeeeeeeeeee' self.assertRaises(exception.NetworkNotFound, manager.disassociate_network, fake_context, uuid) def _test_init_host_dynamic_fixed_range(self, net_manager): self.flags(fake_network=True, routing_source_ip='172.16.0.1', metadata_host='172.16.0.1', public_interface='eth1', dmz_cidr=['10.0.3.0/24']) binary_name = linux_net.get_binary_name() self.stubs.Set(linux_net.iptables_manager, '_apply', lambda: None) self.stubs.Set(floating_ips.FloatingIP, 'init_host_floating_ips', lambda *args: None) self.stubs.Set(net_manager.l3driver, 'initialize_gateway', lambda *args: None) self.mox.StubOutWithMock(db, 'network_get_all_by_host') fake_networks = [dict(test_network.fake_network, **n) for n in networks] db.network_get_all_by_host(mox.IgnoreArg(), mox.IgnoreArg() ).MultipleTimes().AndReturn(fake_networks) self.mox.ReplayAll() net_manager.init_host() # Get the iptables rules that got created current_lines = [] new_lines = linux_net.iptables_manager._modify_rules(current_lines, linux_net.iptables_manager.ipv4['nat'], table_name='nat') expected_lines = ['[0:0] -A %s-snat -s %s -d 0.0.0.0/0 ' '-j SNAT --to-source %s -o %s' % (binary_name, networks[0]['cidr'], CONF.routing_source_ip, CONF.public_interface), '[0:0] -A %s-POSTROUTING -s %s -d %s/32 -j ACCEPT' % (binary_name, networks[0]['cidr'], CONF.metadata_host), '[0:0] -A %s-POSTROUTING -s %s -d %s -j ACCEPT' % (binary_name, networks[0]['cidr'], CONF.dmz_cidr[0]), '[0:0] -A %s-POSTROUTING -s %s -d %s -m conntrack ! ' '--ctstate DNAT -j ACCEPT' % (binary_name, networks[0]['cidr'], networks[0]['cidr']), '[0:0] -A %s-snat -s %s -d 0.0.0.0/0 ' '-j SNAT --to-source %s -o %s' % (binary_name, networks[1]['cidr'], CONF.routing_source_ip, CONF.public_interface), '[0:0] -A %s-POSTROUTING -s %s -d %s/32 -j ACCEPT' % (binary_name, networks[1]['cidr'], CONF.metadata_host), '[0:0] -A %s-POSTROUTING -s %s -d %s -j ACCEPT' % (binary_name, networks[1]['cidr'], CONF.dmz_cidr[0]), '[0:0] -A %s-POSTROUTING -s %s -d %s -m conntrack ! ' '--ctstate DNAT -j ACCEPT' % (binary_name, networks[1]['cidr'], networks[1]['cidr'])] # Compare the expected rules against the actual ones for line in expected_lines: self.assertIn(line, new_lines) # Add an additional network and ensure the rules get configured new_network = {'id': 2, 'uuid': 'cccccccc-cccc-cccc-cccc-cccccccc', 'label': 'test2', 'injected': False, 'multi_host': False, 'cidr': '192.168.2.0/24', 'cidr_v6': '2001:dba::/64', 'gateway_v6': '2001:dba::1', 'netmask_v6': '64', 'netmask': '255.255.255.0', 'bridge': 'fa1', 'bridge_interface': 'fake_fa1', 'gateway': '192.168.2.1', 'broadcast': '192.168.2.255', 'dns1': '192.168.2.1', 'dns2': '192.168.2.2', 'vlan': None, 'host': HOST, 'project_id': 'fake_project', 'vpn_public_address': '192.168.2.2', 'vpn_public_port': '22', 'vpn_private_address': '10.0.0.2'} new_network_obj = network_obj.Network._from_db_object( self.context, network_obj.Network(), dict(test_network.fake_network, **new_network)) ctxt = context.get_admin_context() net_manager._setup_network_on_host(ctxt, new_network_obj) # Get the new iptables rules that got created from adding a new network current_lines = [] new_lines = linux_net.iptables_manager._modify_rules(current_lines, linux_net.iptables_manager.ipv4['nat'], table_name='nat') # Add the new expected rules to the old ones expected_lines += ['[0:0] -A %s-snat -s %s -d 0.0.0.0/0 ' '-j SNAT --to-source %s -o %s' % (binary_name, new_network['cidr'], CONF.routing_source_ip, CONF.public_interface), '[0:0] -A %s-POSTROUTING -s %s -d %s/32 -j ACCEPT' % (binary_name, new_network['cidr'], CONF.metadata_host), '[0:0] -A %s-POSTROUTING -s %s -d %s -j ACCEPT' % (binary_name, new_network['cidr'], CONF.dmz_cidr[0]), '[0:0] -A %s-POSTROUTING -s %s -d %s -m conntrack ' '! --ctstate DNAT -j ACCEPT' % (binary_name, new_network['cidr'], new_network['cidr'])] # Compare the expected rules (with new network) against the actual ones for line in expected_lines: self.assertIn(line, new_lines) def test_flatdhcpmanager_dynamic_fixed_range(self): # Set the network manager self.network = network_manager.FlatDHCPManager(host=HOST) self.network.db = db # Test new behavior: # CONF.fixed_range is not set, defaults to None # Determine networks to NAT based on lookup self._test_init_host_dynamic_fixed_range(self.network) def test_vlanmanager_dynamic_fixed_range(self): # Set the network manager self.network = network_manager.VlanManager(host=HOST) self.network.db = db # Test new behavior: # CONF.fixed_range is not set, defaults to None # Determine networks to NAT based on lookup self._test_init_host_dynamic_fixed_range(self.network) class TestRPCFixedManager(network_manager.RPCAllocateFixedIP, network_manager.NetworkManager): class RPCAllocateTestCase(test.TestCase): def setUp(self): super(RPCAllocateTestCase, self).setUp() self.flags(use_local=True, group='conductor') self.rpc_fixed = TestRPCFixedManager() self.context = context.RequestContext('fake', 'fake') def test_rpc_allocate(self): address = '10.10.10.10' def fake_allocate(*args, **kwargs): return address def fake_network_get(*args, **kwargs): return test_network.fake_network self.stubs.Set(self.rpc_fixed, 'allocate_fixed_ip', fake_allocate) self.stubs.Set(self.rpc_fixed.db, 'network_get', fake_network_get) rval = self.rpc_fixed._rpc_allocate_fixed_ip(self.context, 'fake_instance', 'fake_network') self.assertEqual(rval, address) class TestFloatingIPManager(floating_ips.FloatingIP, network_manager.NetworkManager): class AllocateTestCase(test.TestCase): def setUp(self): super(AllocateTestCase, self).setUp() self.useFixture(test.SampleNetworks()) self.conductor = self.start_service( 'conductor', manager=CONF.conductor.manager) self.compute = self.start_service('compute') self.network = self.start_service('network') self.user_id = 'fake' self.project_id = 'fake' self.context = context.RequestContext(self.user_id, self.project_id, is_admin=True) def test_allocate_for_instance(self): address = "10.10.10.10" self.flags(auto_assign_floating_ip=True) db.floating_ip_create(self.context, {'address': address, 'pool': 'nova'}) inst = instance_obj.Instance() inst.host = self.compute.host inst.display_name = HOST inst.instance_type_id = 1 inst.uuid = FAKEUUID inst.create(self.context) networks = db.network_get_all(self.context) for network in networks: db.network_update(self.context, network['id'], {'host': self.network.host}) project_id = self.context.project_id nw_info = self.network.allocate_for_instance(self.context, instance_id=inst['id'], instance_uuid=inst['uuid'], host=inst['host'], vpn=None, rxtx_factor=3, project_id=project_id, macs=None) self.assertEqual(1, len(nw_info)) fixed_ip = nw_info.fixed_ips()[0]['address'] self.assertTrue(utils.is_valid_ipv4(fixed_ip)) self.network.deallocate_for_instance(self.context, instance=inst) def test_allocate_for_instance_with_mac(self): available_macs = set(['ca:fe:de:ad:be:ef']) inst = db.instance_create(self.context, {'host': self.compute.host, 'display_name': HOST, 'instance_type_id': 1}) networks = db.network_get_all(self.context) for network in networks: db.network_update(self.context, network['id'], {'host': self.network.host}) project_id = self.context.project_id nw_info = self.network.allocate_for_instance(self.context, instance_id=inst['id'], instance_uuid=inst['uuid'], host=inst['host'], vpn=None, rxtx_factor=3, project_id=project_id, macs=available_macs) assigned_macs = [vif['address'] for vif in nw_info] self.assertEqual(1, len(assigned_macs)) self.assertEqual(available_macs.pop(), assigned_macs[0]) self.network.deallocate_for_instance(self.context, instance_id=inst['id'], host=self.network.host, project_id=project_id) def test_allocate_for_instance_not_enough_macs(self): available_macs = set() inst = db.instance_create(self.context, {'host': self.compute.host, 'display_name': HOST, 'instance_type_id': 1}) networks = db.network_get_all(self.context) for network in networks: db.network_update(self.context, network['id'], {'host': self.network.host}) project_id = self.context.project_id self.assertRaises(exception.VirtualInterfaceCreateException, self.network.allocate_for_instance, self.context, instance_id=inst['id'], instance_uuid=inst['uuid'], host=inst['host'], vpn=None, rxtx_factor=3, project_id=project_id, macs=available_macs) class FloatingIPTestCase(test.TestCase): def setUp(self): super(FloatingIPTestCase, self).setUp() self.tempdir = self.useFixture(fixtures.TempDir()).path self.flags(log_dir=self.tempdir) self.flags(use_local=True, group='conductor') self.network = TestFloatingIPManager() self.network.db = db self.project_id = 'testproject' self.context = context.RequestContext('testuser', self.project_id, is_admin=False) @mock.patch('nova.db.fixed_ip_get') @mock.patch('nova.db.network_get') @mock.patch('nova.db.instance_get_by_uuid') @mock.patch('nova.db.service_get_by_host_and_topic') @mock.patch('nova.db.floating_ip_get_by_address') def test_disassociate_floating_ip_multi_host_calls(self, floating_get, service_get, inst_get, net_get, fixed_get): floating_ip = dict(test_floating_ip.fake_floating_ip, fixed_ip_id=12) fixed_ip = dict(test_fixed_ip.fake_fixed_ip, network_id=None, instance_uuid='instance-uuid') network = dict(test_network.fake_network, multi_host=True) instance = dict(fake_instance.fake_db_instance(host='some-other-host')) ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) self.stubs.Set(self.network, '_floating_ip_owned_by_project', lambda _x, _y: True) floating_get.return_value = floating_ip fixed_get.return_value = fixed_ip net_get.return_value = network inst_get.return_value = instance service_get.return_value = test_service.fake_service self.stubs.Set(self.network.servicegroup_api, 'service_is_up', lambda _x: True) self.mox.StubOutWithMock( self.network.network_rpcapi, '_disassociate_floating_ip') self.network.network_rpcapi._disassociate_floating_ip( ctxt, 'fl_ip', mox.IgnoreArg(), 'some-other-host', 'instance-uuid') self.mox.ReplayAll() self.network.disassociate_floating_ip(ctxt, 'fl_ip', True) @mock.patch('nova.db.fixed_ip_get_by_address') @mock.patch('nova.db.network_get') @mock.patch('nova.db.instance_get_by_uuid') @mock.patch('nova.db.floating_ip_get_by_address') def test_associate_floating_ip_multi_host_calls(self, floating_get, inst_get, net_get, fixed_get): floating_ip = dict(test_floating_ip.fake_floating_ip, fixed_ip_id=None) fixed_ip = dict(test_fixed_ip.fake_fixed_ip, network_id=None, instance_uuid='instance-uuid') network = dict(test_network.fake_network, multi_host=True) instance = dict(fake_instance.fake_db_instance(host='some-other-host')) ctxt = context.RequestContext('testuser', 'testproject', is_admin=False) self.stubs.Set(self.network, '_floating_ip_owned_by_project', lambda _x, _y: True) floating_get.return_value = floating_ip fixed_get.return_value = fixed_ip net_get.return_value = network inst_get.return_value = instance self.mox.StubOutWithMock( self.network.network_rpcapi, '_associate_floating_ip') self.network.network_rpcapi._associate_floating_ip( ctxt, 'fl_ip', 'fix_ip', mox.IgnoreArg(), 'some-other-host', 'instance-uuid') self.mox.ReplayAll() self.network.associate_floating_ip(ctxt, 'fl_ip', 'fix_ip', True) def test_double_deallocation(self): instance_ref = db.instance_create(self.context, {"project_id": self.project_id}) # Run it twice to make it fault if it does not handle # instances without fixed networks # If this fails in either, it does not handle having no addresses self.network.deallocate_for_instance(self.context, instance_id=instance_ref['id']) self.network.deallocate_for_instance(self.context, instance_id=instance_ref['id']) def test_deallocation_deleted_instance(self): self.stubs.Set(self.network, '_teardown_network_on_host', lambda *args, **kwargs: None) instance = instance_obj.Instance() instance.project_id = self.project_id instance.deleted = True instance.create(self.context) network = db.network_create_safe(self.context.elevated(), { 'project_id': self.project_id, 'host': CONF.host, 'label': 'foo'}) fixed = db.fixed_ip_create(self.context, {'allocated': True, 'instance_uuid': instance.uuid, 'address': '10.1.1.1', 'network_id': network['id']}) db.floating_ip_create(self.context, { 'address': '10.10.10.10', 'instance_uuid': instance.uuid, 'fixed_ip_id': fixed['id'], 'project_id': self.project_id}) self.network.deallocate_for_instance(self.context, instance=instance) def test_deallocation_duplicate_floating_ip(self): self.stubs.Set(self.network, '_teardown_network_on_host', lambda *args, **kwargs: None) instance = instance_obj.Instance() instance.project_id = self.project_id instance.create(self.context) network = db.network_create_safe(self.context.elevated(), { 'project_id': self.project_id, 'host': CONF.host, 'label': 'foo'}) fixed = db.fixed_ip_create(self.context, {'allocated': True, 'instance_uuid': instance.uuid, 'address': '10.1.1.1', 'network_id': network['id']}) db.floating_ip_create(self.context, { 'address': '10.10.10.10', 'deleted': True}) db.floating_ip_create(self.context, { 'address': '10.10.10.10', 'instance_uuid': instance.uuid, 'fixed_ip_id': fixed['id'], 'project_id': self.project_id}) self.network.deallocate_for_instance(self.context, instance=instance) @mock.patch('nova.db.fixed_ip_get') @mock.patch('nova.db.floating_ip_get_by_address') @mock.patch('nova.db.floating_ip_update') def test_migrate_instance_start(self, floating_update, floating_get, fixed_get): called = {'count': 0} def fake_floating_ip_get_by_address(context, address): return dict(test_floating_ip.fake_floating_ip, address=address, fixed_ip_id=0) def fake_is_stale_floating_ip_address(context, floating_ip): return str(floating_ip.address) == '172.24.4.23' floating_get.side_effect = fake_floating_ip_get_by_address fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, instance_uuid='fake_uuid', address='10.0.0.2', network=test_network.fake_network) floating_update.return_value = fake_floating_ip_get_by_address( None, '1.2.3.4') def fake_remove_floating_ip(floating_addr, fixed_addr, interface, network): called['count'] += 1 def fake_clean_conntrack(fixed_ip): if not str(fixed_ip) == "10.0.0.2": raise exception.FixedIpInvalid(address=fixed_ip) self.stubs.Set(self.network, '_is_stale_floating_ip_address', fake_is_stale_floating_ip_address) self.stubs.Set(self.network.l3driver, 'remove_floating_ip', fake_remove_floating_ip) self.stubs.Set(self.network.l3driver, 'clean_conntrack', fake_clean_conntrack) self.mox.ReplayAll() addresses = ['172.24.4.23', '172.24.4.24', '172.24.4.25'] self.network.migrate_instance_start(self.context, instance_uuid=FAKEUUID, floating_addresses=addresses, rxtx_factor=3, project_id=self.project_id, source='fake_source', dest='fake_dest') self.assertEqual(called['count'], 2) @mock.patch('nova.db.fixed_ip_get') @mock.patch('nova.db.floating_ip_update') def test_migrate_instance_finish(self, floating_update, fixed_get): called = {'count': 0} def fake_floating_ip_get_by_address(context, address): return dict(test_floating_ip.fake_floating_ip, address=address, fixed_ip_id=0) def fake_is_stale_floating_ip_address(context, floating_ip): return str(floating_ip.address) == '172.24.4.23' fixed_get.return_value = dict(test_fixed_ip.fake_fixed_ip, instance_uuid='fake_uuid', address='10.0.0.2', network=test_network.fake_network) floating_update.return_value = fake_floating_ip_get_by_address( None, '1.2.3.4') def fake_add_floating_ip(floating_addr, fixed_addr, interface, network): called['count'] += 1 self.stubs.Set(self.network.db, 'floating_ip_get_by_address', fake_floating_ip_get_by_address) self.stubs.Set(self.network, '_is_stale_floating_ip_address', fake_is_stale_floating_ip_address) self.stubs.Set(self.network.l3driver, 'add_floating_ip', fake_add_floating_ip) self.mox.ReplayAll() addresses = ['172.24.4.23', '172.24.4.24', '172.24.4.25'] self.network.migrate_instance_finish(self.context, instance_uuid=FAKEUUID, floating_addresses=addresses, host='fake_dest', rxtx_factor=3, project_id=self.project_id, source='fake_source') self.assertEqual(called['count'], 2) def test_floating_dns_create_conflict(self): zone = "example.org" address1 = "10.10.10.11" name1 = "foo" self.network.add_dns_entry(self.context, address1, name1, "A", zone) self.assertRaises(exception.FloatingIpDNSExists, self.network.add_dns_entry, self.context, address1, name1, "A", zone) def test_floating_create_and_get(self): zone = "example.org" address1 = "10.10.10.11" name1 = "foo" name2 = "bar" entries = self.network.get_dns_entries_by_address(self.context, address1, zone) self.assertFalse(entries) self.network.add_dns_entry(self.context, address1, name1, "A", zone) self.network.add_dns_entry(self.context, address1, name2, "A", zone) entries = self.network.get_dns_entries_by_address(self.context, address1, zone) self.assertEqual(len(entries), 2) self.assertEqual(entries[0], name1) self.assertEqual(entries[1], name2) entries = self.network.get_dns_entries_by_name(self.context, name1, zone) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], address1) def test_floating_dns_delete(self): zone = "example.org" address1 = "10.10.10.11" name1 = "foo" name2 = "bar" self.network.add_dns_entry(self.context, address1, name1, "A", zone) self.network.add_dns_entry(self.context, address1, name2, "A", zone) self.network.delete_dns_entry(self.context, name1, zone) entries = self.network.get_dns_entries_by_address(self.context, address1, zone) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], name2) self.assertRaises(exception.NotFound, self.network.delete_dns_entry, self.context, name1, zone) def test_floating_dns_domains_public(self): zone1 = "testzone" domain1 = "example.org" domain2 = "example.com" address1 = '10.10.10.10' entryname = 'testentry' context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) self.assertRaises(exception.AdminRequired, self.network.create_public_dns_domain, self.context, domain1, zone1) self.network.create_public_dns_domain(context_admin, domain1, 'testproject') self.network.create_public_dns_domain(context_admin, domain2, 'fakeproject') domains = self.network.get_dns_domains(self.context) self.assertEqual(len(domains), 2) self.assertEqual(domains[0]['domain'], domain1) self.assertEqual(domains[1]['domain'], domain2) self.assertEqual(domains[0]['project'], 'testproject') self.assertEqual(domains[1]['project'], 'fakeproject') self.network.add_dns_entry(self.context, address1, entryname, 'A', domain1) entries = self.network.get_dns_entries_by_name(self.context, entryname, domain1) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], address1) self.assertRaises(exception.AdminRequired, self.network.delete_dns_domain, self.context, domain1) self.network.delete_dns_domain(context_admin, domain1) self.network.delete_dns_domain(context_admin, domain2) # Verify that deleting the domain deleted the associated entry entries = self.network.get_dns_entries_by_name(self.context, entryname, domain1) self.assertFalse(entries) def test_delete_all_by_ip(self): domain1 = "example.org" domain2 = "example.com" address = "10.10.10.10" name1 = "foo" name2 = "bar" def fake_domains(context): return [{'domain': 'example.org', 'scope': 'public'}, {'domain': 'example.com', 'scope': 'public'}, {'domain': 'test.example.org', 'scope': 'public'}] self.stubs.Set(self.network, 'get_dns_domains', fake_domains) context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) self.network.create_public_dns_domain(context_admin, domain1, 'testproject') self.network.create_public_dns_domain(context_admin, domain2, 'fakeproject') domains = self.network.get_dns_domains(self.context) for domain in domains: self.network.add_dns_entry(self.context, address, name1, "A", domain['domain']) self.network.add_dns_entry(self.context, address, name2, "A", domain['domain']) entries = self.network.get_dns_entries_by_address(self.context, address, domain['domain']) self.assertEqual(len(entries), 2) self.network._delete_all_entries_for_ip(self.context, address) for domain in domains: entries = self.network.get_dns_entries_by_address(self.context, address, domain['domain']) self.assertFalse(entries) self.network.delete_dns_domain(context_admin, domain1) self.network.delete_dns_domain(context_admin, domain2) def test_mac_conflicts(self): # Make sure MAC collisions are retried. self.flags(create_unique_mac_address_attempts=3) ctxt = context.RequestContext('testuser', 'testproject', is_admin=True) macs = ['bb:bb:bb:bb:bb:bb', 'aa:aa:aa:aa:aa:aa'] # Create a VIF with aa:aa:aa:aa:aa:aa crash_test_dummy_vif = { 'address': macs[1], 'instance_uuid': 'fake_uuid', 'network_id': 123, 'uuid': 'fake_uuid', } self.network.db.virtual_interface_create(ctxt, crash_test_dummy_vif) # Hand out a collision first, then a legit MAC def fake_gen_mac(): return macs.pop() self.stubs.Set(utils, 'generate_mac_address', fake_gen_mac) # SQLite doesn't seem to honor the uniqueness constraint on the def fake_vif_save(vif): if vif.address == crash_test_dummy_vif['address']: raise db_exc.DBError("If you're smart, you'll retry!") vif.id = 1 self.stubs.Set(models.VirtualInterface, 'save', fake_vif_save) self.network._add_virtual_interface(ctxt, 'fake_uuid', 123) self.assertEqual(macs, []) def test_deallocate_client_exceptions(self): self.mox.StubOutWithMock(self.network.db, 'floating_ip_get_by_address') self.network.db.floating_ip_get_by_address( self.context, '1.2.3.4').AndRaise( exception.FloatingIpNotFoundForAddress(address='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.deallocate_floating_ip, self.context, '1.2.3.4') def test_associate_client_exceptions(self): self.mox.StubOutWithMock(self.network.db, 'floating_ip_get_by_address') self.network.db.floating_ip_get_by_address( self.context, '1.2.3.4').AndRaise( exception.FloatingIpNotFoundForAddress(address='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.associate_floating_ip, self.context, '1.2.3.4', '10.0.0.1') def test_disassociate_client_exceptions(self): self.mox.StubOutWithMock(self.network.db, 'floating_ip_get_by_address') self.network.db.floating_ip_get_by_address( self.context, '1.2.3.4').AndRaise( exception.FloatingIpNotFoundForAddress(address='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.disassociate_floating_ip, self.context, '1.2.3.4') def test_get_floating_ip_client_exceptions(self): self.mox.StubOutWithMock(self.network.db, 'floating_ip_get') self.network.db.floating_ip_get(self.context, 'fake-id').AndRaise( exception.FloatingIpNotFound(id='fake')) self.mox.ReplayAll() self.assertRaises(messaging.ExpectedException, self.network.get_floating_ip, self.context, 'fake-id') def _test_associate_floating_ip_failure(self, stdout, expected_exception): def _fake_catchall(*args, **kwargs): return dict(test_fixed_ip.fake_fixed_ip, network=test_network.fake_network) def _fake_add_floating_ip(*args, **kwargs): raise processutils.ProcessExecutionError(stdout) self.stubs.Set(self.network.db, 'floating_ip_fixed_ip_associate', _fake_catchall) self.stubs.Set(self.network.db, 'floating_ip_disassociate', _fake_catchall) self.stubs.Set(self.network.l3driver, 'add_floating_ip', _fake_add_floating_ip) self.assertRaises(expected_exception, self.network._associate_floating_ip, self.context, '1.2.3.4', '1.2.3.5', '', '') def test_associate_floating_ip_failure(self): self._test_associate_floating_ip_failure(None, processutils.ProcessExecutionError) def test_associate_floating_ip_failure_interface_not_found(self): self._test_associate_floating_ip_failure('Cannot find device', exception.NoFloatingIpInterface) class InstanceDNSTestCase(test.TestCase): def setUp(self): super(InstanceDNSTestCase, self).setUp() self.tempdir = self.useFixture(fixtures.TempDir()).path self.flags(log_dir=self.tempdir) self.flags(use_local=True, group='conductor') self.network = TestFloatingIPManager() self.network.db = db self.project_id = 'testproject' self.context = context.RequestContext('testuser', self.project_id, is_admin=False) def test_dns_domains_private(self): zone1 = 'testzone' domain1 = 'example.org' context_admin = context.RequestContext('testuser', 'testproject', is_admin=True) self.assertRaises(exception.AdminRequired, self.network.create_private_dns_domain, self.context, domain1, zone1) self.network.create_private_dns_domain(context_admin, domain1, zone1) domains = self.network.get_dns_domains(self.context) self.assertEqual(len(domains), 1) self.assertEqual(domains[0]['domain'], domain1) self.assertEqual(domains[0]['availability_zone'], zone1) self.assertRaises(exception.AdminRequired, self.network.delete_dns_domain, self.context, domain1) self.network.delete_dns_domain(context_admin, domain1) domain1 = "example.org" domain2 = "example.com" class LdapDNSTestCase(test.TestCase): def setUp(self): super(LdapDNSTestCase, self).setUp() self.useFixture(test.ReplaceModule('ldap', fake_ldap)) dns_class = 'nova.network.ldapdns.LdapDNS' self.driver = importutils.import_object(dns_class) attrs = {'objectClass': ['domainrelatedobject', 'dnsdomain', 'domain', 'dcobject', 'top'], 'associateddomain': ['root'], 'dc': ['root']} self.driver.lobj.add_s("ou=hosts,dc=example,dc=org", attrs.items()) self.driver.create_domain(domain1) self.driver.create_domain(domain2) def tearDown(self): self.driver.delete_domain(domain1) self.driver.delete_domain(domain2) super(LdapDNSTestCase, self).tearDown() def test_ldap_dns_domains(self): domains = self.driver.get_domains() self.assertEqual(len(domains), 2) self.assertIn(domain1, domains) self.assertIn(domain2, domains) def test_ldap_dns_create_conflict(self): address1 = "10.10.10.11" name1 = "foo" self.driver.create_entry(name1, address1, "A", domain1) self.assertRaises(exception.FloatingIpDNSExists, self.driver.create_entry, name1, address1, "A", domain1) def test_ldap_dns_create_and_get(self): address1 = "10.10.10.11" name1 = "foo" name2 = "bar" entries = self.driver.get_entries_by_address(address1, domain1) self.assertFalse(entries) self.driver.create_entry(name1, address1, "A", domain1) self.driver.create_entry(name2, address1, "A", domain1) entries = self.driver.get_entries_by_address(address1, domain1) self.assertEqual(len(entries), 2) self.assertEqual(entries[0], name1) self.assertEqual(entries[1], name2) entries = self.driver.get_entries_by_name(name1, domain1) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], address1) def test_ldap_dns_delete(self): address1 = "10.10.10.11" name1 = "foo" name2 = "bar" self.driver.create_entry(name1, address1, "A", domain1) self.driver.create_entry(name2, address1, "A", domain1) entries = self.driver.get_entries_by_address(address1, domain1) self.assertEqual(len(entries), 2) self.driver.delete_entry(name1, domain1) entries = self.driver.get_entries_by_address(address1, domain1) LOG.debug("entries: %s" % entries) self.assertEqual(len(entries), 1) self.assertEqual(entries[0], name2) self.assertRaises(exception.NotFound, self.driver.delete_entry, name1, domain1)
true
true
f7f3f5eeff3574461e11fa3c225622d42a066c3a
4,929
py
Python
data/p3BR/R1/benchmark/startCirq436.py
UCLA-SEAL/QDiff
d968cbc47fe926b7f88b4adf10490f1edd6f8819
[ "BSD-3-Clause" ]
null
null
null
data/p3BR/R1/benchmark/startCirq436.py
UCLA-SEAL/QDiff
d968cbc47fe926b7f88b4adf10490f1edd6f8819
[ "BSD-3-Clause" ]
null
null
null
data/p3BR/R1/benchmark/startCirq436.py
UCLA-SEAL/QDiff
d968cbc47fe926b7f88b4adf10490f1edd6f8819
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 5/15/20 4:49 PM # @File : grover.py # qubit number=3 # total number=80 import cirq import cirq.google as cg from typing import Optional import sys from math import log2 import numpy as np #thatsNoCode from cirq.contrib.svg import SVGCircuit # Symbols for the rotation angles in the QAOA circuit. def make_circuit(n: int, input_qubit): c = cirq.Circuit() # circuit begin c.append(cirq.H.on(input_qubit[0])) # number=1 c.append(cirq.H.on(input_qubit[1])) # number=70 c.append(cirq.rx(-0.09738937226128368).on(input_qubit[2])) # number=2 c.append(cirq.H.on(input_qubit[1])) # number=33 c.append(cirq.Y.on(input_qubit[2])) # number=56 c.append(cirq.CZ.on(input_qubit[2],input_qubit[1])) # number=34 c.append(cirq.H.on(input_qubit[1])) # number=35 c.append(cirq.H.on(input_qubit[1])) # number=3 c.append(cirq.H.on(input_qubit[0])) # number=45 c.append(cirq.H.on(input_qubit[1])) # number=77 c.append(cirq.CZ.on(input_qubit[2],input_qubit[1])) # number=78 c.append(cirq.H.on(input_qubit[1])) # number=79 c.append(cirq.CZ.on(input_qubit[1],input_qubit[0])) # number=46 c.append(cirq.H.on(input_qubit[0])) # number=47 c.append(cirq.Y.on(input_qubit[1])) # number=15 c.append(cirq.H.on(input_qubit[0])) # number=66 c.append(cirq.CZ.on(input_qubit[1],input_qubit[0])) # number=67 c.append(cirq.H.on(input_qubit[0])) # number=68 c.append(cirq.H.on(input_qubit[1])) # number=19 c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) # number=20 c.append(cirq.rx(-0.6000441968356504).on(input_qubit[1])) # number=28 c.append(cirq.H.on(input_qubit[1])) # number=21 c.append(cirq.H.on(input_qubit[1])) # number=30 c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) # number=31 c.append(cirq.H.on(input_qubit[1])) # number=32 c.append(cirq.H.on(input_qubit[1])) # number=57 c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) # number=58 c.append(cirq.H.on(input_qubit[1])) # number=59 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=51 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=71 c.append(cirq.X.on(input_qubit[1])) # number=72 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=73 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=53 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=50 c.append(cirq.Y.on(input_qubit[2])) # number=69 c.append(cirq.H.on(input_qubit[2])) # number=29 c.append(cirq.H.on(input_qubit[1])) # number=36 c.append(cirq.X.on(input_qubit[1])) # number=64 c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) # number=37 c.append(cirq.Y.on(input_qubit[2])) # number=44 c.append(cirq.H.on(input_qubit[1])) # number=38 c.append(cirq.Z.on(input_qubit[1])) # number=55 c.append(cirq.H.on(input_qubit[1])) # number=61 c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) # number=62 c.append(cirq.Z.on(input_qubit[2])) # number=65 c.append(cirq.H.on(input_qubit[1])) # number=63 c.append(cirq.Z.on(input_qubit[1])) # number=11 c.append(cirq.rx(-1.1780972450961724).on(input_qubit[2])) # number=54 c.append(cirq.H.on(input_qubit[1])) # number=42 c.append(cirq.H.on(input_qubit[0])) # number=39 c.append(cirq.CZ.on(input_qubit[1],input_qubit[0])) # number=40 c.append(cirq.H.on(input_qubit[0])) # number=41 c.append(cirq.CNOT.on(input_qubit[2],input_qubit[1])) # number=26 c.append(cirq.Y.on(input_qubit[1])) # number=14 c.append(cirq.CNOT.on(input_qubit[1],input_qubit[0])) # number=5 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=74 c.append(cirq.X.on(input_qubit[1])) # number=75 c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) # number=76 c.append(cirq.Z.on(input_qubit[1])) # number=8 c.append(cirq.X.on(input_qubit[1])) # number=7 c.append(cirq.H.on(input_qubit[2])) # number=43 c.append(cirq.rx(-2.42845112122491).on(input_qubit[1])) # number=25 # circuit end c.append(cirq.measure(*input_qubit, key='result')) return c def bitstring(bits): return ''.join(str(int(b)) for b in bits) if __name__ == '__main__': qubit_count = 4 input_qubits = [cirq.GridQubit(i, 0) for i in range(qubit_count)] circuit = make_circuit(qubit_count,input_qubits) circuit = cg.optimized_for_sycamore(circuit, optimizer_type='sqrt_iswap') circuit_sample_count =2000 simulator = cirq.Simulator() result = simulator.run(circuit, repetitions=circuit_sample_count) frequencies = result.histogram(key='result', fold_func=bitstring) writefile = open("../data/startCirq436.csv","w+") print(format(frequencies),file=writefile) print("results end", file=writefile) print(circuit.__len__(), file=writefile) print(circuit,file=writefile) writefile.close()
42.128205
77
0.680665
import cirq import cirq.google as cg from typing import Optional import sys from math import log2 import numpy as np from cirq.contrib.svg import SVGCircuit def make_circuit(n: int, input_qubit): c = cirq.Circuit() c.append(cirq.H.on(input_qubit[0])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.rx(-0.09738937226128368).on(input_qubit[2])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.Y.on(input_qubit[2])) c.append(cirq.CZ.on(input_qubit[2],input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[0])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[2],input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[1],input_qubit[0])) c.append(cirq.H.on(input_qubit[0])) c.append(cirq.Y.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[0])) c.append(cirq.CZ.on(input_qubit[1],input_qubit[0])) c.append(cirq.H.on(input_qubit[0])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) c.append(cirq.rx(-0.6000441968356504).on(input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.X.on(input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.Y.on(input_qubit[2])) c.append(cirq.H.on(input_qubit[2])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.X.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) c.append(cirq.Y.on(input_qubit[2])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.Z.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.CZ.on(input_qubit[0],input_qubit[1])) c.append(cirq.Z.on(input_qubit[2])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.Z.on(input_qubit[1])) c.append(cirq.rx(-1.1780972450961724).on(input_qubit[2])) c.append(cirq.H.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[0])) c.append(cirq.CZ.on(input_qubit[1],input_qubit[0])) c.append(cirq.H.on(input_qubit[0])) c.append(cirq.CNOT.on(input_qubit[2],input_qubit[1])) c.append(cirq.Y.on(input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[1],input_qubit[0])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.X.on(input_qubit[1])) c.append(cirq.CNOT.on(input_qubit[0],input_qubit[1])) c.append(cirq.Z.on(input_qubit[1])) c.append(cirq.X.on(input_qubit[1])) c.append(cirq.H.on(input_qubit[2])) c.append(cirq.rx(-2.42845112122491).on(input_qubit[1])) c.append(cirq.measure(*input_qubit, key='result')) return c def bitstring(bits): return ''.join(str(int(b)) for b in bits) if __name__ == '__main__': qubit_count = 4 input_qubits = [cirq.GridQubit(i, 0) for i in range(qubit_count)] circuit = make_circuit(qubit_count,input_qubits) circuit = cg.optimized_for_sycamore(circuit, optimizer_type='sqrt_iswap') circuit_sample_count =2000 simulator = cirq.Simulator() result = simulator.run(circuit, repetitions=circuit_sample_count) frequencies = result.histogram(key='result', fold_func=bitstring) writefile = open("../data/startCirq436.csv","w+") print(format(frequencies),file=writefile) print("results end", file=writefile) print(circuit.__len__(), file=writefile) print(circuit,file=writefile) writefile.close()
true
true
f7f3f7600ee7f452e64da2ddbdd366dd2d8a0898
1,125
py
Python
Python Fundamentals/Lists Advanced/Exercise/Task08_2.py
DonikaChervenkova/SoftUni
bff579c037ec48f39ed193b34bc3502a32e90732
[ "MIT" ]
null
null
null
Python Fundamentals/Lists Advanced/Exercise/Task08_2.py
DonikaChervenkova/SoftUni
bff579c037ec48f39ed193b34bc3502a32e90732
[ "MIT" ]
null
null
null
Python Fundamentals/Lists Advanced/Exercise/Task08_2.py
DonikaChervenkova/SoftUni
bff579c037ec48f39ed193b34bc3502a32e90732
[ "MIT" ]
1
2021-12-04T12:30:57.000Z
2021-12-04T12:30:57.000Z
def first_letter_of_word(current_word): digits = [] new_current_word = [] for letter in current_word: if letter.isdigit(): digits.append(letter) elif letter.isalpha(): new_current_word.append(letter) first_letter = chr(int("".join(digits))) new_current_word.insert(0, first_letter) return new_current_word def change_chars(new_current_word): new_current_word[1], new_current_word[-1] = new_current_word[-1], new_current_word[1] return new_current_word def add_uncripted_word(new_current_word, new_message_list: list): new_current_word = "".join(new_current_word) new_message_list.append(new_current_word) return new_message_list def organize_words(unsecret_message): unsecret_message = " ".join(unsecret_message) return unsecret_message secret_message = input().split(" ") new_message = [] for word in secret_message: new_word = first_letter_of_word(word) new_word = change_chars(new_word) new_message = add_uncripted_word(new_word, new_message) new_message = organize_words(new_message) print(new_message)
25.568182
89
0.734222
def first_letter_of_word(current_word): digits = [] new_current_word = [] for letter in current_word: if letter.isdigit(): digits.append(letter) elif letter.isalpha(): new_current_word.append(letter) first_letter = chr(int("".join(digits))) new_current_word.insert(0, first_letter) return new_current_word def change_chars(new_current_word): new_current_word[1], new_current_word[-1] = new_current_word[-1], new_current_word[1] return new_current_word def add_uncripted_word(new_current_word, new_message_list: list): new_current_word = "".join(new_current_word) new_message_list.append(new_current_word) return new_message_list def organize_words(unsecret_message): unsecret_message = " ".join(unsecret_message) return unsecret_message secret_message = input().split(" ") new_message = [] for word in secret_message: new_word = first_letter_of_word(word) new_word = change_chars(new_word) new_message = add_uncripted_word(new_word, new_message) new_message = organize_words(new_message) print(new_message)
true
true
f7f3f94a9ada53ecd58abcbd2140e0cdb83241af
263
py
Python
CRF-POS_NER/edit1.py
saivig/PGM
04f27d7e2ea723bc3bd01b94e39a9ccc50130f5c
[ "Apache-2.0" ]
null
null
null
CRF-POS_NER/edit1.py
saivig/PGM
04f27d7e2ea723bc3bd01b94e39a9ccc50130f5c
[ "Apache-2.0" ]
null
null
null
CRF-POS_NER/edit1.py
saivig/PGM
04f27d7e2ea723bc3bd01b94e39a9ccc50130f5c
[ "Apache-2.0" ]
2
2016-12-27T09:45:52.000Z
2019-02-28T08:11:38.000Z
import sys from itertools import izip w=open(sys.argv[3],'w') with open(sys.argv[1]) as r,open (sys.argv[2]) as o: for line,line1 in izip(r,o): if line.strip(): w.write(line.split("\n")[0]+" "+line1.split("\n")[0]+"\n") else: w.write("\n") w.close();
21.916667
61
0.60076
import sys from itertools import izip w=open(sys.argv[3],'w') with open(sys.argv[1]) as r,open (sys.argv[2]) as o: for line,line1 in izip(r,o): if line.strip(): w.write(line.split("\n")[0]+" "+line1.split("\n")[0]+"\n") else: w.write("\n") w.close();
true
true
f7f3fa1bec69a9a9b4ab1c57b6e7a9a0785a2410
431
py
Python
ringlus/config/hr.py
momscode/ringlus
9e217b21a37390a66cd772deecbbde4ad41ca74f
[ "MIT" ]
null
null
null
ringlus/config/hr.py
momscode/ringlus
9e217b21a37390a66cd772deecbbde4ad41ca74f
[ "MIT" ]
1
2021-09-17T07:16:16.000Z
2021-09-17T07:16:16.000Z
ringlus/config/hr.py
momscode/ringlus
9e217b21a37390a66cd772deecbbde4ad41ca74f
[ "MIT" ]
null
null
null
from __future__ import unicode_literals import frappe from frappe.utils import add_days, cint, cstr, flt, getdate, rounded, date_diff, money_in_words from frappe import _ def get_data(): return [ { "label": _("Training"), "icon": "fa fa-star", "items": [ { "type": "doctype", "name": "Training Request", "description": _("Training Request"), "onboard": 1, }, ] } ]
19.590909
95
0.591647
from __future__ import unicode_literals import frappe from frappe.utils import add_days, cint, cstr, flt, getdate, rounded, date_diff, money_in_words from frappe import _ def get_data(): return [ { "label": _("Training"), "icon": "fa fa-star", "items": [ { "type": "doctype", "name": "Training Request", "description": _("Training Request"), "onboard": 1, }, ] } ]
true
true
f7f3fa3e486361ecae1c729a7ba8f0382d9506f8
3,374
py
Python
charm-slurmd/src/utils.py
heitorPB/slurm-charms
798ebc075a1ee7fb05abd9645de2c7e637a58de2
[ "MIT" ]
null
null
null
charm-slurmd/src/utils.py
heitorPB/slurm-charms
798ebc075a1ee7fb05abd9645de2c7e637a58de2
[ "MIT" ]
null
null
null
charm-slurmd/src/utils.py
heitorPB/slurm-charms
798ebc075a1ee7fb05abd9645de2c7e637a58de2
[ "MIT" ]
null
null
null
#!/usr/bin/python3 """utils.py module for slurmd charm.""" import json import os import random import subprocess import sys def lscpu(): """Return lscpu as a python dictionary.""" def format_key(lscpu_key): key_lower = lscpu_key.lower() replace_hyphen = key_lower.replace("-", "_") replace_lparen = replace_hyphen.replace("(", "") replace_rparen = replace_lparen.replace(")", "") return replace_rparen.replace(" ", "_") lscpu_out = subprocess.check_output(["lscpu"]) lscpu_lines = lscpu_out.decode().strip().split("\n") return { format_key(line.split(":")[0].strip()): line.split(":")[1].strip() for line in lscpu_lines } def cpu_info(): """Return cpu info needed to generate node inventory.""" ls_cpu = lscpu() return { "cpus": ls_cpu["cpus"], "threads_per_core": ls_cpu["threads_per_core"], "cores_per_socket": ls_cpu["cores_per_socket"], "sockets_per_board": ls_cpu["sockets"], } def free_m(): """Return the real memory.""" real_mem = "" try: real_mem = subprocess.check_output( "free -m | grep -oP '\\d+' | head -n 1", shell=True ) except subprocess.CalledProcessError as e: print(e) sys.exit(-1) return real_mem.decode().strip() def lspci_nvidia(): """Check for and return the count of nvidia gpus.""" gpus = 0 try: gpus = int( subprocess.check_output( "lspci | grep -i nvidia | awk '{print $1}' " "| cut -d : -f 1 | sort -u | wc -l", shell=True, ) .decode() .strip() ) except subprocess.CalledProcessError as e: print(e) sys.exit(-1) for graphics_processing_unit in range(gpus): gpu_path = "/dev/nvidia" + str(graphics_processing_unit) if not os.path.exists(gpu_path): return 0 return gpus def get_inventory(node_name, node_addr): """Assemble and return the node info.""" inventory = { "node_name": node_name, "node_addr": node_addr, "state": "UNKNOWN", "real_memory": free_m(), **cpu_info(), } gpus = lspci_nvidia() if gpus > 0: inventory["gres"] = gpus return inventory def _related_units(relid): """List of related units.""" units_cmd_line = ["relation-list", "--format=json", "-r", relid] return json.loads(subprocess.check_output(units_cmd_line).decode("UTF-8")) or [] def _relation_ids(reltype): """List of relation_ids.""" relid_cmd_line = ["relation-ids", "--format=json", reltype] return json.loads(subprocess.check_output(relid_cmd_line).decode("UTF-8")) or [] def get_active_units(relation_name): """Return the active_units.""" active_units = [] for rel_id in _relation_ids(relation_name): for unit in _related_units(rel_id): active_units.append(unit) return active_units def random_string(length=4): """Generate a random string.""" random_str = "" for i in range(length): random_integer = random.randint(97, 97 + 26 - 1) flip_bit = random.randint(0, 1) random_integer = random_integer - 32 if flip_bit == 1 else random_integer random_str += chr(random_integer) return random_str
26.992
84
0.599289
import json import os import random import subprocess import sys def lscpu(): def format_key(lscpu_key): key_lower = lscpu_key.lower() replace_hyphen = key_lower.replace("-", "_") replace_lparen = replace_hyphen.replace("(", "") replace_rparen = replace_lparen.replace(")", "") return replace_rparen.replace(" ", "_") lscpu_out = subprocess.check_output(["lscpu"]) lscpu_lines = lscpu_out.decode().strip().split("\n") return { format_key(line.split(":")[0].strip()): line.split(":")[1].strip() for line in lscpu_lines } def cpu_info(): ls_cpu = lscpu() return { "cpus": ls_cpu["cpus"], "threads_per_core": ls_cpu["threads_per_core"], "cores_per_socket": ls_cpu["cores_per_socket"], "sockets_per_board": ls_cpu["sockets"], } def free_m(): real_mem = "" try: real_mem = subprocess.check_output( "free -m | grep -oP '\\d+' | head -n 1", shell=True ) except subprocess.CalledProcessError as e: print(e) sys.exit(-1) return real_mem.decode().strip() def lspci_nvidia(): gpus = 0 try: gpus = int( subprocess.check_output( "lspci | grep -i nvidia | awk '{print $1}' " "| cut -d : -f 1 | sort -u | wc -l", shell=True, ) .decode() .strip() ) except subprocess.CalledProcessError as e: print(e) sys.exit(-1) for graphics_processing_unit in range(gpus): gpu_path = "/dev/nvidia" + str(graphics_processing_unit) if not os.path.exists(gpu_path): return 0 return gpus def get_inventory(node_name, node_addr): inventory = { "node_name": node_name, "node_addr": node_addr, "state": "UNKNOWN", "real_memory": free_m(), **cpu_info(), } gpus = lspci_nvidia() if gpus > 0: inventory["gres"] = gpus return inventory def _related_units(relid): units_cmd_line = ["relation-list", "--format=json", "-r", relid] return json.loads(subprocess.check_output(units_cmd_line).decode("UTF-8")) or [] def _relation_ids(reltype): relid_cmd_line = ["relation-ids", "--format=json", reltype] return json.loads(subprocess.check_output(relid_cmd_line).decode("UTF-8")) or [] def get_active_units(relation_name): active_units = [] for rel_id in _relation_ids(relation_name): for unit in _related_units(rel_id): active_units.append(unit) return active_units def random_string(length=4): random_str = "" for i in range(length): random_integer = random.randint(97, 97 + 26 - 1) flip_bit = random.randint(0, 1) random_integer = random_integer - 32 if flip_bit == 1 else random_integer random_str += chr(random_integer) return random_str
true
true
f7f3fb2d42c9ba6da672a5b408ec3126e3d3d688
3,341
py
Python
data-generation-GAN/generate_samples_market.py
lulujianjie/efficient-person-generation-for-reid
1bb29c7c280e3322a65af36b37deecbce0c1d322
[ "RSA-MD" ]
24
2020-04-27T01:53:02.000Z
2020-09-09T04:39:31.000Z
data-generation-GAN/generate_samples_market.py
lulujianjie/efficient-person-generation-for-reID
1bb29c7c280e3322a65af36b37deecbce0c1d322
[ "RSA-MD" ]
8
2020-09-27T04:55:10.000Z
2021-11-25T02:31:09.000Z
data-generation-GAN/generate_samples_market.py
lulujianjie/efficient-person-generation-for-reID
1bb29c7c280e3322a65af36b37deecbce0c1d322
[ "RSA-MD" ]
8
2020-04-27T01:54:24.000Z
2022-02-05T06:21:20.000Z
#!/usr/bin/env python # coding: utf-8 # In[ ]: import os import sys import cv2 from config.cfg import Cfg import torch from torch.backends import cudnn from datasets.bases import read_image sys.path.append('.') from datasets import make_dataloader from processor import do_inference from model import make_model from utils.logger import setup_logger import torchvision.transforms as T import torch.nn as nn import numpy as np import matplotlib.pyplot as plt #rename img import string import random device = "cuda" WEIGHT_PATH = './log/model_G_1800.pth' #'/nfs-data/lujj/pretrained_model/pose-transfer/model_G_45.pth' #'/nfs-data/lujj/projects/pose-transfer-jack-reid-01/log/tmp/model_G_180.pth' Cfg.freeze() os.environ['CUDA_VISIBLE_DEVICES'] = "5" cudnn.benchmark = True test_transforms = T.Compose([ T.Resize(Cfg.MODEL.INPUT_SIZE), T.ToTensor(), T.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) ]) model_G, _, _, _ = make_model(Cfg) model_G.to(device) #model_G = nn.DataParallel(model_G) model_G.load_state_dict(torch.load(WEIGHT_PATH)) # In[ ]: dataset = 'DukeMTMC-reID' root_dir = '/home/lujj/datasets/{}/'.format(dataset) data_dir = 'p3' target_dir = '/home/lujj/datasets/{}/{}_g/'.format(dataset,data_dir) target_dir2 = '/home/lujj/datasets/{}/{}_g_bak/'.format(dataset,data_dir) img_list = [] pid_set = set() for img in os.listdir(root_dir+data_dir): pid = img.split('_')[0] if pid in pid_set: continue else: pid_set.add(pid) for img in os.listdir('/home/lujj/datasets/{}/bounding_box_train/'.format(dataset)): pid = img.split('_')[0] if pid in pid_set: continue else: pid_set.add(pid) img_list.append(img) print('to generate pid:',len(img_list)) pose_list = np.load(root_dir+'pose_list_duke.npy') len_pose = len(pose_list) print('body-part:',len_pose) # In[ ]: num_imgs = 24 model_G.eval() for img in img_list: if img[-3:] == 'jpg': img1_path = '/home/lujj/datasets/{}/bounding_box_train/{}'.format(dataset,img) for pose2_idx in np.random.choice(range(len_pose),num_imgs, replace=False): target_pose = pose_list[pose2_idx] pose2_path = '/home/lujj/datasets/{}/train_part_heatmap/{}.npy'.format(dataset,target_pose) img1 = read_image(img1_path) # plt.imshow(img1) # plt.show() img1 = torch.unsqueeze(test_transforms(img1),0).to(device) pose_heatmap2 = np.load(pose2_path).astype(np.float32) pose2 = torch.tensor(pose_heatmap2.transpose((2, 0, 1))) pose2 = torch.unsqueeze(pose2,0).to(device) input_G = (img1, pose2) fake_img2 = model_G(input_G) result = fake_img2.cpu().detach().numpy() img1 = (np.transpose(result[0],(1,2,0))+ 1) / 2.0 * 255.0 cv2.imwrite(target_dir+'{}-{}.jpg'.format(img[:-4],target_pose[:-4]),cv2.cvtColor(img1, cv2.COLOR_RGB2BGR)) cv2.imwrite(target_dir2+'{}-{}.jpg'.format(img[:-4],target_pose[:-4]),cv2.cvtColor(img1, cv2.COLOR_RGB2BGR)) # In[ ]: for img in os.listdir(target_dir): src = target_dir+img target_img = ''.join(random.sample(string.ascii_letters + string.digits, 10))+'.jpg' img_ = img.split('-') dst = target_dir+img_[0]+target_img os.rename(src, dst) # In[ ]:
28.07563
120
0.662975
import os import sys import cv2 from config.cfg import Cfg import torch from torch.backends import cudnn from datasets.bases import read_image sys.path.append('.') from datasets import make_dataloader from processor import do_inference from model import make_model from utils.logger import setup_logger import torchvision.transforms as T import torch.nn as nn import numpy as np import matplotlib.pyplot as plt import string import random device = "cuda" WEIGHT_PATH = './log/model_G_1800.pth' Cfg.freeze() os.environ['CUDA_VISIBLE_DEVICES'] = "5" cudnn.benchmark = True test_transforms = T.Compose([ T.Resize(Cfg.MODEL.INPUT_SIZE), T.ToTensor(), T.Normalize(mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5]) ]) model_G, _, _, _ = make_model(Cfg) model_G.to(device) model_G.load_state_dict(torch.load(WEIGHT_PATH)) dataset = 'DukeMTMC-reID' root_dir = '/home/lujj/datasets/{}/'.format(dataset) data_dir = 'p3' target_dir = '/home/lujj/datasets/{}/{}_g/'.format(dataset,data_dir) target_dir2 = '/home/lujj/datasets/{}/{}_g_bak/'.format(dataset,data_dir) img_list = [] pid_set = set() for img in os.listdir(root_dir+data_dir): pid = img.split('_')[0] if pid in pid_set: continue else: pid_set.add(pid) for img in os.listdir('/home/lujj/datasets/{}/bounding_box_train/'.format(dataset)): pid = img.split('_')[0] if pid in pid_set: continue else: pid_set.add(pid) img_list.append(img) print('to generate pid:',len(img_list)) pose_list = np.load(root_dir+'pose_list_duke.npy') len_pose = len(pose_list) print('body-part:',len_pose) num_imgs = 24 model_G.eval() for img in img_list: if img[-3:] == 'jpg': img1_path = '/home/lujj/datasets/{}/bounding_box_train/{}'.format(dataset,img) for pose2_idx in np.random.choice(range(len_pose),num_imgs, replace=False): target_pose = pose_list[pose2_idx] pose2_path = '/home/lujj/datasets/{}/train_part_heatmap/{}.npy'.format(dataset,target_pose) img1 = read_image(img1_path) img1 = torch.unsqueeze(test_transforms(img1),0).to(device) pose_heatmap2 = np.load(pose2_path).astype(np.float32) pose2 = torch.tensor(pose_heatmap2.transpose((2, 0, 1))) pose2 = torch.unsqueeze(pose2,0).to(device) input_G = (img1, pose2) fake_img2 = model_G(input_G) result = fake_img2.cpu().detach().numpy() img1 = (np.transpose(result[0],(1,2,0))+ 1) / 2.0 * 255.0 cv2.imwrite(target_dir+'{}-{}.jpg'.format(img[:-4],target_pose[:-4]),cv2.cvtColor(img1, cv2.COLOR_RGB2BGR)) cv2.imwrite(target_dir2+'{}-{}.jpg'.format(img[:-4],target_pose[:-4]),cv2.cvtColor(img1, cv2.COLOR_RGB2BGR)) for img in os.listdir(target_dir): src = target_dir+img target_img = ''.join(random.sample(string.ascii_letters + string.digits, 10))+'.jpg' img_ = img.split('-') dst = target_dir+img_[0]+target_img os.rename(src, dst)
true
true
f7f3fb3bbb21d6216179e9f85c140b3fce8ce0fe
2,943
py
Python
cpo/lib/fyre/request_managers/ocp_add_additional_nodes_put_manager.py
IBM/data-gate-cli
fc0cb1a560a0156c71eb63a550e198d0cd36e1df
[ "Apache-2.0" ]
9
2020-08-21T08:46:34.000Z
2021-09-02T15:47:41.000Z
cpo/lib/fyre/request_managers/ocp_add_additional_nodes_put_manager.py
IBM/data-gate-cli
fc0cb1a560a0156c71eb63a550e198d0cd36e1df
[ "Apache-2.0" ]
10
2020-11-26T15:31:43.000Z
2021-11-08T15:00:01.000Z
cpo/lib/fyre/request_managers/ocp_add_additional_nodes_put_manager.py
IBM/data-gate-cli
fc0cb1a560a0156c71eb63a550e198d0cd36e1df
[ "Apache-2.0" ]
null
null
null
# Copyright 2021 IBM Corporation # # 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. from typing import Any, Final, Optional from cpo.lib.fyre.request_managers.json_request_manager import ( AbstractJSONRequestManager, ) from cpo.lib.fyre.response_managers.default_response_manager import ( DefaultResponseManager, ) from cpo.lib.fyre.response_managers.json_response_manager import ( AbstractJSONResponseManager, ) from cpo.utils.http_method import HTTPMethod class OCPAddAdditionalNodesPutManager(AbstractJSONRequestManager): def __init__(self, fyre_api_user_name: str, fyre_api_key: str, site: Optional[str], cluster_name: str): super().__init__(fyre_api_user_name, fyre_api_key, site) self._cluster_name = cluster_name def execute_request_put_request(self, ocp_resource_put_request: Any): self._execute_request(HTTPMethod.PUT, ocp_resource_put_request) # override def get_error_message(self) -> str: return "Failed to add additional worker node" # override def get_json_response_manager(self) -> AbstractJSONResponseManager: return DefaultResponseManager() # override def get_request_schema(self) -> Any: return { "additionalProperties": False, "properties": { "additional_disk": { "items": { "type": "string", }, "type": "array", }, "cpu": { "type": "string", }, "disable_scheduling": { "type": "string", }, "memory": { "type": "string", }, "site": {"type": "string"}, "vm_count": { "type": "string", }, }, "required": [ "additional_disk", ], "type": "object", } # override def get_url(self) -> str: return OCPAddAdditionalNodesPutManager._IBM_OCPPLUS_OCP_ADD_ADDITIONAL_NODES_PUT_URL.format( cluster_name=self._cluster_name ) # override def is_request_id_to_be_ignored(self) -> bool: return False _IBM_OCPPLUS_OCP_ADD_ADDITIONAL_NODES_PUT_URL: Final[ str ] = "https://ocpapi.svl.ibm.com/v1/ocp/{cluster_name}/add_additional_nodes"
32.7
107
0.616718
from typing import Any, Final, Optional from cpo.lib.fyre.request_managers.json_request_manager import ( AbstractJSONRequestManager, ) from cpo.lib.fyre.response_managers.default_response_manager import ( DefaultResponseManager, ) from cpo.lib.fyre.response_managers.json_response_manager import ( AbstractJSONResponseManager, ) from cpo.utils.http_method import HTTPMethod class OCPAddAdditionalNodesPutManager(AbstractJSONRequestManager): def __init__(self, fyre_api_user_name: str, fyre_api_key: str, site: Optional[str], cluster_name: str): super().__init__(fyre_api_user_name, fyre_api_key, site) self._cluster_name = cluster_name def execute_request_put_request(self, ocp_resource_put_request: Any): self._execute_request(HTTPMethod.PUT, ocp_resource_put_request) def get_error_message(self) -> str: return "Failed to add additional worker node" def get_json_response_manager(self) -> AbstractJSONResponseManager: return DefaultResponseManager() def get_request_schema(self) -> Any: return { "additionalProperties": False, "properties": { "additional_disk": { "items": { "type": "string", }, "type": "array", }, "cpu": { "type": "string", }, "disable_scheduling": { "type": "string", }, "memory": { "type": "string", }, "site": {"type": "string"}, "vm_count": { "type": "string", }, }, "required": [ "additional_disk", ], "type": "object", } def get_url(self) -> str: return OCPAddAdditionalNodesPutManager._IBM_OCPPLUS_OCP_ADD_ADDITIONAL_NODES_PUT_URL.format( cluster_name=self._cluster_name ) def is_request_id_to_be_ignored(self) -> bool: return False _IBM_OCPPLUS_OCP_ADD_ADDITIONAL_NODES_PUT_URL: Final[ str ] = "https://ocpapi.svl.ibm.com/v1/ocp/{cluster_name}/add_additional_nodes"
true
true
f7f3fef09cd2f28eebfa59a293c707414824ec6e
7,054
py
Python
run/design.py
ottj3/weboligos
96d8ff00634cbd166384d3b5ac8e5a2e9b0d5ba9
[ "MIT" ]
null
null
null
run/design.py
ottj3/weboligos
96d8ff00634cbd166384d3b5ac8e5a2e9b0d5ba9
[ "MIT" ]
1
2020-07-06T23:58:59.000Z
2020-07-06T23:58:59.000Z
run/design.py
ottj3/weboligos
96d8ff00634cbd166384d3b5ac8e5a2e9b0d5ba9
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- """ Created on Wed Aug 24 11:36:17 2011 @author: ryan """ import numpy as np import sys class Acid: def __init__(self, name, p, segsize, overlapsize, minval, maxval, numpts): self.designtype = self.compute_design_type(numpts) self.locations = self.compute_locations(name, p) self.required_acids = self.compute_required_acids(self.locations, minval, maxval, numpts) acid_designs = self.compute_acid_designs(self.locations, len(p)) segment_designs = [acidDesign_to_segmentDesign(x, len(p), segsize, overlapsize) for x in acid_designs] self.designlist = remove_suboptimal_designs(segment_designs) def compute_design_type(self, numpts): designtype = [] while numpts > 1: numpts /= 2 designtype.append(numpts) return designtype def compute_locations(self, name, p): p = list(p) locations = [] while name in p: locations.append(p.index(name) + len(locations)) p.remove(name) return locations def compute_required_acids(self, locations, minval, maxval, numpts): total_available = len(locations) total_required = round((maxval - minval) * total_available) if total_required == 0: total_required = 1 delta = total_available * (maxval - minval) / (numpts - 1.0) points_required = [nDeltas * delta for nDeltas in self.designtype] required_acids = [np.floor(x) for x in points_required] while sum(required_acids) < total_required: differences = [x - y for x, y in zip(points_required, required_acids)] index_of_max = differences.index(max(differences)) required_acids[index_of_max] += 1 return [int(x) for x in required_acids] def compute_acid_designs(self, locations, seqlength): designlist = get_possible_intervals(seqlength, locations, self.required_acids[0]) for i in range(1, len(self.required_acids)): designlist = disjoint_combos(designlist, get_possible_intervals(seqlength, locations, self.required_acids[i])) return designlist def overlap_test(array1, array2): "Tests if two vectors have nonzero entries at any common index" return sum(array1 * array2) != 0 def disjoint_combos(list1, list2): """Each list consists of Design instances. Designs are tested for overlap and if they do not overlap are combined. All resulting combo designs are returned.""" combos = [] for x in list1: for y in list2: if overlap_test(x.score, y.score) == False: combos.append(x + y) return combos def get_possible_intervals(seqlength, locations, number_needed): possible_intervals = [] for i in range(len(locations) - number_needed + 1): score = np.zeros(seqlength) score[locations[i]:locations[i + number_needed - 1] + 1] = 1 possible_intervals.append(Design([(locations[i], locations[i + number_needed - 1])], score)) return possible_intervals def acidDesign_to_segmentDesign(acid_design, seqlength, segsize, overlapsize): numsegs = int(np.ceil((float(seqlength) - overlapsize) / (segsize - overlapsize))) segment_intervals = [] segment_score = np.ones(numsegs) for x, y in acid_design.intervals: #L is index of leftmost segment in design, R is index of rightmost segment if x <= segsize - 1: L = 0 else: L = (x - overlapsize) / (segsize - overlapsize) if y >= seqlength - segsize + 1: R = numsegs - 1 else: R = y / (segsize - overlapsize) segment_intervals.append((L, R)) segment_score[L:R + 1] *= 2 return Design(segment_intervals, segment_score) def remove_suboptimal_designs(designlist): numdesigns = len(designlist) for i in range(numdesigns - 1, -1, -1): Fail = np.any([min(designlist[i].score - x.score) >= 0 and designlist[i] != x for x in designlist]) if Fail == True: designlist.remove(designlist[i]) return designlist class Design: def __init__(self, intervals, score): self.intervals = intervals self.score = score def __add__(self, other): return Design(self.intervals + other.intervals, self.score + other.score) class IndexAndScore: def __init__(self, index, score): self.index = index self.score = score def compute_best_score_combo(scorelist): index_and_score_list = [] for i in range(len(scorelist[0])): index_and_score_list.append(IndexAndScore([i, ], scorelist[0][i])) for j in range(1, len(scorelist)): index_and_score_list = compute_pairwise_score_combos(index_and_score_list, scorelist[j]) minindex = 0 minscorearray = index_and_score_list[0] minscore = sum(index_and_score_list[0].score) for i in range(1, len(index_and_score_list)): if sum(index_and_score_list[i].score) < minscore: minscore = sum(index_and_score_list[i].score) minindex = index_and_score_list[i].index minscorearray = index_and_score_list[i].score return minindex, minscore, minscorearray def compute_pairwise_score_combos(list1, list2): """first argument is a list of IndexAndScore type, second list is a list of score arrays""" newlist = [] for x in list1: for i in range(len(list2)): newlist.append(IndexAndScore(x.index + [i, ], x.score * list2[i])) return newlist def compute_best_design(p, aoi, segsize, overlapsize, mins, maxs, numpts): acidlist = [] scorelist = [[] for i in range(len(aoi))] for i in range(len(aoi)): acidlist.append(Acid(aoi[i], p, segsize, overlapsize, mins[i], maxs[i], numpts[i])) for j in range(len(acidlist[i].designlist)): scorelist[i].append(acidlist[i].designlist[j].score) minindex, minscore, scorearray = compute_best_score_combo(scorelist) results = [] if type(minindex) == int: results.append([aoi[0], acidlist[0].designlist[minindex].intervals, acidlist[0].required_acids]) else: for i in range(len(acidlist)): results.append([aoi[i], acidlist[i].designlist[minindex[i]].intervals, acidlist[i].required_acids]) return results if __name__ == '__main__': lines = [x.strip() for x in sys.stdin.readlines()] p = lines[0] aoi = lines[1] segsize = int(lines[2]) overlapsize = int(lines[3]) mins = [ float(d) for d in lines[4].split() ] maxs = [ float(d) for d in lines[5].split() ] numpts = [ int(i) for i in lines[6].split() ] res = compute_best_design(p, aoi, segsize, overlapsize, mins, maxs, numpts) print len(res) for cR in res: print cR[0] print len(cR[1]) for interval in cR[1]: print interval[0] print interval[1] for x in range(len(cR[1])): print cR[2][x]
37.521277
113
0.641338
""" Created on Wed Aug 24 11:36:17 2011 @author: ryan """ import numpy as np import sys class Acid: def __init__(self, name, p, segsize, overlapsize, minval, maxval, numpts): self.designtype = self.compute_design_type(numpts) self.locations = self.compute_locations(name, p) self.required_acids = self.compute_required_acids(self.locations, minval, maxval, numpts) acid_designs = self.compute_acid_designs(self.locations, len(p)) segment_designs = [acidDesign_to_segmentDesign(x, len(p), segsize, overlapsize) for x in acid_designs] self.designlist = remove_suboptimal_designs(segment_designs) def compute_design_type(self, numpts): designtype = [] while numpts > 1: numpts /= 2 designtype.append(numpts) return designtype def compute_locations(self, name, p): p = list(p) locations = [] while name in p: locations.append(p.index(name) + len(locations)) p.remove(name) return locations def compute_required_acids(self, locations, minval, maxval, numpts): total_available = len(locations) total_required = round((maxval - minval) * total_available) if total_required == 0: total_required = 1 delta = total_available * (maxval - minval) / (numpts - 1.0) points_required = [nDeltas * delta for nDeltas in self.designtype] required_acids = [np.floor(x) for x in points_required] while sum(required_acids) < total_required: differences = [x - y for x, y in zip(points_required, required_acids)] index_of_max = differences.index(max(differences)) required_acids[index_of_max] += 1 return [int(x) for x in required_acids] def compute_acid_designs(self, locations, seqlength): designlist = get_possible_intervals(seqlength, locations, self.required_acids[0]) for i in range(1, len(self.required_acids)): designlist = disjoint_combos(designlist, get_possible_intervals(seqlength, locations, self.required_acids[i])) return designlist def overlap_test(array1, array2): "Tests if two vectors have nonzero entries at any common index" return sum(array1 * array2) != 0 def disjoint_combos(list1, list2): """Each list consists of Design instances. Designs are tested for overlap and if they do not overlap are combined. All resulting combo designs are returned.""" combos = [] for x in list1: for y in list2: if overlap_test(x.score, y.score) == False: combos.append(x + y) return combos def get_possible_intervals(seqlength, locations, number_needed): possible_intervals = [] for i in range(len(locations) - number_needed + 1): score = np.zeros(seqlength) score[locations[i]:locations[i + number_needed - 1] + 1] = 1 possible_intervals.append(Design([(locations[i], locations[i + number_needed - 1])], score)) return possible_intervals def acidDesign_to_segmentDesign(acid_design, seqlength, segsize, overlapsize): numsegs = int(np.ceil((float(seqlength) - overlapsize) / (segsize - overlapsize))) segment_intervals = [] segment_score = np.ones(numsegs) for x, y in acid_design.intervals: if x <= segsize - 1: L = 0 else: L = (x - overlapsize) / (segsize - overlapsize) if y >= seqlength - segsize + 1: R = numsegs - 1 else: R = y / (segsize - overlapsize) segment_intervals.append((L, R)) segment_score[L:R + 1] *= 2 return Design(segment_intervals, segment_score) def remove_suboptimal_designs(designlist): numdesigns = len(designlist) for i in range(numdesigns - 1, -1, -1): Fail = np.any([min(designlist[i].score - x.score) >= 0 and designlist[i] != x for x in designlist]) if Fail == True: designlist.remove(designlist[i]) return designlist class Design: def __init__(self, intervals, score): self.intervals = intervals self.score = score def __add__(self, other): return Design(self.intervals + other.intervals, self.score + other.score) class IndexAndScore: def __init__(self, index, score): self.index = index self.score = score def compute_best_score_combo(scorelist): index_and_score_list = [] for i in range(len(scorelist[0])): index_and_score_list.append(IndexAndScore([i, ], scorelist[0][i])) for j in range(1, len(scorelist)): index_and_score_list = compute_pairwise_score_combos(index_and_score_list, scorelist[j]) minindex = 0 minscorearray = index_and_score_list[0] minscore = sum(index_and_score_list[0].score) for i in range(1, len(index_and_score_list)): if sum(index_and_score_list[i].score) < minscore: minscore = sum(index_and_score_list[i].score) minindex = index_and_score_list[i].index minscorearray = index_and_score_list[i].score return minindex, minscore, minscorearray def compute_pairwise_score_combos(list1, list2): """first argument is a list of IndexAndScore type, second list is a list of score arrays""" newlist = [] for x in list1: for i in range(len(list2)): newlist.append(IndexAndScore(x.index + [i, ], x.score * list2[i])) return newlist def compute_best_design(p, aoi, segsize, overlapsize, mins, maxs, numpts): acidlist = [] scorelist = [[] for i in range(len(aoi))] for i in range(len(aoi)): acidlist.append(Acid(aoi[i], p, segsize, overlapsize, mins[i], maxs[i], numpts[i])) for j in range(len(acidlist[i].designlist)): scorelist[i].append(acidlist[i].designlist[j].score) minindex, minscore, scorearray = compute_best_score_combo(scorelist) results = [] if type(minindex) == int: results.append([aoi[0], acidlist[0].designlist[minindex].intervals, acidlist[0].required_acids]) else: for i in range(len(acidlist)): results.append([aoi[i], acidlist[i].designlist[minindex[i]].intervals, acidlist[i].required_acids]) return results if __name__ == '__main__': lines = [x.strip() for x in sys.stdin.readlines()] p = lines[0] aoi = lines[1] segsize = int(lines[2]) overlapsize = int(lines[3]) mins = [ float(d) for d in lines[4].split() ] maxs = [ float(d) for d in lines[5].split() ] numpts = [ int(i) for i in lines[6].split() ] res = compute_best_design(p, aoi, segsize, overlapsize, mins, maxs, numpts) print len(res) for cR in res: print cR[0] print len(cR[1]) for interval in cR[1]: print interval[0] print interval[1] for x in range(len(cR[1])): print cR[2][x]
false
true
f7f3ff3c80632f36fbccacd0f3d3e08bd6dbf839
15,148
py
Python
numba/tests/test_cfunc.py
tolysz/numba
d7953a18dbf5ea231dc16e967ce8e9b754578ea6
[ "Apache-2.0", "BSD-2-Clause" ]
null
null
null
numba/tests/test_cfunc.py
tolysz/numba
d7953a18dbf5ea231dc16e967ce8e9b754578ea6
[ "Apache-2.0", "BSD-2-Clause" ]
1
2019-02-11T13:46:30.000Z
2019-02-11T13:46:30.000Z
numba/tests/test_cfunc.py
asodeur/numba
d7953a18dbf5ea231dc16e967ce8e9b754578ea6
[ "Apache-2.0", "BSD-2-Clause" ]
null
null
null
""" Tests for @cfunc and friends. """ import ctypes import os import subprocess import sys from collections import namedtuple import numpy as np from numba import unittest_support as unittest from numba import cfunc, carray, farray, types, typing, utils, njit from numba import cffi_support, numpy_support from .support import TestCase, tag, captured_stderr from .test_dispatcher import BaseCacheTest skip_cffi_unsupported = unittest.skipUnless( cffi_support.SUPPORTED, "CFFI not supported -- please install the cffi module", ) def add_usecase(a, b): return a + b def div_usecase(a, b): c = a / b return c def square_usecase(a): return a ** 2 add_sig = "float64(float64, float64)" div_sig = "float64(int64, int64)" square_sig = "float64(float64)" def objmode_usecase(a, b): object() return a + b # Test functions for carray() and farray() CARRAY_USECASE_OUT_LEN = 8 def make_cfarray_usecase(func): def cfarray_usecase(in_ptr, out_ptr, m, n): # Tuple shape in_ = func(in_ptr, (m, n)) # Integer shape out = func(out_ptr, CARRAY_USECASE_OUT_LEN) out[0] = in_.ndim out[1:3] = in_.shape out[3:5] = in_.strides out[5] = in_.flags.c_contiguous out[6] = in_.flags.f_contiguous s = 0 for i, j in np.ndindex(m, n): s += in_[i, j] * (i - j) out[7] = s return cfarray_usecase carray_usecase = make_cfarray_usecase(carray) farray_usecase = make_cfarray_usecase(farray) def make_cfarray_dtype_usecase(func): # Same as make_cfarray_usecase(), but with explicit dtype. def cfarray_usecase(in_ptr, out_ptr, m, n): # Tuple shape in_ = func(in_ptr, (m, n), dtype=np.float32) # Integer shape out = func(out_ptr, CARRAY_USECASE_OUT_LEN, np.float32) out[0] = in_.ndim out[1:3] = in_.shape out[3:5] = in_.strides out[5] = in_.flags.c_contiguous out[6] = in_.flags.f_contiguous s = 0 for i, j in np.ndindex(m, n): s += in_[i, j] * (i - j) out[7] = s return cfarray_usecase carray_dtype_usecase = make_cfarray_dtype_usecase(carray) farray_dtype_usecase = make_cfarray_dtype_usecase(farray) carray_float32_usecase_sig = types.void(types.CPointer(types.float32), types.CPointer(types.float32), types.intp, types.intp) carray_float64_usecase_sig = types.void(types.CPointer(types.float64), types.CPointer(types.float64), types.intp, types.intp) carray_voidptr_usecase_sig = types.void(types.voidptr, types.voidptr, types.intp, types.intp) class TestCFunc(TestCase): def test_basic(self): """ Basic usage and properties of a cfunc. """ f = cfunc(add_sig)(add_usecase) self.assertEqual(f.__name__, "add_usecase") self.assertEqual(f.__qualname__, "add_usecase") self.assertIs(f.__wrapped__, add_usecase) symbol = f.native_name self.assertIsInstance(symbol, str) self.assertIn("add_usecase", symbol) addr = f.address self.assertIsInstance(addr, utils.INT_TYPES) ct = f.ctypes self.assertEqual(ctypes.cast(ct, ctypes.c_void_p).value, addr) self.assertPreciseEqual(ct(2.0, 3.5), 5.5) @skip_cffi_unsupported def test_cffi(self): from . import cffi_usecases ffi, lib = cffi_usecases.load_inline_module() f = cfunc(square_sig)(square_usecase) res = lib._numba_test_funcptr(f.cffi) self.assertPreciseEqual(res, 2.25) # 1.5 ** 2 def test_locals(self): # By forcing the intermediate result into an integer, we # truncate the ultimate function result f = cfunc(div_sig, locals={'c': types.int64})(div_usecase) self.assertPreciseEqual(f.ctypes(8, 3), 2.0) def test_errors(self): f = cfunc(div_sig)(div_usecase) with captured_stderr() as err: self.assertPreciseEqual(f.ctypes(5, 2), 2.5) self.assertEqual(err.getvalue(), "") with captured_stderr() as err: res = f.ctypes(5, 0) # This is just a side effect of Numba zero-initializing # stack variables, and could change in the future. self.assertPreciseEqual(res, 0.0) err = err.getvalue() self.assertIn("ZeroDivisionError:", err) self.assertIn("Exception ignored", err) def test_llvm_ir(self): f = cfunc(add_sig)(add_usecase) ir = f.inspect_llvm() self.assertIn(f.native_name, ir) self.assertIn("fadd double", ir) def test_object_mode(self): """ Object mode is currently unsupported. """ with self.assertRaises(NotImplementedError): cfunc(add_sig, forceobj=True)(add_usecase) with self.assertTypingError() as raises: cfunc(add_sig)(objmode_usecase) self.assertIn("Untyped global name 'object'", str(raises.exception)) class TestCFuncCache(BaseCacheTest): here = os.path.dirname(__file__) usecases_file = os.path.join(here, "cfunc_cache_usecases.py") modname = "cfunc_caching_test_fodder" def run_in_separate_process(self): # Cached functions can be run from a distinct process. code = """if 1: import sys sys.path.insert(0, %(tempdir)r) mod = __import__(%(modname)r) mod.self_test() f = mod.add_usecase assert f.cache_hits == 1 f = mod.outer assert f.cache_hits == 1 f = mod.div_usecase assert f.cache_hits == 1 """ % dict(tempdir=self.tempdir, modname=self.modname) popen = subprocess.Popen([sys.executable, "-c", code], stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = popen.communicate() if popen.returncode != 0: raise AssertionError("process failed with code %s: stderr follows\n%s\n" % (popen.returncode, err.decode())) def check_module(self, mod): mod.self_test() def test_caching(self): self.check_pycache(0) mod = self.import_module() self.check_pycache(6) # 3 index, 3 data self.assertEqual(mod.add_usecase.cache_hits, 0) self.assertEqual(mod.outer.cache_hits, 0) self.assertEqual(mod.add_nocache_usecase.cache_hits, 0) self.assertEqual(mod.div_usecase.cache_hits, 0) self.check_module(mod) # Reload module to hit the cache mod = self.import_module() self.check_pycache(6) # 3 index, 3 data self.assertEqual(mod.add_usecase.cache_hits, 1) self.assertEqual(mod.outer.cache_hits, 1) self.assertEqual(mod.add_nocache_usecase.cache_hits, 0) self.assertEqual(mod.div_usecase.cache_hits, 1) self.check_module(mod) self.run_in_separate_process() class TestCArray(TestCase): """ Tests for carray() and farray(). """ def run_carray_usecase(self, pointer_factory, func): a = np.arange(10, 16).reshape((2, 3)).astype(np.float32) out = np.empty(CARRAY_USECASE_OUT_LEN, dtype=np.float32) func(pointer_factory(a), pointer_factory(out), *a.shape) return out def check_carray_usecase(self, pointer_factory, pyfunc, cfunc): expected = self.run_carray_usecase(pointer_factory, pyfunc) got = self.run_carray_usecase(pointer_factory, cfunc) self.assertPreciseEqual(expected, got) def make_voidptr(self, arr): return arr.ctypes.data_as(ctypes.c_void_p) def make_float32_pointer(self, arr): return arr.ctypes.data_as(ctypes.POINTER(ctypes.c_float)) def make_float64_pointer(self, arr): return arr.ctypes.data_as(ctypes.POINTER(ctypes.c_double)) def check_carray_farray(self, func, order): def eq(got, expected): # Same layout, dtype, shape, etc. self.assertPreciseEqual(got, expected) # Same underlying data self.assertEqual(got.ctypes.data, expected.ctypes.data) base = np.arange(6).reshape((2, 3)).astype(np.float32).copy(order=order) # With typed pointer and implied dtype a = func(self.make_float32_pointer(base), base.shape) eq(a, base) # Integer shape a = func(self.make_float32_pointer(base), base.size) eq(a, base.ravel('K')) # With typed pointer and explicit dtype a = func(self.make_float32_pointer(base), base.shape, base.dtype) eq(a, base) a = func(self.make_float32_pointer(base), base.shape, np.float32) eq(a, base) # With voidptr and explicit dtype a = func(self.make_voidptr(base), base.shape, base.dtype) eq(a, base) a = func(self.make_voidptr(base), base.shape, np.int32) eq(a, base.view(np.int32)) # voidptr without dtype with self.assertRaises(TypeError): func(self.make_voidptr(base), base.shape) # Invalid pointer type with self.assertRaises(TypeError): func(base.ctypes.data, base.shape) # Mismatching dtype with self.assertRaises(TypeError) as raises: func(self.make_float32_pointer(base), base.shape, np.int32) self.assertIn("mismatching dtype 'int32' for pointer", str(raises.exception)) def test_carray(self): """ Test pure Python carray(). """ self.check_carray_farray(carray, 'C') def test_farray(self): """ Test pure Python farray(). """ self.check_carray_farray(farray, 'F') def make_carray_sigs(self, formal_sig): """ Generate a bunch of concrete signatures by varying the width and signedness of size arguments (see issue #1923). """ for actual_size in (types.intp, types.int32, types.intc, types.uintp, types.uint32, types.uintc): args = tuple(actual_size if a == types.intp else a for a in formal_sig.args) yield formal_sig.return_type(*args) def check_numba_carray_farray(self, usecase, dtype_usecase): # With typed pointers and implicit dtype pyfunc = usecase for sig in self.make_carray_sigs(carray_float32_usecase_sig): f = cfunc(sig)(pyfunc) self.check_carray_usecase(self.make_float32_pointer, pyfunc, f.ctypes) # With typed pointers and explicit (matching) dtype pyfunc = dtype_usecase for sig in self.make_carray_sigs(carray_float32_usecase_sig): f = cfunc(sig)(pyfunc) self.check_carray_usecase(self.make_float32_pointer, pyfunc, f.ctypes) # With typed pointers and mismatching dtype with self.assertTypingError() as raises: f = cfunc(carray_float64_usecase_sig)(pyfunc) self.assertIn("mismatching dtype 'float32' for pointer type 'float64*'", str(raises.exception)) # With voidptr pyfunc = dtype_usecase for sig in self.make_carray_sigs(carray_voidptr_usecase_sig): f = cfunc(sig)(pyfunc) self.check_carray_usecase(self.make_float32_pointer, pyfunc, f.ctypes) def test_numba_carray(self): """ Test Numba-compiled carray() against pure Python carray() """ self.check_numba_carray_farray(carray_usecase, carray_dtype_usecase) def test_numba_farray(self): """ Test Numba-compiled farray() against pure Python farray() """ self.check_numba_carray_farray(farray_usecase, farray_dtype_usecase) @skip_cffi_unsupported class TestCffiStruct(TestCase): c_source = """ typedef struct _big_struct { int i1; float f2; double d3; float af4[9]; } big_struct; typedef struct _error { int bits:4; } error; typedef double (*myfunc)(big_struct*, size_t); """ def get_ffi(self, src=c_source): from cffi import FFI ffi = FFI() ffi.cdef(src) return ffi def test_type_parsing(self): ffi = self.get_ffi() # Check struct typedef big_struct = ffi.typeof('big_struct') nbtype = cffi_support.map_type(big_struct, use_record_dtype=True) self.assertIsInstance(nbtype, types.Record) self.assertEqual(len(nbtype), 4) self.assertEqual(nbtype.typeof('i1'), types.int32) self.assertEqual(nbtype.typeof('f2'), types.float32) self.assertEqual(nbtype.typeof('d3'), types.float64) self.assertEqual( nbtype.typeof('af4'), types.NestedArray(dtype=types.float32, shape=(9,)), ) # Check function typedef myfunc = ffi.typeof('myfunc') sig = cffi_support.map_type(myfunc, use_record_dtype=True) self.assertIsInstance(sig, typing.Signature) self.assertEqual(sig.args[0], types.CPointer(nbtype)) self.assertEqual(sig.args[1], types.uintp) self.assertEqual(sig.return_type, types.float64) def test_cfunc_callback(self): ffi = self.get_ffi() big_struct = ffi.typeof('big_struct') nb_big_struct = cffi_support.map_type(big_struct, use_record_dtype=True) sig = cffi_support.map_type(ffi.typeof('myfunc'), use_record_dtype=True) @njit def calc(base): tmp = 0 for i in range(base.size): elem = base[i] tmp += elem.i1 * elem.f2 / elem.d3 tmp += base[i].af4.sum() return tmp @cfunc(sig) def foo(ptr, n): base = carray(ptr, n) return calc(base) # Make data mydata = ffi.new('big_struct[3]') ptr = ffi.cast('big_struct*', mydata) for i in range(3): ptr[i].i1 = i * 123 ptr[i].f2 = i * 213 ptr[i].d3 = (1 + i) * 213 for j in range(9): ptr[i].af4[j] = i * 10 + j # Address of my data addr = int(ffi.cast('size_t', ptr)) got = foo.ctypes(addr, 3) # Make numpy array from the cffi buffer array = np.ndarray( buffer=ffi.buffer(mydata), dtype=numpy_support.as_dtype(nb_big_struct), shape=3, ) expect = calc(array) self.assertEqual(got, expect) def test_unsupport_bitsize(self): ffi = self.get_ffi() with self.assertRaises(ValueError) as raises: cffi_support.map_type( ffi.typeof('error'), use_record_dtype=True, ) # When bitsize is provided, bitshift defaults to 0. self.assertEqual( "field 'bits' has bitshift, this is not supported", str(raises.exception) ) if __name__ == "__main__": unittest.main()
32.298507
84
0.613414
import ctypes import os import subprocess import sys from collections import namedtuple import numpy as np from numba import unittest_support as unittest from numba import cfunc, carray, farray, types, typing, utils, njit from numba import cffi_support, numpy_support from .support import TestCase, tag, captured_stderr from .test_dispatcher import BaseCacheTest skip_cffi_unsupported = unittest.skipUnless( cffi_support.SUPPORTED, "CFFI not supported -- please install the cffi module", ) def add_usecase(a, b): return a + b def div_usecase(a, b): c = a / b return c def square_usecase(a): return a ** 2 add_sig = "float64(float64, float64)" div_sig = "float64(int64, int64)" square_sig = "float64(float64)" def objmode_usecase(a, b): object() return a + b CARRAY_USECASE_OUT_LEN = 8 def make_cfarray_usecase(func): def cfarray_usecase(in_ptr, out_ptr, m, n): in_ = func(in_ptr, (m, n)) out = func(out_ptr, CARRAY_USECASE_OUT_LEN) out[0] = in_.ndim out[1:3] = in_.shape out[3:5] = in_.strides out[5] = in_.flags.c_contiguous out[6] = in_.flags.f_contiguous s = 0 for i, j in np.ndindex(m, n): s += in_[i, j] * (i - j) out[7] = s return cfarray_usecase carray_usecase = make_cfarray_usecase(carray) farray_usecase = make_cfarray_usecase(farray) def make_cfarray_dtype_usecase(func): def cfarray_usecase(in_ptr, out_ptr, m, n): in_ = func(in_ptr, (m, n), dtype=np.float32) out = func(out_ptr, CARRAY_USECASE_OUT_LEN, np.float32) out[0] = in_.ndim out[1:3] = in_.shape out[3:5] = in_.strides out[5] = in_.flags.c_contiguous out[6] = in_.flags.f_contiguous s = 0 for i, j in np.ndindex(m, n): s += in_[i, j] * (i - j) out[7] = s return cfarray_usecase carray_dtype_usecase = make_cfarray_dtype_usecase(carray) farray_dtype_usecase = make_cfarray_dtype_usecase(farray) carray_float32_usecase_sig = types.void(types.CPointer(types.float32), types.CPointer(types.float32), types.intp, types.intp) carray_float64_usecase_sig = types.void(types.CPointer(types.float64), types.CPointer(types.float64), types.intp, types.intp) carray_voidptr_usecase_sig = types.void(types.voidptr, types.voidptr, types.intp, types.intp) class TestCFunc(TestCase): def test_basic(self): f = cfunc(add_sig)(add_usecase) self.assertEqual(f.__name__, "add_usecase") self.assertEqual(f.__qualname__, "add_usecase") self.assertIs(f.__wrapped__, add_usecase) symbol = f.native_name self.assertIsInstance(symbol, str) self.assertIn("add_usecase", symbol) addr = f.address self.assertIsInstance(addr, utils.INT_TYPES) ct = f.ctypes self.assertEqual(ctypes.cast(ct, ctypes.c_void_p).value, addr) self.assertPreciseEqual(ct(2.0, 3.5), 5.5) @skip_cffi_unsupported def test_cffi(self): from . import cffi_usecases ffi, lib = cffi_usecases.load_inline_module() f = cfunc(square_sig)(square_usecase) res = lib._numba_test_funcptr(f.cffi) self.assertPreciseEqual(res, 2.25) def test_locals(self): f = cfunc(div_sig, locals={'c': types.int64})(div_usecase) self.assertPreciseEqual(f.ctypes(8, 3), 2.0) def test_errors(self): f = cfunc(div_sig)(div_usecase) with captured_stderr() as err: self.assertPreciseEqual(f.ctypes(5, 2), 2.5) self.assertEqual(err.getvalue(), "") with captured_stderr() as err: res = f.ctypes(5, 0) self.assertPreciseEqual(res, 0.0) err = err.getvalue() self.assertIn("ZeroDivisionError:", err) self.assertIn("Exception ignored", err) def test_llvm_ir(self): f = cfunc(add_sig)(add_usecase) ir = f.inspect_llvm() self.assertIn(f.native_name, ir) self.assertIn("fadd double", ir) def test_object_mode(self): with self.assertRaises(NotImplementedError): cfunc(add_sig, forceobj=True)(add_usecase) with self.assertTypingError() as raises: cfunc(add_sig)(objmode_usecase) self.assertIn("Untyped global name 'object'", str(raises.exception)) class TestCFuncCache(BaseCacheTest): here = os.path.dirname(__file__) usecases_file = os.path.join(here, "cfunc_cache_usecases.py") modname = "cfunc_caching_test_fodder" def run_in_separate_process(self): code = """if 1: import sys sys.path.insert(0, %(tempdir)r) mod = __import__(%(modname)r) mod.self_test() f = mod.add_usecase assert f.cache_hits == 1 f = mod.outer assert f.cache_hits == 1 f = mod.div_usecase assert f.cache_hits == 1 """ % dict(tempdir=self.tempdir, modname=self.modname) popen = subprocess.Popen([sys.executable, "-c", code], stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = popen.communicate() if popen.returncode != 0: raise AssertionError("process failed with code %s: stderr follows\n%s\n" % (popen.returncode, err.decode())) def check_module(self, mod): mod.self_test() def test_caching(self): self.check_pycache(0) mod = self.import_module() self.check_pycache(6) self.assertEqual(mod.add_usecase.cache_hits, 0) self.assertEqual(mod.outer.cache_hits, 0) self.assertEqual(mod.add_nocache_usecase.cache_hits, 0) self.assertEqual(mod.div_usecase.cache_hits, 0) self.check_module(mod) mod = self.import_module() self.check_pycache(6) self.assertEqual(mod.add_usecase.cache_hits, 1) self.assertEqual(mod.outer.cache_hits, 1) self.assertEqual(mod.add_nocache_usecase.cache_hits, 0) self.assertEqual(mod.div_usecase.cache_hits, 1) self.check_module(mod) self.run_in_separate_process() class TestCArray(TestCase): def run_carray_usecase(self, pointer_factory, func): a = np.arange(10, 16).reshape((2, 3)).astype(np.float32) out = np.empty(CARRAY_USECASE_OUT_LEN, dtype=np.float32) func(pointer_factory(a), pointer_factory(out), *a.shape) return out def check_carray_usecase(self, pointer_factory, pyfunc, cfunc): expected = self.run_carray_usecase(pointer_factory, pyfunc) got = self.run_carray_usecase(pointer_factory, cfunc) self.assertPreciseEqual(expected, got) def make_voidptr(self, arr): return arr.ctypes.data_as(ctypes.c_void_p) def make_float32_pointer(self, arr): return arr.ctypes.data_as(ctypes.POINTER(ctypes.c_float)) def make_float64_pointer(self, arr): return arr.ctypes.data_as(ctypes.POINTER(ctypes.c_double)) def check_carray_farray(self, func, order): def eq(got, expected): self.assertPreciseEqual(got, expected) self.assertEqual(got.ctypes.data, expected.ctypes.data) base = np.arange(6).reshape((2, 3)).astype(np.float32).copy(order=order) a = func(self.make_float32_pointer(base), base.shape) eq(a, base) a = func(self.make_float32_pointer(base), base.size) eq(a, base.ravel('K')) a = func(self.make_float32_pointer(base), base.shape, base.dtype) eq(a, base) a = func(self.make_float32_pointer(base), base.shape, np.float32) eq(a, base) a = func(self.make_voidptr(base), base.shape, base.dtype) eq(a, base) a = func(self.make_voidptr(base), base.shape, np.int32) eq(a, base.view(np.int32)) with self.assertRaises(TypeError): func(self.make_voidptr(base), base.shape) with self.assertRaises(TypeError): func(base.ctypes.data, base.shape) with self.assertRaises(TypeError) as raises: func(self.make_float32_pointer(base), base.shape, np.int32) self.assertIn("mismatching dtype 'int32' for pointer", str(raises.exception)) def test_carray(self): self.check_carray_farray(carray, 'C') def test_farray(self): self.check_carray_farray(farray, 'F') def make_carray_sigs(self, formal_sig): for actual_size in (types.intp, types.int32, types.intc, types.uintp, types.uint32, types.uintc): args = tuple(actual_size if a == types.intp else a for a in formal_sig.args) yield formal_sig.return_type(*args) def check_numba_carray_farray(self, usecase, dtype_usecase): pyfunc = usecase for sig in self.make_carray_sigs(carray_float32_usecase_sig): f = cfunc(sig)(pyfunc) self.check_carray_usecase(self.make_float32_pointer, pyfunc, f.ctypes) pyfunc = dtype_usecase for sig in self.make_carray_sigs(carray_float32_usecase_sig): f = cfunc(sig)(pyfunc) self.check_carray_usecase(self.make_float32_pointer, pyfunc, f.ctypes) with self.assertTypingError() as raises: f = cfunc(carray_float64_usecase_sig)(pyfunc) self.assertIn("mismatching dtype 'float32' for pointer type 'float64*'", str(raises.exception)) pyfunc = dtype_usecase for sig in self.make_carray_sigs(carray_voidptr_usecase_sig): f = cfunc(sig)(pyfunc) self.check_carray_usecase(self.make_float32_pointer, pyfunc, f.ctypes) def test_numba_carray(self): self.check_numba_carray_farray(carray_usecase, carray_dtype_usecase) def test_numba_farray(self): self.check_numba_carray_farray(farray_usecase, farray_dtype_usecase) @skip_cffi_unsupported class TestCffiStruct(TestCase): c_source = """ typedef struct _big_struct { int i1; float f2; double d3; float af4[9]; } big_struct; typedef struct _error { int bits:4; } error; typedef double (*myfunc)(big_struct*, size_t); """ def get_ffi(self, src=c_source): from cffi import FFI ffi = FFI() ffi.cdef(src) return ffi def test_type_parsing(self): ffi = self.get_ffi() big_struct = ffi.typeof('big_struct') nbtype = cffi_support.map_type(big_struct, use_record_dtype=True) self.assertIsInstance(nbtype, types.Record) self.assertEqual(len(nbtype), 4) self.assertEqual(nbtype.typeof('i1'), types.int32) self.assertEqual(nbtype.typeof('f2'), types.float32) self.assertEqual(nbtype.typeof('d3'), types.float64) self.assertEqual( nbtype.typeof('af4'), types.NestedArray(dtype=types.float32, shape=(9,)), ) myfunc = ffi.typeof('myfunc') sig = cffi_support.map_type(myfunc, use_record_dtype=True) self.assertIsInstance(sig, typing.Signature) self.assertEqual(sig.args[0], types.CPointer(nbtype)) self.assertEqual(sig.args[1], types.uintp) self.assertEqual(sig.return_type, types.float64) def test_cfunc_callback(self): ffi = self.get_ffi() big_struct = ffi.typeof('big_struct') nb_big_struct = cffi_support.map_type(big_struct, use_record_dtype=True) sig = cffi_support.map_type(ffi.typeof('myfunc'), use_record_dtype=True) @njit def calc(base): tmp = 0 for i in range(base.size): elem = base[i] tmp += elem.i1 * elem.f2 / elem.d3 tmp += base[i].af4.sum() return tmp @cfunc(sig) def foo(ptr, n): base = carray(ptr, n) return calc(base) mydata = ffi.new('big_struct[3]') ptr = ffi.cast('big_struct*', mydata) for i in range(3): ptr[i].i1 = i * 123 ptr[i].f2 = i * 213 ptr[i].d3 = (1 + i) * 213 for j in range(9): ptr[i].af4[j] = i * 10 + j addr = int(ffi.cast('size_t', ptr)) got = foo.ctypes(addr, 3) array = np.ndarray( buffer=ffi.buffer(mydata), dtype=numpy_support.as_dtype(nb_big_struct), shape=3, ) expect = calc(array) self.assertEqual(got, expect) def test_unsupport_bitsize(self): ffi = self.get_ffi() with self.assertRaises(ValueError) as raises: cffi_support.map_type( ffi.typeof('error'), use_record_dtype=True, ) self.assertEqual( "field 'bits' has bitshift, this is not supported", str(raises.exception) ) if __name__ == "__main__": unittest.main()
true
true
f7f3ffb2c7c4d6f598324352077c884c06a2a7af
1,092
py
Python
backend/apps/organizations/migrations/0031_auto_20210824_1446.py
hovedstyret/indok-web
598e9ca0b5f3a5e776a85dec0a8694b9bcd5a159
[ "MIT" ]
3
2021-11-18T09:29:14.000Z
2022-01-13T20:12:11.000Z
backend/apps/organizations/migrations/0031_auto_20210824_1446.py
rubberdok/indok-web
598e9ca0b5f3a5e776a85dec0a8694b9bcd5a159
[ "MIT" ]
277
2022-01-17T18:16:44.000Z
2022-03-31T19:44:04.000Z
backend/apps/organizations/migrations/0031_auto_20210824_1446.py
hovedstyret/indok-web
598e9ca0b5f3a5e776a85dec0a8694b9bcd5a159
[ "MIT" ]
null
null
null
# Generated by Django 3.1.8 on 2021-08-24 12:46 from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ("permissions", "0003_auto_20210824_1213"), ("organizations", "0030_auto_20210426_2129"), ] operations = [ migrations.AlterField( model_name="organization", name="hr_group", field=models.OneToOneField( blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name="hr_organization", to="permissions.responsiblegroup", ), ), migrations.AlterField( model_name="organization", name="primary_group", field=models.OneToOneField( blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name="organization", to="permissions.responsiblegroup", ), ), ]
28.736842
63
0.555861
from django.db import migrations, models import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ ("permissions", "0003_auto_20210824_1213"), ("organizations", "0030_auto_20210426_2129"), ] operations = [ migrations.AlterField( model_name="organization", name="hr_group", field=models.OneToOneField( blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name="hr_organization", to="permissions.responsiblegroup", ), ), migrations.AlterField( model_name="organization", name="primary_group", field=models.OneToOneField( blank=True, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name="organization", to="permissions.responsiblegroup", ), ), ]
true
true
f7f3ffc2f7a6b7908955cf5463872a24feb9f6af
4,933
py
Python
roles/cloudera_manager/api_client/action_plugins/cm_api.py
scigility/cloudera.cluster
474afce28ab52afe5f828f16647760a14b1c350f
[ "Apache-2.0" ]
15
2021-04-23T18:21:52.000Z
2022-02-02T17:40:59.000Z
roles/cloudera_manager/api_client/action_plugins/cm_api.py
scigility/cloudera.cluster
474afce28ab52afe5f828f16647760a14b1c350f
[ "Apache-2.0" ]
28
2021-04-29T06:43:25.000Z
2022-03-23T09:11:54.000Z
roles/cloudera_manager/api_client/action_plugins/cm_api.py
scigility/cloudera.cluster
474afce28ab52afe5f828f16647760a14b1c350f
[ "Apache-2.0" ]
28
2021-05-04T19:02:33.000Z
2022-03-18T17:17:46.000Z
# Copyright 2021 Cloudera, Inc. # # 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. from ansible.plugins.action import ActionBase from ansible.errors import AnsibleError from ansible.utils.display import Display import time display = Display() class ActionModule(ActionBase): def build_url(self, api_base, api_endpoint): if not api_endpoint.startswith("/"): api_endpoint = "/" + api_endpoint return api_base + api_endpoint def build_args(self, task_vars, additional_args=dict()): args = dict( body_format = "json", force_basic_auth=True, url_username=task_vars['cloudera_manager_api_user'], url_password=task_vars['cloudera_manager_api_password'], return_content=True, validate_certs=task_vars['cloudera_manager_tls_validate_certs'] ) args.update(additional_args) return args def get_api_base_url(self, task_vars): # If there's already a value in task vars, just use that if 'cloudera_manager_api' in task_vars: api_base = task_vars['cloudera_manager_api'] result = None else: # Call /api/version endpoint to find the correct API version number. url = self.build_url(task_vars['cloudera_manager_url'], '/api/version') args = self.build_args(task_vars, dict(url=url)) result = self._execute_module('uri', module_args=args, task_vars=task_vars, wrap_async=self._task.async_val) # We use the URL returned in the result rather than the one we defined originally. # This has the benefit of allowing to use TLS-enabled endpoints later if the call was redirected. api_base = result["url"].replace("version", result['content']) if result['status'] == 200 else None return (api_base, result) def poll_command_status(self, task_vars, api_base_url, command_id): args = self.build_args(task_vars, additional_args=dict( url = self.build_url(api_base_url, "/commands/" + str(command_id)) )) result = self._execute_module('uri', module_args=args, task_vars=task_vars, wrap_async=self._task.async_val) return result def run(self, tmp=None, task_vars=None): result = super(ActionModule, self).run(tmp, task_vars) # Get Cloudera Manager API base url from task vars, or work it out ourselves api_base_url, api_base_result = self.get_api_base_url(task_vars) if not api_base_url: result.update(api_base_result) return result # Add endpoint and request method to base args containing creds etc uri_module_args = self.build_args(task_vars, additional_args=dict( url = self.build_url(api_base_url, self._task.args['endpoint']), method = self._task.args.get('method') or 'GET', status_code = self._task.args.get('status_code') or '200', timeout = self._task.args.get('timeout') or '30' )) poll_duration = int(self._task.args.get('poll_duration') or 10) poll_max_failed_retries = int(self._task.args.get('poll_max_failed_retries') or 3) # Add request body if necessary if 'body' in self._task.args: uri_module_args.update(body = self._task.args['body']) # Send request to CM API uri_result = self._execute_module('uri', module_args=uri_module_args, task_vars=task_vars, wrap_async=self._task.async_val) result.update(uri_result) # If we get ApiCommand response, and it is active, wait for completion failed_polls = 0 if 'json' in uri_result: response = uri_result['json'] if 'id' in response and 'active' in response: command_id = response['id'] command_name = response['name'] command_active = response['active'] while command_active and failed_polls < poll_max_failed_retries: time.sleep(poll_duration) display.vv("Waiting for {} command ({}) to complete...".format(command_name, command_id)) command_status = self.poll_command_status(task_vars, api_base_url, command_id) if 'json' in command_status: failed_polls = 0 response = command_status['json'] command_active = response['active'] else: failed_polls += 1 response = {'success': False} display.vv("Failed to poll command ({}) for status (attempt {} of {})...".format( command_id, failed_polls, poll_max_failed_retries)) result.update(command_status) result['failed'] = not response['success'] return result
41.805085
127
0.702818
from ansible.plugins.action import ActionBase from ansible.errors import AnsibleError from ansible.utils.display import Display import time display = Display() class ActionModule(ActionBase): def build_url(self, api_base, api_endpoint): if not api_endpoint.startswith("/"): api_endpoint = "/" + api_endpoint return api_base + api_endpoint def build_args(self, task_vars, additional_args=dict()): args = dict( body_format = "json", force_basic_auth=True, url_username=task_vars['cloudera_manager_api_user'], url_password=task_vars['cloudera_manager_api_password'], return_content=True, validate_certs=task_vars['cloudera_manager_tls_validate_certs'] ) args.update(additional_args) return args def get_api_base_url(self, task_vars): if 'cloudera_manager_api' in task_vars: api_base = task_vars['cloudera_manager_api'] result = None else: # Call /api/version endpoint to find the correct API version number. url = self.build_url(task_vars['cloudera_manager_url'], '/api/version') args = self.build_args(task_vars, dict(url=url)) result = self._execute_module('uri', module_args=args, task_vars=task_vars, wrap_async=self._task.async_val) # We use the URL returned in the result rather than the one we defined originally. # This has the benefit of allowing to use TLS-enabled endpoints later if the call was redirected. api_base = result["url"].replace("version", result['content']) if result['status'] == 200 else None return (api_base, result) def poll_command_status(self, task_vars, api_base_url, command_id): args = self.build_args(task_vars, additional_args=dict( url = self.build_url(api_base_url, "/commands/" + str(command_id)) )) result = self._execute_module('uri', module_args=args, task_vars=task_vars, wrap_async=self._task.async_val) return result def run(self, tmp=None, task_vars=None): result = super(ActionModule, self).run(tmp, task_vars) # Get Cloudera Manager API base url from task vars, or work it out ourselves api_base_url, api_base_result = self.get_api_base_url(task_vars) if not api_base_url: result.update(api_base_result) return result # Add endpoint and request method to base args containing creds etc uri_module_args = self.build_args(task_vars, additional_args=dict( url = self.build_url(api_base_url, self._task.args['endpoint']), method = self._task.args.get('method') or 'GET', status_code = self._task.args.get('status_code') or '200', timeout = self._task.args.get('timeout') or '30' )) poll_duration = int(self._task.args.get('poll_duration') or 10) poll_max_failed_retries = int(self._task.args.get('poll_max_failed_retries') or 3) # Add request body if necessary if 'body' in self._task.args: uri_module_args.update(body = self._task.args['body']) # Send request to CM API uri_result = self._execute_module('uri', module_args=uri_module_args, task_vars=task_vars, wrap_async=self._task.async_val) result.update(uri_result) # If we get ApiCommand response, and it is active, wait for completion failed_polls = 0 if 'json' in uri_result: response = uri_result['json'] if 'id' in response and 'active' in response: command_id = response['id'] command_name = response['name'] command_active = response['active'] while command_active and failed_polls < poll_max_failed_retries: time.sleep(poll_duration) display.vv("Waiting for {} command ({}) to complete...".format(command_name, command_id)) command_status = self.poll_command_status(task_vars, api_base_url, command_id) if 'json' in command_status: failed_polls = 0 response = command_status['json'] command_active = response['active'] else: failed_polls += 1 response = {'success': False} display.vv("Failed to poll command ({}) for status (attempt {} of {})...".format( command_id, failed_polls, poll_max_failed_retries)) result.update(command_status) result['failed'] = not response['success'] return result
true
true
f7f3ffd47462052d06432704374f30c8e1fef9c1
6,918
py
Python
nextdl/extractor/telecinco.py
devenu85/nextdl
0b458f556e2e0be80cb94bd9a9b1405ad2e9182d
[ "MIT" ]
1
2021-12-19T13:55:20.000Z
2021-12-19T13:55:20.000Z
nextdl/extractor/telecinco.py
devenu85/nextdl
0b458f556e2e0be80cb94bd9a9b1405ad2e9182d
[ "MIT" ]
null
null
null
nextdl/extractor/telecinco.py
devenu85/nextdl
0b458f556e2e0be80cb94bd9a9b1405ad2e9182d
[ "MIT" ]
null
null
null
# coding: utf-8 from __future__ import unicode_literals import json import re from ..utils import clean_html, int_or_none, str_or_none, try_get from .common import InfoExtractor class TelecincoIE(InfoExtractor): IE_DESC = "telecinco.es, cuatro.com and mediaset.es" _VALID_URL = r"https?://(?:www\.)?(?:telecinco\.es|cuatro\.com|mediaset\.es)/(?:[^/]+/)+(?P<id>.+?)\.html" _TESTS = [ { "url": "http://www.telecinco.es/robinfood/temporada-01/t01xp14/Bacalao-cocochas-pil-pil_0_1876350223.html", "info_dict": { "id": "1876350223", "title": "Bacalao con kokotxas al pil-pil", "description": "md5:716caf5601e25c3c5ab6605b1ae71529", }, "playlist": [ { "md5": "7ee56d665cfd241c0e6d80fd175068b0", "info_dict": { "id": "JEA5ijCnF6p5W08A1rNKn7", "ext": "mp4", "title": "Con Martín Berasategui, hacer un bacalao al pil-pil es fácil y divertido", "duration": 662, }, } ], }, { "url": "http://www.cuatro.com/deportes/futbol/barcelona/Leo_Messi-Champions-Roma_2_2052780128.html", "md5": "c86fe0d99e3bdb46b7950d38bf6ef12a", "info_dict": { "id": "jn24Od1zGLG4XUZcnUnZB6", "ext": "mp4", "title": "¿Quién es este ex futbolista con el que hablan Leo Messi y Luis Suárez?", "description": "md5:a62ecb5f1934fc787107d7b9a2262805", "duration": 79, }, }, { "url": "http://www.mediaset.es/12meses/campanas/doylacara/conlatratanohaytrato/Ayudame-dar-cara-trata-trato_2_1986630220.html", "md5": "eddb50291df704ce23c74821b995bcac", "info_dict": { "id": "aywerkD2Sv1vGNqq9b85Q2", "ext": "mp4", "title": "#DOYLACARA. Con la trata no hay trato", "description": "md5:2771356ff7bfad9179c5f5cd954f1477", "duration": 50, }, }, { # video in opening's content "url": "https://www.telecinco.es/vivalavida/fiorella-sobrina-edmundo-arrocet-entrevista_18_2907195140.html", "info_dict": { "id": "2907195140", "title": 'La surrealista entrevista a la sobrina de Edmundo Arrocet: "No puedes venir aquí y tomarnos por tontos"', "description": "md5:73f340a7320143d37ab895375b2bf13a", }, "playlist": [ { "md5": "adb28c37238b675dad0f042292f209a7", "info_dict": { "id": "TpI2EttSDAReWpJ1o0NVh2", "ext": "mp4", "title": 'La surrealista entrevista a la sobrina de Edmundo Arrocet: "No puedes venir aquí y tomarnos por tontos"', "duration": 1015, }, } ], "params": { "skip_download": True, }, }, { "url": "http://www.telecinco.es/informativos/nacional/Pablo_Iglesias-Informativos_Telecinco-entrevista-Pedro_Piqueras_2_1945155182.html", "only_matching": True, }, { "url": "http://www.telecinco.es/espanasinirmaslejos/Espana-gran-destino-turistico_2_1240605043.html", "only_matching": True, }, { # ooyala video "url": "http://www.cuatro.com/chesterinlove/a-carta/chester-chester_in_love-chester_edu_2_2331030022.html", "only_matching": True, }, ] def _parse_content(self, content, url): video_id = content["dataMediaId"] config = self._download_json( content["dataConfig"], video_id, "Downloading config JSON" ) title = config["info"]["title"] services = config["services"] caronte = self._download_json(services["caronte"], video_id) stream = caronte["dls"][0]["stream"] headers = self.geo_verification_headers() headers.update( { "Content-Type": "application/json;charset=UTF-8", "Origin": re.match(r"https?://[^/]+", url).group(0), } ) cdn = self._download_json( caronte["cerbero"], video_id, data=json.dumps( { "bbx": caronte["bbx"], "gbx": self._download_json(services["gbx"], video_id)["gbx"], } ).encode(), headers=headers, )["tokens"]["1"]["cdn"] formats = self._extract_m3u8_formats( stream + "?" + cdn, video_id, "mp4", "m3u8_native", m3u8_id="hls" ) self._sort_formats(formats) return { "id": video_id, "title": title, "formats": formats, "thumbnail": content.get("dataPoster") or config.get("poster", {}).get("imageUrl"), "duration": int_or_none(content.get("dataDuration")), } def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) article = self._parse_json( self._search_regex( r"window\.\$REACTBASE_STATE\.article(?:_multisite)?\s*=\s*({.+})", webpage, "article", ), display_id, )["article"] title = article.get("title") description = clean_html(article.get("leadParagraph")) or "" if article.get("editorialType") != "VID": entries = [] body = [article.get("opening")] body.extend(try_get(article, lambda x: x["body"], list) or []) for p in body: if not isinstance(p, dict): continue content = p.get("content") if not content: continue type_ = p.get("type") if type_ == "paragraph": content_str = str_or_none(content) if content_str: description += content_str continue if type_ == "video" and isinstance(content, dict): entries.append(self._parse_content(content, url)) return self.playlist_result( entries, str_or_none(article.get("id")), title, description ) content = article["opening"]["content"] info = self._parse_content(content, url) info.update( { "description": description, } ) return info
38.865169
149
0.506794
from __future__ import unicode_literals import json import re from ..utils import clean_html, int_or_none, str_or_none, try_get from .common import InfoExtractor class TelecincoIE(InfoExtractor): IE_DESC = "telecinco.es, cuatro.com and mediaset.es" _VALID_URL = r"https?://(?:www\.)?(?:telecinco\.es|cuatro\.com|mediaset\.es)/(?:[^/]+/)+(?P<id>.+?)\.html" _TESTS = [ { "url": "http://www.telecinco.es/robinfood/temporada-01/t01xp14/Bacalao-cocochas-pil-pil_0_1876350223.html", "info_dict": { "id": "1876350223", "title": "Bacalao con kokotxas al pil-pil", "description": "md5:716caf5601e25c3c5ab6605b1ae71529", }, "playlist": [ { "md5": "7ee56d665cfd241c0e6d80fd175068b0", "info_dict": { "id": "JEA5ijCnF6p5W08A1rNKn7", "ext": "mp4", "title": "Con Martín Berasategui, hacer un bacalao al pil-pil es fácil y divertido", "duration": 662, }, } ], }, { "url": "http://www.cuatro.com/deportes/futbol/barcelona/Leo_Messi-Champions-Roma_2_2052780128.html", "md5": "c86fe0d99e3bdb46b7950d38bf6ef12a", "info_dict": { "id": "jn24Od1zGLG4XUZcnUnZB6", "ext": "mp4", "title": "¿Quién es este ex futbolista con el que hablan Leo Messi y Luis Suárez?", "description": "md5:a62ecb5f1934fc787107d7b9a2262805", "duration": 79, }, }, { "url": "http://www.mediaset.es/12meses/campanas/doylacara/conlatratanohaytrato/Ayudame-dar-cara-trata-trato_2_1986630220.html", "md5": "eddb50291df704ce23c74821b995bcac", "info_dict": { "id": "aywerkD2Sv1vGNqq9b85Q2", "ext": "mp4", "title": "#DOYLACARA. Con la trata no hay trato", "description": "md5:2771356ff7bfad9179c5f5cd954f1477", "duration": 50, }, }, { "url": "https://www.telecinco.es/vivalavida/fiorella-sobrina-edmundo-arrocet-entrevista_18_2907195140.html", "info_dict": { "id": "2907195140", "title": 'La surrealista entrevista a la sobrina de Edmundo Arrocet: "No puedes venir aquí y tomarnos por tontos"', "description": "md5:73f340a7320143d37ab895375b2bf13a", }, "playlist": [ { "md5": "adb28c37238b675dad0f042292f209a7", "info_dict": { "id": "TpI2EttSDAReWpJ1o0NVh2", "ext": "mp4", "title": 'La surrealista entrevista a la sobrina de Edmundo Arrocet: "No puedes venir aquí y tomarnos por tontos"', "duration": 1015, }, } ], "params": { "skip_download": True, }, }, { "url": "http://www.telecinco.es/informativos/nacional/Pablo_Iglesias-Informativos_Telecinco-entrevista-Pedro_Piqueras_2_1945155182.html", "only_matching": True, }, { "url": "http://www.telecinco.es/espanasinirmaslejos/Espana-gran-destino-turistico_2_1240605043.html", "only_matching": True, }, { # ooyala video "url": "http://www.cuatro.com/chesterinlove/a-carta/chester-chester_in_love-chester_edu_2_2331030022.html", "only_matching": True, }, ] def _parse_content(self, content, url): video_id = content["dataMediaId"] config = self._download_json( content["dataConfig"], video_id, "Downloading config JSON" ) title = config["info"]["title"] services = config["services"] caronte = self._download_json(services["caronte"], video_id) stream = caronte["dls"][0]["stream"] headers = self.geo_verification_headers() headers.update( { "Content-Type": "application/json;charset=UTF-8", "Origin": re.match(r"https?://[^/]+", url).group(0), } ) cdn = self._download_json( caronte["cerbero"], video_id, data=json.dumps( { "bbx": caronte["bbx"], "gbx": self._download_json(services["gbx"], video_id)["gbx"], } ).encode(), headers=headers, )["tokens"]["1"]["cdn"] formats = self._extract_m3u8_formats( stream + "?" + cdn, video_id, "mp4", "m3u8_native", m3u8_id="hls" ) self._sort_formats(formats) return { "id": video_id, "title": title, "formats": formats, "thumbnail": content.get("dataPoster") or config.get("poster", {}).get("imageUrl"), "duration": int_or_none(content.get("dataDuration")), } def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) article = self._parse_json( self._search_regex( r"window\.\$REACTBASE_STATE\.article(?:_multisite)?\s*=\s*({.+})", webpage, "article", ), display_id, )["article"] title = article.get("title") description = clean_html(article.get("leadParagraph")) or "" if article.get("editorialType") != "VID": entries = [] body = [article.get("opening")] body.extend(try_get(article, lambda x: x["body"], list) or []) for p in body: if not isinstance(p, dict): continue content = p.get("content") if not content: continue type_ = p.get("type") if type_ == "paragraph": content_str = str_or_none(content) if content_str: description += content_str continue if type_ == "video" and isinstance(content, dict): entries.append(self._parse_content(content, url)) return self.playlist_result( entries, str_or_none(article.get("id")), title, description ) content = article["opening"]["content"] info = self._parse_content(content, url) info.update( { "description": description, } ) return info
true
true
f7f4016336e7fd132d59a863b69b891712c34873
30,376
py
Python
main.py
Chereq/bomberman
e715bd1a70c92c88b25a09e208933bedd2eb5679
[ "MIT" ]
null
null
null
main.py
Chereq/bomberman
e715bd1a70c92c88b25a09e208933bedd2eb5679
[ "MIT" ]
null
null
null
main.py
Chereq/bomberman
e715bd1a70c92c88b25a09e208933bedd2eb5679
[ "MIT" ]
1
2021-12-25T13:40:06.000Z
2021-12-25T13:40:06.000Z
#!/usr/bin/env python # -*- coding: utf-8 -*- import pygame as pg from pygame import sprite from itertools import cycle from random import randint # for field BLOCK_WIDTH = 32 BLOCK_HEIGHT = 32 WIN_WIDTH = 800 # BLOCK_WIDTH * 8 WIN_HEIGHT = 600 # BLOCK_HEIGHT * 8 DISPLAY = (WIN_WIDTH, WIN_HEIGHT) BACKGROUND_COLOR = "#388700" BLOCK_COLOR = "#b0b0b0" # for player MOVE_SPEED = BLOCK_WIDTH // 8 WIDTH = BLOCK_WIDTH HEIGHT = BLOCK_HEIGHT COLOR = "#888888" ANIMATION_RATE = 10 SPRITES_FILENAME = './media/sprites_mq.png' SOUND_THEME = "./media/sfx_1.wav" SOUND_WIN = "./media/sfx_6.wav" SOUND_FAIL = "./media/sfx_7.wav" SOUND_STEP = "./media/sfx_5.wav" SOUND_PLANT = "./media/sfx_3.wav" SOUND_BLAST = "./media/sfx_4.wav" BLOCKS_PROBABILITY = 3 DEMO_FIELD = """############################# #P+B__________#_____ror_____# #+#_#_#_#_#b#_#_#_#_#_#_#_#_# #B____________#_____o_____r_# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #_____oo______#_______bd____# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #__b______b___#____bd_______# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #__o______b___#_d_________b_# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #__o_______b__#_____________# #######B#############B####### #_____________#__r______d___# #_#r#_#_#_#_#_#_#_#_#_#_#_#_# #_____r_______#_____________# #_#_#_#_#_#_#_#_#_#_#_#b#_#_# #_____________#_____________# #_#_#_#_#r#r#_B_#_#_#_#_#_#_# #_____________#__o____b_____# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #___d_________#________r____# #_#_#_#_#_#_#_#_#r#_#_#_#_#_# #_________r___#_____________# #############################""" def make_level(width, height): level_base = "#" * width + "\n" + \ ("#" + "_" * (width - 2) + "#\n" + "#_" * ((width - 2) // 2 + 1) + "#\n") * \ ((height - 2) // 2 + 1) + "#" * width level_base = level_base.split('\n') r1 = list(level_base[1]) r2 = list(level_base[2]) r1[:3] = '#', 'P', '+' r2[:2] = '#', '+' level_base[1] = ''.join(r1) level_base[2] = ''.join(r2) return '\n'.join(level_base) def get_closer_center(x, y): """returns closer block coordinates for place objects""" return round(x / BLOCK_WIDTH) * BLOCK_WIDTH, \ round(y / BLOCK_HEIGHT) * BLOCK_HEIGHT class Block(sprite.Sprite): """abstract class for static objects""" def __init__(self, x, y, sprites_tile=None): super().__init__() self.image = pg.Surface((BLOCK_WIDTH, BLOCK_HEIGHT)) self.image.fill(pg.Color(BLOCK_COLOR)) self.rect = pg.Rect(x, y, BLOCK_WIDTH, BLOCK_HEIGHT) self.alive = True def __repr__(self): return "O" def update(self, time): super().update() def exploded(self): self.alive = False class WallBlock(Block): """indestructible block""" def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.image = kwargs["sprites_tile"][3][3] def __repr__(self): return f"X{self.rect.x // BLOCK_WIDTH, self.rect.y // BLOCK_HEIGHT}" class BrickBlock(Block): """destructible block""" def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.image = kwargs["sprites_tile"][3][4] self.anim_die = kwargs["sprites_tile"][3][5:11] def __repr__(self): return f"#{self.rect.x // BLOCK_WIDTH, self.rect.y // BLOCK_HEIGHT}" def update(self, time): super().update(time) if self.alive: return self.image = self.anim_die.pop(0) if not self.anim_die: self.kill() class Bomb(Block): """bomb class for placing by Player()""" def __init__(self, x, y, sprites_tile, timer=1, radius=1): super().__init__(x, y) self.sprites_tile = sprites_tile self.image = sprites_tile[3][0] self.countdown = timer self.radius = radius self.animation_rate = ANIMATION_RATE / (self.countdown + .55) self.animation_timeout = 0 self.anim_static = cycle(sprites_tile[3][0:3] + sprites_tile[3][2:-1:-1]) self.anim_die = sprites_tile[3][5:11] self.sfx_plant = pg.mixer.Sound(SOUND_PLANT) self.sfx_plant.play() def update(self, time): """tick-tock-tick-tock~""" self.animation_timeout += time self.countdown -= time / 1000 self.animation_rate = ANIMATION_RATE / (self.countdown + .5) if self.animation_timeout / 1000 >= 1 / self.animation_rate: self.animation_timeout = 0 self.image = next(self.anim_static) def is_exploded(self): return self.countdown <= 0 or not self.alive def get_epicenter(self): return self.rect.x, self.rect.y def get_explosion(self): """replacing himsef on field with Explosion()""" self.sfx_plant.fadeout(25) self.kill() return Explosion(*self.get_epicenter(), sprites_tile=self.sprites_tile, radius=self.radius) class Explosion(Block): """Explosion class. Objects placed by Bomb class after timeout. Destroy objects by .exploded() method""" def __init__(self, *args, **kwargs): super().__init__(*args) self.radius = 1 if "radius" in kwargs: self.radius = kwargs["radius"] self.rays_lengths = [self.radius] * 4 self.blast_speed = 25 self.time = 0 # directions of rays: # 0 - left # 1 - right # 2 - up # 3 - down self.rays_directions = ((-1, 0), (+1, 0), (0, -1), (0, +1)) self.blocking_groups = set() self.anim_center = [kwargs["sprites_tile"][6][2], kwargs["sprites_tile"][6][7], kwargs["sprites_tile"][11][2], kwargs["sprites_tile"][11][7]] self.anim_center += self.anim_center[::-1] self.image = self.static_image = kwargs["sprites_tile"][6][2] self.anim_center, self.images_inner, self.images_otter = \ self.get_rays_images(kwargs["sprites_tile"]) self.splash_group = ShiftableSpriteGroup() self.sfx_blast = pg.mixer.Sound(SOUND_BLAST) self.sfx_blast.play() def set_blocking_groups(self, groups): self.blocking_groups = groups self.clip_rays_lengths() def get_rays_images(self, sprites_tile): """make images lists for animations of death-rays""" centers = (6, 2), (6, 7), (11, 2), (11, 7) images_inner = [] images_otter = [] images_center = [] for x, y in centers: images_center.append(sprites_tile[x][y]) images_inner.append( (sprites_tile[x][y - 1], sprites_tile[x][y + 1], sprites_tile[x - 1][y], sprites_tile[x + 1][y])) images_otter.append( (sprites_tile[x][y - 2], sprites_tile[x][y + 2], sprites_tile[x - 2][y], sprites_tile[x + 2][y])) images_center += images_center[::-1] images_inner += images_inner[::-1] images_otter += images_otter[::-1] return images_center, images_inner, images_otter def update(self, time, interact_with=None): self.time += time self.collide(interact_with) if not self.anim_center: self.image = self.static_image self.splash_group.empty() self.sfx_blast.fadeout(25) self.kill() return if self.time / 1000 >= 1 / self.blast_speed: self.time = 0 self.image = self.anim_center.pop() images_otter = self.images_otter.pop() images_inner = self.images_inner.pop() self.splash_group.empty() # making death-rays of a predicted length for i, (x, y) in enumerate(self.rays_directions): for l in range(self.rays_lengths[i]): ray_sprite = sprite.Sprite() ray_sprite.image = images_inner[i] # ray_sprite.mask = pg.mask.from_surface(ray_sprite.image) ray_sprite.rect = pg.Rect( self.rect.x + x * l * BLOCK_WIDTH, self.rect.y + y * l * BLOCK_HEIGHT, BLOCK_WIDTH, BLOCK_HEIGHT) self.splash_group.add(ray_sprite) ray_end_sprite = sprite.Sprite() ray_end_sprite.image = images_otter[i] # ray_end_sprite.mask = pg.mask.from_surface( # ray_end_sprite.image) ray_end_sprite.rect = pg.Rect( self.rect.x + x * (l + 1) * BLOCK_WIDTH, self.rect.y + y * (l + 1) * BLOCK_HEIGHT, BLOCK_WIDTH, BLOCK_HEIGHT) self.splash_group.add(ray_end_sprite) def get_splash_group(self): """returns ShiftableSpriteGroup() group of death-rays""" return self.splash_group def fired(self): """is explosion ends?""" return not self.anim_center def clip_rays_lengths(self): """calculate maximum rays lengths to sprites from collection of groups returns tuple of distances (left, right, up, down)""" for i in range(self.radius, 0, -1): for group in self.blocking_groups: for j, (x, y) in enumerate(self.rays_directions): if group.get_sprite_in_pos( self.rect.x + i * x * BLOCK_WIDTH, self.rect.y + i * y * BLOCK_HEIGHT): self.rays_lengths[j] = i def collide(self, list_of_sprites_group): """processing of death-rays touching by sprites in collection of groups""" collisions = [] for sprites_group in list_of_sprites_group: collisions += sprite.groupcollide(sprites_group, self.splash_group, False, False) for collision in collisions: # trying to destroy collided sprites collision.exploded() class Actor(sprite.Sprite): """abstract class for moving objects""" def __init__(self, x, y, sprites_tile=None): super().__init__() self.xvel = self.yvel = 0 self.anim_right = \ self.anim_left = \ self.anim_up = \ self.anim_down = \ self.anim_die = \ self.static_image = None self.image = pg.Surface((WIDTH, HEIGHT)) self.image.fill(pg.Color(COLOR)) self.rect = pg.Rect(x, y, WIDTH, HEIGHT) self.animation_timeout = 0 self.alive = True def exploded(self): """death-ray of Explosion() touched here""" self.alive = False def get_center_position(self): """return self center point for camera movement""" return self.rect.x + self.rect.w // 2, \ self.rect.y + self.rect.h // 2 def collide(self, list_of_sprites_group): """static objects collisions processing moving through walls here""" move_h = move_v = 0 collisions = set() for sprites_group in list_of_sprites_group: collisions.update(sprite.spritecollide(self, sprites_group, False)) collisions.discard(self) for collision in collisions: if collision.rect.x < self.rect.x: move_h += 1 if collision.rect.x > self.rect.x: move_h -= 1 if collision.rect.y < self.rect.y: move_v += 1 if collision.rect.y > self.rect.y: move_v -= 1 if move_h > 0: self.rect.x += MOVE_SPEED elif move_h < 0: self.rect.x -= MOVE_SPEED if move_v > 0: self.rect.y += MOVE_SPEED elif move_v < 0: self.rect.y -= MOVE_SPEED return collisions class Player(Actor): """main character class""" def __init__(self, x, y, sprites_tile=None): super().__init__(x, y) self.sprites_tile = sprites_tile if sprites_tile: self.image = self.static_image = sprites_tile[0][4] self.anim_right = cycle(sprites_tile[1][0:3]) self.anim_left = cycle(sprites_tile[0][0:3]) self.anim_up = cycle(sprites_tile[1][3:6]) self.anim_down = cycle(sprites_tile[0][3:6]) self.anim_die = sprites_tile[2][6::-1] self.anim_died = sprites_tile[20][:2] +\ sprites_tile[20][3:5] +\ sprites_tile[20][6:7] self.anim_died = cycle(self.anim_died + self.anim_died[::-1]) self.bomb_timer = 3 self.bomb_radius = 1 self.sfx_step = pg.mixer.Sound(SOUND_STEP) self.sfx_step.set_volume(.50) self.steps_count = 0 def update(self, time, blocks=[], horizontal=0, vertical=0, action=False, directcall=False): if not directcall: return if self.alive: self.xvel = horizontal self.yvel = vertical else: self.xvel = self.yvel = 0 self.animation_timeout += time if self.animation_timeout / 1000 >= 1 / ANIMATION_RATE: self.animation_timeout = 0 if self.xvel > 0: self.image = next(self.anim_right) elif self.xvel < 0: self.image = next(self.anim_left) elif self.yvel > 0: self.image = next(self.anim_down) elif self.yvel < 0: self.image = next(self.anim_up) else: self.image = self.static_image if not self.alive: if self.anim_die: self.image = self.anim_die.pop() else: self.image = next(self.anim_died) if (self.xvel or self.yvel) and self.steps_count >= 2: self.sfx_step.fadeout(50) self.sfx_step.play() self.steps_count = 0 self.steps_count += 1 self.rect.y += self.yvel * MOVE_SPEED self.rect.x += self.xvel * MOVE_SPEED self.collide(blocks) if action and self.alive: x, y = get_closer_center(self.rect.x, self.rect.y) bomb = Bomb(x, y, sprites_tile=self.sprites_tile, timer=self.bomb_timer, radius=self.bomb_radius) self.bomb_timer -= .025 self.bomb_radius += 1 return bomb def draw(self, surface): """draw himself onto the surface""" surface.blit(self.image, self.rect) def is_alive(self): """check sprite not collided with death-ray from Explosion()""" return self.alive class Enemy(Actor): """enemy abstract class""" def update(self, time, blocks): if not self.xvel and not self.yvel: if randint(0, 1): self.xvel = randint(-1, 1) else: self.yvel = randint(-1, 1) if not self.alive: self.xvel = self.yvel = 0 # self.kill() self.animation_timeout += time if self.animation_timeout / 1000 >= 1 / ANIMATION_RATE: self.animation_timeout = 0 if self.xvel > 0: self.image = next(self.anim_right) elif self.xvel < 0: self.image = next(self.anim_left) elif self.yvel > 0: self.image = next(self.anim_down) elif self.yvel < 0: self.image = next(self.anim_up) else: self.image = self.static_image if not self.alive: if self.anim_die: self.image = self.anim_die.pop() else: self.kill() self.rect.y += self.yvel * MOVE_SPEED self.rect.x += self.xvel * MOVE_SPEED collisions = self.collide(blocks) if collisions: self.xvel = self.yvel = 0 for collision in collisions: if isinstance(collision, Player): collision.exploded() class Ballom(Enemy): """Ballom enemy class""" def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[15][0] self.anim_right = cycle(sprites_tile[15][0:3]) self.anim_left = cycle(sprites_tile[15][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[15][10:5:-1] class Onil(Enemy): """O'Neal enemy class""" def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[16][0] self.anim_right = cycle(sprites_tile[16][0:3]) self.anim_left = cycle(sprites_tile[16][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[16][6:7] * 3 class Dahl(Enemy): """Dahl enemy class""" def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[17][0] self.anim_right = cycle(sprites_tile[17][0:3]) self.anim_left = cycle(sprites_tile[17][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[17][10:5:-1] class Doria(Enemy): """Doria enemy class""" def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[19][0] self.anim_right = cycle(sprites_tile[19][0:3]) self.anim_left = cycle(sprites_tile[19][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[18][10:6:-1] + sprites_tile[19][6:7] class SpriteSheet: """single-file sprites loader class""" def __init__(self, filename): try: self.sheet = pg.image.load(filename).convert() except pg.error as message: print('Unable to load spritesheet image:', filename) raise SystemExit(message) def image_at(self, rectangle, colorkey=None): """loads image from x, y, x + offset, y + offset""" rect = pg.Rect(rectangle) image = pg.Surface(rect.size).convert() image.blit(self.sheet, (0, 0), rect) if colorkey is None: colorkey = image.get_at((0, 0)) image.set_colorkey(colorkey, pg.RLEACCEL) elif isinstance(colorkey, pg.Color): image.set_colorkey(colorkey, pg.RLEACCEL) return image def images_at(self, rects, colorkey=None): """loads multiple images, supply a list of coordinates""" return [self.image_at(rect, colorkey) for rect in rects] def load_strip(self, rect, image_count, colorkey=None): """loads a strip of images and returns them as a list""" tups = [(rect[0] + rect[2] * x, rect[1], rect[2], rect[3]) for x in range(image_count)] return self.images_at(tups, colorkey) def load_table(self, rect, rows, cols, colorkey=None): """loads cols*rows of sprites""" ret = [] for i in range(rows): tups = [(rect[0] + rect[2] * x, rect[1] + rect[3] * i, rect[2], rect[3]) for x in range(cols)] ret.append(self.images_at(tups, colorkey)) return ret class ShiftableSpriteGroup(sprite.Group): """modified sprite.Group with screen shift option for camera movement imitation""" def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.view_shift = 0, 0 def set_view_shift(self, x, y): """set shift of "camera" """ self.view_shift = x, y def draw(self, surface): """draw all sprites onto the surface""" # super().draw(surface) sprites = self.sprites() surface_blit = surface.blit for spr in sprites: rect = spr.rect.copy() rect.x += self.view_shift[0] rect.y += self.view_shift[1] self.spritedict[spr] = surface_blit(spr.image, rect) self.lostsprites = [] def contains_sprite_of_class(self, cls): """check cls-type sprite in group""" for sprite in self: if isinstance(sprite, cls): return True return False def get_sprite_in_pos(self, x, y): """returns sprite in position x*y""" for sprite in self: if sprite.rect.x == x and sprite.rect.y == y: return sprite def main(): pg.init() timer = pg.time.Clock() screen = pg.display.set_mode(DISPLAY) # init sound subsystem and prepare some sounds pg.mixer.init(44100, 16, 2) sfx_back = pg.mixer.Sound(SOUND_THEME) sfx_win = pg.mixer.Sound(SOUND_WIN) sfx_fail = pg.mixer.Sound(SOUND_FAIL) sfx_back.play(loops=-1) sfx_back_playing = True backgroud_surface = pg.Surface(pg.display.list_modes()[0]) backgroud_surface.fill(pg.Color(BACKGROUND_COLOR)) font = pg.font.Font(None, 100) win_screen = font.render( "YOU WIN!", True, (50, 255, 50)) fail_screen = font.render( "YOU FAILED!", True, (255, 50, 50)) ss = SpriteSheet(SPRITES_FILENAME) sprites_tile = ss.load_table((0, 0, BLOCK_WIDTH, BLOCK_HEIGHT), 22, 14, colorkey=pg.Color("#388700")) pg.display.set_caption("Demolition expert") pg.display.set_icon(sprites_tile[0][5]) anim_icon = cycle(sprites_tile[2][:7]) blocks_group = ShiftableSpriteGroup() bombs_group = ShiftableSpriteGroup() explosions_group = ShiftableSpriteGroup() actors_group = ShiftableSpriteGroup() player = None field_height = len(DEMO_FIELD.split('\n')) * BLOCK_HEIGHT field_width = max(map(len, DEMO_FIELD .replace('\r', '') .replace(' ', '') .split('\n'))) * BLOCK_WIDTH x = y = 0 for row in DEMO_FIELD.replace('\r', '').split('\n'): x = 0 for cell in row.strip(): block = None if cell == '#': block = WallBlock(x, y, sprites_tile=sprites_tile) elif cell == 'B': block = BrickBlock(x, y, sprites_tile=sprites_tile) elif cell == '_' and not randint(0, BLOCKS_PROBABILITY): block = BrickBlock(x, y, sprites_tile=sprites_tile) elif cell == 'P' and not player: player = Player(x, y, sprites_tile=sprites_tile) elif cell == 'q': bombs_group.add(Bomb(x, y, sprites_tile=sprites_tile, timer=5, radius=1)) elif cell == 'Q': bombs_group.add(Bomb(x, y, sprites_tile=sprites_tile, timer=25, radius=5)) elif cell == 'b': actors_group.add(Ballom(x, y, sprites_tile=sprites_tile)) elif cell == 'o': actors_group.add(Onil(x, y, sprites_tile=sprites_tile)) elif cell == 'd': actors_group.add(Dahl(x, y, sprites_tile=sprites_tile)) elif cell == 'r': actors_group.add(Doria(x, y, sprites_tile=sprites_tile)) if block: blocks_group.add(block) x += BLOCK_WIDTH y += BLOCK_HEIGHT field_center = (field_width // 2 - BLOCK_WIDTH // 2, field_height // 2 - BLOCK_HEIGHT // 2) if player is None: player = Player(*field_center, sprites_tile=sprites_tile) actors_group.add(player) horizontal = vertical = 0 action = False while True: milliseconds = timer.tick(30) for event in pg.event.get(): if event.type == pg.QUIT: raise SystemExit if event.type == pg.KEYDOWN: if event.key == pg.K_q and \ pg.key.get_mods() & pg.KMOD_CTRL: raise SystemExit if event.key == pg.K_ESCAPE: if pg.display.Info().current_w == WIN_WIDTH and \ pg.display.Info().current_h == WIN_HEIGHT: raise SystemExit else: pg.display.toggle_fullscreen() pg.display.set_mode(DISPLAY) if event.key == pg.K_f: if pg.display.Info().current_w == WIN_WIDTH and \ pg.display.Info().current_h == WIN_HEIGHT: pg.display.set_mode(pg.display.list_modes()[0]) pg.display.toggle_fullscreen() else: pg.display.toggle_fullscreen() pg.display.set_mode(DISPLAY) if event.key == pg.K_LEFT: horizontal = -1 if event.key == pg.K_RIGHT: horizontal = 1 if event.key == pg.K_UP: vertical = -1 if event.key == pg.K_DOWN: vertical = 1 if event.key == pg.K_SPACE: action = True if event.type == pg.KEYUP: if event.key == pg.K_LEFT or event.key == pg.K_RIGHT: horizontal = 0 if event.key == pg.K_UP or event.key == pg.K_DOWN: vertical = 0 ret = player.update(milliseconds, (blocks_group, bombs_group, actors_group), horizontal, vertical, action, directcall=True) blocks_group.update(milliseconds) bombs_group.update(milliseconds) explosions_group.update(milliseconds, (blocks_group, actors_group, bombs_group)) actors_group.update(milliseconds, (blocks_group, bombs_group, actors_group)) if ret: if isinstance(ret, Bomb): bombs_group.add(ret) cam_shift = [0, 0] display_w = pg.display.Info().current_w display_h = pg.display.Info().current_h player_x, player_y = player.get_center_position() if field_width > display_w: cam_shift[0] = max(min(display_w // 2 - player_x, BLOCK_WIDTH), -field_width + display_w - BLOCK_WIDTH) else: cam_shift[0] = display_w // 2 - field_width // 2 if field_height > display_h: cam_shift[1] = max(min(display_h // 2 - player_y, BLOCK_HEIGHT), -field_height + display_h - BLOCK_HEIGHT) else: cam_shift[1] = display_h // 2 - field_height // 2 screen.blit(backgroud_surface, (0, 0)) for bomb in bombs_group: if bomb.is_exploded(): explosion = bomb.get_explosion() explosion.set_blocking_groups((blocks_group, bombs_group)) explosions_group.add(explosion) for explosion in explosions_group: splash_group = explosion.get_splash_group() cam_shift[0] += randint(-1, 1) cam_shift[1] += randint(-1, 1) splash_group.set_view_shift(*cam_shift) splash_group.draw(screen) action = False blocks_group.set_view_shift(*cam_shift) bombs_group.set_view_shift(*cam_shift) explosions_group.set_view_shift(*cam_shift) actors_group.set_view_shift(*cam_shift) blocks_group.draw(screen) bombs_group.draw(screen) explosions_group.draw(screen) actors_group.draw(screen) if not player.is_alive(): if sfx_back_playing: sfx_back_playing = False sfx_back.fadeout(25) sfx_win.fadeout(25) sfx_fail.play() screen.blit(fail_screen, (display_w // 2 - fail_screen.get_width() // 2, display_h // 2 - fail_screen.get_height() // 2)) elif not blocks_group.contains_sprite_of_class(BrickBlock) and \ len(actors_group) == 1: if sfx_back_playing: sfx_back_playing = False sfx_back.fadeout(25) sfx_win.play() screen.blit(win_screen, (display_w // 2 - win_screen.get_width() // 2, display_h // 2 - win_screen.get_height() // 2)) pg.display.update() if __name__ == "__main__": main()
34.955121
79
0.52637
import pygame as pg from pygame import sprite from itertools import cycle from random import randint BLOCK_WIDTH = 32 BLOCK_HEIGHT = 32 WIN_WIDTH = 800 WIN_HEIGHT = 600 DISPLAY = (WIN_WIDTH, WIN_HEIGHT) BACKGROUND_COLOR = "#388700" BLOCK_COLOR = "#b0b0b0" MOVE_SPEED = BLOCK_WIDTH // 8 WIDTH = BLOCK_WIDTH HEIGHT = BLOCK_HEIGHT COLOR = "#888888" ANIMATION_RATE = 10 SPRITES_FILENAME = './media/sprites_mq.png' SOUND_THEME = "./media/sfx_1.wav" SOUND_WIN = "./media/sfx_6.wav" SOUND_FAIL = "./media/sfx_7.wav" SOUND_STEP = "./media/sfx_5.wav" SOUND_PLANT = "./media/sfx_3.wav" SOUND_BLAST = "./media/sfx_4.wav" BLOCKS_PROBABILITY = 3 DEMO_FIELD = """############################# #P+B__________#_____ror_____# #+#_#_#_#_#b#_#_#_#_#_#_#_#_# #B____________#_____o_____r_# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #_____oo______#_______bd____# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #__b______b___#____bd_______# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #__o______b___#_d_________b_# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #__o_______b__#_____________# #######B#############B####### #_____________#__r______d___# #_#r#_#_#_#_#_#_#_#_#_#_#_#_# #_____r_______#_____________# #_#_#_#_#_#_#_#_#_#_#_#b#_#_# #_____________#_____________# #_#_#_#_#r#r#_B_#_#_#_#_#_#_# #_____________#__o____b_____# #_#_#_#_#_#_#_#_#_#_#_#_#_#_# #___d_________#________r____# #_#_#_#_#_#_#_#_#r#_#_#_#_#_# #_________r___#_____________# #############################""" def make_level(width, height): level_base = "#" * width + "\n" + \ ("#" + "_" * (width - 2) + "#\n" + "#_" * ((width - 2) // 2 + 1) + "#\n") * \ ((height - 2) // 2 + 1) + "#" * width level_base = level_base.split('\n') r1 = list(level_base[1]) r2 = list(level_base[2]) r1[:3] = '#', 'P', '+' r2[:2] = '#', '+' level_base[1] = ''.join(r1) level_base[2] = ''.join(r2) return '\n'.join(level_base) def get_closer_center(x, y): return round(x / BLOCK_WIDTH) * BLOCK_WIDTH, \ round(y / BLOCK_HEIGHT) * BLOCK_HEIGHT class Block(sprite.Sprite): def __init__(self, x, y, sprites_tile=None): super().__init__() self.image = pg.Surface((BLOCK_WIDTH, BLOCK_HEIGHT)) self.image.fill(pg.Color(BLOCK_COLOR)) self.rect = pg.Rect(x, y, BLOCK_WIDTH, BLOCK_HEIGHT) self.alive = True def __repr__(self): return "O" def update(self, time): super().update() def exploded(self): self.alive = False class WallBlock(Block): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.image = kwargs["sprites_tile"][3][3] def __repr__(self): return f"X{self.rect.x // BLOCK_WIDTH, self.rect.y // BLOCK_HEIGHT}" class BrickBlock(Block): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.image = kwargs["sprites_tile"][3][4] self.anim_die = kwargs["sprites_tile"][3][5:11] def __repr__(self): return f"#{self.rect.x // BLOCK_WIDTH, self.rect.y // BLOCK_HEIGHT}" def update(self, time): super().update(time) if self.alive: return self.image = self.anim_die.pop(0) if not self.anim_die: self.kill() class Bomb(Block): def __init__(self, x, y, sprites_tile, timer=1, radius=1): super().__init__(x, y) self.sprites_tile = sprites_tile self.image = sprites_tile[3][0] self.countdown = timer self.radius = radius self.animation_rate = ANIMATION_RATE / (self.countdown + .55) self.animation_timeout = 0 self.anim_static = cycle(sprites_tile[3][0:3] + sprites_tile[3][2:-1:-1]) self.anim_die = sprites_tile[3][5:11] self.sfx_plant = pg.mixer.Sound(SOUND_PLANT) self.sfx_plant.play() def update(self, time): self.animation_timeout += time self.countdown -= time / 1000 self.animation_rate = ANIMATION_RATE / (self.countdown + .5) if self.animation_timeout / 1000 >= 1 / self.animation_rate: self.animation_timeout = 0 self.image = next(self.anim_static) def is_exploded(self): return self.countdown <= 0 or not self.alive def get_epicenter(self): return self.rect.x, self.rect.y def get_explosion(self): self.sfx_plant.fadeout(25) self.kill() return Explosion(*self.get_epicenter(), sprites_tile=self.sprites_tile, radius=self.radius) class Explosion(Block): def __init__(self, *args, **kwargs): super().__init__(*args) self.radius = 1 if "radius" in kwargs: self.radius = kwargs["radius"] self.rays_lengths = [self.radius] * 4 self.blast_speed = 25 self.time = 0 self.rays_directions = ((-1, 0), (+1, 0), (0, -1), (0, +1)) self.blocking_groups = set() self.anim_center = [kwargs["sprites_tile"][6][2], kwargs["sprites_tile"][6][7], kwargs["sprites_tile"][11][2], kwargs["sprites_tile"][11][7]] self.anim_center += self.anim_center[::-1] self.image = self.static_image = kwargs["sprites_tile"][6][2] self.anim_center, self.images_inner, self.images_otter = \ self.get_rays_images(kwargs["sprites_tile"]) self.splash_group = ShiftableSpriteGroup() self.sfx_blast = pg.mixer.Sound(SOUND_BLAST) self.sfx_blast.play() def set_blocking_groups(self, groups): self.blocking_groups = groups self.clip_rays_lengths() def get_rays_images(self, sprites_tile): centers = (6, 2), (6, 7), (11, 2), (11, 7) images_inner = [] images_otter = [] images_center = [] for x, y in centers: images_center.append(sprites_tile[x][y]) images_inner.append( (sprites_tile[x][y - 1], sprites_tile[x][y + 1], sprites_tile[x - 1][y], sprites_tile[x + 1][y])) images_otter.append( (sprites_tile[x][y - 2], sprites_tile[x][y + 2], sprites_tile[x - 2][y], sprites_tile[x + 2][y])) images_center += images_center[::-1] images_inner += images_inner[::-1] images_otter += images_otter[::-1] return images_center, images_inner, images_otter def update(self, time, interact_with=None): self.time += time self.collide(interact_with) if not self.anim_center: self.image = self.static_image self.splash_group.empty() self.sfx_blast.fadeout(25) self.kill() return if self.time / 1000 >= 1 / self.blast_speed: self.time = 0 self.image = self.anim_center.pop() images_otter = self.images_otter.pop() images_inner = self.images_inner.pop() self.splash_group.empty() for i, (x, y) in enumerate(self.rays_directions): for l in range(self.rays_lengths[i]): ray_sprite = sprite.Sprite() ray_sprite.image = images_inner[i] ray_sprite.rect = pg.Rect( self.rect.x + x * l * BLOCK_WIDTH, self.rect.y + y * l * BLOCK_HEIGHT, BLOCK_WIDTH, BLOCK_HEIGHT) self.splash_group.add(ray_sprite) ray_end_sprite = sprite.Sprite() ray_end_sprite.image = images_otter[i] ray_end_sprite.rect = pg.Rect( self.rect.x + x * (l + 1) * BLOCK_WIDTH, self.rect.y + y * (l + 1) * BLOCK_HEIGHT, BLOCK_WIDTH, BLOCK_HEIGHT) self.splash_group.add(ray_end_sprite) def get_splash_group(self): return self.splash_group def fired(self): return not self.anim_center def clip_rays_lengths(self): for i in range(self.radius, 0, -1): for group in self.blocking_groups: for j, (x, y) in enumerate(self.rays_directions): if group.get_sprite_in_pos( self.rect.x + i * x * BLOCK_WIDTH, self.rect.y + i * y * BLOCK_HEIGHT): self.rays_lengths[j] = i def collide(self, list_of_sprites_group): collisions = [] for sprites_group in list_of_sprites_group: collisions += sprite.groupcollide(sprites_group, self.splash_group, False, False) for collision in collisions: collision.exploded() class Actor(sprite.Sprite): def __init__(self, x, y, sprites_tile=None): super().__init__() self.xvel = self.yvel = 0 self.anim_right = \ self.anim_left = \ self.anim_up = \ self.anim_down = \ self.anim_die = \ self.static_image = None self.image = pg.Surface((WIDTH, HEIGHT)) self.image.fill(pg.Color(COLOR)) self.rect = pg.Rect(x, y, WIDTH, HEIGHT) self.animation_timeout = 0 self.alive = True def exploded(self): self.alive = False def get_center_position(self): return self.rect.x + self.rect.w // 2, \ self.rect.y + self.rect.h // 2 def collide(self, list_of_sprites_group): move_h = move_v = 0 collisions = set() for sprites_group in list_of_sprites_group: collisions.update(sprite.spritecollide(self, sprites_group, False)) collisions.discard(self) for collision in collisions: if collision.rect.x < self.rect.x: move_h += 1 if collision.rect.x > self.rect.x: move_h -= 1 if collision.rect.y < self.rect.y: move_v += 1 if collision.rect.y > self.rect.y: move_v -= 1 if move_h > 0: self.rect.x += MOVE_SPEED elif move_h < 0: self.rect.x -= MOVE_SPEED if move_v > 0: self.rect.y += MOVE_SPEED elif move_v < 0: self.rect.y -= MOVE_SPEED return collisions class Player(Actor): def __init__(self, x, y, sprites_tile=None): super().__init__(x, y) self.sprites_tile = sprites_tile if sprites_tile: self.image = self.static_image = sprites_tile[0][4] self.anim_right = cycle(sprites_tile[1][0:3]) self.anim_left = cycle(sprites_tile[0][0:3]) self.anim_up = cycle(sprites_tile[1][3:6]) self.anim_down = cycle(sprites_tile[0][3:6]) self.anim_die = sprites_tile[2][6::-1] self.anim_died = sprites_tile[20][:2] +\ sprites_tile[20][3:5] +\ sprites_tile[20][6:7] self.anim_died = cycle(self.anim_died + self.anim_died[::-1]) self.bomb_timer = 3 self.bomb_radius = 1 self.sfx_step = pg.mixer.Sound(SOUND_STEP) self.sfx_step.set_volume(.50) self.steps_count = 0 def update(self, time, blocks=[], horizontal=0, vertical=0, action=False, directcall=False): if not directcall: return if self.alive: self.xvel = horizontal self.yvel = vertical else: self.xvel = self.yvel = 0 self.animation_timeout += time if self.animation_timeout / 1000 >= 1 / ANIMATION_RATE: self.animation_timeout = 0 if self.xvel > 0: self.image = next(self.anim_right) elif self.xvel < 0: self.image = next(self.anim_left) elif self.yvel > 0: self.image = next(self.anim_down) elif self.yvel < 0: self.image = next(self.anim_up) else: self.image = self.static_image if not self.alive: if self.anim_die: self.image = self.anim_die.pop() else: self.image = next(self.anim_died) if (self.xvel or self.yvel) and self.steps_count >= 2: self.sfx_step.fadeout(50) self.sfx_step.play() self.steps_count = 0 self.steps_count += 1 self.rect.y += self.yvel * MOVE_SPEED self.rect.x += self.xvel * MOVE_SPEED self.collide(blocks) if action and self.alive: x, y = get_closer_center(self.rect.x, self.rect.y) bomb = Bomb(x, y, sprites_tile=self.sprites_tile, timer=self.bomb_timer, radius=self.bomb_radius) self.bomb_timer -= .025 self.bomb_radius += 1 return bomb def draw(self, surface): surface.blit(self.image, self.rect) def is_alive(self): return self.alive class Enemy(Actor): def update(self, time, blocks): if not self.xvel and not self.yvel: if randint(0, 1): self.xvel = randint(-1, 1) else: self.yvel = randint(-1, 1) if not self.alive: self.xvel = self.yvel = 0 self.animation_timeout += time if self.animation_timeout / 1000 >= 1 / ANIMATION_RATE: self.animation_timeout = 0 if self.xvel > 0: self.image = next(self.anim_right) elif self.xvel < 0: self.image = next(self.anim_left) elif self.yvel > 0: self.image = next(self.anim_down) elif self.yvel < 0: self.image = next(self.anim_up) else: self.image = self.static_image if not self.alive: if self.anim_die: self.image = self.anim_die.pop() else: self.kill() self.rect.y += self.yvel * MOVE_SPEED self.rect.x += self.xvel * MOVE_SPEED collisions = self.collide(blocks) if collisions: self.xvel = self.yvel = 0 for collision in collisions: if isinstance(collision, Player): collision.exploded() class Ballom(Enemy): def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[15][0] self.anim_right = cycle(sprites_tile[15][0:3]) self.anim_left = cycle(sprites_tile[15][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[15][10:5:-1] class Onil(Enemy): def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[16][0] self.anim_right = cycle(sprites_tile[16][0:3]) self.anim_left = cycle(sprites_tile[16][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[16][6:7] * 3 class Dahl(Enemy): def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[17][0] self.anim_right = cycle(sprites_tile[17][0:3]) self.anim_left = cycle(sprites_tile[17][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[17][10:5:-1] class Doria(Enemy): def __init__(self, x, y, sprites_tile): super().__init__(x, y, sprites_tile) self.image = self.static_image = sprites_tile[19][0] self.anim_right = cycle(sprites_tile[19][0:3]) self.anim_left = cycle(sprites_tile[19][3:6]) self.anim_up = self.anim_left self.anim_down = self.anim_right self.anim_die = sprites_tile[18][10:6:-1] + sprites_tile[19][6:7] class SpriteSheet: def __init__(self, filename): try: self.sheet = pg.image.load(filename).convert() except pg.error as message: print('Unable to load spritesheet image:', filename) raise SystemExit(message) def image_at(self, rectangle, colorkey=None): rect = pg.Rect(rectangle) image = pg.Surface(rect.size).convert() image.blit(self.sheet, (0, 0), rect) if colorkey is None: colorkey = image.get_at((0, 0)) image.set_colorkey(colorkey, pg.RLEACCEL) elif isinstance(colorkey, pg.Color): image.set_colorkey(colorkey, pg.RLEACCEL) return image def images_at(self, rects, colorkey=None): return [self.image_at(rect, colorkey) for rect in rects] def load_strip(self, rect, image_count, colorkey=None): tups = [(rect[0] + rect[2] * x, rect[1], rect[2], rect[3]) for x in range(image_count)] return self.images_at(tups, colorkey) def load_table(self, rect, rows, cols, colorkey=None): ret = [] for i in range(rows): tups = [(rect[0] + rect[2] * x, rect[1] + rect[3] * i, rect[2], rect[3]) for x in range(cols)] ret.append(self.images_at(tups, colorkey)) return ret class ShiftableSpriteGroup(sprite.Group): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.view_shift = 0, 0 def set_view_shift(self, x, y): self.view_shift = x, y def draw(self, surface): sprites = self.sprites() surface_blit = surface.blit for spr in sprites: rect = spr.rect.copy() rect.x += self.view_shift[0] rect.y += self.view_shift[1] self.spritedict[spr] = surface_blit(spr.image, rect) self.lostsprites = [] def contains_sprite_of_class(self, cls): for sprite in self: if isinstance(sprite, cls): return True return False def get_sprite_in_pos(self, x, y): for sprite in self: if sprite.rect.x == x and sprite.rect.y == y: return sprite def main(): pg.init() timer = pg.time.Clock() screen = pg.display.set_mode(DISPLAY) pg.mixer.init(44100, 16, 2) sfx_back = pg.mixer.Sound(SOUND_THEME) sfx_win = pg.mixer.Sound(SOUND_WIN) sfx_fail = pg.mixer.Sound(SOUND_FAIL) sfx_back.play(loops=-1) sfx_back_playing = True backgroud_surface = pg.Surface(pg.display.list_modes()[0]) backgroud_surface.fill(pg.Color(BACKGROUND_COLOR)) font = pg.font.Font(None, 100) win_screen = font.render( "YOU WIN!", True, (50, 255, 50)) fail_screen = font.render( "YOU FAILED!", True, (255, 50, 50)) ss = SpriteSheet(SPRITES_FILENAME) sprites_tile = ss.load_table((0, 0, BLOCK_WIDTH, BLOCK_HEIGHT), 22, 14, colorkey=pg.Color("#388700")) pg.display.set_caption("Demolition expert") pg.display.set_icon(sprites_tile[0][5]) anim_icon = cycle(sprites_tile[2][:7]) blocks_group = ShiftableSpriteGroup() bombs_group = ShiftableSpriteGroup() explosions_group = ShiftableSpriteGroup() actors_group = ShiftableSpriteGroup() player = None field_height = len(DEMO_FIELD.split('\n')) * BLOCK_HEIGHT field_width = max(map(len, DEMO_FIELD .replace('\r', '') .replace(' ', '') .split('\n'))) * BLOCK_WIDTH x = y = 0 for row in DEMO_FIELD.replace('\r', '').split('\n'): x = 0 for cell in row.strip(): block = None if cell == '#': block = WallBlock(x, y, sprites_tile=sprites_tile) elif cell == 'B': block = BrickBlock(x, y, sprites_tile=sprites_tile) elif cell == '_' and not randint(0, BLOCKS_PROBABILITY): block = BrickBlock(x, y, sprites_tile=sprites_tile) elif cell == 'P' and not player: player = Player(x, y, sprites_tile=sprites_tile) elif cell == 'q': bombs_group.add(Bomb(x, y, sprites_tile=sprites_tile, timer=5, radius=1)) elif cell == 'Q': bombs_group.add(Bomb(x, y, sprites_tile=sprites_tile, timer=25, radius=5)) elif cell == 'b': actors_group.add(Ballom(x, y, sprites_tile=sprites_tile)) elif cell == 'o': actors_group.add(Onil(x, y, sprites_tile=sprites_tile)) elif cell == 'd': actors_group.add(Dahl(x, y, sprites_tile=sprites_tile)) elif cell == 'r': actors_group.add(Doria(x, y, sprites_tile=sprites_tile)) if block: blocks_group.add(block) x += BLOCK_WIDTH y += BLOCK_HEIGHT field_center = (field_width // 2 - BLOCK_WIDTH // 2, field_height // 2 - BLOCK_HEIGHT // 2) if player is None: player = Player(*field_center, sprites_tile=sprites_tile) actors_group.add(player) horizontal = vertical = 0 action = False while True: milliseconds = timer.tick(30) for event in pg.event.get(): if event.type == pg.QUIT: raise SystemExit if event.type == pg.KEYDOWN: if event.key == pg.K_q and \ pg.key.get_mods() & pg.KMOD_CTRL: raise SystemExit if event.key == pg.K_ESCAPE: if pg.display.Info().current_w == WIN_WIDTH and \ pg.display.Info().current_h == WIN_HEIGHT: raise SystemExit else: pg.display.toggle_fullscreen() pg.display.set_mode(DISPLAY) if event.key == pg.K_f: if pg.display.Info().current_w == WIN_WIDTH and \ pg.display.Info().current_h == WIN_HEIGHT: pg.display.set_mode(pg.display.list_modes()[0]) pg.display.toggle_fullscreen() else: pg.display.toggle_fullscreen() pg.display.set_mode(DISPLAY) if event.key == pg.K_LEFT: horizontal = -1 if event.key == pg.K_RIGHT: horizontal = 1 if event.key == pg.K_UP: vertical = -1 if event.key == pg.K_DOWN: vertical = 1 if event.key == pg.K_SPACE: action = True if event.type == pg.KEYUP: if event.key == pg.K_LEFT or event.key == pg.K_RIGHT: horizontal = 0 if event.key == pg.K_UP or event.key == pg.K_DOWN: vertical = 0 ret = player.update(milliseconds, (blocks_group, bombs_group, actors_group), horizontal, vertical, action, directcall=True) blocks_group.update(milliseconds) bombs_group.update(milliseconds) explosions_group.update(milliseconds, (blocks_group, actors_group, bombs_group)) actors_group.update(milliseconds, (blocks_group, bombs_group, actors_group)) if ret: if isinstance(ret, Bomb): bombs_group.add(ret) cam_shift = [0, 0] display_w = pg.display.Info().current_w display_h = pg.display.Info().current_h player_x, player_y = player.get_center_position() if field_width > display_w: cam_shift[0] = max(min(display_w // 2 - player_x, BLOCK_WIDTH), -field_width + display_w - BLOCK_WIDTH) else: cam_shift[0] = display_w // 2 - field_width // 2 if field_height > display_h: cam_shift[1] = max(min(display_h // 2 - player_y, BLOCK_HEIGHT), -field_height + display_h - BLOCK_HEIGHT) else: cam_shift[1] = display_h // 2 - field_height // 2 screen.blit(backgroud_surface, (0, 0)) for bomb in bombs_group: if bomb.is_exploded(): explosion = bomb.get_explosion() explosion.set_blocking_groups((blocks_group, bombs_group)) explosions_group.add(explosion) for explosion in explosions_group: splash_group = explosion.get_splash_group() cam_shift[0] += randint(-1, 1) cam_shift[1] += randint(-1, 1) splash_group.set_view_shift(*cam_shift) splash_group.draw(screen) action = False blocks_group.set_view_shift(*cam_shift) bombs_group.set_view_shift(*cam_shift) explosions_group.set_view_shift(*cam_shift) actors_group.set_view_shift(*cam_shift) blocks_group.draw(screen) bombs_group.draw(screen) explosions_group.draw(screen) actors_group.draw(screen) if not player.is_alive(): if sfx_back_playing: sfx_back_playing = False sfx_back.fadeout(25) sfx_win.fadeout(25) sfx_fail.play() screen.blit(fail_screen, (display_w // 2 - fail_screen.get_width() // 2, display_h // 2 - fail_screen.get_height() // 2)) elif not blocks_group.contains_sprite_of_class(BrickBlock) and \ len(actors_group) == 1: if sfx_back_playing: sfx_back_playing = False sfx_back.fadeout(25) sfx_win.play() screen.blit(win_screen, (display_w // 2 - win_screen.get_width() // 2, display_h // 2 - win_screen.get_height() // 2)) pg.display.update() if __name__ == "__main__": main()
true
true
f7f401d2b6f697e2ed274730ba40d1ab0365c3b3
2,243
py
Python
functions/source/KeyGen/cryptography/hazmat/primitives/hmac.py
kenmoini/aws-quickstart-centos-okd
1e9daf4e283550e4ed240913352b0283ace6568d
[ "Apache-2.0" ]
179
2017-09-13T20:52:00.000Z
2022-03-24T19:18:19.000Z
functions/source/KeyGen/cryptography/hazmat/primitives/hmac.py
kenmoini/aws-quickstart-centos-okd
1e9daf4e283550e4ed240913352b0283ace6568d
[ "Apache-2.0" ]
248
2017-09-13T20:11:40.000Z
2022-03-30T07:30:40.000Z
functions/source/KeyGen/cryptography/hazmat/primitives/hmac.py
kenmoini/aws-quickstart-centos-okd
1e9daf4e283550e4ed240913352b0283ace6568d
[ "Apache-2.0" ]
216
2017-09-14T19:46:22.000Z
2022-03-29T22:19:20.000Z
# This file is dual licensed under the terms of the Apache License, Version # 2.0, and the BSD License. See the LICENSE file in the root of this repository # for complete details. from __future__ import absolute_import, division, print_function from cryptography import utils from cryptography.exceptions import ( AlreadyFinalized, UnsupportedAlgorithm, _Reasons ) from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives import hashes, mac @utils.register_interface(mac.MACContext) @utils.register_interface(hashes.HashContext) class HMAC(object): def __init__(self, key, algorithm, backend, ctx=None): if not isinstance(backend, HMACBackend): raise UnsupportedAlgorithm( "Backend object does not implement HMACBackend.", _Reasons.BACKEND_MISSING_INTERFACE ) if not isinstance(algorithm, hashes.HashAlgorithm): raise TypeError("Expected instance of hashes.HashAlgorithm.") self._algorithm = algorithm self._backend = backend self._key = key if ctx is None: self._ctx = self._backend.create_hmac_ctx(key, self.algorithm) else: self._ctx = ctx algorithm = utils.read_only_property("_algorithm") def update(self, data): if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") utils._check_byteslike("data", data) self._ctx.update(data) def copy(self): if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") return HMAC( self._key, self.algorithm, backend=self._backend, ctx=self._ctx.copy() ) def finalize(self): if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") digest = self._ctx.finalize() self._ctx = None return digest def verify(self, signature): utils._check_bytes("signature", signature) if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") ctx, self._ctx = self._ctx, None ctx.verify(signature)
32.985294
79
0.660722
from __future__ import absolute_import, division, print_function from cryptography import utils from cryptography.exceptions import ( AlreadyFinalized, UnsupportedAlgorithm, _Reasons ) from cryptography.hazmat.backends.interfaces import HMACBackend from cryptography.hazmat.primitives import hashes, mac @utils.register_interface(mac.MACContext) @utils.register_interface(hashes.HashContext) class HMAC(object): def __init__(self, key, algorithm, backend, ctx=None): if not isinstance(backend, HMACBackend): raise UnsupportedAlgorithm( "Backend object does not implement HMACBackend.", _Reasons.BACKEND_MISSING_INTERFACE ) if not isinstance(algorithm, hashes.HashAlgorithm): raise TypeError("Expected instance of hashes.HashAlgorithm.") self._algorithm = algorithm self._backend = backend self._key = key if ctx is None: self._ctx = self._backend.create_hmac_ctx(key, self.algorithm) else: self._ctx = ctx algorithm = utils.read_only_property("_algorithm") def update(self, data): if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") utils._check_byteslike("data", data) self._ctx.update(data) def copy(self): if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") return HMAC( self._key, self.algorithm, backend=self._backend, ctx=self._ctx.copy() ) def finalize(self): if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") digest = self._ctx.finalize() self._ctx = None return digest def verify(self, signature): utils._check_bytes("signature", signature) if self._ctx is None: raise AlreadyFinalized("Context was already finalized.") ctx, self._ctx = self._ctx, None ctx.verify(signature)
true
true
f7f4023fa434b12507d2de3f4e9836ed73c49624
1,110
py
Python
Intro to Python for Data Science/Python Lists/slicing-and-dicing.py
nazmusshakib121/Python-Programming
3ea852641cd5fe811228f27a780109a44174e8e5
[ "MIT" ]
3
2019-05-12T04:49:24.000Z
2020-05-06T00:40:28.000Z
Intro to Python for Data Science/Python Lists/slicing-and-dicing.py
nazmusshakib121/Python-Programming
3ea852641cd5fe811228f27a780109a44174e8e5
[ "MIT" ]
null
null
null
Intro to Python for Data Science/Python Lists/slicing-and-dicing.py
nazmusshakib121/Python-Programming
3ea852641cd5fe811228f27a780109a44174e8e5
[ "MIT" ]
7
2018-11-06T17:43:31.000Z
2020-11-07T21:08:16.000Z
''' Slicing and dicing 100xp Selecting single values from a list is just one part of the story. It's also possible to slice your list, which means selecting multiple elements from your list. Use the following syntax: my_list[start:end] The start index will be included, while the end index is not. The code sample below shows an example. A list with "b" and "c", corresponding to indexes 1 and 2, are selected from a list x: x = ["a", "b", "c", "d"] x[1:3] The elements with index 1 and 2 are included, while the element with index 3 is not. Instructions Use slicing to create a list, downstairs, that contains the first 6 elements of areas. Do a similar thing to create a new variable, upstairs, that contains the last 4 elements of areas. Print both downstairs and upstairs using print(). ''' # Create the areas list areas = ["hallway", 11.25, "kitchen", 18.0, "living room", 20.0, "bedroom", 10.75, "bathroom", 9.50] # Use slicing to create downstairs downstairs = areas[0:6] # Use slicing to create upstairs upstairs = areas[6:] # Print out downstairs and upstairs print(downstairs) print(upstairs)
32.647059
100
0.741441
areas = ["hallway", 11.25, "kitchen", 18.0, "living room", 20.0, "bedroom", 10.75, "bathroom", 9.50] downstairs = areas[0:6] upstairs = areas[6:] print(downstairs) print(upstairs)
true
true
f7f4025ce0321b5a22101355a0d2f41823d0cfe3
9,738
py
Python
wrappers/python_2-7/WPWithinWrapperImpl.py
UpperLEFTY/worldpay-within-sdk
5651b9b4be08faa83ba46735b2ce14d5fcbb515f
[ "MIT" ]
null
null
null
wrappers/python_2-7/WPWithinWrapperImpl.py
UpperLEFTY/worldpay-within-sdk
5651b9b4be08faa83ba46735b2ce14d5fcbb515f
[ "MIT" ]
null
null
null
wrappers/python_2-7/WPWithinWrapperImpl.py
UpperLEFTY/worldpay-within-sdk
5651b9b4be08faa83ba46735b2ce14d5fcbb515f
[ "MIT" ]
null
null
null
#!/usr/bin/python import ServiceAdapter import EventServer import rpc import wpthrift_types from wpwithin.WPWithin import Client from wpthrift_types import ttypes from wpthrift_types.ttypes import ServiceDeliveryToken import time import thrift from thrift import Thrift from thrift.transport import TSocket from thrift.transport import TTransport from thrift.protocol import TBinaryProtocol import WWTypes import logging class WPWithinWrapperImpl(object): cachedClient = None logging.basicConfig(filename='worldpay-within-wrapper.log',level=logging.DEBUG) def __init__(self, ipAddress, portNumber, startRpcCallbackAgent=False, wpWithinEventListener=None, eventListenerPort=0): self.portNumber = portNumber self.ipAddress = ipAddress self.eventListenerPort = eventListenerPort if startRpcCallbackAgent != None and startRpcCallbackAgent != "" and startRpcCallbackAgent == True and eventListenerPort != None and eventListenerPort != "": if eventListenerPort <= 0 or eventListenerPort > 65535: raise WWTypes.WPWithinGeneralException.WPWithinGeneralException("callback port must be >0 and <655535", None) eventServer = EventServer.EventServer(wpWithinEventListener, self.ipAddress, eventListenerPort) self.rpcRunning = False self.rpcProcess = self.startRpc(self.ipAddress, self.portNumber, self.eventListenerPort) self.setClientIfNotSet() def setClientIfNotSet(self): if self.cachedClient == None: self.cachedClient = self.openRpcListener() def startRpc(self, ipAddress, port, eventListenerPort): if(self.rpcRunning == False): logging.info("Starting Port: " + str(port)) process = rpc.startRPC(ipAddress, port, eventListenerPort) self.rpcRunning = True #give time for the service to start time.sleep(5) return process def getClient(self): self.setClientIfNotSet() return self.cachedClient def openRpcListener(self): try: # Make socket transport = TSocket.TSocket(self.ipAddress, self.portNumber) # Buffering is critical. Raw sockets are very slow transport = TTransport.TBufferedTransport(transport) # Wrap in a protocol protocol = TBinaryProtocol.TBinaryProtocol(transport) # Create a client to use the protocol encoder client = Client(protocol) # Connect! transport.open() logging.info("STARTED connection to SDK via RPC thrift") return client except Exception as e: logging.info("Error: Couldn't open the RpcListener: " + str(e)) raise WWTypes.WPWithinGeneralException("Error: Couldn't open the RpcListener", e) def setup(self, deviceName, deviceDescription): try: self.getClient().setup(deviceName, deviceDescription) logging.info("SHOULD HAVE SETUP DEVICE: (" + str(deviceName) + "), (" + str(deviceDescription) + ")") except Exception as e: logging.info("Error - Failure to setup DEVICE in the wrapper, could be the new config file is missing - gotcha!: " + str(e)) raise WWTypes.WPWithinGeneralException("Error - Failure to setup DEVICE in the wrapper, could be the new config file is missing - gotcha!: ", e) def addService(self, theService): try: self.getClient().addService(ServiceAdapter.convertWWService(theService)) logging.info('SHOULD HAVE ADDED SERVICE') except Exception as e: logging.info("Error - Add service to producer failed with Rpc call to the SDK lower level: " + str(e)) raise WWTypes.WPWithinGeneralException("Error - Add service to producer failed with Rpc call to the SDK lower level", e) def removeService(self, svc): try: self.getClient().removeService(ServiceAdapter.convertWWService(svc)) except Exception as e: logging.info("Removal of service failed in the wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Removal of service failed in the wrapper: ", e) def requestServices(self): try: return ServiceAdapter.convertServiceDetailList(self.getClient().requestServices()) except Exception as e: logging.info("Request services failed in wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Request services failed in wrapper", e) def getDevice(self): try: device = self.getClient().getDevice() wwDevice = ServiceAdapter.convertDevice(device) logging.info('SHOULD HAVE RUN GET DEVICE') return wwDevice except Exception as e: logging.info("Get device in wrapper failed: " + str(e)) raise WWTypes.WPWithinGeneralException("Get device in wrapper failed", e) def stopRPCAgent(self): logging.info('SHOULD STOP RPC AGENT') try: self.rpcProcess.kill() except Exception as e: logging.info("Could not stop the RPC service: " + str(e)) raise WWTypes.WPWithinGeneralException("Could not stop the RPC service", e) def deviceDiscovery(self, timeout): logging.info('STARTING DO DEVICE DISCOVERY') try: svcMsgs = ServiceAdapter.convertServiceMessages(self.getClient().deviceDiscovery(timeout)) logging.info('Finished device discovery') return svcMsgs except Exception as e: logging.info("Failed device discovery in wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Failed device discovery in wrapper", e) def initConsumer(self, scheme, hostname, port, urlPrefix, serverId, hceCard, pspConfig): try: self.getClient().initConsumer(scheme, hostname, port, urlPrefix, serverId, ServiceAdapter.convertWWHCECard(hceCard), pspConfig) except Exception as e: logging.info("Initiating the consumer failed in the wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Initiating the consumer failed in the wrapper", e) def initProducer(self, pspConfig): try: self.getClient().initProducer(pspConfig) logging.info('SHOULD HAVE INIT THE PRODUCER') except Exception as e: logging.info("Initiating the producer failed in the wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Initiating the producer failed in the wrapper", e) def startServiceBroadcast(self, timeout): try: self.getClient().startServiceBroadcast(timeout) logging.info('SHOULD HAVE START SERVICE BROADCAST') except WWTypes.WPWithinGeneralException as e: print "Start service broadcast in wrapper failed: " + e def stopServiceBroadcast(self): try: self.getClient().stopServiceBroadcast() except WPWithinGeneralException as e: print "Stop service broadcast failed: " + e def getServicePrices(self, serviceId): try: return ServiceAdapter.convertServicePrices(self.getClient().getServicePrices(serviceId)) except WWTypes.WPWithinGeneralException as e: print "Get Service Prices failed in wrapper: " + e def selectService(self, serviceId, numberOfUnits, priceId): try: return ServiceAdapter.convertTotalPriceResponse(self.getClient().selectService(serviceId, numberOfUnits, priceId)) except WPWithinGeneralException as e: print "Select service failed in wrapper: " + e def makePayment(self, request): try: return ServiceAdapter.convertPaymentResponse(self.getClient().makePayment(ServiceAdapter.convertWWTotalPriceResponse(request))) except WWTypes.WPWithinGeneralException as e: print "Failed to make payment in the wrapper: " + e def beginServiceDelivery(self, serviceId, serviceDeliveryToken, unitsToSupply): try: print "Checking ServiceDelviery Input" if(serviceId == None): raise WWTypes.WPWithinGeneralException('Service Id cant be None') elif(serviceDeliveryToken == None): raise WWTypes.WPWithinGeneralException('serviceDeliveryToken cant be None') elif(unitsToSupply == None): raise WWTypes.WPWithinGeneralException('unitsToSupply cant be None') else: print "Input variables looked good " + str(serviceId) + " " + str(serviceDeliveryToken) + " " + str(unitsToSupply) csdt = ServiceAdapter.convertWWServiceDeliveryToken(serviceDeliveryToken) print "servicedeliverytoken converted: " + str(csdt) print "serviceId that's going to be consumed: " + str(serviceId) #sdt = self.getClient().beginServiceDelivery(str(clientId), ServiceDeliveryToken(key=serviceDeliveryToken.getKey(), issued="2019-01-02T15:04:05Z", expiry="2019-01-02T15:04:05Z", refundOnExpiry=False, signature="KEVSIG"), 3) sdt = self.getClient().beginServiceDelivery(serviceId, csdt, unitsToSupply) return ServiceAdapter.convertServiceDeliveryToken(sdt) except Exception as e: print "Failed to begin Service Delivery in the wrapper: " + str(e) #except WWTypes.WPWithinGeneralException as e: # print "Failed to begin Service Delivery in the wrapper: " + e def endServiceDelivery(self, serviceId, serviceDeliveryToken, unitsReceived): try: self.getClient().endServiceDelivery(serviceId, ServiceAdapter.convertWWServiceDeliveryToken(serviceDeliveryToken), unitsReceived) except Exception as e: print "Failed to end Service Delivery in the wrapper: " + str(e)
48.447761
235
0.686999
import ServiceAdapter import EventServer import rpc import wpthrift_types from wpwithin.WPWithin import Client from wpthrift_types import ttypes from wpthrift_types.ttypes import ServiceDeliveryToken import time import thrift from thrift import Thrift from thrift.transport import TSocket from thrift.transport import TTransport from thrift.protocol import TBinaryProtocol import WWTypes import logging class WPWithinWrapperImpl(object): cachedClient = None logging.basicConfig(filename='worldpay-within-wrapper.log',level=logging.DEBUG) def __init__(self, ipAddress, portNumber, startRpcCallbackAgent=False, wpWithinEventListener=None, eventListenerPort=0): self.portNumber = portNumber self.ipAddress = ipAddress self.eventListenerPort = eventListenerPort if startRpcCallbackAgent != None and startRpcCallbackAgent != "" and startRpcCallbackAgent == True and eventListenerPort != None and eventListenerPort != "": if eventListenerPort <= 0 or eventListenerPort > 65535: raise WWTypes.WPWithinGeneralException.WPWithinGeneralException("callback port must be >0 and <655535", None) eventServer = EventServer.EventServer(wpWithinEventListener, self.ipAddress, eventListenerPort) self.rpcRunning = False self.rpcProcess = self.startRpc(self.ipAddress, self.portNumber, self.eventListenerPort) self.setClientIfNotSet() def setClientIfNotSet(self): if self.cachedClient == None: self.cachedClient = self.openRpcListener() def startRpc(self, ipAddress, port, eventListenerPort): if(self.rpcRunning == False): logging.info("Starting Port: " + str(port)) process = rpc.startRPC(ipAddress, port, eventListenerPort) self.rpcRunning = True time.sleep(5) return process def getClient(self): self.setClientIfNotSet() return self.cachedClient def openRpcListener(self): try: transport = TSocket.TSocket(self.ipAddress, self.portNumber) transport = TTransport.TBufferedTransport(transport) protocol = TBinaryProtocol.TBinaryProtocol(transport) client = Client(protocol) transport.open() logging.info("STARTED connection to SDK via RPC thrift") return client except Exception as e: logging.info("Error: Couldn't open the RpcListener: " + str(e)) raise WWTypes.WPWithinGeneralException("Error: Couldn't open the RpcListener", e) def setup(self, deviceName, deviceDescription): try: self.getClient().setup(deviceName, deviceDescription) logging.info("SHOULD HAVE SETUP DEVICE: (" + str(deviceName) + "), (" + str(deviceDescription) + ")") except Exception as e: logging.info("Error - Failure to setup DEVICE in the wrapper, could be the new config file is missing - gotcha!: " + str(e)) raise WWTypes.WPWithinGeneralException("Error - Failure to setup DEVICE in the wrapper, could be the new config file is missing - gotcha!: ", e) def addService(self, theService): try: self.getClient().addService(ServiceAdapter.convertWWService(theService)) logging.info('SHOULD HAVE ADDED SERVICE') except Exception as e: logging.info("Error - Add service to producer failed with Rpc call to the SDK lower level: " + str(e)) raise WWTypes.WPWithinGeneralException("Error - Add service to producer failed with Rpc call to the SDK lower level", e) def removeService(self, svc): try: self.getClient().removeService(ServiceAdapter.convertWWService(svc)) except Exception as e: logging.info("Removal of service failed in the wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Removal of service failed in the wrapper: ", e) def requestServices(self): try: return ServiceAdapter.convertServiceDetailList(self.getClient().requestServices()) except Exception as e: logging.info("Request services failed in wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Request services failed in wrapper", e) def getDevice(self): try: device = self.getClient().getDevice() wwDevice = ServiceAdapter.convertDevice(device) logging.info('SHOULD HAVE RUN GET DEVICE') return wwDevice except Exception as e: logging.info("Get device in wrapper failed: " + str(e)) raise WWTypes.WPWithinGeneralException("Get device in wrapper failed", e) def stopRPCAgent(self): logging.info('SHOULD STOP RPC AGENT') try: self.rpcProcess.kill() except Exception as e: logging.info("Could not stop the RPC service: " + str(e)) raise WWTypes.WPWithinGeneralException("Could not stop the RPC service", e) def deviceDiscovery(self, timeout): logging.info('STARTING DO DEVICE DISCOVERY') try: svcMsgs = ServiceAdapter.convertServiceMessages(self.getClient().deviceDiscovery(timeout)) logging.info('Finished device discovery') return svcMsgs except Exception as e: logging.info("Failed device discovery in wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Failed device discovery in wrapper", e) def initConsumer(self, scheme, hostname, port, urlPrefix, serverId, hceCard, pspConfig): try: self.getClient().initConsumer(scheme, hostname, port, urlPrefix, serverId, ServiceAdapter.convertWWHCECard(hceCard), pspConfig) except Exception as e: logging.info("Initiating the consumer failed in the wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Initiating the consumer failed in the wrapper", e) def initProducer(self, pspConfig): try: self.getClient().initProducer(pspConfig) logging.info('SHOULD HAVE INIT THE PRODUCER') except Exception as e: logging.info("Initiating the producer failed in the wrapper: " + str(e)) raise WWTypes.WPWithinGeneralException("Initiating the producer failed in the wrapper", e) def startServiceBroadcast(self, timeout): try: self.getClient().startServiceBroadcast(timeout) logging.info('SHOULD HAVE START SERVICE BROADCAST') except WWTypes.WPWithinGeneralException as e: print "Start service broadcast in wrapper failed: " + e def stopServiceBroadcast(self): try: self.getClient().stopServiceBroadcast() except WPWithinGeneralException as e: print "Stop service broadcast failed: " + e def getServicePrices(self, serviceId): try: return ServiceAdapter.convertServicePrices(self.getClient().getServicePrices(serviceId)) except WWTypes.WPWithinGeneralException as e: print "Get Service Prices failed in wrapper: " + e def selectService(self, serviceId, numberOfUnits, priceId): try: return ServiceAdapter.convertTotalPriceResponse(self.getClient().selectService(serviceId, numberOfUnits, priceId)) except WPWithinGeneralException as e: print "Select service failed in wrapper: " + e def makePayment(self, request): try: return ServiceAdapter.convertPaymentResponse(self.getClient().makePayment(ServiceAdapter.convertWWTotalPriceResponse(request))) except WWTypes.WPWithinGeneralException as e: print "Failed to make payment in the wrapper: " + e def beginServiceDelivery(self, serviceId, serviceDeliveryToken, unitsToSupply): try: print "Checking ServiceDelviery Input" if(serviceId == None): raise WWTypes.WPWithinGeneralException('Service Id cant be None') elif(serviceDeliveryToken == None): raise WWTypes.WPWithinGeneralException('serviceDeliveryToken cant be None') elif(unitsToSupply == None): raise WWTypes.WPWithinGeneralException('unitsToSupply cant be None') else: print "Input variables looked good " + str(serviceId) + " " + str(serviceDeliveryToken) + " " + str(unitsToSupply) csdt = ServiceAdapter.convertWWServiceDeliveryToken(serviceDeliveryToken) print "servicedeliverytoken converted: " + str(csdt) print "serviceId that's going to be consumed: " + str(serviceId) #sdt = self.getClient().beginServiceDelivery(str(clientId), ServiceDeliveryToken(key=serviceDeliveryToken.getKey(), issued="2019-01-02T15:04:05Z", expiry="2019-01-02T15:04:05Z", refundOnExpiry=False, signature="KEVSIG"), 3) sdt = self.getClient().beginServiceDelivery(serviceId, csdt, unitsToSupply) return ServiceAdapter.convertServiceDeliveryToken(sdt) except Exception as e: print "Failed to begin Service Delivery in the wrapper: " + str(e) #except WWTypes.WPWithinGeneralException as e: # print "Failed to begin Service Delivery in the wrapper: " + e def endServiceDelivery(self, serviceId, serviceDeliveryToken, unitsReceived): try: self.getClient().endServiceDelivery(serviceId, ServiceAdapter.convertWWServiceDeliveryToken(serviceDeliveryToken), unitsReceived) except Exception as e: print "Failed to end Service Delivery in the wrapper: " + str(e)
false
true
f7f40266108734e488bf6670581e5a7754f2cfd7
57
py
Python
elastipy/_version.py
defgsus/elastipy
c1144ab39fa70571ba0e02ccf41d380a8a1bd730
[ "Apache-2.0" ]
1
2021-02-17T17:50:28.000Z
2021-02-17T17:50:28.000Z
elastipy/_version.py
defgsus/elastipy
c1144ab39fa70571ba0e02ccf41d380a8a1bd730
[ "Apache-2.0" ]
2
2021-03-29T02:09:41.000Z
2022-03-01T20:09:48.000Z
elastipy/_version.py
netzkolchose/elastipy
c1144ab39fa70571ba0e02ccf41d380a8a1bd730
[ "Apache-2.0" ]
null
null
null
version = (0, 2, 1) version_str = "%s.%s.%s" % version
11.4
34
0.54386
version = (0, 2, 1) version_str = "%s.%s.%s" % version
true
true
f7f40382e836232034c37a7874a726c1592832e8
1,568
py
Python
Configuration/Geometry/python/GeometryRecoDB_cff.py
scodella/cmssw
974479b50b19bd795cb5f91eac872857fd6290f6
[ "Apache-2.0" ]
1
2021-04-13T13:26:16.000Z
2021-04-13T13:26:16.000Z
Configuration/Geometry/python/GeometryRecoDB_cff.py
scodella/cmssw
974479b50b19bd795cb5f91eac872857fd6290f6
[ "Apache-2.0" ]
null
null
null
Configuration/Geometry/python/GeometryRecoDB_cff.py
scodella/cmssw
974479b50b19bd795cb5f91eac872857fd6290f6
[ "Apache-2.0" ]
1
2020-04-01T15:30:45.000Z
2020-04-01T15:30:45.000Z
import FWCore.ParameterSet.Config as cms # Tracking Geometry from Geometry.CommonDetUnit.globalTrackingGeometryDB_cfi import * #Tracker from RecoTracker.GeometryESProducer.TrackerRecoGeometryESProducer_cfi import * from Geometry.TrackerNumberingBuilder.trackerTopology_cfi import * #Muon from RecoMuon.DetLayers.muonDetLayerGeometry_cfi import * # Calorimeters from Geometry.CaloEventSetup.CaloTopology_cfi import * from Geometry.CaloEventSetup.AlignedCaloGeometryDBReader_cfi import * from Geometry.CaloEventSetup.EcalTrigTowerConstituents_cfi import * from Geometry.EcalMapping.EcalMapping_cfi import * from Geometry.EcalMapping.EcalMappingRecord_cfi import * from Geometry.HcalCommonData.hcalDDDSimConstants_cfi import * from Geometry.HcalCommonData.hcalDDDRecConstants_cfi import * from Geometry.HcalEventSetup.hcalTopologyIdeal_cfi import * # Alignment from Geometry.TrackerGeometryBuilder.idealForDigiTrackerGeometryDB_cff import * from Geometry.CSCGeometryBuilder.idealForDigiCscGeometryDB_cff import * from Geometry.DTGeometryBuilder.idealForDigiDtGeometryDB_cff import * # GEM present from 2017 onwards def _loadGeometryESProducers( theProcess ) : theProcess.load('Geometry.GEMGeometryBuilder.gemGeometryDB_cfi') from Configuration.Eras.Modifier_run2_GEM_2017_cff import run2_GEM_2017 modifyGeometryConfigurationRun2_cff_ = run2_GEM_2017.makeProcessModifier( _loadGeometryESProducers ) from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM modifyGeometryConfigurationRun3_cff_ = run3_GEM.makeProcessModifier( _loadGeometryESProducers )
41.263158
100
0.876913
import FWCore.ParameterSet.Config as cms from Geometry.CommonDetUnit.globalTrackingGeometryDB_cfi import * from RecoTracker.GeometryESProducer.TrackerRecoGeometryESProducer_cfi import * from Geometry.TrackerNumberingBuilder.trackerTopology_cfi import * from RecoMuon.DetLayers.muonDetLayerGeometry_cfi import * from Geometry.CaloEventSetup.CaloTopology_cfi import * from Geometry.CaloEventSetup.AlignedCaloGeometryDBReader_cfi import * from Geometry.CaloEventSetup.EcalTrigTowerConstituents_cfi import * from Geometry.EcalMapping.EcalMapping_cfi import * from Geometry.EcalMapping.EcalMappingRecord_cfi import * from Geometry.HcalCommonData.hcalDDDSimConstants_cfi import * from Geometry.HcalCommonData.hcalDDDRecConstants_cfi import * from Geometry.HcalEventSetup.hcalTopologyIdeal_cfi import * from Geometry.TrackerGeometryBuilder.idealForDigiTrackerGeometryDB_cff import * from Geometry.CSCGeometryBuilder.idealForDigiCscGeometryDB_cff import * from Geometry.DTGeometryBuilder.idealForDigiDtGeometryDB_cff import * def _loadGeometryESProducers( theProcess ) : theProcess.load('Geometry.GEMGeometryBuilder.gemGeometryDB_cfi') from Configuration.Eras.Modifier_run2_GEM_2017_cff import run2_GEM_2017 modifyGeometryConfigurationRun2_cff_ = run2_GEM_2017.makeProcessModifier( _loadGeometryESProducers ) from Configuration.Eras.Modifier_run3_GEM_cff import run3_GEM modifyGeometryConfigurationRun3_cff_ = run3_GEM.makeProcessModifier( _loadGeometryESProducers )
true
true
f7f403942c227694871c6399aa18bc9ec5dc56b6
6,736
py
Python
ingestion/tests/integration/ometa/test_ometa_lineage_api.py
ulixius9/OpenMetadata
f121698d968717f0932f685ef2a512c2a4d92438
[ "Apache-2.0" ]
null
null
null
ingestion/tests/integration/ometa/test_ometa_lineage_api.py
ulixius9/OpenMetadata
f121698d968717f0932f685ef2a512c2a4d92438
[ "Apache-2.0" ]
null
null
null
ingestion/tests/integration/ometa/test_ometa_lineage_api.py
ulixius9/OpenMetadata
f121698d968717f0932f685ef2a512c2a4d92438
[ "Apache-2.0" ]
null
null
null
# Copyright 2021 Collate # 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. """ OpenMetadata high-level API Lineage test """ from unittest import TestCase from metadata.generated.schema.api.data.createDatabase import CreateDatabaseRequest from metadata.generated.schema.api.data.createDatabaseSchema import ( CreateDatabaseSchemaRequest, ) from metadata.generated.schema.api.data.createPipeline import CreatePipelineRequest from metadata.generated.schema.api.data.createTable import CreateTableRequest from metadata.generated.schema.api.lineage.addLineage import AddLineageRequest from metadata.generated.schema.api.services.createDatabaseService import ( CreateDatabaseServiceRequest, ) from metadata.generated.schema.api.services.createPipelineService import ( CreatePipelineServiceRequest, ) from metadata.generated.schema.entity.data.table import Column, DataType from metadata.generated.schema.entity.services.connections.database.mysqlConnection import ( MysqlConnection, ) from metadata.generated.schema.entity.services.connections.metadata.openMetadataConnection import ( OpenMetadataConnection, ) from metadata.generated.schema.entity.services.connections.pipeline.airflowConnection import ( AirflowConnection, ) from metadata.generated.schema.entity.services.connections.pipeline.backendConnection import ( BackendConnection, ) from metadata.generated.schema.entity.services.databaseService import ( DatabaseConnection, DatabaseService, DatabaseServiceType, ) from metadata.generated.schema.entity.services.pipelineService import ( PipelineConnection, PipelineService, PipelineServiceType, ) from metadata.generated.schema.type.entityLineage import EntitiesEdge from metadata.generated.schema.type.entityReference import EntityReference from metadata.ingestion.ometa.ometa_api import OpenMetadata class OMetaLineageTest(TestCase): """ Run this integration test with the local API available Install the ingestion package before running the tests """ service_entity_id = None server_config = OpenMetadataConnection(hostPort="http://localhost:8585/api") metadata = OpenMetadata(server_config) assert metadata.health_check() db_service = CreateDatabaseServiceRequest( name="test-service-db-lineage", serviceType=DatabaseServiceType.Mysql, connection=DatabaseConnection( config=MysqlConnection( username="username", password="password", hostPort="http://localhost:1234", ) ), ) pipeline_service = CreatePipelineServiceRequest( name="test-service-pipeline-lineage", serviceType=PipelineServiceType.Airflow, connection=PipelineConnection( config=AirflowConnection( hostPort="http://localhost:8080", connection=BackendConnection(), ), ), ) @classmethod def setUpClass(cls) -> None: """ Prepare ingredients """ cls.db_service_entity = cls.metadata.create_or_update(data=cls.db_service) cls.pipeline_service_entity = cls.metadata.create_or_update( data=cls.pipeline_service ) create_db = CreateDatabaseRequest( name="test-db", service=EntityReference( id=cls.db_service_entity.id, type="databaseService" ), ) create_db_entity = cls.metadata.create_or_update(data=create_db) db_reference = EntityReference( id=create_db_entity.id, name="test-db", type="database" ) create_schema = CreateDatabaseSchemaRequest( name="test-schema", database=db_reference ) create_schema_entity = cls.metadata.create_or_update(data=create_schema) schema_reference = EntityReference( id=create_schema_entity.id, name="test-schema", type="databaseSchema" ) cls.table = CreateTableRequest( name="test", databaseSchema=schema_reference, columns=[Column(name="id", dataType=DataType.BIGINT)], ) cls.table_entity = cls.metadata.create_or_update(data=cls.table) cls.pipeline = CreatePipelineRequest( name="test", service=EntityReference( id=cls.pipeline_service_entity.id, type="pipelineService" ), ) cls.pipeline_entity = cls.metadata.create_or_update(data=cls.pipeline) cls.create = AddLineageRequest( description="test lineage", edge=EntitiesEdge( fromEntity=EntityReference(id=cls.table_entity.id, type="table"), toEntity=EntityReference(id=cls.pipeline_entity.id, type="pipeline"), ), ) @classmethod def tearDownClass(cls) -> None: """ Clean up """ db_service_id = str( cls.metadata.get_by_name( entity=DatabaseService, fqn="test-service-db-lineage" ).id.__root__ ) pipeline_service_id = str( cls.metadata.get_by_name( entity=PipelineService, fqn="test-service-pipeline-lineage" ).id.__root__ ) cls.metadata.delete( entity=PipelineService, entity_id=pipeline_service_id, recursive=True, hard_delete=True, ) cls.metadata.delete( entity=DatabaseService, entity_id=db_service_id, recursive=True, hard_delete=True, ) def test_create(self): """ We can create a Lineage and get the origin node lineage info back """ from_id = str(self.table_entity.id.__root__) to_id = str(self.pipeline_entity.id.__root__) res = self.metadata.add_lineage(data=self.create) # Check that we get the origin ID in the entity assert res["entity"]["id"] == from_id # Check that the toEntity is a node in the origin lineage node_id = next( iter([node["id"] for node in res["nodes"] if node["id"] == to_id]), None ) assert node_id
33.346535
99
0.674436
from unittest import TestCase from metadata.generated.schema.api.data.createDatabase import CreateDatabaseRequest from metadata.generated.schema.api.data.createDatabaseSchema import ( CreateDatabaseSchemaRequest, ) from metadata.generated.schema.api.data.createPipeline import CreatePipelineRequest from metadata.generated.schema.api.data.createTable import CreateTableRequest from metadata.generated.schema.api.lineage.addLineage import AddLineageRequest from metadata.generated.schema.api.services.createDatabaseService import ( CreateDatabaseServiceRequest, ) from metadata.generated.schema.api.services.createPipelineService import ( CreatePipelineServiceRequest, ) from metadata.generated.schema.entity.data.table import Column, DataType from metadata.generated.schema.entity.services.connections.database.mysqlConnection import ( MysqlConnection, ) from metadata.generated.schema.entity.services.connections.metadata.openMetadataConnection import ( OpenMetadataConnection, ) from metadata.generated.schema.entity.services.connections.pipeline.airflowConnection import ( AirflowConnection, ) from metadata.generated.schema.entity.services.connections.pipeline.backendConnection import ( BackendConnection, ) from metadata.generated.schema.entity.services.databaseService import ( DatabaseConnection, DatabaseService, DatabaseServiceType, ) from metadata.generated.schema.entity.services.pipelineService import ( PipelineConnection, PipelineService, PipelineServiceType, ) from metadata.generated.schema.type.entityLineage import EntitiesEdge from metadata.generated.schema.type.entityReference import EntityReference from metadata.ingestion.ometa.ometa_api import OpenMetadata class OMetaLineageTest(TestCase): service_entity_id = None server_config = OpenMetadataConnection(hostPort="http://localhost:8585/api") metadata = OpenMetadata(server_config) assert metadata.health_check() db_service = CreateDatabaseServiceRequest( name="test-service-db-lineage", serviceType=DatabaseServiceType.Mysql, connection=DatabaseConnection( config=MysqlConnection( username="username", password="password", hostPort="http://localhost:1234", ) ), ) pipeline_service = CreatePipelineServiceRequest( name="test-service-pipeline-lineage", serviceType=PipelineServiceType.Airflow, connection=PipelineConnection( config=AirflowConnection( hostPort="http://localhost:8080", connection=BackendConnection(), ), ), ) @classmethod def setUpClass(cls) -> None: cls.db_service_entity = cls.metadata.create_or_update(data=cls.db_service) cls.pipeline_service_entity = cls.metadata.create_or_update( data=cls.pipeline_service ) create_db = CreateDatabaseRequest( name="test-db", service=EntityReference( id=cls.db_service_entity.id, type="databaseService" ), ) create_db_entity = cls.metadata.create_or_update(data=create_db) db_reference = EntityReference( id=create_db_entity.id, name="test-db", type="database" ) create_schema = CreateDatabaseSchemaRequest( name="test-schema", database=db_reference ) create_schema_entity = cls.metadata.create_or_update(data=create_schema) schema_reference = EntityReference( id=create_schema_entity.id, name="test-schema", type="databaseSchema" ) cls.table = CreateTableRequest( name="test", databaseSchema=schema_reference, columns=[Column(name="id", dataType=DataType.BIGINT)], ) cls.table_entity = cls.metadata.create_or_update(data=cls.table) cls.pipeline = CreatePipelineRequest( name="test", service=EntityReference( id=cls.pipeline_service_entity.id, type="pipelineService" ), ) cls.pipeline_entity = cls.metadata.create_or_update(data=cls.pipeline) cls.create = AddLineageRequest( description="test lineage", edge=EntitiesEdge( fromEntity=EntityReference(id=cls.table_entity.id, type="table"), toEntity=EntityReference(id=cls.pipeline_entity.id, type="pipeline"), ), ) @classmethod def tearDownClass(cls) -> None: db_service_id = str( cls.metadata.get_by_name( entity=DatabaseService, fqn="test-service-db-lineage" ).id.__root__ ) pipeline_service_id = str( cls.metadata.get_by_name( entity=PipelineService, fqn="test-service-pipeline-lineage" ).id.__root__ ) cls.metadata.delete( entity=PipelineService, entity_id=pipeline_service_id, recursive=True, hard_delete=True, ) cls.metadata.delete( entity=DatabaseService, entity_id=db_service_id, recursive=True, hard_delete=True, ) def test_create(self): from_id = str(self.table_entity.id.__root__) to_id = str(self.pipeline_entity.id.__root__) res = self.metadata.add_lineage(data=self.create) assert res["entity"]["id"] == from_id node_id = next( iter([node["id"] for node in res["nodes"] if node["id"] == to_id]), None ) assert node_id
true
true
f7f403dd541a967bd6ecfcc97776553f0f776531
2,062
py
Python
api/views.py
xhackax47/AXEL_WEB
917cdbdd79ae364327135e09abce9d058dc1271a
[ "MIT" ]
1
2020-01-17T10:51:21.000Z
2020-01-17T10:51:21.000Z
api/views.py
xhackax47/AXEL_WEB
917cdbdd79ae364327135e09abce9d058dc1271a
[ "MIT" ]
8
2021-03-30T12:35:54.000Z
2022-03-12T00:11:34.000Z
api/views.py
xhackax47/AXEL_WEB
917cdbdd79ae364327135e09abce9d058dc1271a
[ "MIT" ]
null
null
null
from rest_framework.generics import ListCreateAPIView, RetrieveUpdateDestroyAPIView from rest_framework.viewsets import ModelViewSet from WebAXEL.models import Robot, Document, DataSet from api.serializers import RobotSerializer, DocumentSerializer, DataSetSerializer # DOCUMENTS # Vue DocumentListView qui renvoi la liste des documents en JSON class DocumentListView(ListCreateAPIView): queryset = Document.objects.all() serializer_class = DocumentSerializer # Vue DocumentListViewSet qui renvoi la liste des documents en JSON dans un viewset class DocumentListViewSet(ModelViewSet): queryset = Document.objects.all() serializer_class = DocumentSerializer # Vue DocumentDetailViewSet qui renvoi le détail d'un document en JSON class DocumentDetailView(RetrieveUpdateDestroyAPIView): queryset = Document.objects.all() serializer_class = DocumentSerializer # DATASETS # Vue DataSetListView qui renvoi la liste des datasets en JSON class DataSetListView(ListCreateAPIView): queryset = DataSet.objects.all() serializer_class = DataSetSerializer # Vue DataSetListViewSet qui renvoi la liste des datasets en JSON dans un viewset class DataSetListViewSet(ModelViewSet): queryset = DataSet.objects.all() serializer_class = DataSetSerializer # Vue DataSetDetailViewSet qui renvoi le détail d'un dataset en JSON class DataSetDetailView(RetrieveUpdateDestroyAPIView): queryset = DataSet.objects.all() serializer_class = DataSetSerializer # ROBOTS # Vue RobotListView qui renvoi la liste des robots en JSON class RobotListView(ListCreateAPIView): queryset = Robot.objects.all() serializer_class = RobotSerializer # Vue RobotListViewSet qui renvoi la liste des robots en JSON dans un viewset class RobotListViewSet(ModelViewSet): queryset = Robot.objects.all() serializer_class = RobotSerializer # Vue RobotDetailViewSet qui renvoi le détail d'un robot en JSON class RobotDetailView(RetrieveUpdateDestroyAPIView): queryset = Robot.objects.all() serializer_class = RobotSerializer
31.242424
83
0.803104
from rest_framework.generics import ListCreateAPIView, RetrieveUpdateDestroyAPIView from rest_framework.viewsets import ModelViewSet from WebAXEL.models import Robot, Document, DataSet from api.serializers import RobotSerializer, DocumentSerializer, DataSetSerializer class DocumentListView(ListCreateAPIView): queryset = Document.objects.all() serializer_class = DocumentSerializer class DocumentListViewSet(ModelViewSet): queryset = Document.objects.all() serializer_class = DocumentSerializer class DocumentDetailView(RetrieveUpdateDestroyAPIView): queryset = Document.objects.all() serializer_class = DocumentSerializer # DATASETS # Vue DataSetListView qui renvoi la liste des datasets en JSON class DataSetListView(ListCreateAPIView): queryset = DataSet.objects.all() serializer_class = DataSetSerializer # Vue DataSetListViewSet qui renvoi la liste des datasets en JSON dans un viewset class DataSetListViewSet(ModelViewSet): queryset = DataSet.objects.all() serializer_class = DataSetSerializer # Vue DataSetDetailViewSet qui renvoi le détail d'un dataset en JSON class DataSetDetailView(RetrieveUpdateDestroyAPIView): queryset = DataSet.objects.all() serializer_class = DataSetSerializer class RobotListView(ListCreateAPIView): queryset = Robot.objects.all() serializer_class = RobotSerializer class RobotListViewSet(ModelViewSet): queryset = Robot.objects.all() serializer_class = RobotSerializer class RobotDetailView(RetrieveUpdateDestroyAPIView): queryset = Robot.objects.all() serializer_class = RobotSerializer
true
true
f7f404274ce59c8d6649c8898cfb73c869ca450c
1,214
py
Python
Python/PythonFundamentals/TypeList.py
JosephAMumford/CodingDojo
505be74d18d7a8f41c4b3576ca050b97f840f0a3
[ "MIT" ]
2
2018-08-18T15:14:45.000Z
2019-10-16T16:14:13.000Z
Python/PythonFundamentals/TypeList.py
JosephAMumford/CodingDojo
505be74d18d7a8f41c4b3576ca050b97f840f0a3
[ "MIT" ]
null
null
null
Python/PythonFundamentals/TypeList.py
JosephAMumford/CodingDojo
505be74d18d7a8f41c4b3576ca050b97f840f0a3
[ "MIT" ]
6
2018-05-05T18:13:05.000Z
2021-05-20T11:32:48.000Z
#input l = ['magical unicorns',19,'hello',98.98,'world'] # l = [2,3,1,7,4,12] # l = ['magical','unicorns'] # l = [2, 3.14, 5.8, 5] # variables string = "" totalInt = 0 totalFloat = 0 sumTotal = 0 # loop through list to evaluate element types # and add like values together for value in l: if isinstance(value, basestring): string += " " + value if isinstance(value, int): totalInt += value if isinstance(value, float): totalFloat += value # add floats and ints together for mixed numbers sumTotal = totalInt + totalFloat # evaluate types in list if len(string) == 0 and totalFloat == 0: print "List is of integer type" print "Sum is: " + str(totalInt) if len(string) == 0 and totalInt == 0: print "List is of float type" print "Sum is: " + str(totalFloat) if len(string) != 0 and sumTotal == 0: print "List is of string type" print "String value is: " + string if len(string) == 0 and totalInt != 0 and totalFloat != 0: print "List is of mixed number type" print "Sum is: " + str(sumTotal) if len(string) != 0 and sumTotal != 0: print "List is of mixed type" print "String value is: " + string print "Sum is: " + str(sumTotal)
28.904762
58
0.630972
l = ['magical unicorns',19,'hello',98.98,'world'] string = "" totalInt = 0 totalFloat = 0 sumTotal = 0 for value in l: if isinstance(value, basestring): string += " " + value if isinstance(value, int): totalInt += value if isinstance(value, float): totalFloat += value sumTotal = totalInt + totalFloat if len(string) == 0 and totalFloat == 0: print "List is of integer type" print "Sum is: " + str(totalInt) if len(string) == 0 and totalInt == 0: print "List is of float type" print "Sum is: " + str(totalFloat) if len(string) != 0 and sumTotal == 0: print "List is of string type" print "String value is: " + string if len(string) == 0 and totalInt != 0 and totalFloat != 0: print "List is of mixed number type" print "Sum is: " + str(sumTotal) if len(string) != 0 and sumTotal != 0: print "List is of mixed type" print "String value is: " + string print "Sum is: " + str(sumTotal)
false
true
f7f4046b0b74d33b3a17925148de5aed2198a690
4,474
py
Python
sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py
romahamu/azure-sdk-for-python
a57c9f73b9121f79d317e1679b81fd460d6a25b8
[ "MIT" ]
2
2021-03-24T06:26:11.000Z
2021-04-18T15:55:59.000Z
sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py
RSidea/azure-sdk-for-python
8f691b2c95ee0fc53b12d08bd83e3f134d9cf0ef
[ "MIT" ]
null
null
null
sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py
RSidea/azure-sdk-for-python
8f691b2c95ee0fc53b12d08bd83e3f134d9cf0ef
[ "MIT" ]
1
2021-12-18T20:01:22.000Z
2021-12-18T20:01:22.000Z
# ------------------------------------------------------------------------ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for # license information. # ------------------------------------------------------------------------- import base64 import json import time from typing import ( # pylint: disable=unused-import cast, Tuple, ) from datetime import datetime from msrest.serialization import TZ_UTC from azure.core.credentials import AccessToken def _convert_datetime_to_utc_int(expires_on): epoch = time.mktime(datetime(1970, 1, 1).timetuple()) return epoch-time.mktime(expires_on.timetuple()) def parse_connection_str(conn_str): # type: (str) -> Tuple[str, str, str, str] endpoint = None shared_access_key = None for element in conn_str.split(";"): key, _, value = element.partition("=") if key.lower() == "endpoint": endpoint = value.rstrip("/") elif key.lower() == "accesskey": shared_access_key = value if not all([endpoint, shared_access_key]): raise ValueError( "Invalid connection string. Should be in the format: " "endpoint=sb://<FQDN>/;accesskey=<KeyValue>" ) left_slash_pos = cast(str, endpoint).find("//") if left_slash_pos != -1: host = cast(str, endpoint)[left_slash_pos + 2:] else: host = str(endpoint) return host, str(shared_access_key) def get_current_utc_time(): # type: () -> str return str(datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S ")) + "GMT" def get_current_utc_as_int(): # type: () -> int current_utc_datetime = datetime.utcnow().replace(tzinfo=TZ_UTC) return _convert_datetime_to_utc_int(current_utc_datetime) def create_access_token(token): # type: (str) -> azure.core.credentials.AccessToken """Creates an instance of azure.core.credentials.AccessToken from a string token. The input string is jwt token in the following form: <token_header>.<token_payload>.<token_signature> This method looks into the token_payload which is a json and extracts the expiry time for that token and creates a tuple of type azure.core.credentials.AccessToken (<string_token>, <expiry>) :param token: User token :type token: str :return: Instance of azure.core.credentials.AccessToken - token and expiry date of it :rtype: ~azure.core.credentials.AccessToken """ token_parse_err_msg = "Token is not formatted correctly" parts = token.split(".") if len(parts) < 3: raise ValueError(token_parse_err_msg) try: padded_base64_payload = base64.b64decode(parts[1] + "==").decode('ascii') payload = json.loads(padded_base64_payload) return AccessToken(token, _convert_datetime_to_utc_int(datetime.fromtimestamp(payload['exp']).replace(tzinfo=TZ_UTC))) except ValueError: raise ValueError(token_parse_err_msg) def get_authentication_policy( endpoint, # type: str credential, # type: TokenCredential or str is_async=False, # type: bool ): # type: (...) -> BearerTokenCredentialPolicy or HMACCredentialPolicy """Returns the correct authentication policy based on which credential is being passed. :param endpoint: The endpoint to which we are authenticating to. :type endpoint: str :param credential: The credential we use to authenticate to the service :type credential: TokenCredential or str :param isAsync: For async clients there is a need to decode the url :type bool: isAsync or str :rtype: ~azure.core.pipeline.policies.BearerTokenCredentialPolicy ~HMACCredentialsPolicy """ if credential is None: raise ValueError("Parameter 'credential' must not be None.") if hasattr(credential, "get_token"): from azure.core.pipeline.policies import BearerTokenCredentialPolicy return BearerTokenCredentialPolicy( credential, "https://communication.azure.com//.default") if isinstance(credential, str): from .._shared.policy import HMACCredentialsPolicy return HMACCredentialsPolicy(endpoint, credential, decode_url=is_async) raise TypeError("Unsupported credential: {}. Use an access token string to use HMACCredentialsPolicy" "or a token credential from azure.identity".format(type(credential)))
37.915254
119
0.669647
import base64 import json import time from typing import ( cast, Tuple, ) from datetime import datetime from msrest.serialization import TZ_UTC from azure.core.credentials import AccessToken def _convert_datetime_to_utc_int(expires_on): epoch = time.mktime(datetime(1970, 1, 1).timetuple()) return epoch-time.mktime(expires_on.timetuple()) def parse_connection_str(conn_str): endpoint = None shared_access_key = None for element in conn_str.split(";"): key, _, value = element.partition("=") if key.lower() == "endpoint": endpoint = value.rstrip("/") elif key.lower() == "accesskey": shared_access_key = value if not all([endpoint, shared_access_key]): raise ValueError( "Invalid connection string. Should be in the format: " "endpoint=sb://<FQDN>/;accesskey=<KeyValue>" ) left_slash_pos = cast(str, endpoint).find("//") if left_slash_pos != -1: host = cast(str, endpoint)[left_slash_pos + 2:] else: host = str(endpoint) return host, str(shared_access_key) def get_current_utc_time(): return str(datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S ")) + "GMT" def get_current_utc_as_int(): current_utc_datetime = datetime.utcnow().replace(tzinfo=TZ_UTC) return _convert_datetime_to_utc_int(current_utc_datetime) def create_access_token(token): token_parse_err_msg = "Token is not formatted correctly" parts = token.split(".") if len(parts) < 3: raise ValueError(token_parse_err_msg) try: padded_base64_payload = base64.b64decode(parts[1] + "==").decode('ascii') payload = json.loads(padded_base64_payload) return AccessToken(token, _convert_datetime_to_utc_int(datetime.fromtimestamp(payload['exp']).replace(tzinfo=TZ_UTC))) except ValueError: raise ValueError(token_parse_err_msg) def get_authentication_policy( endpoint, credential, is_async=False, ): if credential is None: raise ValueError("Parameter 'credential' must not be None.") if hasattr(credential, "get_token"): from azure.core.pipeline.policies import BearerTokenCredentialPolicy return BearerTokenCredentialPolicy( credential, "https://communication.azure.com//.default") if isinstance(credential, str): from .._shared.policy import HMACCredentialsPolicy return HMACCredentialsPolicy(endpoint, credential, decode_url=is_async) raise TypeError("Unsupported credential: {}. Use an access token string to use HMACCredentialsPolicy" "or a token credential from azure.identity".format(type(credential)))
true
true
f7f404935e8dd9b8574f2148df5c0fc153ef1585
699
py
Python
bs_jobs_rate.py
tsaavik/beanstalk-munin
2b04ce4ae7a18de873fcde4d6846042a8e68b188
[ "Apache-2.0" ]
15
2015-03-22T21:05:18.000Z
2018-10-05T08:19:30.000Z
bs_jobs_rate.py
tsaavik/beanstalk-munin
2b04ce4ae7a18de873fcde4d6846042a8e68b188
[ "Apache-2.0" ]
1
2015-05-18T12:09:19.000Z
2017-04-18T12:42:43.000Z
bs_jobs_rate.py
tsaavik/beanstalk-munin
2b04ce4ae7a18de873fcde4d6846042a8e68b188
[ "Apache-2.0" ]
6
2015-12-18T11:41:46.000Z
2021-05-13T07:13:31.000Z
#!/usr/bin/env python import os import sys import beanstalkc HOST = os.environ.get('HOST', 'localhost') PORT = os.environ.get('PORT', 11300) def do_data(): stats = beanstalkc.Connection(HOST, PORT).stats() print 'queue_jobs.value %d' % stats['total-jobs'] def do_config(): print "graph_title Job Rate" print "graph_vlabel Jobs per ${graph_period}" print "graph_category Beanstalk" print "graph_args --lower-limit 0" print "graph_scale no" print "queue_jobs.label Jobs" print "queue_jobs.type DERIVE" print "queue_jobs.min 0" if __name__ == '__main__': if len(sys.argv) > 1 and sys.argv[1] == 'config': do_config() else: do_data()
24.103448
53
0.663805
import os import sys import beanstalkc HOST = os.environ.get('HOST', 'localhost') PORT = os.environ.get('PORT', 11300) def do_data(): stats = beanstalkc.Connection(HOST, PORT).stats() print 'queue_jobs.value %d' % stats['total-jobs'] def do_config(): print "graph_title Job Rate" print "graph_vlabel Jobs per ${graph_period}" print "graph_category Beanstalk" print "graph_args --lower-limit 0" print "graph_scale no" print "queue_jobs.label Jobs" print "queue_jobs.type DERIVE" print "queue_jobs.min 0" if __name__ == '__main__': if len(sys.argv) > 1 and sys.argv[1] == 'config': do_config() else: do_data()
false
true
f7f4055c13196fe1f487a72caee8946af8b7aaac
2,316
py
Python
setup.py
taylor-a-barnes/quantum_espresso_step
fac8b35b9bc6c993cb0e2f54c4f82fb6f5f75985
[ "BSD-3-Clause" ]
null
null
null
setup.py
taylor-a-barnes/quantum_espresso_step
fac8b35b9bc6c993cb0e2f54c4f82fb6f5f75985
[ "BSD-3-Clause" ]
null
null
null
setup.py
taylor-a-barnes/quantum_espresso_step
fac8b35b9bc6c993cb0e2f54c4f82fb6f5f75985
[ "BSD-3-Clause" ]
null
null
null
#!/usr/bin/env python # -*- coding: utf-8 -*- """The setup script.""" from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'molssi_workflow>=0.1', 'molssi_util>=0.1' # TODO: put any other package requirements here ] setup_requirements = [ 'pytest-runner', # TODO(molssi): put setup requirements (distutils extensions, etc.) here ] test_requirements = [ 'pytest', # TODO: put package test requirements here ] setup( name='quantum_espresso_step', version='0.1.0', description="Quantum ESPRESSO step provides an interface for the planewave DFT code Quantum ESPRESSO", long_description=readme + '\n\n' + history, author="Taylor Barnes", author_email='tbarnes1@vt.edu', url='https://github.com/molssi/quantum_espresso_step', packages=find_packages(include=['quantum_espresso_step']), include_package_data=True, install_requires=requirements, license="BSD license", zip_safe=False, keywords='quantum_espresso_step', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Chemistry', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Materials Science', 'Topic :: Scientific/Engineering :: Computational Materials Science', 'Topic :: Scientific/Engineering :: Computational Molecular Science', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], test_suite='tests', tests_require=test_requirements, setup_requires=setup_requirements, entry_points={ 'org.molssi.workflow': [ 'Quantum ESPRESSO = quantum_espresso_step:QuantumESPRESSOStep', ], 'org.molssi.workflow.tk': [ 'Quantum ESPRESSO = quantum_espresso_step:QuantumESPRESSOStep', ], } )
32.166667
106
0.656736
from setuptools import setup, find_packages with open('README.rst') as readme_file: readme = readme_file.read() with open('HISTORY.rst') as history_file: history = history_file.read() requirements = [ 'molssi_workflow>=0.1', 'molssi_util>=0.1' ] setup_requirements = [ 'pytest-runner', ] test_requirements = [ 'pytest', ] setup( name='quantum_espresso_step', version='0.1.0', description="Quantum ESPRESSO step provides an interface for the planewave DFT code Quantum ESPRESSO", long_description=readme + '\n\n' + history, author="Taylor Barnes", author_email='tbarnes1@vt.edu', url='https://github.com/molssi/quantum_espresso_step', packages=find_packages(include=['quantum_espresso_step']), include_package_data=True, install_requires=requirements, license="BSD license", zip_safe=False, keywords='quantum_espresso_step', classifiers=[ 'Development Status :: 2 - Pre-Alpha', 'Intended Audience :: Science/Research', 'Topic :: Scientific/Engineering :: Chemistry', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Materials Science', 'Topic :: Scientific/Engineering :: Computational Materials Science', 'Topic :: Scientific/Engineering :: Computational Molecular Science', 'License :: OSI Approved :: BSD License', 'Natural Language :: English', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], test_suite='tests', tests_require=test_requirements, setup_requires=setup_requirements, entry_points={ 'org.molssi.workflow': [ 'Quantum ESPRESSO = quantum_espresso_step:QuantumESPRESSOStep', ], 'org.molssi.workflow.tk': [ 'Quantum ESPRESSO = quantum_espresso_step:QuantumESPRESSOStep', ], } )
true
true
f7f4065398028e667b2efb676dfbae3d43f5e22b
10,068
py
Python
docs/conf.py
phst/commonmark.py
d031003aa23cfce1787cfb29c1eb109b369ca5b7
[ "BSD-3-Clause" ]
154
2015-12-10T23:17:28.000Z
2019-04-04T06:49:36.000Z
docs/conf.py
phst/commonmark.py
d031003aa23cfce1787cfb29c1eb109b369ca5b7
[ "BSD-3-Clause" ]
131
2019-07-02T15:56:33.000Z
2022-03-25T19:54:02.000Z
docs/conf.py
phst/commonmark.py
d031003aa23cfce1787cfb29c1eb109b369ca5b7
[ "BSD-3-Clause" ]
53
2015-12-08T18:06:51.000Z
2019-05-02T18:08:10.000Z
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # commonmark.py documentation build configuration file, created by # sphinx-quickstart on Mon Jan 4 18:11:52 2016. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # All configuration values have a default; values that are commented out # serve to show the default. import sys import os import shlex # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath('..')) # -- General configuration ------------------------------------------------ # If your documentation needs a minimal Sphinx version, state it here. #needs_sphinx = '1.0' # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # source_suffix = ['.rst', '.md'] source_suffix = '.rst' # The encoding of source files. #source_encoding = 'utf-8-sig' # The master toctree document. master_doc = 'index' # General information about the project. project = 'commonmark.py' copyright = '2014-2019, Roland Shoemaker, Bibek Kafle, Nik Nyby' author = 'Roland Shoemaker, Bibek Kafle, Nik Nyby' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = '0.9.1' # The full version, including alpha/beta/rc tags. release = '0.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ['_build'] # The reST default role (used for this markup: `text`) to use for all # documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. #keep_warnings = False # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'alabaster' html_sidebars = { '**': [ 'about.html', 'navigation.html', 'relations.html', 'searchbox.html', ] } # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. html_theme_options = { 'description': 'A Python CommonMark library', 'github_user': 'rtfd', 'github_repo': 'commonmark.py', } # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # otherwise, readthedocs.org uses their theme by default, so no need to specify it # The name for this set of Sphinx documents. If None, it defaults to # "<project> v<release> documentation". #html_title = None # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None # The name of an image file (relative to this directory) to place at the top # of the sidebar. #html_logo = None # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 # pixels large. #html_favicon = None # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied # directly to the root of the documentation. #html_extra_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. #html_last_updated_fmt = '%b %d, %Y' # If true, SmartyPants will be used to convert quotes and dashes to # typographically correct entities. #html_use_smartypants = True # Custom sidebar templates, maps document names to template names. #html_sidebars = {} # Additional templates that should be rendered to pages, maps page names to # template names. #html_additional_pages = {} # If false, no module index is generated. #html_domain_indices = True # If false, no index is generated. #html_use_index = True # If true, the index is split into individual pages for each letter. #html_split_index = False # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. #html_show_sphinx = True # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. #html_show_copyright = True # If true, an OpenSearch description file will be output, and all pages will # contain a <link> tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. #html_use_opensearch = '' # This is the file name suffix for HTML files (e.g. ".xhtml"). #html_file_suffix = None # Language to be used for generating the HTML full-text search index. # Sphinx supports the following languages: # 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja' # 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr' #html_search_language = 'en' # A dictionary with options for the search language support, empty by default. # Now only 'ja' uses this config value #html_search_options = {'type': 'default'} # The name of a javascript file (relative to the configuration directory) that # implements a search results scorer. If empty, the default will be used. #html_search_scorer = 'scorer.js' # Output file base name for HTML help builder. htmlhelp_basename = 'CommonMark-pydoc' # -- Options for LaTeX output --------------------------------------------- latex_elements = { # The paper size ('letterpaper' or 'a4paper'). #'papersize': 'letterpaper', # The font size ('10pt', '11pt' or '12pt'). #'pointsize': '10pt', # Additional stuff for the LaTeX preamble. #'preamble': '', # Latex figure (float) alignment #'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ (master_doc, 'CommonMark-py.tex', 'commonmark.py Documentation', 'Roland Shoemaker, Bibek Kafle', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of # the title page. #latex_logo = None # For "manual" documents, if this is true, then toplevel headings are parts, # not chapters. #latex_use_parts = False # If true, show page references after internal links. #latex_show_pagerefs = False # If true, show URL addresses after external links. #latex_show_urls = False # Documents to append as an appendix to all manuals. #latex_appendices = [] # If false, no module index is generated. #latex_domain_indices = True # -- Options for manual page output --------------------------------------- # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ (master_doc, 'commonmark-py', 'commonmark.py Documentation', [author], 1) ] # If true, show URL addresses after external links. #man_show_urls = False # -- Options for Texinfo output ------------------------------------------- # Grouping the document tree into Texinfo files. List of tuples # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ (master_doc, 'commonmark.py', 'commonmark.py Documentation', author, 'commonmark.py', 'One line description of project.', 'Miscellaneous'), ] # Documents to append as an appendix to all manuals. #texinfo_appendices = [] # If false, no module index is generated. #texinfo_domain_indices = True # How to display URL addresses: 'footnote', 'no', or 'inline'. #texinfo_show_urls = 'footnote' # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False
32.269231
98
0.715236
import sys import os import shlex sys.path.insert(0, os.path.abspath('..')) extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', ] templates_path = ['_templates'] source_suffix = '.rst' master_doc = 'index' project = 'commonmark.py' copyright = '2014-2019, Roland Shoemaker, Bibek Kafle, Nik Nyby' author = 'Roland Shoemaker, Bibek Kafle, Nik Nyby' # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. version = '0.9.1' # The full version, including alpha/beta/rc tags. release = '0.9.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: #today = '' # Else, today_fmt is used as the format for a strftime call. #today_fmt = '%B %d, %Y' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. exclude_patterns = ['_build'] # The reST default role (used for this markup: `text`) to use for all # documents. #default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True # If true, the current module name will be prepended to all description # unit titles (such as .. function::). #add_module_names = True # If true, sectionauthor and moduleauthor directives will be shown in the # output. They are ignored by default. #show_authors = False # The name of the Pygments (syntax highlighting) style to use. pygments_style = 'sphinx' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] # If true, keep warnings as "system message" paragraphs in the built documents. #keep_warnings = False # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = False # -- Options for HTML output ---------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. html_theme = 'alabaster' html_sidebars = { '**': [ 'about.html', 'navigation.html', 'relations.html', 'searchbox.html', ] } # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. html_theme_options = { 'description': 'A Python CommonMark library', 'github_user': 'rtfd', 'github_repo': 'commonmark.py', } # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] # on_rtd is whether we are on readthedocs.org, this line of code grabbed from docs.readthedocs.org on_rtd = os.environ.get('READTHEDOCS', None) == 'True' if not on_rtd: # only import and set the theme if we're building docs locally import sphinx_rtd_theme html_theme = 'sphinx_rtd_theme' html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] html_static_path = ['_static'] htmlhelp_basename = 'CommonMark-pydoc' latex_elements = { } latex_documents = [ (master_doc, 'CommonMark-py.tex', 'commonmark.py Documentation', 'Roland Shoemaker, Bibek Kafle', 'manual'), ] man_pages = [ (master_doc, 'commonmark-py', 'commonmark.py Documentation', [author], 1) ] texinfo_documents = [ (master_doc, 'commonmark.py', 'commonmark.py Documentation', author, 'commonmark.py', 'One line description of project.', 'Miscellaneous'), ] #texinfo_no_detailmenu = False
true
true
f7f407943f46ec7c3364c5ef91bffe981be63399
658
py
Python
src/models/configuration.py
lokarithm/PyWebTest
a8c3e0563216f4ef0ec451eea2bed18f283e668f
[ "MIT" ]
null
null
null
src/models/configuration.py
lokarithm/PyWebTest
a8c3e0563216f4ef0ec451eea2bed18f283e668f
[ "MIT" ]
1
2021-08-22T22:14:59.000Z
2021-08-22T22:14:59.000Z
src/models/configuration.py
lokarithm/PyWebTest
a8c3e0563216f4ef0ec451eea2bed18f283e668f
[ "MIT" ]
null
null
null
from .user import User class Configuration: def __init__(self, url): self.url = url self._user = None self._testCase = None self._is_headless = False @property def is_headless(self): return self._is_headless @property def testCase(self): return self._testCase @property def user(self): return self._user @user.setter def user(self, user): self._user = user @testCase.setter def testCase(self, testCase): self._testCase = testCase @is_headless.setter def is_headless(self, is_headless): self._is_headless = is_headless
19.352941
39
0.620061
from .user import User class Configuration: def __init__(self, url): self.url = url self._user = None self._testCase = None self._is_headless = False @property def is_headless(self): return self._is_headless @property def testCase(self): return self._testCase @property def user(self): return self._user @user.setter def user(self, user): self._user = user @testCase.setter def testCase(self, testCase): self._testCase = testCase @is_headless.setter def is_headless(self, is_headless): self._is_headless = is_headless
true
true
f7f407eac0f02726724a43cf801abe1145d7ae18
40,690
py
Python
saleor/lib/python3.7/site-packages/graphql/language/ast.py
cxsper/saleor
5566ddcdaf8f72ba872eca869798e66eb9cdae44
[ "BSD-3-Clause" ]
2
2019-06-27T22:05:59.000Z
2021-06-04T09:02:02.000Z
saleor/lib/python3.7/site-packages/graphql/language/ast.py
cxsper/saleor
5566ddcdaf8f72ba872eca869798e66eb9cdae44
[ "BSD-3-Clause" ]
5
2020-03-24T16:37:25.000Z
2021-06-10T21:24:54.000Z
saleor/lib/python3.7/site-packages/graphql/language/ast.py
cxsper/saleor
5566ddcdaf8f72ba872eca869798e66eb9cdae44
[ "BSD-3-Clause" ]
1
2019-02-21T00:41:13.000Z
2019-02-21T00:41:13.000Z
# Necessary for static type checking if False: # flake8: noqa from .parser import Loc from typing import Any, Optional, Union, List, Tuple, Iterable # This is autogenerated code. DO NOT change this manually. # Run scripts/generate_ast.py to generate this file. class Node(object): __slots__ = () _fields = () # type: Iterable[str] loc = None # type: Optional[Loc] class Definition(Node): __slots__ = () class Document(Node): __slots__ = ("loc", "definitions") _fields = ("definitions",) def __init__(self, definitions, loc=None): # type: (Any, Optional[Loc]) -> None self.loc = loc self.definitions = definitions def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, Document) and # self.loc == other.loc and self.definitions == other.definitions ) def __repr__(self): # type: () -> str return ("Document(" "definitions={self.definitions!r}" ")").format(self=self) def __copy__(self): # type: () -> Document return type(self)(self.definitions, self.loc) def __hash__(self): # type: () -> int return id(self) class OperationDefinition(Definition): __slots__ = ( "loc", "operation", "name", "variable_definitions", "directives", "selection_set", ) _fields = ( "operation", "name", "variable_definitions", "directives", "selection_set", ) def __init__( self, operation, # type: str selection_set, # type: SelectionSet name=None, # type: Optional[Name] # variable_definitions=None, # type: Optional[List[VariableDefinition]] directives=None, # type: Optional[List[Directive]] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.loc = loc self.operation = operation self.name = name self.variable_definitions = variable_definitions self.directives = directives self.selection_set = selection_set def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, OperationDefinition) and # self.loc == other.loc and self.operation == other.operation and self.name == other.name and self.variable_definitions == other.variable_definitions and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): # type: () -> str return ( "OperationDefinition(" "operation={self.operation!r}" ", name={self.name!r}" ", variable_definitions={self.variable_definitions!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): # type: () -> OperationDefinition return type(self)( self.operation, self.selection_set, self.name, self.variable_definitions, self.directives, self.loc, ) def __hash__(self): # type: () -> int return id(self) class VariableDefinition(Node): __slots__ = ("loc", "variable", "type", "default_value") _fields = ("variable", "type", "default_value") def __init__(self, variable, type, default_value=None, loc=None): # type: (Variable, Any, Any, Optional[Loc]) -> None self.loc = loc self.variable = variable self.type = type self.default_value = default_value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, VariableDefinition) and # self.loc == other.loc and self.variable == other.variable and self.type == other.type and self.default_value == other.default_value ) def __repr__(self): # type: () -> str return ( "VariableDefinition(" "variable={self.variable!r}" ", type={self.type!r}" ", default_value={self.default_value!r}" ")" ).format(self=self) def __copy__(self): # type: () -> VariableDefinition return type(self)(self.variable, self.type, self.default_value, self.loc) def __hash__(self): # type: () -> int return id(self) class SelectionSet(Node): __slots__ = ("loc", "selections") _fields = ("selections",) def __init__(self, selections, loc=None): # type: (Any, Optional[Loc]) -> None self.loc = loc self.selections = selections def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, SelectionSet) and # self.loc == other.loc and self.selections == other.selections ) def __repr__(self): # type: () -> str return ("SelectionSet(" "selections={self.selections!r}" ")").format(self=self) def __copy__(self): # type: () -> SelectionSet return type(self)(self.selections, self.loc) def __hash__(self): # type: () -> int return id(self) class Selection(Node): __slots__ = () class Field(Selection): __slots__ = ("loc", "alias", "name", "arguments", "directives", "selection_set") _fields = ("alias", "name", "arguments", "directives", "selection_set") def __init__( self, name, # type: Name alias=None, # type: Optional[Name] arguments=None, # type: Optional[List[Argument]] directives=None, # type: Optional[List[Directive]] selection_set=None, # type: Optional[SelectionSet] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.loc = loc self.alias = alias self.name = name self.arguments = arguments self.directives = directives self.selection_set = selection_set def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, Field) and # self.loc == other.loc and self.alias == other.alias and self.name == other.name and self.arguments == other.arguments and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): # type: () -> str return ( "Field(" "alias={self.alias!r}" ", name={self.name!r}" ", arguments={self.arguments!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): # type: () -> Field return type(self)( self.name, self.alias, self.arguments, self.directives, self.selection_set, self.loc, ) def __hash__(self): # type: () -> int return id(self) class Argument(Node): __slots__ = ("loc", "name", "value") _fields = ("name", "value") def __init__(self, name, value, loc=None): # type: (Name, Any, Optional[Loc]) -> None self.loc = loc self.name = name self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, Argument) and # self.loc == other.loc and self.name == other.name and self.value == other.value ) def __repr__(self): # type: () -> str return ("Argument(" "name={self.name!r}" ", value={self.value!r}" ")").format( self=self ) def __copy__(self): # type: () -> Argument return type(self)(self.name, self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class FragmentSpread(Selection): __slots__ = ("loc", "name", "directives") _fields = ("name", "directives") def __init__( self, name, # type: Name directives=None, # type: List[Directive] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.loc = loc self.name = name self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, FragmentSpread) and # self.loc == other.loc and self.name == other.name and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "FragmentSpread(" "name={self.name!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> FragmentSpread return type(self)(self.name, self.directives, self.loc) def __hash__(self): # type: () -> int return id(self) class InlineFragment(Selection): __slots__ = ("loc", "type_condition", "directives", "selection_set") _fields = ("type_condition", "directives", "selection_set") def __init__( self, type_condition, # type: Optional[NamedType] selection_set, # type: SelectionSet directives=None, # type: Optional[List[Directive]] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.loc = loc self.type_condition = type_condition self.directives = directives self.selection_set = selection_set def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, InlineFragment) and # self.loc == other.loc and self.type_condition == other.type_condition and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): # type: () -> str return ( "InlineFragment(" "type_condition={self.type_condition!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): # type: () -> InlineFragment return type(self)( self.type_condition, self.selection_set, self.directives, self.loc ) def __hash__(self): # type: () -> int return id(self) class FragmentDefinition(Definition): __slots__ = ("loc", "name", "type_condition", "directives", "selection_set") _fields = ("name", "type_condition", "directives", "selection_set") def __init__( self, name, # type: Name type_condition, # type: Optional[NamedType] selection_set, # type: SelectionSet directives=None, # type: Optional[List[Directive]] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.loc = loc self.name = name self.type_condition = type_condition self.directives = directives self.selection_set = selection_set def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, FragmentDefinition) and # self.loc == other.loc and self.name == other.name and self.type_condition == other.type_condition and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): # type: () -> str return ( "FragmentDefinition(" "name={self.name!r}" ", type_condition={self.type_condition!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): # type: () -> FragmentDefinition return type(self)( self.name, self.type_condition, self.selection_set, self.directives, self.loc, ) def __hash__(self): # type: () -> int return id(self) class Value(Node): __slots__ = () class Variable(Value): __slots__ = ("loc", "name") _fields = ("name",) def __init__(self, name, loc=None): # type: (Name, Optional[Loc]) -> None self.loc = loc self.name = name def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, Variable) and self.name == other.name # and self.loc == other.loc ) def __repr__(self): # type: () -> str return ("Variable(" "name={self.name!r}" ")").format(self=self) def __copy__(self): # type: () -> Variable return type(self)(self.name, self.loc) def __hash__(self): # type: () -> int return id(self) class IntValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): # type: (str, Optional[Loc]) -> None self.loc = loc self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, IntValue) and # self.loc == other.loc and self.value == other.value ) def __repr__(self): # type: () -> str return ("IntValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): # type: () -> IntValue return type(self)(self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class FloatValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): # type: (str, Optional[Any]) -> None self.loc = loc self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, FloatValue) and # self.loc == other.loc and self.value == other.value ) def __repr__(self): # type: () -> str return ("FloatValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): # type: () -> FloatValue return type(self)(self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class StringValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): # type: (str, Optional[Loc]) -> None self.loc = loc self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, StringValue) and # self.loc == other.loc and self.value == other.value ) def __repr__(self): # type: () -> str return ("StringValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): # type: () -> StringValue return type(self)(self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class BooleanValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): # type: (bool, Optional[Loc]) -> None self.loc = loc self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, BooleanValue) and # self.loc == other.loc and self.value == other.value ) def __repr__(self): # type: () -> str return ("BooleanValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): # type: () -> BooleanValue return type(self)(self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class EnumValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): # type: (str, Optional[Loc]) -> None self.loc = loc self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, EnumValue) and # self.loc == other.loc and self.value == other.value ) def __repr__(self): # type: () -> str return ("EnumValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): # type: () -> EnumValue return type(self)(self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class ListValue(Value): __slots__ = ("loc", "values") _fields = ("values",) def __init__(self, values, loc=None): # type: (Any, Optional[Loc]) -> None self.loc = loc self.values = values def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, ListValue) and # self.loc == other.loc and self.values == other.values ) def __repr__(self): # type: () -> str return ("ListValue(" "values={self.values!r}" ")").format(self=self) def __copy__(self): # type: () -> ListValue return type(self)(self.values, self.loc) def __hash__(self): # type: () -> int return id(self) class ObjectValue(Value): __slots__ = ("loc", "fields") _fields = ("fields",) def __init__(self, fields, loc=None): # type: (List[ObjectField], Optional[Loc]) -> None self.loc = loc self.fields = fields def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, ObjectValue) and # self.loc == other.loc and self.fields == other.fields ) def __repr__(self): # type: () -> str return ("ObjectValue(" "fields={self.fields!r}" ")").format(self=self) def __copy__(self): # type: () -> ObjectValue return type(self)(self.fields, self.loc) def __hash__(self): # type: () -> int return id(self) class ObjectField(Node): __slots__ = ("loc", "name", "value") _fields = ("name", "value") def __init__(self, name, value, loc=None): # type: (Name, Any, Optional[Loc]) -> None self.loc = loc self.name = name self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, ObjectField) and # self.loc == other.loc and self.name == other.name and self.value == other.value ) def __repr__(self): # type: () -> str return ( "ObjectField(" "name={self.name!r}" ", value={self.value!r}" ")" ).format(self=self) def __copy__(self): # type: () -> ObjectField return type(self)(self.name, self.value, self.loc) def __hash__(self): # type: () -> int return id(self) class Directive(Node): __slots__ = ("loc", "name", "arguments") _fields = ("name", "arguments") def __init__( self, name, # type: Name arguments=None, # type: Optional[List[Argument]] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.loc = loc self.name = name self.arguments = arguments def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, Directive) and # self.loc == other.loc and self.name == other.name and self.arguments == other.arguments ) def __repr__(self): # type: () -> str return ( "Directive(" "name={self.name!r}" ", arguments={self.arguments!r}" ")" ).format(self=self) def __copy__(self): # type: () -> Directive return type(self)(self.name, self.arguments, self.loc) def __hash__(self): # type: () -> int return id(self) class Type(Node): __slots__ = () class NamedType(Type): __slots__ = ("loc", "name") _fields = ("name",) def __init__(self, name, loc=None): # type: (Name, Optional[Loc]) -> None self.loc = loc self.name = name def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, NamedType) and # self.loc == other.loc and self.name == other.name ) def __repr__(self): # type: () -> str return ("NamedType(" "name={self.name!r}" ")").format(self=self) def __copy__(self): # type: () -> NamedType return type(self)(self.name, self.loc) def __hash__(self): # type: () -> int return id(self) class ListType(Type): __slots__ = ("loc", "type") _fields = ("type",) def __init__(self, type, loc=None): # type: (Union[NamedType, NonNullType], Optional[Loc]) -> None self.loc = loc self.type = type def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, ListType) and # self.loc == other.loc and self.type == other.type ) def __repr__(self): # type: () -> str return ("ListType(" "type={self.type!r}" ")").format(self=self) def __copy__(self): # type: () -> ListType return type(self)(self.type, self.loc) def __hash__(self): # type: () -> int return id(self) class NonNullType(Type): __slots__ = ("loc", "type") _fields = ("type",) def __init__(self, type, loc=None): # type: (Union[ListType, NamedType], Optional[Loc]) -> None self.loc = loc self.type = type def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, NonNullType) and # self.loc == other.loc and self.type == other.type ) def __repr__(self): # type: () -> str return ("NonNullType(" "type={self.type!r}" ")").format(self=self) def __copy__(self): # type: () -> NonNullType return type(self)(self.type, self.loc) def __hash__(self): # type: () -> int return id(self) class Name(Node): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): # type: (str, Optional[Loc]) -> None self.loc = loc self.value = value def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, Name) and # self.loc == other.loc and self.value == other.value ) def __repr__(self): # type: () -> str return ("Name(" "value={self.value!r}" ")").format(self=self) def __copy__(self): # type: () -> Name return type(self)(self.value, self.loc) def __hash__(self): # type: () -> int return id(self) # Type System Definition class TypeDefinition(Node): pass class TypeSystemDefinition(TypeDefinition): pass class SchemaDefinition(TypeSystemDefinition): __slots__ = ("loc", "directives", "operation_types") _fields = ("operation_types",) def __init__( self, operation_types, # type: List[OperationTypeDefinition] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.operation_types = operation_types self.loc = loc self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, SchemaDefinition) and self.operation_types == other.operation_types and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "SchemaDefinition(" "operation_types={self.operation_types!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> SchemaDefinition return type(self)(self.operation_types, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class OperationTypeDefinition(Node): __slots__ = ("loc", "operation", "type") _fields = ("operation", "type") def __init__(self, operation, type, loc=None): # type: (str, NamedType, Optional[Loc]) -> None self.operation = operation self.type = type self.loc = loc def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, OperationTypeDefinition) and self.operation == other.operation and self.type == other.type ) def __repr__(self): # type: () -> str return ( "OperationTypeDefinition(" "operation={self.operation!r}" ", type={self.type!r}" ")" ).format(self=self) def __copy__(self): # type: () -> OperationTypeDefinition return type(self)(self.operation, self.type, self.loc) def __hash__(self): # type: () -> int return id(self) class ObjectTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "interfaces", "directives", "fields") _fields = ("name", "interfaces", "fields") def __init__( self, name, # type: Name fields, # type: List[FieldDefinition] interfaces=None, # type: Optional[List[NamedType]] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.interfaces = interfaces self.fields = fields self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, ObjectTypeDefinition) and # self.loc == other.loc and self.name == other.name and self.interfaces == other.interfaces and self.fields == other.fields and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "ObjectTypeDefinition(" "name={self.name!r}" ", interfaces={self.interfaces!r}" ", fields={self.fields!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> ObjectTypeDefinition return type(self)( self.name, self.fields, self.interfaces, self.loc, self.directives ) def __hash__(self): # type: () -> int return id(self) class FieldDefinition(Node): __slots__ = ("loc", "name", "arguments", "type", "directives") _fields = ("name", "arguments", "type") def __init__( self, name, # type: Name arguments, # type: List[InputValueDefinition] type, # type: Union[NamedType, NonNullType, ListType] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List] ): # type: (...) -> None self.loc = loc self.name = name self.arguments = arguments self.type = type self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, FieldDefinition) and # self.loc == other.loc and self.name == other.name and self.arguments == other.arguments and self.type == other.type and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "FieldDefinition(" "name={self.name!r}" ", arguments={self.arguments!r}" ", type={self.type!r}" ")" ).format(self=self) def __copy__(self): # type: () -> FieldDefinition return type(self)( self.name, self.arguments, self.type, self.loc, self.directives ) def __hash__(self): # type: () -> int return id(self) class InputValueDefinition(Node): __slots__ = ("loc", "name", "type", "default_value", "directives") _fields = ("name", "type", "default_value") def __init__( self, name, # type: Name type, # type: Union[NamedType, NonNullType, ListType] default_value=None, # type: Any loc=None, # type: Optional[Loc] directives=None, # type: Optional[List] ): # type: (...) -> None self.loc = loc self.name = name self.type = type self.default_value = default_value self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, InputValueDefinition) and # self.loc == other.loc and self.name == other.name and self.type == other.type and self.default_value == other.default_value and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "InputValueDefinition(" "name={self.name!r}" ", type={self.type!r}" ", default_value={self.default_value!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> InputValueDefinition return type(self)( self.name, self.type, self.default_value, self.loc, self.directives ) def __hash__(self): # type: () -> int return id(self) class InterfaceTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "fields", "directives") _fields = ("name", "fields") def __init__( self, name, # type: Name fields, # type: List[FieldDefinition] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.fields = fields self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, InterfaceTypeDefinition) and # self.loc == other.loc and self.name == other.name and self.fields == other.fields and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "InterfaceTypeDefinition(" "name={self.name!r}" ", fields={self.fields!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> InterfaceTypeDefinition return type(self)(self.name, self.fields, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class UnionTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "types", "directives") _fields = ("name", "types") def __init__( self, name, # type: Name types, # type: List[NamedType] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.types = types self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, UnionTypeDefinition) and # self.loc == other.loc and self.name == other.name and self.types == other.types and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "UnionTypeDefinition(" "name={self.name!r}" ", types={self.types!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> UnionTypeDefinition return type(self)(self.name, self.types, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class ScalarTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "directives") _fields = ("name",) def __init__( self, name, # type: Name loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, ScalarTypeDefinition) and # self.loc == other.loc and self.name == other.name and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "ScalarTypeDefinition(" "name={self.name!r}" "directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> ScalarTypeDefinition return type(self)(self.name, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class EnumTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "values", "directives") _fields = ("name", "values") def __init__( self, name, # type: Name values, # type: List[EnumValueDefinition] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.values = values self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, EnumTypeDefinition) and # self.loc == other.loc and self.name == other.name and self.values == other.values and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "EnumTypeDefinition(" "name={self.name!r}" ", values={self.values!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> EnumTypeDefinition return type(self)(self.name, self.values, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class EnumValueDefinition(Node): __slots__ = ("loc", "name", "directives") _fields = ("name",) def __init__( self, name, # type: Name loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, EnumValueDefinition) and # self.loc == other.loc and self.name == other.name and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "EnumValueDefinition(" "name={self.name!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> EnumValueDefinition return type(self)(self.name, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class InputObjectTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "fields", "directives") _fields = ("name", "fields") def __init__( self, name, # type: Name fields, # type: List[InputValueDefinition] loc=None, # type: Optional[Loc] directives=None, # type: Optional[List[Directive]] ): # type: (...) -> None self.loc = loc self.name = name self.fields = fields self.directives = directives def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, InputObjectTypeDefinition) and # self.loc == other.loc and self.name == other.name and self.fields == other.fields and self.directives == other.directives ) def __repr__(self): # type: () -> str return ( "InputObjectTypeDefinition(" "name={self.name!r}" ", fields={self.fields!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): # type: () -> InputObjectTypeDefinition return type(self)(self.name, self.fields, self.loc, self.directives) def __hash__(self): # type: () -> int return id(self) class TypeExtensionDefinition(TypeSystemDefinition): __slots__ = ("loc", "definition") _fields = ("definition",) def __init__(self, definition, loc=None): # type: (ObjectTypeDefinition, Optional[Loc]) -> None self.loc = loc self.definition = definition def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, TypeExtensionDefinition) and # self.loc == other.loc and self.definition == other.definition ) def __repr__(self): # type: () -> str return ("TypeExtensionDefinition(" "definition={self.definition!r}" ")").format( self=self ) def __copy__(self): # type: () -> TypeExtensionDefinition return type(self)(self.definition, self.loc) def __hash__(self): # type: () -> int return id(self) class DirectiveDefinition(TypeSystemDefinition): __slots__ = ("loc", "name", "arguments", "locations") _fields = ("name", "locations") def __init__( self, name, # type: Name locations, # type: List[Name] arguments=None, # type: Optional[List[InputValueDefinition]] loc=None, # type: Optional[Loc] ): # type: (...) -> None self.name = name self.locations = locations self.loc = loc self.arguments = arguments def __eq__(self, other): # type: (Any) -> bool return self is other or ( isinstance(other, DirectiveDefinition) and self.name == other.name and self.locations == other.locations and # self.loc == other.loc and self.arguments == other.arguments ) def __repr__(self): # type: () -> str return ( "DirectiveDefinition(" "name={self.name!r}, " "locations={self.locations!r}" ")" ).format(self=self) def __copy__(self): # type: () -> DirectiveDefinition return type(self)(self.name, self.locations, self.arguments, self.loc) def __hash__(self): # type: () -> int return id(self)
27.126667
88
0.529958
if False: from .parser import Loc from typing import Any, Optional, Union, List, Tuple, Iterable class Node(object): __slots__ = () _fields = () loc = None class Definition(Node): __slots__ = () class Document(Node): __slots__ = ("loc", "definitions") _fields = ("definitions",) def __init__(self, definitions, loc=None): self.loc = loc self.definitions = definitions def __eq__(self, other): return self is other or ( isinstance(other, Document) and self.definitions == other.definitions ) def __repr__(self): return ("Document(" "definitions={self.definitions!r}" ")").format(self=self) def __copy__(self): return type(self)(self.definitions, self.loc) def __hash__(self): return id(self) class OperationDefinition(Definition): __slots__ = ( "loc", "operation", "name", "variable_definitions", "directives", "selection_set", ) _fields = ( "operation", "name", "variable_definitions", "directives", "selection_set", ) def __init__( self, operation, selection_set, name=None, variable_definitions=None, directives=None, loc=None, ): self.loc = loc self.operation = operation self.name = name self.variable_definitions = variable_definitions self.directives = directives self.selection_set = selection_set def __eq__(self, other): return self is other or ( isinstance(other, OperationDefinition) and self.operation == other.operation and self.name == other.name and self.variable_definitions == other.variable_definitions and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): return ( "OperationDefinition(" "operation={self.operation!r}" ", name={self.name!r}" ", variable_definitions={self.variable_definitions!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.operation, self.selection_set, self.name, self.variable_definitions, self.directives, self.loc, ) def __hash__(self): return id(self) class VariableDefinition(Node): __slots__ = ("loc", "variable", "type", "default_value") _fields = ("variable", "type", "default_value") def __init__(self, variable, type, default_value=None, loc=None): self.loc = loc self.variable = variable self.type = type self.default_value = default_value def __eq__(self, other): return self is other or ( isinstance(other, VariableDefinition) and self.variable == other.variable and self.type == other.type and self.default_value == other.default_value ) def __repr__(self): return ( "VariableDefinition(" "variable={self.variable!r}" ", type={self.type!r}" ", default_value={self.default_value!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.variable, self.type, self.default_value, self.loc) def __hash__(self): return id(self) class SelectionSet(Node): __slots__ = ("loc", "selections") _fields = ("selections",) def __init__(self, selections, loc=None): self.loc = loc self.selections = selections def __eq__(self, other): return self is other or ( isinstance(other, SelectionSet) and self.selections == other.selections ) def __repr__(self): return ("SelectionSet(" "selections={self.selections!r}" ")").format(self=self) def __copy__(self): return type(self)(self.selections, self.loc) def __hash__(self): return id(self) class Selection(Node): __slots__ = () class Field(Selection): __slots__ = ("loc", "alias", "name", "arguments", "directives", "selection_set") _fields = ("alias", "name", "arguments", "directives", "selection_set") def __init__( self, name, alias=None, arguments=None, directives=None, selection_set=None, loc=None, ): self.loc = loc self.alias = alias self.name = name self.arguments = arguments self.directives = directives self.selection_set = selection_set def __eq__(self, other): return self is other or ( isinstance(other, Field) and self.alias == other.alias and self.name == other.name and self.arguments == other.arguments and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): return ( "Field(" "alias={self.alias!r}" ", name={self.name!r}" ", arguments={self.arguments!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.name, self.alias, self.arguments, self.directives, self.selection_set, self.loc, ) def __hash__(self): return id(self) class Argument(Node): __slots__ = ("loc", "name", "value") _fields = ("name", "value") def __init__(self, name, value, loc=None): self.loc = loc self.name = name self.value = value def __eq__(self, other): return self is other or ( isinstance(other, Argument) and self.name == other.name and self.value == other.value ) def __repr__(self): return ("Argument(" "name={self.name!r}" ", value={self.value!r}" ")").format( self=self ) def __copy__(self): return type(self)(self.name, self.value, self.loc) def __hash__(self): return id(self) class FragmentSpread(Selection): __slots__ = ("loc", "name", "directives") _fields = ("name", "directives") def __init__( self, name, directives=None, loc=None, ): self.loc = loc self.name = name self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, FragmentSpread) and self.name == other.name and self.directives == other.directives ) def __repr__(self): return ( "FragmentSpread(" "name={self.name!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.directives, self.loc) def __hash__(self): return id(self) class InlineFragment(Selection): __slots__ = ("loc", "type_condition", "directives", "selection_set") _fields = ("type_condition", "directives", "selection_set") def __init__( self, type_condition, selection_set, directives=None, loc=None, ): self.loc = loc self.type_condition = type_condition self.directives = directives self.selection_set = selection_set def __eq__(self, other): return self is other or ( isinstance(other, InlineFragment) and self.type_condition == other.type_condition and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): return ( "InlineFragment(" "type_condition={self.type_condition!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.type_condition, self.selection_set, self.directives, self.loc ) def __hash__(self): return id(self) class FragmentDefinition(Definition): __slots__ = ("loc", "name", "type_condition", "directives", "selection_set") _fields = ("name", "type_condition", "directives", "selection_set") def __init__( self, name, type_condition, selection_set, directives=None, loc=None, ): self.loc = loc self.name = name self.type_condition = type_condition self.directives = directives self.selection_set = selection_set def __eq__(self, other): return self is other or ( isinstance(other, FragmentDefinition) and self.name == other.name and self.type_condition == other.type_condition and self.directives == other.directives and self.selection_set == other.selection_set ) def __repr__(self): return ( "FragmentDefinition(" "name={self.name!r}" ", type_condition={self.type_condition!r}" ", directives={self.directives!r}" ", selection_set={self.selection_set!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.name, self.type_condition, self.selection_set, self.directives, self.loc, ) def __hash__(self): return id(self) class Value(Node): __slots__ = () class Variable(Value): __slots__ = ("loc", "name") _fields = ("name",) def __init__(self, name, loc=None): self.loc = loc self.name = name def __eq__(self, other): return self is other or ( isinstance(other, Variable) and self.name == other.name ) def __repr__(self): return ("Variable(" "name={self.name!r}" ")").format(self=self) def __copy__(self): return type(self)(self.name, self.loc) def __hash__(self): return id(self) class IntValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): self.loc = loc self.value = value def __eq__(self, other): return self is other or ( isinstance(other, IntValue) and self.value == other.value ) def __repr__(self): return ("IntValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): return type(self)(self.value, self.loc) def __hash__(self): return id(self) class FloatValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): self.loc = loc self.value = value def __eq__(self, other): return self is other or ( isinstance(other, FloatValue) and self.value == other.value ) def __repr__(self): return ("FloatValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): return type(self)(self.value, self.loc) def __hash__(self): return id(self) class StringValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): self.loc = loc self.value = value def __eq__(self, other): return self is other or ( isinstance(other, StringValue) and self.value == other.value ) def __repr__(self): return ("StringValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): return type(self)(self.value, self.loc) def __hash__(self): return id(self) class BooleanValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): self.loc = loc self.value = value def __eq__(self, other): return self is other or ( isinstance(other, BooleanValue) and self.value == other.value ) def __repr__(self): return ("BooleanValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): return type(self)(self.value, self.loc) def __hash__(self): return id(self) class EnumValue(Value): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): self.loc = loc self.value = value def __eq__(self, other): return self is other or ( isinstance(other, EnumValue) and self.value == other.value ) def __repr__(self): return ("EnumValue(" "value={self.value!r}" ")").format(self=self) def __copy__(self): return type(self)(self.value, self.loc) def __hash__(self): return id(self) class ListValue(Value): __slots__ = ("loc", "values") _fields = ("values",) def __init__(self, values, loc=None): self.loc = loc self.values = values def __eq__(self, other): return self is other or ( isinstance(other, ListValue) and self.values == other.values ) def __repr__(self): return ("ListValue(" "values={self.values!r}" ")").format(self=self) def __copy__(self): return type(self)(self.values, self.loc) def __hash__(self): return id(self) class ObjectValue(Value): __slots__ = ("loc", "fields") _fields = ("fields",) def __init__(self, fields, loc=None): self.loc = loc self.fields = fields def __eq__(self, other): return self is other or ( isinstance(other, ObjectValue) and self.fields == other.fields ) def __repr__(self): return ("ObjectValue(" "fields={self.fields!r}" ")").format(self=self) def __copy__(self): return type(self)(self.fields, self.loc) def __hash__(self): return id(self) class ObjectField(Node): __slots__ = ("loc", "name", "value") _fields = ("name", "value") def __init__(self, name, value, loc=None): self.loc = loc self.name = name self.value = value def __eq__(self, other): return self is other or ( isinstance(other, ObjectField) and self.name == other.name and self.value == other.value ) def __repr__(self): return ( "ObjectField(" "name={self.name!r}" ", value={self.value!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.value, self.loc) def __hash__(self): return id(self) class Directive(Node): __slots__ = ("loc", "name", "arguments") _fields = ("name", "arguments") def __init__( self, name, arguments=None, loc=None, ): self.loc = loc self.name = name self.arguments = arguments def __eq__(self, other): return self is other or ( isinstance(other, Directive) and self.name == other.name and self.arguments == other.arguments ) def __repr__(self): return ( "Directive(" "name={self.name!r}" ", arguments={self.arguments!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.arguments, self.loc) def __hash__(self): return id(self) class Type(Node): __slots__ = () class NamedType(Type): __slots__ = ("loc", "name") _fields = ("name",) def __init__(self, name, loc=None): self.loc = loc self.name = name def __eq__(self, other): return self is other or ( isinstance(other, NamedType) and self.name == other.name ) def __repr__(self): return ("NamedType(" "name={self.name!r}" ")").format(self=self) def __copy__(self): return type(self)(self.name, self.loc) def __hash__(self): return id(self) class ListType(Type): __slots__ = ("loc", "type") _fields = ("type",) def __init__(self, type, loc=None): self.loc = loc self.type = type def __eq__(self, other): return self is other or ( isinstance(other, ListType) and self.type == other.type ) def __repr__(self): return ("ListType(" "type={self.type!r}" ")").format(self=self) def __copy__(self): return type(self)(self.type, self.loc) def __hash__(self): return id(self) class NonNullType(Type): __slots__ = ("loc", "type") _fields = ("type",) def __init__(self, type, loc=None): self.loc = loc self.type = type def __eq__(self, other): return self is other or ( isinstance(other, NonNullType) and self.type == other.type ) def __repr__(self): return ("NonNullType(" "type={self.type!r}" ")").format(self=self) def __copy__(self): return type(self)(self.type, self.loc) def __hash__(self): return id(self) class Name(Node): __slots__ = ("loc", "value") _fields = ("value",) def __init__(self, value, loc=None): self.loc = loc self.value = value def __eq__(self, other): return self is other or ( isinstance(other, Name) and self.value == other.value ) def __repr__(self): return ("Name(" "value={self.value!r}" ")").format(self=self) def __copy__(self): return type(self)(self.value, self.loc) def __hash__(self): return id(self) class TypeDefinition(Node): pass class TypeSystemDefinition(TypeDefinition): pass class SchemaDefinition(TypeSystemDefinition): __slots__ = ("loc", "directives", "operation_types") _fields = ("operation_types",) def __init__( self, operation_types, loc=None, directives=None, ): self.operation_types = operation_types self.loc = loc self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, SchemaDefinition) and self.operation_types == other.operation_types and self.directives == other.directives ) def __repr__(self): return ( "SchemaDefinition(" "operation_types={self.operation_types!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.operation_types, self.loc, self.directives) def __hash__(self): return id(self) class OperationTypeDefinition(Node): __slots__ = ("loc", "operation", "type") _fields = ("operation", "type") def __init__(self, operation, type, loc=None): self.operation = operation self.type = type self.loc = loc def __eq__(self, other): return self is other or ( isinstance(other, OperationTypeDefinition) and self.operation == other.operation and self.type == other.type ) def __repr__(self): return ( "OperationTypeDefinition(" "operation={self.operation!r}" ", type={self.type!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.operation, self.type, self.loc) def __hash__(self): return id(self) class ObjectTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "interfaces", "directives", "fields") _fields = ("name", "interfaces", "fields") def __init__( self, name, fields, interfaces=None, loc=None, directives=None, ): self.loc = loc self.name = name self.interfaces = interfaces self.fields = fields self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, ObjectTypeDefinition) and self.name == other.name and self.interfaces == other.interfaces and self.fields == other.fields and self.directives == other.directives ) def __repr__(self): return ( "ObjectTypeDefinition(" "name={self.name!r}" ", interfaces={self.interfaces!r}" ", fields={self.fields!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.name, self.fields, self.interfaces, self.loc, self.directives ) def __hash__(self): return id(self) class FieldDefinition(Node): __slots__ = ("loc", "name", "arguments", "type", "directives") _fields = ("name", "arguments", "type") def __init__( self, name, arguments, type, loc=None, directives=None, ): self.loc = loc self.name = name self.arguments = arguments self.type = type self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, FieldDefinition) and self.name == other.name and self.arguments == other.arguments and self.type == other.type and self.directives == other.directives ) def __repr__(self): return ( "FieldDefinition(" "name={self.name!r}" ", arguments={self.arguments!r}" ", type={self.type!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.name, self.arguments, self.type, self.loc, self.directives ) def __hash__(self): return id(self) class InputValueDefinition(Node): __slots__ = ("loc", "name", "type", "default_value", "directives") _fields = ("name", "type", "default_value") def __init__( self, name, type, default_value=None, loc=None, directives=None, ): self.loc = loc self.name = name self.type = type self.default_value = default_value self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, InputValueDefinition) and self.name == other.name and self.type == other.type and self.default_value == other.default_value and self.directives == other.directives ) def __repr__(self): return ( "InputValueDefinition(" "name={self.name!r}" ", type={self.type!r}" ", default_value={self.default_value!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)( self.name, self.type, self.default_value, self.loc, self.directives ) def __hash__(self): return id(self) class InterfaceTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "fields", "directives") _fields = ("name", "fields") def __init__( self, name, fields, loc=None, directives=None, ): self.loc = loc self.name = name self.fields = fields self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, InterfaceTypeDefinition) and self.name == other.name and self.fields == other.fields and self.directives == other.directives ) def __repr__(self): return ( "InterfaceTypeDefinition(" "name={self.name!r}" ", fields={self.fields!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.fields, self.loc, self.directives) def __hash__(self): return id(self) class UnionTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "types", "directives") _fields = ("name", "types") def __init__( self, name, types, loc=None, directives=None, ): self.loc = loc self.name = name self.types = types self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, UnionTypeDefinition) and self.name == other.name and self.types == other.types and self.directives == other.directives ) def __repr__(self): return ( "UnionTypeDefinition(" "name={self.name!r}" ", types={self.types!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.types, self.loc, self.directives) def __hash__(self): return id(self) class ScalarTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "directives") _fields = ("name",) def __init__( self, name, loc=None, directives=None, ): self.loc = loc self.name = name self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, ScalarTypeDefinition) and self.name == other.name and self.directives == other.directives ) def __repr__(self): return ( "ScalarTypeDefinition(" "name={self.name!r}" "directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.loc, self.directives) def __hash__(self): return id(self) class EnumTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "values", "directives") _fields = ("name", "values") def __init__( self, name, values, loc=None, directives=None, ): self.loc = loc self.name = name self.values = values self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, EnumTypeDefinition) and self.name == other.name and self.values == other.values and self.directives == other.directives ) def __repr__(self): return ( "EnumTypeDefinition(" "name={self.name!r}" ", values={self.values!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.values, self.loc, self.directives) def __hash__(self): return id(self) class EnumValueDefinition(Node): __slots__ = ("loc", "name", "directives") _fields = ("name",) def __init__( self, name, loc=None, directives=None, ): self.loc = loc self.name = name self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, EnumValueDefinition) and self.name == other.name and self.directives == other.directives ) def __repr__(self): return ( "EnumValueDefinition(" "name={self.name!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.loc, self.directives) def __hash__(self): return id(self) class InputObjectTypeDefinition(TypeDefinition): __slots__ = ("loc", "name", "fields", "directives") _fields = ("name", "fields") def __init__( self, name, fields, loc=None, directives=None, ): self.loc = loc self.name = name self.fields = fields self.directives = directives def __eq__(self, other): return self is other or ( isinstance(other, InputObjectTypeDefinition) and self.name == other.name and self.fields == other.fields and self.directives == other.directives ) def __repr__(self): return ( "InputObjectTypeDefinition(" "name={self.name!r}" ", fields={self.fields!r}" ", directives={self.directives!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.fields, self.loc, self.directives) def __hash__(self): return id(self) class TypeExtensionDefinition(TypeSystemDefinition): __slots__ = ("loc", "definition") _fields = ("definition",) def __init__(self, definition, loc=None): self.loc = loc self.definition = definition def __eq__(self, other): return self is other or ( isinstance(other, TypeExtensionDefinition) and self.definition == other.definition ) def __repr__(self): return ("TypeExtensionDefinition(" "definition={self.definition!r}" ")").format( self=self ) def __copy__(self): return type(self)(self.definition, self.loc) def __hash__(self): return id(self) class DirectiveDefinition(TypeSystemDefinition): __slots__ = ("loc", "name", "arguments", "locations") _fields = ("name", "locations") def __init__( self, name, locations, arguments=None, loc=None, ): self.name = name self.locations = locations self.loc = loc self.arguments = arguments def __eq__(self, other): return self is other or ( isinstance(other, DirectiveDefinition) and self.name == other.name and self.locations == other.locations and self.arguments == other.arguments ) def __repr__(self): return ( "DirectiveDefinition(" "name={self.name!r}, " "locations={self.locations!r}" ")" ).format(self=self) def __copy__(self): return type(self)(self.name, self.locations, self.arguments, self.loc) def __hash__(self): return id(self)
true
true
f7f40856105d83356e23b95542fae1bcd226d565
1,825
py
Python
stubs.min/Autodesk/Revit/DB/__init___parts/PlanTopologySetIterator.py
ricardyn/ironpython-stubs
4d2b405eda3ceed186e8adca55dd97c332c6f49d
[ "MIT" ]
1
2021-02-02T13:39:16.000Z
2021-02-02T13:39:16.000Z
stubs.min/Autodesk/Revit/DB/__init___parts/PlanTopologySetIterator.py
hdm-dt-fb/ironpython-stubs
4d2b405eda3ceed186e8adca55dd97c332c6f49d
[ "MIT" ]
null
null
null
stubs.min/Autodesk/Revit/DB/__init___parts/PlanTopologySetIterator.py
hdm-dt-fb/ironpython-stubs
4d2b405eda3ceed186e8adca55dd97c332c6f49d
[ "MIT" ]
null
null
null
class PlanTopologySetIterator(APIObject,IDisposable,IEnumerator): """ An iterator to a set of plan topology objects. PlanTopologySetIterator() """ def Dispose(self): """ Dispose(self: PlanTopologySetIterator,A_0: bool) """ pass def MoveNext(self): """ MoveNext(self: PlanTopologySetIterator) -> bool Move the iterator one item forward. Returns: Returns True if the iterator was successfully moved forward one item and the Current property will return a valid item. False will be returned it the iterator has reached the end of the set. """ pass def next(self,*args): """ next(self: object) -> object """ pass def ReleaseManagedResources(self,*args): """ ReleaseManagedResources(self: APIObject) """ pass def ReleaseUnmanagedResources(self,*args): """ ReleaseUnmanagedResources(self: PlanTopologySetIterator) """ pass def Reset(self): """ Reset(self: PlanTopologySetIterator) Bring the iterator back to the start of the set. """ pass def __enter__(self,*args): """ __enter__(self: IDisposable) -> object """ pass def __exit__(self,*args): """ __exit__(self: IDisposable,exc_type: object,exc_value: object,exc_back: object) """ pass def __init__(self,*args): """ x.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signaturex.__init__(...) initializes x; see x.__class__.__doc__ for signature """ pass def __iter__(self,*args): """ __iter__(self: IEnumerator) -> object """ pass Current=property(lambda self: object(),lambda self,v: None,lambda self: None) """Retrieves the item that is the current focus of the iterator. Get: Current(self: PlanTopologySetIterator) -> object """
32.017544
215
0.683836
class PlanTopologySetIterator(APIObject,IDisposable,IEnumerator): pass """ MoveNext(self: PlanTopologySetIterator) -> bool pass def Reset(self): Reset(self: PlanTopologySetIterator) Bring the iterator back to the start of the set. pass def __enter__(self,*args): pass def __exit__(self,*args): def __iter__(self,*args): """ __iter__(self: IEnumerator) -> object """ Current=property(lambda self: object(),lambda self,v: None,lambda self: None) """Retrieves the item that is the current focus of the iterator. Get: Current(self: PlanTopologySetIterator) -> object
true
true
f7f40a66af9c633a83d4a5c5cc759a9f77018898
5,619
py
Python
pandas/core/computation/align.py
BenRussert/pandas
9179e633b1e54ac31c5ea42ec0ec24e9a1709aae
[ "PSF-2.0", "Apache-2.0", "BSD-3-Clause-No-Nuclear-License-2014", "MIT", "ECL-2.0", "BSD-3-Clause" ]
1
2018-11-11T22:18:13.000Z
2018-11-11T22:18:13.000Z
pandas/core/computation/align.py
dkenward/pandas
1f02bf240c3d0d3da338af868d056bfc169b28c2
[ "BSD-3-Clause" ]
null
null
null
pandas/core/computation/align.py
dkenward/pandas
1f02bf240c3d0d3da338af868d056bfc169b28c2
[ "BSD-3-Clause" ]
1
2021-06-21T07:51:29.000Z
2021-06-21T07:51:29.000Z
"""Core eval alignment algorithms """ from functools import partial, wraps import warnings import numpy as np from pandas.compat import range, zip from pandas.errors import PerformanceWarning import pandas as pd from pandas import compat import pandas.core.common as com from pandas.core.computation.common import _result_type_many def _align_core_single_unary_op(term): if isinstance(term.value, np.ndarray): typ = partial(np.asanyarray, dtype=term.value.dtype) else: typ = type(term.value) ret = typ, if not hasattr(term.value, 'axes'): ret += None, else: ret += _zip_axes_from_type(typ, term.value.axes), return ret def _zip_axes_from_type(typ, new_axes): axes = {} for ax_ind, ax_name in compat.iteritems(typ._AXIS_NAMES): axes[ax_name] = new_axes[ax_ind] return axes def _any_pandas_objects(terms): """Check a sequence of terms for instances of PandasObject.""" return any(isinstance(term.value, pd.core.generic.PandasObject) for term in terms) def _filter_special_cases(f): @wraps(f) def wrapper(terms): # single unary operand if len(terms) == 1: return _align_core_single_unary_op(terms[0]) term_values = (term.value for term in terms) # we don't have any pandas objects if not _any_pandas_objects(terms): return _result_type_many(*term_values), None return f(terms) return wrapper @_filter_special_cases def _align_core(terms): term_index = [i for i, term in enumerate(terms) if hasattr(term.value, 'axes')] term_dims = [terms[i].value.ndim for i in term_index] ndims = pd.Series(dict(zip(term_index, term_dims))) # initial axes are the axes of the largest-axis'd term biggest = terms[ndims.idxmax()].value typ = biggest._constructor axes = biggest.axes naxes = len(axes) gt_than_one_axis = naxes > 1 for value in (terms[i].value for i in term_index): is_series = isinstance(value, pd.Series) is_series_and_gt_one_axis = is_series and gt_than_one_axis for axis, items in enumerate(value.axes): if is_series_and_gt_one_axis: ax, itm = naxes - 1, value.index else: ax, itm = axis, items if not axes[ax].is_(itm): axes[ax] = axes[ax].join(itm, how='outer') for i, ndim in compat.iteritems(ndims): for axis, items in zip(range(ndim), axes): ti = terms[i].value if hasattr(ti, 'reindex'): transpose = isinstance(ti, pd.Series) and naxes > 1 reindexer = axes[naxes - 1] if transpose else items term_axis_size = len(ti.axes[axis]) reindexer_size = len(reindexer) ordm = np.log10(max(1, abs(reindexer_size - term_axis_size))) if ordm >= 1 and reindexer_size >= 10000: w = ('Alignment difference on axis {axis} is larger ' 'than an order of magnitude on term {term!r}, by ' 'more than {ordm:.4g}; performance may suffer' ).format(axis=axis, term=terms[i].name, ordm=ordm) warnings.warn(w, category=PerformanceWarning, stacklevel=6) f = partial(ti.reindex, reindexer, axis=axis, copy=False) terms[i].update(f()) terms[i].update(terms[i].value.values) return typ, _zip_axes_from_type(typ, axes) def _align(terms): """Align a set of terms""" try: # flatten the parse tree (a nested list, really) terms = list(com.flatten(terms)) except TypeError: # can't iterate so it must just be a constant or single variable if isinstance(terms.value, pd.core.generic.NDFrame): typ = type(terms.value) return typ, _zip_axes_from_type(typ, terms.value.axes) return np.result_type(terms.type), None # if all resolved variables are numeric scalars if all(term.is_scalar for term in terms): return _result_type_many(*(term.value for term in terms)).type, None # perform the main alignment typ, axes = _align_core(terms) return typ, axes def _reconstruct_object(typ, obj, axes, dtype): """Reconstruct an object given its type, raw value, and possibly empty (None) axes. Parameters ---------- typ : object A type obj : object The value to use in the type constructor axes : dict The axes to use to construct the resulting pandas object Returns ------- ret : typ An object of type ``typ`` with the value `obj` and possible axes `axes`. """ try: typ = typ.type except AttributeError: pass res_t = np.result_type(obj.dtype, dtype) if (not isinstance(typ, partial) and issubclass(typ, pd.core.generic.PandasObject)): return typ(obj, dtype=res_t, **axes) # special case for pathological things like ~True/~False if hasattr(res_t, 'type') and typ == np.bool_ and res_t != np.bool_: ret_value = res_t.type(obj) else: ret_value = typ(obj).astype(res_t) # The condition is to distinguish 0-dim array (returned in case of # scalar) and 1 element array # e.g. np.array(0) and np.array([0]) if len(obj.shape) == 1 and len(obj) == 1: if not isinstance(ret_value, np.ndarray): ret_value = np.array([ret_value]).astype(res_t) return ret_value
31.044199
79
0.618259
from functools import partial, wraps import warnings import numpy as np from pandas.compat import range, zip from pandas.errors import PerformanceWarning import pandas as pd from pandas import compat import pandas.core.common as com from pandas.core.computation.common import _result_type_many def _align_core_single_unary_op(term): if isinstance(term.value, np.ndarray): typ = partial(np.asanyarray, dtype=term.value.dtype) else: typ = type(term.value) ret = typ, if not hasattr(term.value, 'axes'): ret += None, else: ret += _zip_axes_from_type(typ, term.value.axes), return ret def _zip_axes_from_type(typ, new_axes): axes = {} for ax_ind, ax_name in compat.iteritems(typ._AXIS_NAMES): axes[ax_name] = new_axes[ax_ind] return axes def _any_pandas_objects(terms): return any(isinstance(term.value, pd.core.generic.PandasObject) for term in terms) def _filter_special_cases(f): @wraps(f) def wrapper(terms): if len(terms) == 1: return _align_core_single_unary_op(terms[0]) term_values = (term.value for term in terms) if not _any_pandas_objects(terms): return _result_type_many(*term_values), None return f(terms) return wrapper @_filter_special_cases def _align_core(terms): term_index = [i for i, term in enumerate(terms) if hasattr(term.value, 'axes')] term_dims = [terms[i].value.ndim for i in term_index] ndims = pd.Series(dict(zip(term_index, term_dims))) # initial axes are the axes of the largest-axis'd term biggest = terms[ndims.idxmax()].value typ = biggest._constructor axes = biggest.axes naxes = len(axes) gt_than_one_axis = naxes > 1 for value in (terms[i].value for i in term_index): is_series = isinstance(value, pd.Series) is_series_and_gt_one_axis = is_series and gt_than_one_axis for axis, items in enumerate(value.axes): if is_series_and_gt_one_axis: ax, itm = naxes - 1, value.index else: ax, itm = axis, items if not axes[ax].is_(itm): axes[ax] = axes[ax].join(itm, how='outer') for i, ndim in compat.iteritems(ndims): for axis, items in zip(range(ndim), axes): ti = terms[i].value if hasattr(ti, 'reindex'): transpose = isinstance(ti, pd.Series) and naxes > 1 reindexer = axes[naxes - 1] if transpose else items term_axis_size = len(ti.axes[axis]) reindexer_size = len(reindexer) ordm = np.log10(max(1, abs(reindexer_size - term_axis_size))) if ordm >= 1 and reindexer_size >= 10000: w = ('Alignment difference on axis {axis} is larger ' 'than an order of magnitude on term {term!r}, by ' 'more than {ordm:.4g}; performance may suffer' ).format(axis=axis, term=terms[i].name, ordm=ordm) warnings.warn(w, category=PerformanceWarning, stacklevel=6) f = partial(ti.reindex, reindexer, axis=axis, copy=False) terms[i].update(f()) terms[i].update(terms[i].value.values) return typ, _zip_axes_from_type(typ, axes) def _align(terms): try: terms = list(com.flatten(terms)) except TypeError: if isinstance(terms.value, pd.core.generic.NDFrame): typ = type(terms.value) return typ, _zip_axes_from_type(typ, terms.value.axes) return np.result_type(terms.type), None # if all resolved variables are numeric scalars if all(term.is_scalar for term in terms): return _result_type_many(*(term.value for term in terms)).type, None # perform the main alignment typ, axes = _align_core(terms) return typ, axes def _reconstruct_object(typ, obj, axes, dtype): try: typ = typ.type except AttributeError: pass res_t = np.result_type(obj.dtype, dtype) if (not isinstance(typ, partial) and issubclass(typ, pd.core.generic.PandasObject)): return typ(obj, dtype=res_t, **axes) # special case for pathological things like ~True/~False if hasattr(res_t, 'type') and typ == np.bool_ and res_t != np.bool_: ret_value = res_t.type(obj) else: ret_value = typ(obj).astype(res_t) # The condition is to distinguish 0-dim array (returned in case of # scalar) and 1 element array # e.g. np.array(0) and np.array([0]) if len(obj.shape) == 1 and len(obj) == 1: if not isinstance(ret_value, np.ndarray): ret_value = np.array([ret_value]).astype(res_t) return ret_value
true
true
f7f40a8dda9cbb10b4b472a35088ca5e7e3ece68
5,376
py
Python
jrnl/exporters.py
NicholasMerrill/jrnl-todos
142b794296e6249b698a4e53ce30ef376b560960
[ "MIT" ]
null
null
null
jrnl/exporters.py
NicholasMerrill/jrnl-todos
142b794296e6249b698a4e53ce30ef376b560960
[ "MIT" ]
null
null
null
jrnl/exporters.py
NicholasMerrill/jrnl-todos
142b794296e6249b698a4e53ce30ef376b560960
[ "MIT" ]
null
null
null
#!/usr/bin/env python # encoding: utf-8 from __future__ import absolute_import, unicode_literals import os import json from .util import u, slugify import codecs def get_tags_count(journal): """Returns a set of tuples (count, tag) for all tags present in the journal.""" # Astute reader: should the following line leave you as puzzled as me the first time # I came across this construction, worry not and embrace the ensuing moment of enlightment. tags = [tag for entry in journal.entries for tag in set(entry.tags)] # To be read: [for entry in journal.entries: for tag in set(entry.tags): tag] tag_counts = set([(tags.count(tag), tag) for tag in tags]) return tag_counts def to_tag_list(journal): """Prints a list of all tags and the number of occurrences.""" tag_counts = get_tags_count(journal) result = "" if not tag_counts: return '[No tags found in journal.]' elif min(tag_counts)[0] == 0: tag_counts = filter(lambda x: x[0] > 1, tag_counts) result += '[Removed tags that appear only once.]\n' result += "\n".join("{0:20} : {1}".format(tag, n) for n, tag in sorted(tag_counts, reverse=True)) return result def get_todos(journal): """ Returns all todos in a list. :rtype: list[Todo] """ todos = [todo for entry in journal.entries for todo in entry.todos] return todos def to_todo_list(journal): """Prints a list of all todos.""" todos = get_todos(journal) if not todos: return '[No todos found in journal.]' pending_todos = [] completed_todos = [] for todo in todos: if todo.is_complete: completed_todos.append(todo) else: pending_todos.append(todo) def appendable_header(_text): separator = '=' * len(_text) return "{sep}\n{text}\n{sep}\n".format(sep=separator, text=_text) def appendable_todo_list(_todo_list): return "\n".join([todo.to_item_format() for todo in _todo_list]) result = "" result += appendable_header("Pending") result += appendable_todo_list(pending_todos) result += '\n\n' + appendable_header("Completed") result += appendable_todo_list(completed_todos) return result def to_json(journal): """Returns a JSON representation of the Journal.""" tags = get_tags_count(journal) todos = get_todos(journal) entry_dicts = [] entry_id = 1 for entry in journal.entries: entry_dict = entry.to_dict() entry_dict['id'] = entry_id entry_dicts.append(entry_dict) entry_id += 1 result = { "tags": dict((tag, count) for count, tag in tags), "todos": [todo.to_dict() for todo in todos], "entries": entry_dicts, } return json.dumps(result, indent=2) def to_md(journal): """Returns a markdown representation of the Journal""" out = [] year, month = -1, -1 for e in journal.entries: if not e.date.year == year: year = e.date.year out.append(str(year)) out.append("=" * len(str(year)) + "\n") if not e.date.month == month: month = e.date.month out.append(e.date.strftime("%B")) out.append('-' * len(e.date.strftime("%B")) + "\n") out.append(e.to_md()) result = "\n".join(out) return result def to_txt(journal): """Returns the complete text of the Journal.""" return journal.pprint() def export(journal, format, output=None): """Exports the journal to various formats. format should be one of json, txt, text, md, markdown. If output is None, returns a unicode representation of the output. If output is a directory, exports entries into individual files. Otherwise, exports to the given output file. """ maps = { "json": to_json, "txt": to_txt, "text": to_txt, "md": to_md, "markdown": to_md } if format not in maps: return "[ERROR: can't export to '{0}'. Valid options are 'md', 'txt', and 'json']".format(format) if output and os.path.isdir(output): # multiple files return write_files(journal, output, format) else: content = maps[format](journal) if output: try: with codecs.open(output, "w", "utf-8") as f: f.write(content) return "[Journal exported to {0}]".format(output) except IOError as e: return "[ERROR: {0} {1}]".format(e.filename, e.strerror) else: return content def write_files(journal, path, format): """Turns your journal into separate files for each entry. Format should be either json, md or txt.""" make_filename = lambda entry: e.date.strftime("%Y-%m-%d_{0}.{1}".format(slugify(u(e.title)), format)) for e in journal.entries: full_path = os.path.join(path, make_filename(e)) if format == 'json': content = json.dumps(e.to_dict(), indent=2) + "\n" elif format in ('md', 'markdown'): content = e.to_md() elif format in ('txt', 'text'): content = e.__unicode__() with codecs.open(full_path, "w", "utf-8") as f: f.write(content) return "[Journal exported individual files in {0}]".format(path)
32.780488
105
0.606399
from __future__ import absolute_import, unicode_literals import os import json from .util import u, slugify import codecs def get_tags_count(journal): tags = [tag for entry in journal.entries for tag in set(entry.tags)] tag_counts = set([(tags.count(tag), tag) for tag in tags]) return tag_counts def to_tag_list(journal): tag_counts = get_tags_count(journal) result = "" if not tag_counts: return '[No tags found in journal.]' elif min(tag_counts)[0] == 0: tag_counts = filter(lambda x: x[0] > 1, tag_counts) result += '[Removed tags that appear only once.]\n' result += "\n".join("{0:20} : {1}".format(tag, n) for n, tag in sorted(tag_counts, reverse=True)) return result def get_todos(journal): todos = [todo for entry in journal.entries for todo in entry.todos] return todos def to_todo_list(journal): todos = get_todos(journal) if not todos: return '[No todos found in journal.]' pending_todos = [] completed_todos = [] for todo in todos: if todo.is_complete: completed_todos.append(todo) else: pending_todos.append(todo) def appendable_header(_text): separator = '=' * len(_text) return "{sep}\n{text}\n{sep}\n".format(sep=separator, text=_text) def appendable_todo_list(_todo_list): return "\n".join([todo.to_item_format() for todo in _todo_list]) result = "" result += appendable_header("Pending") result += appendable_todo_list(pending_todos) result += '\n\n' + appendable_header("Completed") result += appendable_todo_list(completed_todos) return result def to_json(journal): tags = get_tags_count(journal) todos = get_todos(journal) entry_dicts = [] entry_id = 1 for entry in journal.entries: entry_dict = entry.to_dict() entry_dict['id'] = entry_id entry_dicts.append(entry_dict) entry_id += 1 result = { "tags": dict((tag, count) for count, tag in tags), "todos": [todo.to_dict() for todo in todos], "entries": entry_dicts, } return json.dumps(result, indent=2) def to_md(journal): out = [] year, month = -1, -1 for e in journal.entries: if not e.date.year == year: year = e.date.year out.append(str(year)) out.append("=" * len(str(year)) + "\n") if not e.date.month == month: month = e.date.month out.append(e.date.strftime("%B")) out.append('-' * len(e.date.strftime("%B")) + "\n") out.append(e.to_md()) result = "\n".join(out) return result def to_txt(journal): return journal.pprint() def export(journal, format, output=None): maps = { "json": to_json, "txt": to_txt, "text": to_txt, "md": to_md, "markdown": to_md } if format not in maps: return "[ERROR: can't export to '{0}'. Valid options are 'md', 'txt', and 'json']".format(format) if output and os.path.isdir(output): # multiple files return write_files(journal, output, format) else: content = maps[format](journal) if output: try: with codecs.open(output, "w", "utf-8") as f: f.write(content) return "[Journal exported to {0}]".format(output) except IOError as e: return "[ERROR: {0} {1}]".format(e.filename, e.strerror) else: return content def write_files(journal, path, format): make_filename = lambda entry: e.date.strftime("%Y-%m-%d_{0}.{1}".format(slugify(u(e.title)), format)) for e in journal.entries: full_path = os.path.join(path, make_filename(e)) if format == 'json': content = json.dumps(e.to_dict(), indent=2) + "\n" elif format in ('md', 'markdown'): content = e.to_md() elif format in ('txt', 'text'): content = e.__unicode__() with codecs.open(full_path, "w", "utf-8") as f: f.write(content) return "[Journal exported individual files in {0}]".format(path)
true
true
f7f40aed8d52892ecdb16a5d795e66aff2c5c08e
831
py
Python
userbot/plugins/pin.py
znotash/X-tra-Telegram
cd301ffc09a1c56102555eb0562940f290002018
[ "MIT" ]
2
2020-05-14T07:48:09.000Z
2020-05-14T07:48:51.000Z
userbot/plugins/pin.py
znotash/X-tra-Telegram
cd301ffc09a1c56102555eb0562940f290002018
[ "MIT" ]
null
null
null
userbot/plugins/pin.py
znotash/X-tra-Telegram
cd301ffc09a1c56102555eb0562940f290002018
[ "MIT" ]
2
2020-06-12T12:51:09.000Z
2020-06-16T13:44:25.000Z
"""Pins the replied message Syntax: .cpin [LOUD]""" from telethon import events from telethon.tl import functions, types from userbot.utils import admin_cmd @borg.on(admin_cmd("cpin ?(.*)")) async def _(event): if event.fwd_from: return silent = True input_str = event.pattern_match.group(1) if input_str: silent = False if event.message.reply_to_msg_id is not None: message_id = event.message.reply_to_msg_id try: await borg(functions.messages.UpdatePinnedMessageRequest( event.chat_id, message_id, silent )) except Exception as e: await event.edit(str(e)) else: await event.delete() else: await event.edit("**❌ Errore:** `Rispondi ad un messaggio.`")
27.7
69
0.604091
from telethon import events from telethon.tl import functions, types from userbot.utils import admin_cmd @borg.on(admin_cmd("cpin ?(.*)")) async def _(event): if event.fwd_from: return silent = True input_str = event.pattern_match.group(1) if input_str: silent = False if event.message.reply_to_msg_id is not None: message_id = event.message.reply_to_msg_id try: await borg(functions.messages.UpdatePinnedMessageRequest( event.chat_id, message_id, silent )) except Exception as e: await event.edit(str(e)) else: await event.delete() else: await event.edit("**❌ Errore:** `Rispondi ad un messaggio.`")
true
true
f7f40b7b8a58b5ea5e1b0559ff5845f8a641f7ef
702,671
py
Python
tests/examples/minlplib/chp_shorttermplan2c.py
ouyang-w-19/decogo
52546480e49776251d4d27856e18a46f40c824a1
[ "MIT" ]
2
2021-07-03T13:19:10.000Z
2022-02-06T10:48:13.000Z
tests/examples/minlplib/chp_shorttermplan2c.py
ouyang-w-19/decogo
52546480e49776251d4d27856e18a46f40c824a1
[ "MIT" ]
1
2021-07-04T14:52:14.000Z
2021-07-15T10:17:11.000Z
tests/examples/minlplib/chp_shorttermplan2c.py
ouyang-w-19/decogo
52546480e49776251d4d27856e18a46f40c824a1
[ "MIT" ]
null
null
null
# MINLP written by GAMS Convert at 04/21/18 13:51:15 # # Equation counts # Total E G L N X C B # 6735 97 816 5822 0 0 0 0 # # Variable counts # x b i s1s s2s sc si # Total cont binary integer sos1 sos2 scont sint # 2449 2065 384 0 0 0 0 0 # FX 432 432 0 0 0 0 0 0 # # Nonzero counts # Total const NL DLL # 17579 15563 2016 0 # # Reformulation has removed 1 variable and 1 equation from pyomo.environ import * model = m = ConcreteModel() m.x2 = Var(within=Reals,bounds=(0,45),initialize=0) m.x3 = Var(within=Reals,bounds=(0,45),initialize=0) m.x4 = Var(within=Reals,bounds=(0,45),initialize=0) m.x5 = Var(within=Reals,bounds=(0,45),initialize=0) m.x6 = Var(within=Reals,bounds=(0,45),initialize=0) m.x7 = Var(within=Reals,bounds=(0,45),initialize=0) m.x8 = Var(within=Reals,bounds=(0,45),initialize=0) m.x9 = Var(within=Reals,bounds=(0,45),initialize=0) m.x10 = Var(within=Reals,bounds=(0,45),initialize=0) m.x11 = Var(within=Reals,bounds=(0,45),initialize=0) m.x12 = Var(within=Reals,bounds=(0,45),initialize=0) m.x13 = Var(within=Reals,bounds=(0,45),initialize=0) m.x14 = Var(within=Reals,bounds=(0,45),initialize=0) m.x15 = Var(within=Reals,bounds=(0,45),initialize=0) m.x16 = Var(within=Reals,bounds=(0,45),initialize=0) m.x17 = Var(within=Reals,bounds=(0,45),initialize=0) m.x18 = Var(within=Reals,bounds=(0,45),initialize=0) m.x19 = Var(within=Reals,bounds=(0,45),initialize=0) m.x20 = Var(within=Reals,bounds=(0,45),initialize=0) m.x21 = Var(within=Reals,bounds=(0,45),initialize=0) m.x22 = Var(within=Reals,bounds=(0,45),initialize=0) m.x23 = Var(within=Reals,bounds=(0,45),initialize=0) m.x24 = Var(within=Reals,bounds=(0,45),initialize=0) m.x25 = Var(within=Reals,bounds=(0,45),initialize=0) m.x26 = Var(within=Reals,bounds=(0,45),initialize=0) m.x27 = Var(within=Reals,bounds=(0,45),initialize=0) m.x28 = Var(within=Reals,bounds=(0,45),initialize=0) m.x29 = Var(within=Reals,bounds=(0,45),initialize=0) m.x30 = Var(within=Reals,bounds=(0,45),initialize=0) m.x31 = Var(within=Reals,bounds=(0,45),initialize=0) m.x32 = Var(within=Reals,bounds=(0,45),initialize=0) m.x33 = Var(within=Reals,bounds=(0,45),initialize=0) m.x34 = Var(within=Reals,bounds=(0,45),initialize=0) m.x35 = Var(within=Reals,bounds=(0,45),initialize=0) m.x36 = Var(within=Reals,bounds=(0,45),initialize=0) m.x37 = Var(within=Reals,bounds=(0,45),initialize=0) m.x38 = Var(within=Reals,bounds=(0,45),initialize=0) m.x39 = Var(within=Reals,bounds=(0,45),initialize=0) m.x40 = Var(within=Reals,bounds=(0,45),initialize=0) m.x41 = Var(within=Reals,bounds=(0,45),initialize=0) m.x42 = Var(within=Reals,bounds=(0,45),initialize=0) m.x43 = Var(within=Reals,bounds=(0,45),initialize=0) m.x44 = Var(within=Reals,bounds=(0,45),initialize=0) m.x45 = Var(within=Reals,bounds=(0,45),initialize=0) m.x46 = Var(within=Reals,bounds=(0,45),initialize=0) m.x47 = Var(within=Reals,bounds=(0,45),initialize=0) m.x48 = Var(within=Reals,bounds=(0,45),initialize=0) m.x49 = Var(within=Reals,bounds=(0,45),initialize=0) m.x50 = Var(within=Reals,bounds=(0,45),initialize=0) m.x51 = Var(within=Reals,bounds=(0,45),initialize=0) m.x52 = Var(within=Reals,bounds=(0,45),initialize=0) m.x53 = Var(within=Reals,bounds=(0,45),initialize=0) m.x54 = Var(within=Reals,bounds=(0,45),initialize=0) m.x55 = Var(within=Reals,bounds=(0,45),initialize=0) m.x56 = Var(within=Reals,bounds=(0,45),initialize=0) m.x57 = Var(within=Reals,bounds=(0,45),initialize=0) m.x58 = Var(within=Reals,bounds=(0,45),initialize=0) m.x59 = Var(within=Reals,bounds=(0,45),initialize=0) m.x60 = Var(within=Reals,bounds=(0,45),initialize=0) m.x61 = Var(within=Reals,bounds=(0,45),initialize=0) m.x62 = Var(within=Reals,bounds=(0,45),initialize=0) m.x63 = Var(within=Reals,bounds=(0,45),initialize=0) m.x64 = Var(within=Reals,bounds=(0,45),initialize=0) m.x65 = Var(within=Reals,bounds=(0,45),initialize=0) m.x66 = Var(within=Reals,bounds=(0,45),initialize=0) m.x67 = Var(within=Reals,bounds=(0,45),initialize=0) m.x68 = Var(within=Reals,bounds=(0,45),initialize=0) m.x69 = Var(within=Reals,bounds=(0,45),initialize=0) m.x70 = Var(within=Reals,bounds=(0,45),initialize=0) m.x71 = Var(within=Reals,bounds=(0,45),initialize=0) m.x72 = Var(within=Reals,bounds=(0,45),initialize=0) m.x73 = Var(within=Reals,bounds=(0,45),initialize=0) m.x74 = Var(within=Reals,bounds=(0,45),initialize=0) m.x75 = Var(within=Reals,bounds=(0,45),initialize=0) m.x76 = Var(within=Reals,bounds=(0,45),initialize=0) m.x77 = Var(within=Reals,bounds=(0,45),initialize=0) m.x78 = Var(within=Reals,bounds=(0,45),initialize=0) m.x79 = Var(within=Reals,bounds=(0,45),initialize=0) m.x80 = Var(within=Reals,bounds=(0,45),initialize=0) m.x81 = Var(within=Reals,bounds=(0,45),initialize=0) m.x82 = Var(within=Reals,bounds=(0,45),initialize=0) m.x83 = Var(within=Reals,bounds=(0,45),initialize=0) m.x84 = Var(within=Reals,bounds=(0,45),initialize=0) m.x85 = Var(within=Reals,bounds=(0,45),initialize=0) m.x86 = Var(within=Reals,bounds=(0,45),initialize=0) m.x87 = Var(within=Reals,bounds=(0,45),initialize=0) m.x88 = Var(within=Reals,bounds=(0,45),initialize=0) m.x89 = Var(within=Reals,bounds=(0,45),initialize=0) m.x90 = Var(within=Reals,bounds=(0,45),initialize=0) m.x91 = Var(within=Reals,bounds=(0,45),initialize=0) m.x92 = Var(within=Reals,bounds=(0,45),initialize=0) m.x93 = Var(within=Reals,bounds=(0,45),initialize=0) m.x94 = Var(within=Reals,bounds=(0,45),initialize=0) m.x95 = Var(within=Reals,bounds=(0,45),initialize=0) m.x96 = Var(within=Reals,bounds=(0,45),initialize=0) m.x97 = Var(within=Reals,bounds=(0,45),initialize=0) m.x98 = Var(within=Reals,bounds=(0,97),initialize=0) m.x99 = Var(within=Reals,bounds=(0,97),initialize=0) m.x100 = Var(within=Reals,bounds=(0,97),initialize=0) m.x101 = Var(within=Reals,bounds=(0,97),initialize=0) m.x102 = Var(within=Reals,bounds=(0,97),initialize=0) m.x103 = Var(within=Reals,bounds=(0,97),initialize=0) m.x104 = Var(within=Reals,bounds=(0,97),initialize=0) m.x105 = Var(within=Reals,bounds=(0,97),initialize=0) m.x106 = Var(within=Reals,bounds=(0,97),initialize=0) m.x107 = Var(within=Reals,bounds=(0,97),initialize=0) m.x108 = Var(within=Reals,bounds=(0,97),initialize=0) m.x109 = Var(within=Reals,bounds=(0,97),initialize=0) m.x110 = Var(within=Reals,bounds=(0,97),initialize=0) m.x111 = Var(within=Reals,bounds=(0,97),initialize=0) m.x112 = Var(within=Reals,bounds=(0,97),initialize=0) m.x113 = Var(within=Reals,bounds=(0,97),initialize=0) m.x114 = Var(within=Reals,bounds=(0,97),initialize=0) m.x115 = Var(within=Reals,bounds=(0,97),initialize=0) m.x116 = Var(within=Reals,bounds=(0,97),initialize=0) m.x117 = Var(within=Reals,bounds=(0,97),initialize=0) m.x118 = Var(within=Reals,bounds=(0,97),initialize=0) m.x119 = Var(within=Reals,bounds=(0,97),initialize=0) m.x120 = Var(within=Reals,bounds=(0,97),initialize=0) m.x121 = Var(within=Reals,bounds=(0,97),initialize=0) m.x122 = Var(within=Reals,bounds=(0,97),initialize=0) m.x123 = Var(within=Reals,bounds=(0,97),initialize=0) m.x124 = Var(within=Reals,bounds=(0,97),initialize=0) m.x125 = Var(within=Reals,bounds=(0,97),initialize=0) m.x126 = Var(within=Reals,bounds=(0,97),initialize=0) m.x127 = Var(within=Reals,bounds=(0,97),initialize=0) m.x128 = Var(within=Reals,bounds=(0,97),initialize=0) m.x129 = Var(within=Reals,bounds=(0,97),initialize=0) m.x130 = Var(within=Reals,bounds=(0,97),initialize=0) m.x131 = Var(within=Reals,bounds=(0,97),initialize=0) m.x132 = Var(within=Reals,bounds=(0,97),initialize=0) m.x133 = Var(within=Reals,bounds=(0,97),initialize=0) m.x134 = Var(within=Reals,bounds=(0,97),initialize=0) m.x135 = Var(within=Reals,bounds=(0,97),initialize=0) m.x136 = Var(within=Reals,bounds=(0,97),initialize=0) m.x137 = Var(within=Reals,bounds=(0,97),initialize=0) m.x138 = Var(within=Reals,bounds=(0,97),initialize=0) m.x139 = Var(within=Reals,bounds=(0,97),initialize=0) m.x140 = Var(within=Reals,bounds=(0,97),initialize=0) m.x141 = Var(within=Reals,bounds=(0,97),initialize=0) m.x142 = Var(within=Reals,bounds=(0,97),initialize=0) m.x143 = Var(within=Reals,bounds=(0,97),initialize=0) m.x144 = Var(within=Reals,bounds=(0,97),initialize=0) m.x145 = Var(within=Reals,bounds=(0,97),initialize=0) m.x146 = Var(within=Reals,bounds=(0,97),initialize=0) m.x147 = Var(within=Reals,bounds=(0,97),initialize=0) m.x148 = Var(within=Reals,bounds=(0,97),initialize=0) m.x149 = Var(within=Reals,bounds=(0,97),initialize=0) m.x150 = Var(within=Reals,bounds=(0,97),initialize=0) m.x151 = Var(within=Reals,bounds=(0,97),initialize=0) m.x152 = Var(within=Reals,bounds=(0,97),initialize=0) m.x153 = Var(within=Reals,bounds=(0,97),initialize=0) m.x154 = Var(within=Reals,bounds=(0,97),initialize=0) m.x155 = Var(within=Reals,bounds=(0,97),initialize=0) m.x156 = Var(within=Reals,bounds=(0,97),initialize=0) m.x157 = Var(within=Reals,bounds=(0,97),initialize=0) m.x158 = Var(within=Reals,bounds=(0,97),initialize=0) m.x159 = Var(within=Reals,bounds=(0,97),initialize=0) m.x160 = Var(within=Reals,bounds=(0,97),initialize=0) m.x161 = Var(within=Reals,bounds=(0,97),initialize=0) m.x162 = Var(within=Reals,bounds=(0,97),initialize=0) m.x163 = Var(within=Reals,bounds=(0,97),initialize=0) m.x164 = Var(within=Reals,bounds=(0,97),initialize=0) m.x165 = Var(within=Reals,bounds=(0,97),initialize=0) m.x166 = Var(within=Reals,bounds=(0,97),initialize=0) m.x167 = Var(within=Reals,bounds=(0,97),initialize=0) m.x168 = Var(within=Reals,bounds=(0,97),initialize=0) m.x169 = Var(within=Reals,bounds=(0,97),initialize=0) m.x170 = Var(within=Reals,bounds=(0,97),initialize=0) m.x171 = Var(within=Reals,bounds=(0,97),initialize=0) m.x172 = Var(within=Reals,bounds=(0,97),initialize=0) m.x173 = Var(within=Reals,bounds=(0,97),initialize=0) m.x174 = Var(within=Reals,bounds=(0,97),initialize=0) m.x175 = Var(within=Reals,bounds=(0,97),initialize=0) m.x176 = Var(within=Reals,bounds=(0,97),initialize=0) m.x177 = Var(within=Reals,bounds=(0,97),initialize=0) m.x178 = Var(within=Reals,bounds=(0,97),initialize=0) m.x179 = Var(within=Reals,bounds=(0,97),initialize=0) m.x180 = Var(within=Reals,bounds=(0,97),initialize=0) m.x181 = Var(within=Reals,bounds=(0,97),initialize=0) m.x182 = Var(within=Reals,bounds=(0,97),initialize=0) m.x183 = Var(within=Reals,bounds=(0,97),initialize=0) m.x184 = Var(within=Reals,bounds=(0,97),initialize=0) m.x185 = Var(within=Reals,bounds=(0,97),initialize=0) m.x186 = Var(within=Reals,bounds=(0,97),initialize=0) m.x187 = Var(within=Reals,bounds=(0,97),initialize=0) m.x188 = Var(within=Reals,bounds=(0,97),initialize=0) m.x189 = Var(within=Reals,bounds=(0,97),initialize=0) m.x190 = Var(within=Reals,bounds=(0,97),initialize=0) m.x191 = Var(within=Reals,bounds=(0,97),initialize=0) m.x192 = Var(within=Reals,bounds=(0,97),initialize=0) m.x193 = Var(within=Reals,bounds=(0,97),initialize=0) m.x194 = Var(within=Reals,bounds=(0,19),initialize=0) m.x195 = Var(within=Reals,bounds=(0,19),initialize=0) m.x196 = Var(within=Reals,bounds=(0,19),initialize=0) m.x197 = Var(within=Reals,bounds=(0,19),initialize=0) m.x198 = Var(within=Reals,bounds=(0,19),initialize=0) m.x199 = Var(within=Reals,bounds=(0,19),initialize=0) m.x200 = Var(within=Reals,bounds=(0,19),initialize=0) m.x201 = Var(within=Reals,bounds=(0,19),initialize=0) m.x202 = Var(within=Reals,bounds=(0,19),initialize=0) m.x203 = Var(within=Reals,bounds=(0,19),initialize=0) m.x204 = Var(within=Reals,bounds=(0,19),initialize=0) m.x205 = Var(within=Reals,bounds=(0,19),initialize=0) m.x206 = Var(within=Reals,bounds=(0,19),initialize=0) m.x207 = Var(within=Reals,bounds=(0,19),initialize=0) m.x208 = Var(within=Reals,bounds=(0,19),initialize=0) m.x209 = Var(within=Reals,bounds=(0,19),initialize=0) m.x210 = Var(within=Reals,bounds=(0,19),initialize=0) m.x211 = Var(within=Reals,bounds=(0,19),initialize=0) m.x212 = Var(within=Reals,bounds=(0,19),initialize=0) m.x213 = Var(within=Reals,bounds=(0,19),initialize=0) m.x214 = Var(within=Reals,bounds=(0,19),initialize=0) m.x215 = Var(within=Reals,bounds=(0,19),initialize=0) m.x216 = Var(within=Reals,bounds=(0,19),initialize=0) m.x217 = Var(within=Reals,bounds=(0,19),initialize=0) m.x218 = Var(within=Reals,bounds=(0,19),initialize=0) m.x219 = Var(within=Reals,bounds=(0,19),initialize=0) m.x220 = Var(within=Reals,bounds=(0,19),initialize=0) m.x221 = Var(within=Reals,bounds=(0,19),initialize=0) m.x222 = Var(within=Reals,bounds=(0,19),initialize=0) m.x223 = Var(within=Reals,bounds=(0,19),initialize=0) m.x224 = Var(within=Reals,bounds=(0,19),initialize=0) m.x225 = Var(within=Reals,bounds=(0,19),initialize=0) m.x226 = Var(within=Reals,bounds=(0,19),initialize=0) m.x227 = Var(within=Reals,bounds=(0,19),initialize=0) m.x228 = Var(within=Reals,bounds=(0,19),initialize=0) m.x229 = Var(within=Reals,bounds=(0,19),initialize=0) m.x230 = Var(within=Reals,bounds=(0,19),initialize=0) m.x231 = Var(within=Reals,bounds=(0,19),initialize=0) m.x232 = Var(within=Reals,bounds=(0,19),initialize=0) m.x233 = Var(within=Reals,bounds=(0,19),initialize=0) m.x234 = Var(within=Reals,bounds=(0,19),initialize=0) m.x235 = Var(within=Reals,bounds=(0,19),initialize=0) m.x236 = Var(within=Reals,bounds=(0,19),initialize=0) m.x237 = Var(within=Reals,bounds=(0,19),initialize=0) m.x238 = Var(within=Reals,bounds=(0,19),initialize=0) m.x239 = Var(within=Reals,bounds=(0,19),initialize=0) m.x240 = Var(within=Reals,bounds=(0,19),initialize=0) m.x241 = Var(within=Reals,bounds=(0,19),initialize=0) m.x242 = Var(within=Reals,bounds=(0,19),initialize=0) m.x243 = Var(within=Reals,bounds=(0,19),initialize=0) m.x244 = Var(within=Reals,bounds=(0,19),initialize=0) m.x245 = Var(within=Reals,bounds=(0,19),initialize=0) m.x246 = Var(within=Reals,bounds=(0,19),initialize=0) m.x247 = Var(within=Reals,bounds=(0,19),initialize=0) m.x248 = Var(within=Reals,bounds=(0,19),initialize=0) m.x249 = Var(within=Reals,bounds=(0,19),initialize=0) m.x250 = Var(within=Reals,bounds=(0,19),initialize=0) m.x251 = Var(within=Reals,bounds=(0,19),initialize=0) m.x252 = Var(within=Reals,bounds=(0,19),initialize=0) m.x253 = Var(within=Reals,bounds=(0,19),initialize=0) m.x254 = Var(within=Reals,bounds=(0,19),initialize=0) m.x255 = Var(within=Reals,bounds=(0,19),initialize=0) m.x256 = Var(within=Reals,bounds=(0,19),initialize=0) m.x257 = Var(within=Reals,bounds=(0,19),initialize=0) m.x258 = Var(within=Reals,bounds=(0,19),initialize=0) m.x259 = Var(within=Reals,bounds=(0,19),initialize=0) m.x260 = Var(within=Reals,bounds=(0,19),initialize=0) m.x261 = Var(within=Reals,bounds=(0,19),initialize=0) m.x262 = Var(within=Reals,bounds=(0,19),initialize=0) m.x263 = Var(within=Reals,bounds=(0,19),initialize=0) m.x264 = Var(within=Reals,bounds=(0,19),initialize=0) m.x265 = Var(within=Reals,bounds=(0,19),initialize=0) m.x266 = Var(within=Reals,bounds=(0,19),initialize=0) m.x267 = Var(within=Reals,bounds=(0,19),initialize=0) m.x268 = Var(within=Reals,bounds=(0,19),initialize=0) m.x269 = Var(within=Reals,bounds=(0,19),initialize=0) m.x270 = Var(within=Reals,bounds=(0,19),initialize=0) m.x271 = Var(within=Reals,bounds=(0,19),initialize=0) m.x272 = Var(within=Reals,bounds=(0,19),initialize=0) m.x273 = Var(within=Reals,bounds=(0,19),initialize=0) m.x274 = Var(within=Reals,bounds=(0,19),initialize=0) m.x275 = Var(within=Reals,bounds=(0,19),initialize=0) m.x276 = Var(within=Reals,bounds=(0,19),initialize=0) m.x277 = Var(within=Reals,bounds=(0,19),initialize=0) m.x278 = Var(within=Reals,bounds=(0,19),initialize=0) m.x279 = Var(within=Reals,bounds=(0,19),initialize=0) m.x280 = Var(within=Reals,bounds=(0,19),initialize=0) m.x281 = Var(within=Reals,bounds=(0,19),initialize=0) m.x282 = Var(within=Reals,bounds=(0,19),initialize=0) m.x283 = Var(within=Reals,bounds=(0,19),initialize=0) m.x284 = Var(within=Reals,bounds=(0,19),initialize=0) m.x285 = Var(within=Reals,bounds=(0,19),initialize=0) m.x286 = Var(within=Reals,bounds=(0,19),initialize=0) m.x287 = Var(within=Reals,bounds=(0,19),initialize=0) m.x288 = Var(within=Reals,bounds=(0,19),initialize=0) m.x289 = Var(within=Reals,bounds=(0,19),initialize=0) m.x290 = Var(within=Reals,bounds=(0,19),initialize=0) m.x291 = Var(within=Reals,bounds=(0,19),initialize=0) m.x292 = Var(within=Reals,bounds=(0,19),initialize=0) m.x293 = Var(within=Reals,bounds=(0,19),initialize=0) m.x294 = Var(within=Reals,bounds=(0,19),initialize=0) m.x295 = Var(within=Reals,bounds=(0,19),initialize=0) m.x296 = Var(within=Reals,bounds=(0,19),initialize=0) m.x297 = Var(within=Reals,bounds=(0,19),initialize=0) m.x298 = Var(within=Reals,bounds=(0,19),initialize=0) m.x299 = Var(within=Reals,bounds=(0,19),initialize=0) m.x300 = Var(within=Reals,bounds=(0,19),initialize=0) m.x301 = Var(within=Reals,bounds=(0,19),initialize=0) m.x302 = Var(within=Reals,bounds=(0,19),initialize=0) m.x303 = Var(within=Reals,bounds=(0,19),initialize=0) m.x304 = Var(within=Reals,bounds=(0,19),initialize=0) m.x305 = Var(within=Reals,bounds=(0,19),initialize=0) m.x306 = Var(within=Reals,bounds=(0,19),initialize=0) m.x307 = Var(within=Reals,bounds=(0,19),initialize=0) m.x308 = Var(within=Reals,bounds=(0,19),initialize=0) m.x309 = Var(within=Reals,bounds=(0,19),initialize=0) m.x310 = Var(within=Reals,bounds=(0,19),initialize=0) m.x311 = Var(within=Reals,bounds=(0,19),initialize=0) m.x312 = Var(within=Reals,bounds=(0,19),initialize=0) m.x313 = Var(within=Reals,bounds=(0,19),initialize=0) m.x314 = Var(within=Reals,bounds=(0,19),initialize=0) m.x315 = Var(within=Reals,bounds=(0,19),initialize=0) m.x316 = Var(within=Reals,bounds=(0,19),initialize=0) m.x317 = Var(within=Reals,bounds=(0,19),initialize=0) m.x318 = Var(within=Reals,bounds=(0,19),initialize=0) m.x319 = Var(within=Reals,bounds=(0,19),initialize=0) m.x320 = Var(within=Reals,bounds=(0,19),initialize=0) m.x321 = Var(within=Reals,bounds=(0,19),initialize=0) m.x322 = Var(within=Reals,bounds=(0,19),initialize=0) m.x323 = Var(within=Reals,bounds=(0,19),initialize=0) m.x324 = Var(within=Reals,bounds=(0,19),initialize=0) m.x325 = Var(within=Reals,bounds=(0,19),initialize=0) m.x326 = Var(within=Reals,bounds=(0,19),initialize=0) m.x327 = Var(within=Reals,bounds=(0,19),initialize=0) m.x328 = Var(within=Reals,bounds=(0,19),initialize=0) m.x329 = Var(within=Reals,bounds=(0,19),initialize=0) m.x330 = Var(within=Reals,bounds=(0,19),initialize=0) m.x331 = Var(within=Reals,bounds=(0,19),initialize=0) m.x332 = Var(within=Reals,bounds=(0,19),initialize=0) m.x333 = Var(within=Reals,bounds=(0,19),initialize=0) m.x334 = Var(within=Reals,bounds=(0,19),initialize=0) m.x335 = Var(within=Reals,bounds=(0,19),initialize=0) m.x336 = Var(within=Reals,bounds=(0,19),initialize=0) m.x337 = Var(within=Reals,bounds=(0,19),initialize=0) m.x338 = Var(within=Reals,bounds=(0,19),initialize=0) m.x339 = Var(within=Reals,bounds=(0,19),initialize=0) m.x340 = Var(within=Reals,bounds=(0,19),initialize=0) m.x341 = Var(within=Reals,bounds=(0,19),initialize=0) m.x342 = Var(within=Reals,bounds=(0,19),initialize=0) m.x343 = Var(within=Reals,bounds=(0,19),initialize=0) m.x344 = Var(within=Reals,bounds=(0,19),initialize=0) m.x345 = Var(within=Reals,bounds=(0,19),initialize=0) m.x346 = Var(within=Reals,bounds=(0,19),initialize=0) m.x347 = Var(within=Reals,bounds=(0,19),initialize=0) m.x348 = Var(within=Reals,bounds=(0,19),initialize=0) m.x349 = Var(within=Reals,bounds=(0,19),initialize=0) m.x350 = Var(within=Reals,bounds=(0,19),initialize=0) m.x351 = Var(within=Reals,bounds=(0,19),initialize=0) m.x352 = Var(within=Reals,bounds=(0,19),initialize=0) m.x353 = Var(within=Reals,bounds=(0,19),initialize=0) m.x354 = Var(within=Reals,bounds=(0,19),initialize=0) m.x355 = Var(within=Reals,bounds=(0,19),initialize=0) m.x356 = Var(within=Reals,bounds=(0,19),initialize=0) m.x357 = Var(within=Reals,bounds=(0,19),initialize=0) m.x358 = Var(within=Reals,bounds=(0,19),initialize=0) m.x359 = Var(within=Reals,bounds=(0,19),initialize=0) m.x360 = Var(within=Reals,bounds=(0,19),initialize=0) m.x361 = Var(within=Reals,bounds=(0,19),initialize=0) m.x362 = Var(within=Reals,bounds=(0,19),initialize=0) m.x363 = Var(within=Reals,bounds=(0,19),initialize=0) m.x364 = Var(within=Reals,bounds=(0,19),initialize=0) m.x365 = Var(within=Reals,bounds=(0,19),initialize=0) m.x366 = Var(within=Reals,bounds=(0,19),initialize=0) m.x367 = Var(within=Reals,bounds=(0,19),initialize=0) m.x368 = Var(within=Reals,bounds=(0,19),initialize=0) m.x369 = Var(within=Reals,bounds=(0,19),initialize=0) m.x370 = Var(within=Reals,bounds=(0,19),initialize=0) m.x371 = Var(within=Reals,bounds=(0,19),initialize=0) m.x372 = Var(within=Reals,bounds=(0,19),initialize=0) m.x373 = Var(within=Reals,bounds=(0,19),initialize=0) m.x374 = Var(within=Reals,bounds=(0,19),initialize=0) m.x375 = Var(within=Reals,bounds=(0,19),initialize=0) m.x376 = Var(within=Reals,bounds=(0,19),initialize=0) m.x377 = Var(within=Reals,bounds=(0,19),initialize=0) m.x378 = Var(within=Reals,bounds=(0,19),initialize=0) m.x379 = Var(within=Reals,bounds=(0,19),initialize=0) m.x380 = Var(within=Reals,bounds=(0,19),initialize=0) m.x381 = Var(within=Reals,bounds=(0,19),initialize=0) m.x382 = Var(within=Reals,bounds=(0,19),initialize=0) m.x383 = Var(within=Reals,bounds=(0,19),initialize=0) m.x384 = Var(within=Reals,bounds=(0,19),initialize=0) m.x385 = Var(within=Reals,bounds=(0,19),initialize=0) m.x386 = Var(within=Reals,bounds=(0,62.6564459177551),initialize=0) m.x387 = Var(within=Reals,bounds=(0,62.6421623089265),initialize=0) m.x388 = Var(within=Reals,bounds=(0,62.6350205045122),initialize=0) m.x389 = Var(within=Reals,bounds=(0,62.6207368956836),initialize=0) m.x390 = Var(within=Reals,bounds=(0,62.6135950912694),initialize=0) m.x391 = Var(within=Reals,bounds=(0,62.6064532868551),initialize=0) m.x392 = Var(within=Reals,bounds=(0,62.6135950912694),initialize=0) m.x393 = Var(within=Reals,bounds=(0,62.6278787000979),initialize=0) m.x394 = Var(within=Reals,bounds=(0,62.6635877221694),initialize=0) m.x395 = Var(within=Reals,bounds=(0,62.7350057663122),initialize=0) m.x396 = Var(within=Reals,bounds=(0,62.8492746369407),initialize=0) m.x397 = Var(within=Reals,bounds=(0,62.9778271163978),initialize=0) m.x398 = Var(within=Reals,bounds=(0,63.1278050090978),initialize=0) m.x399 = Var(within=Reals,bounds=(0,63.1635140311692),initialize=0) m.x400 = Var(within=Reals,bounds=(0,63.0563869649549),initialize=0) m.x401 = Var(within=Reals,bounds=(0,63.0278197472978),initialize=0) m.x402 = Var(within=Reals,bounds=(0,62.9706853119835),initialize=0) m.x403 = Var(within=Reals,bounds=(0,62.8778418545979),initialize=0) m.x404 = Var(within=Reals,bounds=(0,62.8207074192836),initialize=0) m.x405 = Var(within=Reals,bounds=(0,62.7921402016264),initialize=0) m.x406 = Var(within=Reals,bounds=(0,62.7635729839693),initialize=0) m.x407 = Var(within=Reals,bounds=(0,62.7350057663122),initialize=0) m.x408 = Var(within=Reals,bounds=(0,62.7135803530693),initialize=0) m.x409 = Var(within=Reals,bounds=(0,62.6921549398265),initialize=0) m.x410 = Var(within=Reals,bounds=(0,62.7992820060407),initialize=0) m.x411 = Var(within=Reals,bounds=(0,62.856416441355),initialize=0) m.x412 = Var(within=Reals,bounds=(0,62.9206926810835),initialize=0) m.x413 = Var(within=Reals,bounds=(0,62.9778271163978),initialize=0) m.x414 = Var(within=Reals,bounds=(0,63.0421033561264),initialize=0) m.x415 = Var(within=Reals,bounds=(0,63.0349615517121),initialize=0) m.x416 = Var(within=Reals,bounds=(0,63.0421033561264),initialize=0) m.x417 = Var(within=Reals,bounds=(0,63.1278050090978),initialize=0) m.x418 = Var(within=Reals,bounds=(0,63.1635140311692),initialize=0) m.x419 = Var(within=Reals,bounds=(0,63.3063501194548),initialize=0) m.x420 = Var(within=Reals,bounds=(0,63.3492009459406),initialize=0) m.x421 = Var(within=Reals,bounds=(0,63.4063353812548),initialize=0) m.x422 = Var(within=Reals,bounds=(0,63.5563132739548),initialize=0) m.x423 = Var(within=Reals,bounds=(0,63.663440340169),initialize=0) m.x424 = Var(within=Reals,bounds=(0,63.6277313180976),initialize=0) m.x425 = Var(within=Reals,bounds=(0,63.5277460562976),initialize=0) m.x426 = Var(within=Reals,bounds=(0,63.4706116209834),initialize=0) m.x427 = Var(within=Reals,bounds=(0,63.3063501194548),initialize=0) m.x428 = Var(within=Reals,bounds=(0,63.1777976399977),initialize=0) m.x429 = Var(within=Reals,bounds=(0,63.1492304223406),initialize=0) m.x430 = Var(within=Reals,bounds=(0,63.0492451605407),initialize=0) m.x431 = Var(within=Reals,bounds=(0,63.0920959870264),initialize=0) m.x432 = Var(within=Reals,bounds=(0,63.0706705737835),initialize=0) m.x433 = Var(within=Reals,bounds=(0,62.6921549398265),initialize=0) m.x434 = Var(within=Reals,bounds=(0,0),initialize=0) m.x435 = Var(within=Reals,bounds=(0,0),initialize=0) m.x436 = Var(within=Reals,bounds=(0,0),initialize=0) m.x437 = Var(within=Reals,bounds=(0,0),initialize=0) m.x438 = Var(within=Reals,bounds=(0,0),initialize=0) m.x439 = Var(within=Reals,bounds=(0,0),initialize=0) m.x440 = Var(within=Reals,bounds=(0,0),initialize=0) m.x441 = Var(within=Reals,bounds=(0,0),initialize=0) m.x442 = Var(within=Reals,bounds=(0,0),initialize=0) m.x443 = Var(within=Reals,bounds=(0,0),initialize=0) m.x444 = Var(within=Reals,bounds=(0,0),initialize=0) m.x445 = Var(within=Reals,bounds=(0,0),initialize=0) m.x446 = Var(within=Reals,bounds=(0,0),initialize=0) m.x447 = Var(within=Reals,bounds=(0,0),initialize=0) m.x448 = Var(within=Reals,bounds=(0,0),initialize=0) m.x449 = Var(within=Reals,bounds=(0,0),initialize=0) m.x450 = Var(within=Reals,bounds=(0,0),initialize=0) m.x451 = Var(within=Reals,bounds=(0,0),initialize=0) m.x452 = Var(within=Reals,bounds=(0,0),initialize=0) m.x453 = Var(within=Reals,bounds=(0,0),initialize=0) m.x454 = Var(within=Reals,bounds=(0,0),initialize=0) m.x455 = Var(within=Reals,bounds=(0,0),initialize=0) m.x456 = Var(within=Reals,bounds=(0,0),initialize=0) m.x457 = Var(within=Reals,bounds=(0,0),initialize=0) m.x458 = Var(within=Reals,bounds=(0,0),initialize=0) m.x459 = Var(within=Reals,bounds=(0,0),initialize=0) m.x460 = Var(within=Reals,bounds=(0,0),initialize=0) m.x461 = Var(within=Reals,bounds=(0,0),initialize=0) m.x462 = Var(within=Reals,bounds=(0,0),initialize=0) m.x463 = Var(within=Reals,bounds=(0,0),initialize=0) m.x464 = Var(within=Reals,bounds=(0,0),initialize=0) m.x465 = Var(within=Reals,bounds=(0,0),initialize=0) m.x466 = Var(within=Reals,bounds=(0,0),initialize=0) m.x467 = Var(within=Reals,bounds=(0,0),initialize=0) m.x468 = Var(within=Reals,bounds=(0,0),initialize=0) m.x469 = Var(within=Reals,bounds=(0,0),initialize=0) m.x470 = Var(within=Reals,bounds=(0,0),initialize=0) m.x471 = Var(within=Reals,bounds=(0,0),initialize=0) m.x472 = Var(within=Reals,bounds=(0,0),initialize=0) m.x473 = Var(within=Reals,bounds=(0,0),initialize=0) m.x474 = Var(within=Reals,bounds=(0,0),initialize=0) m.x475 = Var(within=Reals,bounds=(0,0),initialize=0) m.x476 = Var(within=Reals,bounds=(0,0),initialize=0) m.x477 = Var(within=Reals,bounds=(0,0),initialize=0) m.x478 = Var(within=Reals,bounds=(0,0),initialize=0) m.x479 = Var(within=Reals,bounds=(0,0),initialize=0) m.x480 = Var(within=Reals,bounds=(0,0),initialize=0) m.x481 = Var(within=Reals,bounds=(0,0),initialize=0) m.x482 = Var(within=Reals,bounds=(0,17.3082346728998),initialize=0) m.x483 = Var(within=Reals,bounds=(0,17.302992517866),initialize=0) m.x484 = Var(within=Reals,bounds=(0,17.3003714403491),initialize=0) m.x485 = Var(within=Reals,bounds=(0,17.2951292853154),initialize=0) m.x486 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x487 = Var(within=Reals,bounds=(0,17.2898871302816),initialize=0) m.x488 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x489 = Var(within=Reals,bounds=(0,17.2977503628323),initialize=0) m.x490 = Var(within=Reals,bounds=(0,17.3108557504167),initialize=0) m.x491 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x492 = Var(within=Reals,bounds=(0,17.3790037658554),initialize=0) m.x493 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x494 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x495 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x496 = Var(within=Reals,bounds=(0,17.4550150138448),initialize=0) m.x497 = Var(within=Reals,bounds=(0,17.4445307037773),initialize=0) m.x498 = Var(within=Reals,bounds=(0,17.4235620836423),initialize=0) m.x499 = Var(within=Reals,bounds=(0,17.3894880759229),initialize=0) m.x500 = Var(within=Reals,bounds=(0,17.3685194557879),initialize=0) m.x501 = Var(within=Reals,bounds=(0,17.3580351457204),initialize=0) m.x502 = Var(within=Reals,bounds=(0,17.3475508356529),initialize=0) m.x503 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x504 = Var(within=Reals,bounds=(0,17.3292032930348),initialize=0) m.x505 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x506 = Var(within=Reals,bounds=(0,17.3606562232373),initialize=0) m.x507 = Var(within=Reals,bounds=(0,17.3816248433723),initialize=0) m.x508 = Var(within=Reals,bounds=(0,17.4052145410242),initialize=0) m.x509 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x510 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x511 = Var(within=Reals,bounds=(0,17.4471517812942),initialize=0) m.x512 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x513 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x514 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x515 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x516 = Var(within=Reals,bounds=(0,17.5624791920368),initialize=0) m.x517 = Var(within=Reals,bounds=(0,17.5834478121718),initialize=0) m.x518 = Var(within=Reals,bounds=(0,17.6384904400262),initialize=0) m.x519 = Var(within=Reals,bounds=(0,17.6778066027793),initialize=0) m.x520 = Var(within=Reals,bounds=(0,17.6647012151949),initialize=0) m.x521 = Var(within=Reals,bounds=(0,17.6280061299587),initialize=0) m.x522 = Var(within=Reals,bounds=(0,17.6070375098237),initialize=0) m.x523 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x524 = Var(within=Reals,bounds=(0,17.4995733316317),initialize=0) m.x525 = Var(within=Reals,bounds=(0,17.4890890215642),initialize=0) m.x526 = Var(within=Reals,bounds=(0,17.452393936328),initialize=0) m.x527 = Var(within=Reals,bounds=(0,17.4681204014292),initialize=0) m.x528 = Var(within=Reals,bounds=(0,17.4602571688786),initialize=0) m.x529 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x530 = Var(within=Reals,bounds=(0,17.3082346728998),initialize=0) m.x531 = Var(within=Reals,bounds=(0,17.302992517866),initialize=0) m.x532 = Var(within=Reals,bounds=(0,17.3003714403491),initialize=0) m.x533 = Var(within=Reals,bounds=(0,17.2951292853154),initialize=0) m.x534 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x535 = Var(within=Reals,bounds=(0,17.2898871302816),initialize=0) m.x536 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x537 = Var(within=Reals,bounds=(0,17.2977503628323),initialize=0) m.x538 = Var(within=Reals,bounds=(0,17.3108557504167),initialize=0) m.x539 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x540 = Var(within=Reals,bounds=(0,17.3790037658554),initialize=0) m.x541 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x542 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x543 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x544 = Var(within=Reals,bounds=(0,17.4550150138448),initialize=0) m.x545 = Var(within=Reals,bounds=(0,17.4445307037773),initialize=0) m.x546 = Var(within=Reals,bounds=(0,17.4235620836423),initialize=0) m.x547 = Var(within=Reals,bounds=(0,17.3894880759229),initialize=0) m.x548 = Var(within=Reals,bounds=(0,17.3685194557879),initialize=0) m.x549 = Var(within=Reals,bounds=(0,17.3580351457204),initialize=0) m.x550 = Var(within=Reals,bounds=(0,17.3475508356529),initialize=0) m.x551 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x552 = Var(within=Reals,bounds=(0,17.3292032930348),initialize=0) m.x553 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x554 = Var(within=Reals,bounds=(0,17.3606562232373),initialize=0) m.x555 = Var(within=Reals,bounds=(0,17.3816248433723),initialize=0) m.x556 = Var(within=Reals,bounds=(0,17.4052145410242),initialize=0) m.x557 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x558 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x559 = Var(within=Reals,bounds=(0,17.4471517812942),initialize=0) m.x560 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x561 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x562 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x563 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x564 = Var(within=Reals,bounds=(0,17.5624791920368),initialize=0) m.x565 = Var(within=Reals,bounds=(0,17.5834478121718),initialize=0) m.x566 = Var(within=Reals,bounds=(0,17.6384904400262),initialize=0) m.x567 = Var(within=Reals,bounds=(0,17.6778066027793),initialize=0) m.x568 = Var(within=Reals,bounds=(0,17.6647012151949),initialize=0) m.x569 = Var(within=Reals,bounds=(0,17.6280061299587),initialize=0) m.x570 = Var(within=Reals,bounds=(0,17.6070375098237),initialize=0) m.x571 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x572 = Var(within=Reals,bounds=(0,17.4995733316317),initialize=0) m.x573 = Var(within=Reals,bounds=(0,17.4890890215642),initialize=0) m.x574 = Var(within=Reals,bounds=(0,17.452393936328),initialize=0) m.x575 = Var(within=Reals,bounds=(0,17.4681204014292),initialize=0) m.x576 = Var(within=Reals,bounds=(0,17.4602571688786),initialize=0) m.x577 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x578 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x579 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x580 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x581 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x582 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x583 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x584 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x585 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x586 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x587 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x588 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x589 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x590 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x591 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x592 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x593 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x594 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x595 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x596 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x597 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x598 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x599 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x600 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x601 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x602 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x603 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x604 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x605 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x606 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x607 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x608 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x609 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x610 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x611 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x612 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x613 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x614 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x615 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x616 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x617 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x618 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x619 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x620 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x621 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x622 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x623 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x624 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x625 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x626 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x627 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x628 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x629 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x630 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x631 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x632 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x633 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x634 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x635 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x636 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x637 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x638 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x639 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x640 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x641 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x642 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x643 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x644 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x645 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x646 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x647 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x648 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x649 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x650 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x651 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x652 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x653 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x654 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x655 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x656 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x657 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x658 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x659 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x660 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x661 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x662 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x663 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x664 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x665 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x666 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x667 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x668 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x669 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x670 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x671 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x672 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x673 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x674 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x675 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x676 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x677 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x678 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x679 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x680 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x681 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x682 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x683 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x684 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x685 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x686 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x687 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x688 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x689 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x690 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x691 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x692 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x693 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x694 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x695 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x696 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x697 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x698 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x699 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x700 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x701 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x702 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x703 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x704 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x705 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x706 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x707 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x708 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x709 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x710 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x711 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x712 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x713 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x714 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x715 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x716 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x717 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x718 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x719 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x720 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x721 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x722 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x723 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x724 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x725 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x726 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x727 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x728 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x729 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x730 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x731 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x732 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x733 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x734 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x735 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x736 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x737 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x738 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x739 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x740 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x741 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x742 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x743 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x744 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x745 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x746 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x747 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x748 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x749 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x750 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x751 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x752 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x753 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x754 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x755 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x756 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x757 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x758 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x759 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x760 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x761 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x762 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x763 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x764 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x765 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x766 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x767 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x768 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x769 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x770 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x771 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x772 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x773 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x774 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x775 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x776 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x777 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x778 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x779 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x780 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x781 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x782 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x783 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x784 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x785 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x786 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x787 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x788 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x789 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x790 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x791 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x792 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x793 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x794 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x795 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x796 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x797 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x798 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x799 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x800 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x801 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x802 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x803 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x804 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x805 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x806 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x807 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x808 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x809 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x810 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x811 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x812 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x813 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x814 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x815 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x816 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x817 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x818 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x819 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x820 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x821 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x822 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x823 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x824 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x825 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x826 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x827 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x828 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x829 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x830 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x831 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x832 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x833 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x834 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x835 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x836 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x837 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x838 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x839 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x840 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x841 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x842 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x843 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x844 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x845 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x846 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x847 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x848 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x849 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x850 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x851 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x852 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x853 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x854 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x855 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x856 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x857 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x858 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x859 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x860 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x861 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x862 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x863 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x864 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x865 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x866 = Var(within=Reals,bounds=(0,20.4747868939375),initialize=0) m.x867 = Var(within=Reals,bounds=(0,20.4596302458492),initialize=0) m.x868 = Var(within=Reals,bounds=(0,20.452051921805),initialize=0) m.x869 = Var(within=Reals,bounds=(0,20.4368952737167),initialize=0) m.x870 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x871 = Var(within=Reals,bounds=(0,20.4217386256284),initialize=0) m.x872 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x873 = Var(within=Reals,bounds=(0,20.4444735977609),initialize=0) m.x874 = Var(within=Reals,bounds=(0,20.4823652179816),initialize=0) m.x875 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x876 = Var(within=Reals,bounds=(0,20.6794016431297),initialize=0) m.x877 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x878 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x879 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x880 = Var(within=Reals,bounds=(0,20.8991730404103),initialize=0) m.x881 = Var(within=Reals,bounds=(0,20.8688597442337),initialize=0) m.x882 = Var(within=Reals,bounds=(0,20.8082331518804),initialize=0) m.x883 = Var(within=Reals,bounds=(0,20.7097149393064),initialize=0) m.x884 = Var(within=Reals,bounds=(0,20.6490883469531),initialize=0) m.x885 = Var(within=Reals,bounds=(0,20.6187750507765),initialize=0) m.x886 = Var(within=Reals,bounds=(0,20.5884617545998),initialize=0) m.x887 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x888 = Var(within=Reals,bounds=(0,20.5354134862907),initialize=0) m.x889 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x890 = Var(within=Reals,bounds=(0,20.6263533748206),initialize=0) m.x891 = Var(within=Reals,bounds=(0,20.6869799671739),initialize=0) m.x892 = Var(within=Reals,bounds=(0,20.7551848835713),initialize=0) m.x893 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x894 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x895 = Var(within=Reals,bounds=(0,20.8764380682778),initialize=0) m.x896 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x897 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x898 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x899 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x900 = Var(within=Reals,bounds=(0,21.2098843262207),initialize=0) m.x901 = Var(within=Reals,bounds=(0,21.270510918574),initialize=0) m.x902 = Var(within=Reals,bounds=(0,21.4296557235013),initialize=0) m.x903 = Var(within=Reals,bounds=(0,21.5433305841636),initialize=0) m.x904 = Var(within=Reals,bounds=(0,21.5054389639429),initialize=0) m.x905 = Var(within=Reals,bounds=(0,21.3993424273246),initialize=0) m.x906 = Var(within=Reals,bounds=(0,21.3387158349714),initialize=0) m.x907 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x908 = Var(within=Reals,bounds=(0,21.028004549161),initialize=0) m.x909 = Var(within=Reals,bounds=(0,20.9976912529843),initialize=0) m.x910 = Var(within=Reals,bounds=(0,20.8915947163661),initialize=0) m.x911 = Var(within=Reals,bounds=(0,20.9370646606311),initialize=0) m.x912 = Var(within=Reals,bounds=(0,20.9143296884986),initialize=0) m.x913 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x914 = Var(within=Reals,bounds=(0,20.4747868939375),initialize=0) m.x915 = Var(within=Reals,bounds=(0,20.4596302458492),initialize=0) m.x916 = Var(within=Reals,bounds=(0,20.452051921805),initialize=0) m.x917 = Var(within=Reals,bounds=(0,20.4368952737167),initialize=0) m.x918 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x919 = Var(within=Reals,bounds=(0,20.4217386256284),initialize=0) m.x920 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x921 = Var(within=Reals,bounds=(0,20.4444735977609),initialize=0) m.x922 = Var(within=Reals,bounds=(0,20.4823652179816),initialize=0) m.x923 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x924 = Var(within=Reals,bounds=(0,20.6794016431297),initialize=0) m.x925 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x926 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x927 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x928 = Var(within=Reals,bounds=(0,20.8991730404103),initialize=0) m.x929 = Var(within=Reals,bounds=(0,20.8688597442337),initialize=0) m.x930 = Var(within=Reals,bounds=(0,20.8082331518804),initialize=0) m.x931 = Var(within=Reals,bounds=(0,20.7097149393064),initialize=0) m.x932 = Var(within=Reals,bounds=(0,20.6490883469531),initialize=0) m.x933 = Var(within=Reals,bounds=(0,20.6187750507765),initialize=0) m.x934 = Var(within=Reals,bounds=(0,20.5884617545998),initialize=0) m.x935 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x936 = Var(within=Reals,bounds=(0,20.5354134862907),initialize=0) m.x937 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x938 = Var(within=Reals,bounds=(0,20.6263533748206),initialize=0) m.x939 = Var(within=Reals,bounds=(0,20.6869799671739),initialize=0) m.x940 = Var(within=Reals,bounds=(0,20.7551848835713),initialize=0) m.x941 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x942 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x943 = Var(within=Reals,bounds=(0,20.8764380682778),initialize=0) m.x944 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x945 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x946 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x947 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x948 = Var(within=Reals,bounds=(0,21.2098843262207),initialize=0) m.x949 = Var(within=Reals,bounds=(0,21.270510918574),initialize=0) m.x950 = Var(within=Reals,bounds=(0,21.4296557235013),initialize=0) m.x951 = Var(within=Reals,bounds=(0,21.5433305841636),initialize=0) m.x952 = Var(within=Reals,bounds=(0,21.5054389639429),initialize=0) m.x953 = Var(within=Reals,bounds=(0,21.3993424273246),initialize=0) m.x954 = Var(within=Reals,bounds=(0,21.3387158349714),initialize=0) m.x955 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x956 = Var(within=Reals,bounds=(0,21.028004549161),initialize=0) m.x957 = Var(within=Reals,bounds=(0,20.9976912529843),initialize=0) m.x958 = Var(within=Reals,bounds=(0,20.8915947163661),initialize=0) m.x959 = Var(within=Reals,bounds=(0,20.9370646606311),initialize=0) m.x960 = Var(within=Reals,bounds=(0,20.9143296884986),initialize=0) m.x961 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x962 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x963 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x964 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x965 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x966 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x967 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x968 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x969 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x970 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x971 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x972 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x973 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x974 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x975 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x976 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x977 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x978 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x979 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x980 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x981 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x982 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x983 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x984 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x985 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x986 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x987 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x988 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x989 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x990 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x991 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x992 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x993 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x994 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x995 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x996 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x997 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x998 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x999 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1000 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1001 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1002 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1003 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1004 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1005 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1006 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1007 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1008 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1009 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1010 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x1011 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x1012 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x1013 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x1014 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1015 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x1016 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1017 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x1018 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x1019 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1020 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x1021 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1022 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1023 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1024 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x1025 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x1026 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x1027 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x1028 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x1029 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x1030 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x1031 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1032 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x1033 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1034 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x1035 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x1036 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x1037 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1038 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1039 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x1040 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1041 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1042 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1043 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1044 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x1045 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x1046 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x1047 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1048 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1049 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1050 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1051 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1052 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1053 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1054 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1055 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1056 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1057 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1058 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x1059 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x1060 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x1061 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x1062 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1063 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x1064 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1065 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x1066 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x1067 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1068 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x1069 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1070 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1071 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1072 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x1073 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x1074 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x1075 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x1076 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x1077 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x1078 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x1079 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1080 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x1081 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1082 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x1083 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x1084 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x1085 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1086 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1087 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x1088 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1089 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1090 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1091 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1092 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x1093 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x1094 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x1095 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1096 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1097 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1098 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1099 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1100 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1101 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1102 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1103 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1104 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1105 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1106 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x1107 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x1108 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x1109 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x1110 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1111 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x1112 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1113 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x1114 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x1115 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1116 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x1117 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1118 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1119 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1120 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x1121 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x1122 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x1123 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x1124 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x1125 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x1126 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x1127 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1128 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x1129 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1130 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x1131 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x1132 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x1133 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1134 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1135 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x1136 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1137 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1138 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1139 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1140 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x1141 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x1142 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x1143 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1144 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1145 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1146 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1147 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1148 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1149 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1150 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1151 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1152 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1153 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1154 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1155 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1156 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1157 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1158 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1159 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1160 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1161 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1162 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1163 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1164 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1165 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1166 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1167 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1168 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1169 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1170 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1171 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1172 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1173 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1174 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1175 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1176 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1177 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1178 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1179 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1180 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1181 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1182 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1183 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1184 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1185 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1186 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1187 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1188 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1189 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1190 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1191 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1192 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1193 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1194 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1195 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1196 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1197 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1198 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1199 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1200 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1201 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1202 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1203 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1204 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1205 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1206 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1207 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1208 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1209 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1210 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1211 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1212 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1213 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1214 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1215 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1216 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1217 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1218 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1219 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1220 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1221 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1222 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1223 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1224 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1225 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1226 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1227 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1228 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1229 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1230 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1231 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1232 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1233 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1234 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1235 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1236 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1237 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1238 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1239 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1240 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1241 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1242 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1243 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1244 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1245 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1246 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1247 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1248 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1249 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1250 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1251 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1252 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1253 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1254 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1255 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1256 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1257 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1258 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1259 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1260 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1261 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1262 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1263 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1264 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1265 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1266 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1267 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1268 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1269 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1270 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1271 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1272 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1273 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1274 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1275 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1276 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1277 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1278 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1279 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1280 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1281 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1282 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1283 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1284 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1285 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1286 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1287 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1288 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1289 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1290 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1291 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1292 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1293 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1294 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1295 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1296 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1297 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1298 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1299 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1300 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1301 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1302 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1303 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1304 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1305 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1306 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1307 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1308 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1309 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1310 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1311 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1312 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1313 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1314 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1315 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1316 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1317 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1318 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1319 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1320 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1321 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1322 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1323 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1324 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1325 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1326 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1327 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1328 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1329 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1330 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1331 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1332 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1333 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1334 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1335 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1336 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1337 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1338 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1339 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1340 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1341 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1342 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1343 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1344 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1345 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1346 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1347 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1348 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1349 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1350 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1351 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1352 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1353 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1354 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1355 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1356 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1357 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1358 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1359 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1360 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1361 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1362 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1363 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1364 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1365 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1366 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1367 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1368 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1369 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1370 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1371 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1372 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1373 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1374 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1375 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1376 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1377 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1378 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1379 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1380 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1381 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1382 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1383 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1384 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1385 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1386 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1387 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1388 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1389 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1390 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1391 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1392 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1393 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1394 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1395 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1396 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1397 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1398 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1399 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1400 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1401 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1402 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1403 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1404 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1405 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1406 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1407 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1408 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1409 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1410 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1411 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1412 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1413 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1414 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1415 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1416 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1417 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1418 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1419 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1420 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1421 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1422 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1423 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1424 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1425 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1426 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1427 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1428 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1429 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1430 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1431 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1432 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1433 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1434 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1435 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1436 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1437 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1438 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1439 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1440 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1441 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1442 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1443 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1444 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1445 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1446 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1447 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1448 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1449 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1450 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1451 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1452 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1453 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1454 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1455 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1456 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1457 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1458 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1459 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1460 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1461 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1462 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1463 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1464 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1465 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1466 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1467 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1468 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1469 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1470 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1471 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1472 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1473 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1474 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1475 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1476 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1477 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1478 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1479 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1480 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1481 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1482 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1483 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1484 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1485 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1486 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1487 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1488 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1489 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1490 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1491 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1492 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1493 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1494 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1495 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1496 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1497 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1498 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1499 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1500 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1501 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1502 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1503 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1504 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1505 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1506 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1507 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1508 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1509 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1510 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1511 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1512 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1513 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1514 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1515 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1516 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1517 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1518 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1519 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1520 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1521 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1522 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1523 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1524 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1525 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1526 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1527 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1528 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1529 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1530 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1531 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1532 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1533 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1534 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1535 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1536 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1537 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1538 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1539 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1540 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1541 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1542 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1543 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1544 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1545 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1546 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1547 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1548 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1549 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1550 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1551 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1552 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1553 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1554 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1555 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1556 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1557 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1558 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1559 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1560 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1561 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1562 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1563 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1564 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1565 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1566 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1567 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1568 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1569 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1570 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1571 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1572 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1573 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1574 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1575 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1576 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1577 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1578 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1579 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1580 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1581 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1582 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1583 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1584 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1585 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1586 = Var(within=Reals,bounds=(0,133.328009204217),initialize=0) m.x1587 = Var(within=Reals,bounds=(0,133.291495218837),initialize=0) m.x1588 = Var(within=Reals,bounds=(0,133.273238226147),initialize=0) m.x1589 = Var(within=Reals,bounds=(0,133.236724240767),initialize=0) m.x1590 = Var(within=Reals,bounds=(0,133.218467248077),initialize=0) m.x1591 = Var(within=Reals,bounds=(0,133.200210255387),initialize=0) m.x1592 = Var(within=Reals,bounds=(0,133.218467248077),initialize=0) m.x1593 = Var(within=Reals,bounds=(0,133.254981233457),initialize=0) m.x1594 = Var(within=Reals,bounds=(0,133.346266196907),initialize=0) m.x1595 = Var(within=Reals,bounds=(0,133.528836123808),initialize=0) m.x1596 = Var(within=Reals,bounds=(0,133.82094800685),initialize=0) m.x1597 = Var(within=Reals,bounds=(0,134.149573875271),initialize=0) m.x1598 = Var(within=Reals,bounds=(0,134.532970721763),initialize=0) m.x1599 = Var(within=Reals,bounds=(0,134.624255685213),initialize=0) m.x1600 = Var(within=Reals,bounds=(0,134.350400794862),initialize=0) m.x1601 = Var(within=Reals,bounds=(0,134.277372824102),initialize=0) m.x1602 = Var(within=Reals,bounds=(0,134.131316882581),initialize=0) m.x1603 = Var(within=Reals,bounds=(0,133.89397597761),initialize=0) m.x1604 = Var(within=Reals,bounds=(0,133.747920036089),initialize=0) m.x1605 = Var(within=Reals,bounds=(0,133.674892065329),initialize=0) m.x1606 = Var(within=Reals,bounds=(0,133.601864094569),initialize=0) m.x1607 = Var(within=Reals,bounds=(0,133.528836123808),initialize=0) m.x1608 = Var(within=Reals,bounds=(0,133.474065145738),initialize=0) m.x1609 = Var(within=Reals,bounds=(0,133.419294167668),initialize=0) m.x1610 = Var(within=Reals,bounds=(0,133.693149058019),initialize=0) m.x1611 = Var(within=Reals,bounds=(0,133.83920499954),initialize=0) m.x1612 = Var(within=Reals,bounds=(0,134.00351793375),initialize=0) m.x1613 = Var(within=Reals,bounds=(0,134.149573875271),initialize=0) m.x1614 = Var(within=Reals,bounds=(0,134.313886809482),initialize=0) m.x1615 = Var(within=Reals,bounds=(0,134.295629816792),initialize=0) m.x1616 = Var(within=Reals,bounds=(0,134.313886809482),initialize=0) m.x1617 = Var(within=Reals,bounds=(0,134.532970721763),initialize=0) m.x1618 = Var(within=Reals,bounds=(0,134.624255685213),initialize=0) m.x1619 = Var(within=Reals,bounds=(0,134.989395539015),initialize=0) m.x1620 = Var(within=Reals,bounds=(0,135.098937495155),initialize=0) m.x1621 = Var(within=Reals,bounds=(0,135.244993436676),initialize=0) m.x1622 = Var(within=Reals,bounds=(0,135.628390283168),initialize=0) m.x1623 = Var(within=Reals,bounds=(0,135.902245173519),initialize=0) m.x1624 = Var(within=Reals,bounds=(0,135.810960210069),initialize=0) m.x1625 = Var(within=Reals,bounds=(0,135.555362312408),initialize=0) m.x1626 = Var(within=Reals,bounds=(0,135.409306370887),initialize=0) m.x1627 = Var(within=Reals,bounds=(0,134.989395539015),initialize=0) m.x1628 = Var(within=Reals,bounds=(0,134.660769670593),initialize=0) m.x1629 = Var(within=Reals,bounds=(0,134.587741699833),initialize=0) m.x1630 = Var(within=Reals,bounds=(0,134.332143802172),initialize=0) m.x1631 = Var(within=Reals,bounds=(0,134.441685758312),initialize=0) m.x1632 = Var(within=Reals,bounds=(0,134.386914780242),initialize=0) m.x1633 = Var(within=Reals,bounds=(0,133.419294167668),initialize=0) m.x1634 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1635 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1636 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1637 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1638 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1639 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1640 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1641 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1642 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1643 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1644 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1645 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1646 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1647 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1648 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1649 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1650 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1651 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1652 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1653 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1654 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1655 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1656 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1657 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1658 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1659 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1660 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1661 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1662 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1663 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1664 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1665 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1666 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1667 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1668 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1669 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1670 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1671 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1672 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1673 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1674 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1675 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1676 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1677 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1678 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1679 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1680 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1681 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1682 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1683 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1684 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1685 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1686 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1687 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1688 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1689 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1690 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1691 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1692 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1693 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1694 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1695 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1696 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1697 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1698 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1699 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1700 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1701 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1702 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1703 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1704 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1705 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1706 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1707 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1708 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1709 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1710 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1711 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1712 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1713 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1714 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1715 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1716 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1717 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1718 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1719 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1720 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1721 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1722 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1723 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1724 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1725 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1726 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1727 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1728 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1729 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1730 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1731 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1732 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1733 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1734 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1735 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1736 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1737 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1738 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1739 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1740 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1741 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1742 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1743 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1744 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1745 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1746 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1747 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1748 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1749 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1750 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1751 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1752 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1753 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1754 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1755 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1756 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1757 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1758 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1759 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1760 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1761 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1762 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1763 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1764 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1765 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1766 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1767 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1768 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1769 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1770 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1771 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1772 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1773 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1774 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1775 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1776 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1777 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1778 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1779 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1780 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1781 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1782 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1783 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1784 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1785 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1786 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1787 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1788 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1789 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1790 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1791 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1792 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1793 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1794 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1795 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1796 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1797 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1798 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1799 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1800 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1801 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1802 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1803 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1804 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1805 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1806 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1807 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1808 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1809 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1810 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1811 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1812 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1813 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1814 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1815 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1816 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1817 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1818 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1819 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1820 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1821 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1822 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1823 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1824 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1825 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1826 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1827 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1828 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1829 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1830 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1831 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1832 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1833 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1834 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1835 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1836 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1837 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1838 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1839 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1840 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1841 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1842 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1843 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1844 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1845 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1846 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1847 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1848 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1849 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1850 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1851 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1852 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1853 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1854 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1855 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1856 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1857 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1858 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1859 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1860 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1861 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1862 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1863 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1864 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1865 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1866 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1867 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1868 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1869 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1870 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1871 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1872 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1873 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1874 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1875 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1876 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1877 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1878 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1879 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1880 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1881 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1882 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1883 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1884 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1885 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1886 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1887 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1888 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1889 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1890 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1891 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1892 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1893 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1894 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1895 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1896 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1897 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1898 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1899 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1900 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1901 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1902 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1903 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1904 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1905 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1906 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1907 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1908 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1909 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1910 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1911 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1912 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1913 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1914 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1915 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1916 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1917 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1918 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1919 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1920 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1921 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1922 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1923 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1924 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1925 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1926 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1927 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1928 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1929 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1930 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1931 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1932 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1933 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1934 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1935 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1936 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1937 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1938 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1939 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1940 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1941 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1942 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1943 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1944 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1945 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1946 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1947 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1948 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1949 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1950 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1951 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1952 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1953 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1954 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1955 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1956 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1957 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1958 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1959 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1960 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1961 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1962 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1963 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1964 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1965 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1966 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1967 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1968 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1969 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1970 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1971 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1972 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1973 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1974 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1975 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1976 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1977 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1978 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1979 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1980 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1981 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1982 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1983 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1984 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1985 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1986 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1987 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1988 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1989 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1990 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1991 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1992 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1993 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1994 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1995 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1996 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1997 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1998 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1999 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2000 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2001 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2002 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2003 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2004 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2005 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2006 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2007 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2008 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2009 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2010 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2011 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2012 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2013 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2014 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2015 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2016 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2017 = Var(within=Reals,bounds=(0,1),initialize=0) m.b2018 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2019 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2020 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2021 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2022 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2023 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2024 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2025 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2026 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2027 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2028 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2029 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2030 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2031 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2032 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2033 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2034 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2035 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2036 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2037 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2038 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2039 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2040 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2041 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2042 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2043 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2044 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2045 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2046 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2047 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2048 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2049 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2050 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2051 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2052 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2053 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2054 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2055 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2056 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2057 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2058 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2059 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2060 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2061 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2062 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2063 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2064 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2065 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2066 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2067 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2068 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2069 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2070 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2071 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2072 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2073 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2074 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2075 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2076 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2077 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2078 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2079 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2080 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2081 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2082 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2083 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2084 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2085 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2086 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2087 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2088 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2089 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2090 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2091 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2092 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2093 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2094 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2095 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2096 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2097 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2098 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2099 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2100 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2101 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2102 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2103 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2104 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2105 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2106 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2107 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2108 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2109 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2110 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2111 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2112 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2113 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2114 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2115 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2116 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2117 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2118 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2119 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2120 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2121 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2122 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2123 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2124 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2125 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2126 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2127 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2128 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2129 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2130 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2131 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2132 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2133 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2134 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2135 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2136 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2137 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2138 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2139 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2140 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2141 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2142 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2143 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2144 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2145 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2146 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2147 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2148 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2149 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2150 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2151 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2152 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2153 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2154 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2155 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2156 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2157 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2158 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2159 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2160 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2161 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2162 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2163 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2164 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2165 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2166 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2167 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2168 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2169 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2170 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2171 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2172 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2173 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2174 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2175 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2176 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2177 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2178 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2179 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2180 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2181 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2182 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2183 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2184 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2185 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2186 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2187 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2188 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2189 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2190 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2191 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2192 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2193 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2194 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2195 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2196 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2197 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2198 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2199 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2200 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2201 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2202 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2203 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2204 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2205 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2206 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2207 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2208 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2209 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2210 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2211 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2212 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2213 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2214 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2215 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2216 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2217 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2218 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2219 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2220 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2221 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2222 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2223 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2224 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2225 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2226 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2227 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2228 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2229 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2230 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2231 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2232 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2233 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2234 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2235 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2236 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2237 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2238 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2239 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2240 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2241 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2242 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2243 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2244 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2245 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2246 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2247 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2248 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2249 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2250 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2251 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2252 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2253 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2254 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2255 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2256 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2257 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2258 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2259 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2260 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2261 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2262 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2263 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2264 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2265 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2266 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2267 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2268 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2269 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2270 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2271 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2272 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2273 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2274 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2275 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2276 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2277 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2278 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2279 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2280 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2281 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2282 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2283 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2284 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2285 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2286 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2287 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2288 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2289 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2290 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2291 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2292 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2293 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2294 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2295 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2296 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2297 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2298 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2299 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2300 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2301 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2302 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2303 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2304 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2305 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2306 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2307 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2308 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2309 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2310 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2311 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2312 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2313 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2314 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2315 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2316 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2317 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2318 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2319 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2320 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2321 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2322 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2323 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2324 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2325 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2326 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2327 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2328 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2329 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2330 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2331 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2332 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2333 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2334 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2335 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2336 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2337 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2338 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2339 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2340 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2341 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2342 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2343 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2344 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2345 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2346 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2347 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2348 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2349 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2350 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2351 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2352 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2353 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2354 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2355 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2356 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2357 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2358 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2359 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2360 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2361 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2362 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2363 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2364 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2365 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2366 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2367 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2368 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2369 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2370 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2371 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2372 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2373 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2374 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2375 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2376 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2377 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2378 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2379 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2380 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2381 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2382 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2383 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2384 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2385 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2386 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2387 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2388 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2389 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2390 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2391 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2392 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2393 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2394 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2395 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2396 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2397 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2398 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2399 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2400 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2401 = Var(within=Binary,bounds=(0,1),initialize=0) m.x2402 = Var(within=Reals,bounds=(-29845.2,4392.21685883463),initialize=0) m.x2403 = Var(within=Reals,bounds=(-29845.2,4391.21557785575),initialize=0) m.x2404 = Var(within=Reals,bounds=(-29845.2,4390.71493736631),initialize=0) m.x2405 = Var(within=Reals,bounds=(-29845.2,4389.71365638742),initialize=0) m.x2406 = Var(within=Reals,bounds=(-29845.2,4389.21301589798),initialize=0) m.x2407 = Var(within=Reals,bounds=(-29845.2,4388.71237540854),initialize=0) m.x2408 = Var(within=Reals,bounds=(-29845.2,4389.21301589798),initialize=0) m.x2409 = Var(within=Reals,bounds=(-29845.2,5799.34156762907),initialize=0) m.x2410 = Var(within=Reals,bounds=(-29845.2,7908.14477053777),initialize=0) m.x2411 = Var(within=Reals,bounds=(-29845.2,7917.1577277086),initialize=0) m.x2412 = Var(within=Reals,bounds=(-29845.2,7931.57845918192),initialize=0) m.x2413 = Var(within=Reals,bounds=(-29845.2,7947.8017820894),initialize=0) m.x2414 = Var(within=Reals,bounds=(-29845.2,7966.72899214814),initialize=0) m.x2415 = Var(within=Reals,bounds=(-29845.2,7971.23547073355),initialize=0) m.x2416 = Var(within=Reals,bounds=(-29845.2,7957.71603497731),initialize=0) m.x2417 = Var(within=Reals,bounds=(-29845.2,7954.11085210898),initialize=0) m.x2418 = Var(within=Reals,bounds=(-29845.2,7946.90048637232),initialize=0) m.x2419 = Var(within=Reals,bounds=(-29845.2,7935.18364205025),initialize=0) m.x2420 = Var(within=Reals,bounds=(-29845.2,7927.97327631359),initialize=0) m.x2421 = Var(within=Reals,bounds=(-29845.2,5814.55218267061),initialize=0) m.x2422 = Var(within=Reals,bounds=(-29845.2,5811.90685831556),initialize=0) m.x2423 = Var(within=Reals,bounds=(-29845.2,5809.26153396051),initialize=0) m.x2424 = Var(within=Reals,bounds=(-29845.2,5807.27754069422),initialize=0) m.x2425 = Var(within=Reals,bounds=(-29845.2,4394.72006128184),initialize=0) m.x2426 = Var(within=Reals,bounds=(-29845.2,5030.22248868386),initialize=0) m.x2427 = Var(within=Reals,bounds=(-29845.2,5034.79895695254),initialize=0) m.x2428 = Var(within=Reals,bounds=(-29845.2,5039.94748375479),initialize=0) m.x2429 = Var(within=Reals,bounds=(-29845.2,5044.52395202346),initialize=0) m.x2430 = Var(within=Reals,bounds=(-29845.2,5049.67247882572),initialize=0) m.x2431 = Var(within=Reals,bounds=(-29845.2,5049.10042029214),initialize=0) m.x2432 = Var(within=Reals,bounds=(-29845.2,5049.67247882572),initialize=0) m.x2433 = Var(within=Reals,bounds=(-29845.2,5845.63474384245),initialize=0) m.x2434 = Var(within=Reals,bounds=(-29845.2,7971.23547073355),initialize=0) m.x2435 = Var(within=Reals,bounds=(-29845.2,7989.2613850752),initialize=0) m.x2436 = Var(within=Reals,bounds=(-29845.2,7994.6691593777),initialize=0) m.x2437 = Var(within=Reals,bounds=(-29845.2,8635.9428789269),initialize=0) m.x2438 = Var(within=Reals,bounds=(-29845.2,8656.36986791264),initialize=0) m.x2439 = Var(within=Reals,bounds=(-29845.2,9307.59497773271),initialize=0) m.x2440 = Var(within=Reals,bounds=(-29845.2,8666.09700552489),initialize=0) m.x2441 = Var(within=Reals,bounds=(-29845.2,8652.47901286774),initialize=0) m.x2442 = Var(within=Reals,bounds=(-29845.2,8009.9911865681),initialize=0) m.x2443 = Var(within=Reals,bounds=(-29845.2,7989.2613850752),initialize=0) m.x2444 = Var(within=Reals,bounds=(-29845.2,7973.03806216772),initialize=0) m.x2445 = Var(within=Reals,bounds=(-29845.2,5847.61873710874),initialize=0) m.x2446 = Var(within=Reals,bounds=(-29845.2,5838.36010186606),initialize=0) m.x2447 = Var(within=Reals,bounds=(-29845.2,5842.32808839864),initialize=0) m.x2448 = Var(within=Reals,bounds=(-29845.2,5840.34409513235),initialize=0) m.x2449 = Var(within=Reals,bounds=(-29845.2,5021.6416106801),initialize=0) m.obj = Objective(expr= - m.x2402 - m.x2403 - m.x2404 - m.x2405 - m.x2406 - m.x2407 - m.x2408 - m.x2409 - m.x2410 - m.x2411 - m.x2412 - m.x2413 - m.x2414 - m.x2415 - m.x2416 - m.x2417 - m.x2418 - m.x2419 - m.x2420 - m.x2421 - m.x2422 - m.x2423 - m.x2424 - m.x2425 - m.x2426 - m.x2427 - m.x2428 - m.x2429 - m.x2430 - m.x2431 - m.x2432 - m.x2433 - m.x2434 - m.x2435 - m.x2436 - m.x2437 - m.x2438 - m.x2439 - m.x2440 - m.x2441 - m.x2442 - m.x2443 - m.x2444 - m.x2445 - m.x2446 - m.x2447 - m.x2448 - m.x2449, sense=minimize) m.c2 = Constraint(expr= 65*m.x2 + 65*m.x50 + 48*m.x98 + 48*m.x146 + 45*m.x194 + 45*m.x242 + 45*m.x290 + 45*m.x338 - 70.1*m.x386 + 87.7*m.x434 + 660*m.x1634 + 660*m.x1682 + 660*m.x1730 + 660*m.x1778 + 3470*m.x1826 + 3470*m.x1874 + 731.6*m.x1922 + 731.6*m.x1970 + 30*m.b2018 + 30*m.b2066 + 30*m.b2114 + 30*m.b2162 + 40*m.b2210 + 40*m.b2258 + 10*m.b2306 + 10*m.b2354 + m.x2402 == 0) m.c3 = Constraint(expr= 65*m.x3 + 65*m.x51 + 48*m.x99 + 48*m.x147 + 45*m.x195 + 45*m.x243 + 45*m.x291 + 45*m.x339 - 70.1*m.x387 + 87.7*m.x435 + 660*m.x1635 + 660*m.x1683 + 660*m.x1731 + 660*m.x1779 + 3470*m.x1827 + 3470*m.x1875 + 731.6*m.x1923 + 731.6*m.x1971 + 30*m.b2019 + 30*m.b2067 + 30*m.b2115 + 30*m.b2163 + 40*m.b2211 + 40*m.b2259 + 10*m.b2307 + 10*m.b2355 + m.x2403 == 0) m.c4 = Constraint(expr= 65*m.x4 + 65*m.x52 + 48*m.x100 + 48*m.x148 + 45*m.x196 + 45*m.x244 + 45*m.x292 + 45*m.x340 - 70.1*m.x388 + 87.7*m.x436 + 660*m.x1636 + 660*m.x1684 + 660*m.x1732 + 660*m.x1780 + 3470*m.x1828 + 3470*m.x1876 + 731.6*m.x1924 + 731.6*m.x1972 + 30*m.b2020 + 30*m.b2068 + 30*m.b2116 + 30*m.b2164 + 40*m.b2212 + 40*m.b2260 + 10*m.b2308 + 10*m.b2356 + m.x2404 == 0) m.c5 = Constraint(expr= 65*m.x5 + 65*m.x53 + 48*m.x101 + 48*m.x149 + 45*m.x197 + 45*m.x245 + 45*m.x293 + 45*m.x341 - 70.1*m.x389 + 87.7*m.x437 + 660*m.x1637 + 660*m.x1685 + 660*m.x1733 + 660*m.x1781 + 3470*m.x1829 + 3470*m.x1877 + 731.6*m.x1925 + 731.6*m.x1973 + 30*m.b2021 + 30*m.b2069 + 30*m.b2117 + 30*m.b2165 + 40*m.b2213 + 40*m.b2261 + 10*m.b2309 + 10*m.b2357 + m.x2405 == 0) m.c6 = Constraint(expr= 65*m.x6 + 65*m.x54 + 48*m.x102 + 48*m.x150 + 45*m.x198 + 45*m.x246 + 45*m.x294 + 45*m.x342 - 70.1*m.x390 + 87.7*m.x438 + 660*m.x1638 + 660*m.x1686 + 660*m.x1734 + 660*m.x1782 + 3470*m.x1830 + 3470*m.x1878 + 731.6*m.x1926 + 731.6*m.x1974 + 30*m.b2022 + 30*m.b2070 + 30*m.b2118 + 30*m.b2166 + 40*m.b2214 + 40*m.b2262 + 10*m.b2310 + 10*m.b2358 + m.x2406 == 0) m.c7 = Constraint(expr= 65*m.x7 + 65*m.x55 + 48*m.x103 + 48*m.x151 + 45*m.x199 + 45*m.x247 + 45*m.x295 + 45*m.x343 - 70.1*m.x391 + 87.7*m.x439 + 660*m.x1639 + 660*m.x1687 + 660*m.x1735 + 660*m.x1783 + 3470*m.x1831 + 3470*m.x1879 + 731.6*m.x1927 + 731.6*m.x1975 + 30*m.b2023 + 30*m.b2071 + 30*m.b2119 + 30*m.b2167 + 40*m.b2215 + 40*m.b2263 + 10*m.b2311 + 10*m.b2359 + m.x2407 == 0) m.c8 = Constraint(expr= 65*m.x8 + 65*m.x56 + 48*m.x104 + 48*m.x152 + 45*m.x200 + 45*m.x248 + 45*m.x296 + 45*m.x344 - 70.1*m.x392 + 87.7*m.x440 + 660*m.x1640 + 660*m.x1688 + 660*m.x1736 + 660*m.x1784 + 3470*m.x1832 + 3470*m.x1880 + 731.6*m.x1928 + 731.6*m.x1976 + 30*m.b2024 + 30*m.b2072 + 30*m.b2120 + 30*m.b2168 + 40*m.b2216 + 40*m.b2264 + 10*m.b2312 + 10*m.b2360 + m.x2408 == 0) m.c9 = Constraint(expr= 65*m.x9 + 65*m.x57 + 48*m.x105 + 48*m.x153 + 45*m.x201 + 45*m.x249 + 45*m.x297 + 45*m.x345 - 92.6*m.x393 + 115.7*m.x441 + 660*m.x1641 + 660*m.x1689 + 660*m.x1737 + 660*m.x1785 + 3470*m.x1833 + 3470*m.x1881 + 731.6*m.x1929 + 731.6*m.x1977 + 30*m.b2025 + 30*m.b2073 + 30*m.b2121 + 30*m.b2169 + 40*m.b2217 + 40*m.b2265 + 10*m.b2313 + 10*m.b2361 + m.x2409 == 0) m.c10 = Constraint(expr= 65*m.x10 + 65*m.x58 + 48*m.x106 + 48*m.x154 + 45*m.x202 + 45*m.x250 + 45*m.x298 + 45*m.x346 - 126.2*m.x394 + 157.7*m.x442 + 660*m.x1642 + 660*m.x1690 + 660*m.x1738 + 660*m.x1786 + 3470*m.x1834 + 3470*m.x1882 + 731.6*m.x1930 + 731.6*m.x1978 + 30*m.b2026 + 30*m.b2074 + 30*m.b2122 + 30*m.b2170 + 40*m.b2218 + 40*m.b2266 + 10*m.b2314 + 10*m.b2362 + m.x2410 == 0) m.c11 = Constraint(expr= 65*m.x11 + 65*m.x59 + 48*m.x107 + 48*m.x155 + 45*m.x203 + 45*m.x251 + 45*m.x299 + 45*m.x347 - 126.2*m.x395 + 157.7*m.x443 + 660*m.x1643 + 660*m.x1691 + 660*m.x1739 + 660*m.x1787 + 3470*m.x1835 + 3470*m.x1883 + 731.6*m.x1931 + 731.6*m.x1979 + 30*m.b2027 + 30*m.b2075 + 30*m.b2123 + 30*m.b2171 + 40*m.b2219 + 40*m.b2267 + 10*m.b2315 + 10*m.b2363 + m.x2411 == 0) m.c12 = Constraint(expr= 65*m.x12 + 65*m.x60 + 48*m.x108 + 48*m.x156 + 45*m.x204 + 45*m.x252 + 45*m.x300 + 45*m.x348 - 126.2*m.x396 + 157.7*m.x444 + 660*m.x1644 + 660*m.x1692 + 660*m.x1740 + 660*m.x1788 + 3470*m.x1836 + 3470*m.x1884 + 731.6*m.x1932 + 731.6*m.x1980 + 30*m.b2028 + 30*m.b2076 + 30*m.b2124 + 30*m.b2172 + 40*m.b2220 + 40*m.b2268 + 10*m.b2316 + 10*m.b2364 + m.x2412 == 0) m.c13 = Constraint(expr= 65*m.x13 + 65*m.x61 + 48*m.x109 + 48*m.x157 + 45*m.x205 + 45*m.x253 + 45*m.x301 + 45*m.x349 - 126.2*m.x397 + 157.7*m.x445 + 660*m.x1645 + 660*m.x1693 + 660*m.x1741 + 660*m.x1789 + 3470*m.x1837 + 3470*m.x1885 + 731.6*m.x1933 + 731.6*m.x1981 + 30*m.b2029 + 30*m.b2077 + 30*m.b2125 + 30*m.b2173 + 40*m.b2221 + 40*m.b2269 + 10*m.b2317 + 10*m.b2365 + m.x2413 == 0) m.c14 = Constraint(expr= 65*m.x14 + 65*m.x62 + 48*m.x110 + 48*m.x158 + 45*m.x206 + 45*m.x254 + 45*m.x302 + 45*m.x350 - 126.2*m.x398 + 157.7*m.x446 + 660*m.x1646 + 660*m.x1694 + 660*m.x1742 + 660*m.x1790 + 3470*m.x1838 + 3470*m.x1886 + 731.6*m.x1934 + 731.6*m.x1982 + 30*m.b2030 + 30*m.b2078 + 30*m.b2126 + 30*m.b2174 + 40*m.b2222 + 40*m.b2270 + 10*m.b2318 + 10*m.b2366 + m.x2414 == 0) m.c15 = Constraint(expr= 65*m.x15 + 65*m.x63 + 48*m.x111 + 48*m.x159 + 45*m.x207 + 45*m.x255 + 45*m.x303 + 45*m.x351 - 126.2*m.x399 + 157.7*m.x447 + 660*m.x1647 + 660*m.x1695 + 660*m.x1743 + 660*m.x1791 + 3470*m.x1839 + 3470*m.x1887 + 731.6*m.x1935 + 731.6*m.x1983 + 30*m.b2031 + 30*m.b2079 + 30*m.b2127 + 30*m.b2175 + 40*m.b2223 + 40*m.b2271 + 10*m.b2319 + 10*m.b2367 + m.x2415 == 0) m.c16 = Constraint(expr= 65*m.x16 + 65*m.x64 + 48*m.x112 + 48*m.x160 + 45*m.x208 + 45*m.x256 + 45*m.x304 + 45*m.x352 - 126.2*m.x400 + 157.7*m.x448 + 660*m.x1648 + 660*m.x1696 + 660*m.x1744 + 660*m.x1792 + 3470*m.x1840 + 3470*m.x1888 + 731.6*m.x1936 + 731.6*m.x1984 + 30*m.b2032 + 30*m.b2080 + 30*m.b2128 + 30*m.b2176 + 40*m.b2224 + 40*m.b2272 + 10*m.b2320 + 10*m.b2368 + m.x2416 == 0) m.c17 = Constraint(expr= 65*m.x17 + 65*m.x65 + 48*m.x113 + 48*m.x161 + 45*m.x209 + 45*m.x257 + 45*m.x305 + 45*m.x353 - 126.2*m.x401 + 157.7*m.x449 + 660*m.x1649 + 660*m.x1697 + 660*m.x1745 + 660*m.x1793 + 3470*m.x1841 + 3470*m.x1889 + 731.6*m.x1937 + 731.6*m.x1985 + 30*m.b2033 + 30*m.b2081 + 30*m.b2129 + 30*m.b2177 + 40*m.b2225 + 40*m.b2273 + 10*m.b2321 + 10*m.b2369 + m.x2417 == 0) m.c18 = Constraint(expr= 65*m.x18 + 65*m.x66 + 48*m.x114 + 48*m.x162 + 45*m.x210 + 45*m.x258 + 45*m.x306 + 45*m.x354 - 126.2*m.x402 + 157.7*m.x450 + 660*m.x1650 + 660*m.x1698 + 660*m.x1746 + 660*m.x1794 + 3470*m.x1842 + 3470*m.x1890 + 731.6*m.x1938 + 731.6*m.x1986 + 30*m.b2034 + 30*m.b2082 + 30*m.b2130 + 30*m.b2178 + 40*m.b2226 + 40*m.b2274 + 10*m.b2322 + 10*m.b2370 + m.x2418 == 0) m.c19 = Constraint(expr= 65*m.x19 + 65*m.x67 + 48*m.x115 + 48*m.x163 + 45*m.x211 + 45*m.x259 + 45*m.x307 + 45*m.x355 - 126.2*m.x403 + 157.7*m.x451 + 660*m.x1651 + 660*m.x1699 + 660*m.x1747 + 660*m.x1795 + 3470*m.x1843 + 3470*m.x1891 + 731.6*m.x1939 + 731.6*m.x1987 + 30*m.b2035 + 30*m.b2083 + 30*m.b2131 + 30*m.b2179 + 40*m.b2227 + 40*m.b2275 + 10*m.b2323 + 10*m.b2371 + m.x2419 == 0) m.c20 = Constraint(expr= 65*m.x20 + 65*m.x68 + 48*m.x116 + 48*m.x164 + 45*m.x212 + 45*m.x260 + 45*m.x308 + 45*m.x356 - 126.2*m.x404 + 157.7*m.x452 + 660*m.x1652 + 660*m.x1700 + 660*m.x1748 + 660*m.x1796 + 3470*m.x1844 + 3470*m.x1892 + 731.6*m.x1940 + 731.6*m.x1988 + 30*m.b2036 + 30*m.b2084 + 30*m.b2132 + 30*m.b2180 + 40*m.b2228 + 40*m.b2276 + 10*m.b2324 + 10*m.b2372 + m.x2420 == 0) m.c21 = Constraint(expr= 65*m.x21 + 65*m.x69 + 48*m.x117 + 48*m.x165 + 45*m.x213 + 45*m.x261 + 45*m.x309 + 45*m.x357 - 92.6*m.x405 + 115.7*m.x453 + 660*m.x1653 + 660*m.x1701 + 660*m.x1749 + 660*m.x1797 + 3470*m.x1845 + 3470*m.x1893 + 731.6*m.x1941 + 731.6*m.x1989 + 30*m.b2037 + 30*m.b2085 + 30*m.b2133 + 30*m.b2181 + 40*m.b2229 + 40*m.b2277 + 10*m.b2325 + 10*m.b2373 + m.x2421 == 0) m.c22 = Constraint(expr= 65*m.x22 + 65*m.x70 + 48*m.x118 + 48*m.x166 + 45*m.x214 + 45*m.x262 + 45*m.x310 + 45*m.x358 - 92.6*m.x406 + 115.7*m.x454 + 660*m.x1654 + 660*m.x1702 + 660*m.x1750 + 660*m.x1798 + 3470*m.x1846 + 3470*m.x1894 + 731.6*m.x1942 + 731.6*m.x1990 + 30*m.b2038 + 30*m.b2086 + 30*m.b2134 + 30*m.b2182 + 40*m.b2230 + 40*m.b2278 + 10*m.b2326 + 10*m.b2374 + m.x2422 == 0) m.c23 = Constraint(expr= 65*m.x23 + 65*m.x71 + 48*m.x119 + 48*m.x167 + 45*m.x215 + 45*m.x263 + 45*m.x311 + 45*m.x359 - 92.6*m.x407 + 115.7*m.x455 + 660*m.x1655 + 660*m.x1703 + 660*m.x1751 + 660*m.x1799 + 3470*m.x1847 + 3470*m.x1895 + 731.6*m.x1943 + 731.6*m.x1991 + 30*m.b2039 + 30*m.b2087 + 30*m.b2135 + 30*m.b2183 + 40*m.b2231 + 40*m.b2279 + 10*m.b2327 + 10*m.b2375 + m.x2423 == 0) m.c24 = Constraint(expr= 65*m.x24 + 65*m.x72 + 48*m.x120 + 48*m.x168 + 45*m.x216 + 45*m.x264 + 45*m.x312 + 45*m.x360 - 92.6*m.x408 + 115.7*m.x456 + 660*m.x1656 + 660*m.x1704 + 660*m.x1752 + 660*m.x1800 + 3470*m.x1848 + 3470*m.x1896 + 731.6*m.x1944 + 731.6*m.x1992 + 30*m.b2040 + 30*m.b2088 + 30*m.b2136 + 30*m.b2184 + 40*m.b2232 + 40*m.b2280 + 10*m.b2328 + 10*m.b2376 + m.x2424 == 0) m.c25 = Constraint(expr= 65*m.x25 + 65*m.x73 + 48*m.x121 + 48*m.x169 + 45*m.x217 + 45*m.x265 + 45*m.x313 + 45*m.x361 - 70.1*m.x409 + 87.7*m.x457 + 660*m.x1657 + 660*m.x1705 + 660*m.x1753 + 660*m.x1801 + 3470*m.x1849 + 3470*m.x1897 + 731.6*m.x1945 + 731.6*m.x1993 + 30*m.b2041 + 30*m.b2089 + 30*m.b2137 + 30*m.b2185 + 40*m.b2233 + 40*m.b2281 + 10*m.b2329 + 10*m.b2377 + m.x2425 == 0) m.c26 = Constraint(expr= 65*m.x26 + 65*m.x74 + 48*m.x122 + 48*m.x170 + 45*m.x218 + 45*m.x266 + 45*m.x314 + 45*m.x362 - 80.1*m.x410 + 97.7*m.x458 + 660*m.x1658 + 660*m.x1706 + 660*m.x1754 + 660*m.x1802 + 3470*m.x1850 + 3470*m.x1898 + 731.6*m.x1946 + 731.6*m.x1994 + 30*m.b2042 + 30*m.b2090 + 30*m.b2138 + 30*m.b2186 + 40*m.b2234 + 40*m.b2282 + 10*m.b2330 + 10*m.b2378 + m.x2426 == 0) m.c27 = Constraint(expr= 65*m.x27 + 65*m.x75 + 48*m.x123 + 48*m.x171 + 45*m.x219 + 45*m.x267 + 45*m.x315 + 45*m.x363 - 80.1*m.x411 + 97.7*m.x459 + 660*m.x1659 + 660*m.x1707 + 660*m.x1755 + 660*m.x1803 + 3470*m.x1851 + 3470*m.x1899 + 731.6*m.x1947 + 731.6*m.x1995 + 30*m.b2043 + 30*m.b2091 + 30*m.b2139 + 30*m.b2187 + 40*m.b2235 + 40*m.b2283 + 10*m.b2331 + 10*m.b2379 + m.x2427 == 0) m.c28 = Constraint(expr= 65*m.x28 + 65*m.x76 + 48*m.x124 + 48*m.x172 + 45*m.x220 + 45*m.x268 + 45*m.x316 + 45*m.x364 - 80.1*m.x412 + 97.7*m.x460 + 660*m.x1660 + 660*m.x1708 + 660*m.x1756 + 660*m.x1804 + 3470*m.x1852 + 3470*m.x1900 + 731.6*m.x1948 + 731.6*m.x1996 + 30*m.b2044 + 30*m.b2092 + 30*m.b2140 + 30*m.b2188 + 40*m.b2236 + 40*m.b2284 + 10*m.b2332 + 10*m.b2380 + m.x2428 == 0) m.c29 = Constraint(expr= 65*m.x29 + 65*m.x77 + 48*m.x125 + 48*m.x173 + 45*m.x221 + 45*m.x269 + 45*m.x317 + 45*m.x365 - 80.1*m.x413 + 97.7*m.x461 + 660*m.x1661 + 660*m.x1709 + 660*m.x1757 + 660*m.x1805 + 3470*m.x1853 + 3470*m.x1901 + 731.6*m.x1949 + 731.6*m.x1997 + 30*m.b2045 + 30*m.b2093 + 30*m.b2141 + 30*m.b2189 + 40*m.b2237 + 40*m.b2285 + 10*m.b2333 + 10*m.b2381 + m.x2429 == 0) m.c30 = Constraint(expr= 65*m.x30 + 65*m.x78 + 48*m.x126 + 48*m.x174 + 45*m.x222 + 45*m.x270 + 45*m.x318 + 45*m.x366 - 80.1*m.x414 + 97.7*m.x462 + 660*m.x1662 + 660*m.x1710 + 660*m.x1758 + 660*m.x1806 + 3470*m.x1854 + 3470*m.x1902 + 731.6*m.x1950 + 731.6*m.x1998 + 30*m.b2046 + 30*m.b2094 + 30*m.b2142 + 30*m.b2190 + 40*m.b2238 + 40*m.b2286 + 10*m.b2334 + 10*m.b2382 + m.x2430 == 0) m.c31 = Constraint(expr= 65*m.x31 + 65*m.x79 + 48*m.x127 + 48*m.x175 + 45*m.x223 + 45*m.x271 + 45*m.x319 + 45*m.x367 - 80.1*m.x415 + 97.7*m.x463 + 660*m.x1663 + 660*m.x1711 + 660*m.x1759 + 660*m.x1807 + 3470*m.x1855 + 3470*m.x1903 + 731.6*m.x1951 + 731.6*m.x1999 + 30*m.b2047 + 30*m.b2095 + 30*m.b2143 + 30*m.b2191 + 40*m.b2239 + 40*m.b2287 + 10*m.b2335 + 10*m.b2383 + m.x2431 == 0) m.c32 = Constraint(expr= 65*m.x32 + 65*m.x80 + 48*m.x128 + 48*m.x176 + 45*m.x224 + 45*m.x272 + 45*m.x320 + 45*m.x368 - 80.1*m.x416 + 97.7*m.x464 + 660*m.x1664 + 660*m.x1712 + 660*m.x1760 + 660*m.x1808 + 3470*m.x1856 + 3470*m.x1904 + 731.6*m.x1952 + 731.6*m.x2000 + 30*m.b2048 + 30*m.b2096 + 30*m.b2144 + 30*m.b2192 + 40*m.b2240 + 40*m.b2288 + 10*m.b2336 + 10*m.b2384 + m.x2432 == 0) m.c33 = Constraint(expr= 65*m.x33 + 65*m.x81 + 48*m.x129 + 48*m.x177 + 45*m.x225 + 45*m.x273 + 45*m.x321 + 45*m.x369 - 92.6*m.x417 + 195.7*m.x465 + 660*m.x1665 + 660*m.x1713 + 660*m.x1761 + 660*m.x1809 + 3470*m.x1857 + 3470*m.x1905 + 731.6*m.x1953 + 731.6*m.x2001 + 30*m.b2049 + 30*m.b2097 + 30*m.b2145 + 30*m.b2193 + 40*m.b2241 + 40*m.b2289 + 10*m.b2337 + 10*m.b2385 + m.x2433 == 0) m.c34 = Constraint(expr= 65*m.x34 + 65*m.x82 + 48*m.x130 + 48*m.x178 + 45*m.x226 + 45*m.x274 + 45*m.x322 + 45*m.x370 - 126.2*m.x418 + 157.7*m.x466 + 660*m.x1666 + 660*m.x1714 + 660*m.x1762 + 660*m.x1810 + 3470*m.x1858 + 3470*m.x1906 + 731.6*m.x1954 + 731.6*m.x2002 + 30*m.b2050 + 30*m.b2098 + 30*m.b2146 + 30*m.b2194 + 40*m.b2242 + 40*m.b2290 + 10*m.b2338 + 10*m.b2386 + m.x2434 == 0) m.c35 = Constraint(expr= 65*m.x35 + 65*m.x83 + 48*m.x131 + 48*m.x179 + 45*m.x227 + 45*m.x275 + 45*m.x323 + 45*m.x371 - 126.2*m.x419 + 157.7*m.x467 + 660*m.x1667 + 660*m.x1715 + 660*m.x1763 + 660*m.x1811 + 3470*m.x1859 + 3470*m.x1907 + 731.6*m.x1955 + 731.6*m.x2003 + 30*m.b2051 + 30*m.b2099 + 30*m.b2147 + 30*m.b2195 + 40*m.b2243 + 40*m.b2291 + 10*m.b2339 + 10*m.b2387 + m.x2435 == 0) m.c36 = Constraint(expr= 65*m.x36 + 65*m.x84 + 48*m.x132 + 48*m.x180 + 45*m.x228 + 45*m.x276 + 45*m.x324 + 45*m.x372 - 126.2*m.x420 + 157.7*m.x468 + 660*m.x1668 + 660*m.x1716 + 660*m.x1764 + 660*m.x1812 + 3470*m.x1860 + 3470*m.x1908 + 731.6*m.x1956 + 731.6*m.x2004 + 30*m.b2052 + 30*m.b2100 + 30*m.b2148 + 30*m.b2196 + 40*m.b2244 + 40*m.b2292 + 10*m.b2340 + 10*m.b2388 + m.x2436 == 0) m.c37 = Constraint(expr= 65*m.x37 + 65*m.x85 + 48*m.x133 + 48*m.x181 + 45*m.x229 + 45*m.x277 + 45*m.x325 + 45*m.x373 - 136.2*m.x421 + 167.7*m.x469 + 660*m.x1669 + 660*m.x1717 + 660*m.x1765 + 660*m.x1813 + 3470*m.x1861 + 3470*m.x1909 + 731.6*m.x1957 + 731.6*m.x2005 + 30*m.b2053 + 30*m.b2101 + 30*m.b2149 + 30*m.b2197 + 40*m.b2245 + 40*m.b2293 + 10*m.b2341 + 10*m.b2389 + m.x2437 == 0) m.c38 = Constraint(expr= 65*m.x38 + 65*m.x86 + 48*m.x134 + 48*m.x182 + 45*m.x230 + 45*m.x278 + 45*m.x326 + 45*m.x374 - 136.2*m.x422 + 167.7*m.x470 + 660*m.x1670 + 660*m.x1718 + 660*m.x1766 + 660*m.x1814 + 3470*m.x1862 + 3470*m.x1910 + 731.6*m.x1958 + 731.6*m.x2006 + 30*m.b2054 + 30*m.b2102 + 30*m.b2150 + 30*m.b2198 + 40*m.b2246 + 40*m.b2294 + 10*m.b2342 + 10*m.b2390 + m.x2438 == 0) m.c39 = Constraint(expr= 65*m.x39 + 65*m.x87 + 48*m.x135 + 48*m.x183 + 45*m.x231 + 45*m.x279 + 45*m.x327 + 45*m.x375 - 146.2*m.x423 + 167.7*m.x471 + 660*m.x1671 + 660*m.x1719 + 660*m.x1767 + 660*m.x1815 + 3470*m.x1863 + 3470*m.x1911 + 731.6*m.x1959 + 731.6*m.x2007 + 30*m.b2055 + 30*m.b2103 + 30*m.b2151 + 30*m.b2199 + 40*m.b2247 + 40*m.b2295 + 10*m.b2343 + 10*m.b2391 + m.x2439 == 0) m.c40 = Constraint(expr= 65*m.x40 + 65*m.x88 + 48*m.x136 + 48*m.x184 + 45*m.x232 + 45*m.x280 + 45*m.x328 + 45*m.x376 - 136.2*m.x424 + 157.7*m.x472 + 660*m.x1672 + 660*m.x1720 + 660*m.x1768 + 660*m.x1816 + 3470*m.x1864 + 3470*m.x1912 + 731.6*m.x1960 + 731.6*m.x2008 + 30*m.b2056 + 30*m.b2104 + 30*m.b2152 + 30*m.b2200 + 40*m.b2248 + 40*m.b2296 + 10*m.b2344 + 10*m.b2392 + m.x2440 == 0) m.c41 = Constraint(expr= 65*m.x41 + 65*m.x89 + 48*m.x137 + 48*m.x185 + 45*m.x233 + 45*m.x281 + 45*m.x329 + 45*m.x377 - 136.2*m.x425 + 157.7*m.x473 + 660*m.x1673 + 660*m.x1721 + 660*m.x1769 + 660*m.x1817 + 3470*m.x1865 + 3470*m.x1913 + 731.6*m.x1961 + 731.6*m.x2009 + 30*m.b2057 + 30*m.b2105 + 30*m.b2153 + 30*m.b2201 + 40*m.b2249 + 40*m.b2297 + 10*m.b2345 + 10*m.b2393 + m.x2441 == 0) m.c42 = Constraint(expr= 65*m.x42 + 65*m.x90 + 48*m.x138 + 48*m.x186 + 45*m.x234 + 45*m.x282 + 45*m.x330 + 45*m.x378 - 126.2*m.x426 + 157.7*m.x474 + 660*m.x1674 + 660*m.x1722 + 660*m.x1770 + 660*m.x1818 + 3470*m.x1866 + 3470*m.x1914 + 731.6*m.x1962 + 731.6*m.x2010 + 30*m.b2058 + 30*m.b2106 + 30*m.b2154 + 30*m.b2202 + 40*m.b2250 + 40*m.b2298 + 10*m.b2346 + 10*m.b2394 + m.x2442 == 0) m.c43 = Constraint(expr= 65*m.x43 + 65*m.x91 + 48*m.x139 + 48*m.x187 + 45*m.x235 + 45*m.x283 + 45*m.x331 + 45*m.x379 - 126.2*m.x427 + 157.7*m.x475 + 660*m.x1675 + 660*m.x1723 + 660*m.x1771 + 660*m.x1819 + 3470*m.x1867 + 3470*m.x1915 + 731.6*m.x1963 + 731.6*m.x2011 + 30*m.b2059 + 30*m.b2107 + 30*m.b2155 + 30*m.b2203 + 40*m.b2251 + 40*m.b2299 + 10*m.b2347 + 10*m.b2395 + m.x2443 == 0) m.c44 = Constraint(expr= 65*m.x44 + 65*m.x92 + 48*m.x140 + 48*m.x188 + 45*m.x236 + 45*m.x284 + 45*m.x332 + 45*m.x380 - 126.2*m.x428 + 157.7*m.x476 + 660*m.x1676 + 660*m.x1724 + 660*m.x1772 + 660*m.x1820 + 3470*m.x1868 + 3470*m.x1916 + 731.6*m.x1964 + 731.6*m.x2012 + 30*m.b2060 + 30*m.b2108 + 30*m.b2156 + 30*m.b2204 + 40*m.b2252 + 40*m.b2300 + 10*m.b2348 + 10*m.b2396 + m.x2444 == 0) m.c45 = Constraint(expr= 65*m.x45 + 65*m.x93 + 48*m.x141 + 48*m.x189 + 45*m.x237 + 45*m.x285 + 45*m.x333 + 45*m.x381 - 92.6*m.x429 + 115.7*m.x477 + 660*m.x1677 + 660*m.x1725 + 660*m.x1773 + 660*m.x1821 + 3470*m.x1869 + 3470*m.x1917 + 731.6*m.x1965 + 731.6*m.x2013 + 30*m.b2061 + 30*m.b2109 + 30*m.b2157 + 30*m.b2205 + 40*m.b2253 + 40*m.b2301 + 10*m.b2349 + 10*m.b2397 + m.x2445 == 0) m.c46 = Constraint(expr= 65*m.x46 + 65*m.x94 + 48*m.x142 + 48*m.x190 + 45*m.x238 + 45*m.x286 + 45*m.x334 + 45*m.x382 - 92.6*m.x430 + 115.7*m.x478 + 660*m.x1678 + 660*m.x1726 + 660*m.x1774 + 660*m.x1822 + 3470*m.x1870 + 3470*m.x1918 + 731.6*m.x1966 + 731.6*m.x2014 + 30*m.b2062 + 30*m.b2110 + 30*m.b2158 + 30*m.b2206 + 40*m.b2254 + 40*m.b2302 + 10*m.b2350 + 10*m.b2398 + m.x2446 == 0) m.c47 = Constraint(expr= 65*m.x47 + 65*m.x95 + 48*m.x143 + 48*m.x191 + 45*m.x239 + 45*m.x287 + 45*m.x335 + 45*m.x383 - 92.6*m.x431 + 115.7*m.x479 + 660*m.x1679 + 660*m.x1727 + 660*m.x1775 + 660*m.x1823 + 3470*m.x1871 + 3470*m.x1919 + 731.6*m.x1967 + 731.6*m.x2015 + 30*m.b2063 + 30*m.b2111 + 30*m.b2159 + 30*m.b2207 + 40*m.b2255 + 40*m.b2303 + 10*m.b2351 + 10*m.b2399 + m.x2447 == 0) m.c48 = Constraint(expr= 65*m.x48 + 65*m.x96 + 48*m.x144 + 48*m.x192 + 45*m.x240 + 45*m.x288 + 45*m.x336 + 45*m.x384 - 92.6*m.x432 + 115.7*m.x480 + 660*m.x1680 + 660*m.x1728 + 660*m.x1776 + 660*m.x1824 + 3470*m.x1872 + 3470*m.x1920 + 731.6*m.x1968 + 731.6*m.x2016 + 30*m.b2064 + 30*m.b2112 + 30*m.b2160 + 30*m.b2208 + 40*m.b2256 + 40*m.b2304 + 10*m.b2352 + 10*m.b2400 + m.x2448 == 0) m.c49 = Constraint(expr= 65*m.x49 + 65*m.x97 + 48*m.x145 + 48*m.x193 + 45*m.x241 + 45*m.x289 + 45*m.x337 + 45*m.x385 - 80.1*m.x433 + 87.7*m.x481 + 660*m.x1681 + 660*m.x1729 + 660*m.x1777 + 660*m.x1825 + 3470*m.x1873 + 3470*m.x1921 + 731.6*m.x1969 + 731.6*m.x2017 + 30*m.b2065 + 30*m.b2113 + 30*m.b2161 + 30*m.b2209 + 40*m.b2257 + 40*m.b2305 + 10*m.b2353 + 10*m.b2401 + m.x2449 == 0) m.c50 = Constraint(expr= - m.x1634 + m.b2018 - m.b2065 <= 0) m.c51 = Constraint(expr= - m.x1658 - m.b2041 + m.b2042 <= 0) m.c52 = Constraint(expr= - m.x1682 + m.b2066 - m.b2113 <= 0) m.c53 = Constraint(expr= - m.x1706 - m.b2089 + m.b2090 <= 0) m.c54 = Constraint(expr= - m.x1730 + m.b2114 - m.b2161 <= 0) m.c55 = Constraint(expr= - m.x1754 - m.b2137 + m.b2138 <= 0) m.c56 = Constraint(expr= - m.x1778 + m.b2162 - m.b2209 <= 0) m.c57 = Constraint(expr= - m.x1802 - m.b2185 + m.b2186 <= 0) m.c58 = Constraint(expr= - m.x1826 + m.b2210 - m.b2257 <= 0) m.c59 = Constraint(expr= - m.x1850 - m.b2233 + m.b2234 <= 0) m.c60 = Constraint(expr= - m.x1874 + m.b2258 - m.b2305 <= 0) m.c61 = Constraint(expr= - m.x1898 - m.b2281 + m.b2282 <= 0) m.c62 = Constraint(expr= - m.x1922 + m.b2306 - m.b2353 <= 0) m.c63 = Constraint(expr= - m.x1946 - m.b2329 + m.b2330 <= 0) m.c64 = Constraint(expr= - m.x1970 + m.b2354 - m.b2401 <= 0) m.c65 = Constraint(expr= - m.x1994 - m.b2377 + m.b2378 <= 0) m.c66 = Constraint(expr= - m.x1635 - m.b2018 + m.b2019 <= 0) m.c67 = Constraint(expr= - m.x1636 - m.b2019 + m.b2020 <= 0) m.c68 = Constraint(expr= - m.x1637 - m.b2020 + m.b2021 <= 0) m.c69 = Constraint(expr= - m.x1638 - m.b2021 + m.b2022 <= 0) m.c70 = Constraint(expr= - m.x1639 - m.b2022 + m.b2023 <= 0) m.c71 = Constraint(expr= - m.x1640 - m.b2023 + m.b2024 <= 0) m.c72 = Constraint(expr= - m.x1641 - m.b2024 + m.b2025 <= 0) m.c73 = Constraint(expr= - m.x1642 - m.b2025 + m.b2026 <= 0) m.c74 = Constraint(expr= - m.x1643 - m.b2026 + m.b2027 <= 0) m.c75 = Constraint(expr= - m.x1644 - m.b2027 + m.b2028 <= 0) m.c76 = Constraint(expr= - m.x1645 - m.b2028 + m.b2029 <= 0) m.c77 = Constraint(expr= - m.x1646 - m.b2029 + m.b2030 <= 0) m.c78 = Constraint(expr= - m.x1647 - m.b2030 + m.b2031 <= 0) m.c79 = Constraint(expr= - m.x1648 - m.b2031 + m.b2032 <= 0) m.c80 = Constraint(expr= - m.x1649 - m.b2032 + m.b2033 <= 0) m.c81 = Constraint(expr= - m.x1650 - m.b2033 + m.b2034 <= 0) m.c82 = Constraint(expr= - m.x1651 - m.b2034 + m.b2035 <= 0) m.c83 = Constraint(expr= - m.x1652 - m.b2035 + m.b2036 <= 0) m.c84 = Constraint(expr= - m.x1653 - m.b2036 + m.b2037 <= 0) m.c85 = Constraint(expr= - m.x1654 - m.b2037 + m.b2038 <= 0) m.c86 = Constraint(expr= - m.x1655 - m.b2038 + m.b2039 <= 0) m.c87 = Constraint(expr= - m.x1656 - m.b2039 + m.b2040 <= 0) m.c88 = Constraint(expr= - m.x1657 - m.b2040 + m.b2041 <= 0) m.c89 = Constraint(expr= - m.x1659 - m.b2042 + m.b2043 <= 0) m.c90 = Constraint(expr= - m.x1660 - m.b2043 + m.b2044 <= 0) m.c91 = Constraint(expr= - m.x1661 - m.b2044 + m.b2045 <= 0) m.c92 = Constraint(expr= - m.x1662 - m.b2045 + m.b2046 <= 0) m.c93 = Constraint(expr= - m.x1663 - m.b2046 + m.b2047 <= 0) m.c94 = Constraint(expr= - m.x1664 - m.b2047 + m.b2048 <= 0) m.c95 = Constraint(expr= - m.x1665 - m.b2048 + m.b2049 <= 0) m.c96 = Constraint(expr= - m.x1666 - m.b2049 + m.b2050 <= 0) m.c97 = Constraint(expr= - m.x1667 - m.b2050 + m.b2051 <= 0) m.c98 = Constraint(expr= - m.x1668 - m.b2051 + m.b2052 <= 0) m.c99 = Constraint(expr= - m.x1669 - m.b2052 + m.b2053 <= 0) m.c100 = Constraint(expr= - m.x1670 - m.b2053 + m.b2054 <= 0) m.c101 = Constraint(expr= - m.x1671 - m.b2054 + m.b2055 <= 0) m.c102 = Constraint(expr= - m.x1672 - m.b2055 + m.b2056 <= 0) m.c103 = Constraint(expr= - m.x1673 - m.b2056 + m.b2057 <= 0) m.c104 = Constraint(expr= - m.x1674 - m.b2057 + m.b2058 <= 0) m.c105 = Constraint(expr= - m.x1675 - m.b2058 + m.b2059 <= 0) m.c106 = Constraint(expr= - m.x1676 - m.b2059 + m.b2060 <= 0) m.c107 = Constraint(expr= - m.x1677 - m.b2060 + m.b2061 <= 0) m.c108 = Constraint(expr= - m.x1678 - m.b2061 + m.b2062 <= 0) m.c109 = Constraint(expr= - m.x1679 - m.b2062 + m.b2063 <= 0) m.c110 = Constraint(expr= - m.x1680 - m.b2063 + m.b2064 <= 0) m.c111 = Constraint(expr= - m.x1681 - m.b2064 + m.b2065 <= 0) m.c112 = Constraint(expr= - m.x1683 - m.b2066 + m.b2067 <= 0) m.c113 = Constraint(expr= - m.x1684 - m.b2067 + m.b2068 <= 0) m.c114 = Constraint(expr= - m.x1685 - m.b2068 + m.b2069 <= 0) m.c115 = Constraint(expr= - m.x1686 - m.b2069 + m.b2070 <= 0) m.c116 = Constraint(expr= - m.x1687 - m.b2070 + m.b2071 <= 0) m.c117 = Constraint(expr= - m.x1688 - m.b2071 + m.b2072 <= 0) m.c118 = Constraint(expr= - m.x1689 - m.b2072 + m.b2073 <= 0) m.c119 = Constraint(expr= - m.x1690 - m.b2073 + m.b2074 <= 0) m.c120 = Constraint(expr= - m.x1691 - m.b2074 + m.b2075 <= 0) m.c121 = Constraint(expr= - m.x1692 - m.b2075 + m.b2076 <= 0) m.c122 = Constraint(expr= - m.x1693 - m.b2076 + m.b2077 <= 0) m.c123 = Constraint(expr= - m.x1694 - m.b2077 + m.b2078 <= 0) m.c124 = Constraint(expr= - m.x1695 - m.b2078 + m.b2079 <= 0) m.c125 = Constraint(expr= - m.x1696 - m.b2079 + m.b2080 <= 0) m.c126 = Constraint(expr= - m.x1697 - m.b2080 + m.b2081 <= 0) m.c127 = Constraint(expr= - m.x1698 - m.b2081 + m.b2082 <= 0) m.c128 = Constraint(expr= - m.x1699 - m.b2082 + m.b2083 <= 0) m.c129 = Constraint(expr= - m.x1700 - m.b2083 + m.b2084 <= 0) m.c130 = Constraint(expr= - m.x1701 - m.b2084 + m.b2085 <= 0) m.c131 = Constraint(expr= - m.x1702 - m.b2085 + m.b2086 <= 0) m.c132 = Constraint(expr= - m.x1703 - m.b2086 + m.b2087 <= 0) m.c133 = Constraint(expr= - m.x1704 - m.b2087 + m.b2088 <= 0) m.c134 = Constraint(expr= - m.x1705 - m.b2088 + m.b2089 <= 0) m.c135 = Constraint(expr= - m.x1707 - m.b2090 + m.b2091 <= 0) m.c136 = Constraint(expr= - m.x1708 - m.b2091 + m.b2092 <= 0) m.c137 = Constraint(expr= - m.x1709 - m.b2092 + m.b2093 <= 0) m.c138 = Constraint(expr= - m.x1710 - m.b2093 + m.b2094 <= 0) m.c139 = Constraint(expr= - m.x1711 - m.b2094 + m.b2095 <= 0) m.c140 = Constraint(expr= - m.x1712 - m.b2095 + m.b2096 <= 0) m.c141 = Constraint(expr= - m.x1713 - m.b2096 + m.b2097 <= 0) m.c142 = Constraint(expr= - m.x1714 - m.b2097 + m.b2098 <= 0) m.c143 = Constraint(expr= - m.x1715 - m.b2098 + m.b2099 <= 0) m.c144 = Constraint(expr= - m.x1716 - m.b2099 + m.b2100 <= 0) m.c145 = Constraint(expr= - m.x1717 - m.b2100 + m.b2101 <= 0) m.c146 = Constraint(expr= - m.x1718 - m.b2101 + m.b2102 <= 0) m.c147 = Constraint(expr= - m.x1719 - m.b2102 + m.b2103 <= 0) m.c148 = Constraint(expr= - m.x1720 - m.b2103 + m.b2104 <= 0) m.c149 = Constraint(expr= - m.x1721 - m.b2104 + m.b2105 <= 0) m.c150 = Constraint(expr= - m.x1722 - m.b2105 + m.b2106 <= 0) m.c151 = Constraint(expr= - m.x1723 - m.b2106 + m.b2107 <= 0) m.c152 = Constraint(expr= - m.x1724 - m.b2107 + m.b2108 <= 0) m.c153 = Constraint(expr= - m.x1725 - m.b2108 + m.b2109 <= 0) m.c154 = Constraint(expr= - m.x1726 - m.b2109 + m.b2110 <= 0) m.c155 = Constraint(expr= - m.x1727 - m.b2110 + m.b2111 <= 0) m.c156 = Constraint(expr= - m.x1728 - m.b2111 + m.b2112 <= 0) m.c157 = Constraint(expr= - m.x1729 - m.b2112 + m.b2113 <= 0) m.c158 = Constraint(expr= - m.x1731 - m.b2114 + m.b2115 <= 0) m.c159 = Constraint(expr= - m.x1732 - m.b2115 + m.b2116 <= 0) m.c160 = Constraint(expr= - m.x1733 - m.b2116 + m.b2117 <= 0) m.c161 = Constraint(expr= - m.x1734 - m.b2117 + m.b2118 <= 0) m.c162 = Constraint(expr= - m.x1735 - m.b2118 + m.b2119 <= 0) m.c163 = Constraint(expr= - m.x1736 - m.b2119 + m.b2120 <= 0) m.c164 = Constraint(expr= - m.x1737 - m.b2120 + m.b2121 <= 0) m.c165 = Constraint(expr= - m.x1738 - m.b2121 + m.b2122 <= 0) m.c166 = Constraint(expr= - m.x1739 - m.b2122 + m.b2123 <= 0) m.c167 = Constraint(expr= - m.x1740 - m.b2123 + m.b2124 <= 0) m.c168 = Constraint(expr= - m.x1741 - m.b2124 + m.b2125 <= 0) m.c169 = Constraint(expr= - m.x1742 - m.b2125 + m.b2126 <= 0) m.c170 = Constraint(expr= - m.x1743 - m.b2126 + m.b2127 <= 0) m.c171 = Constraint(expr= - m.x1744 - m.b2127 + m.b2128 <= 0) m.c172 = Constraint(expr= - m.x1745 - m.b2128 + m.b2129 <= 0) m.c173 = Constraint(expr= - m.x1746 - m.b2129 + m.b2130 <= 0) m.c174 = Constraint(expr= - m.x1747 - m.b2130 + m.b2131 <= 0) m.c175 = Constraint(expr= - m.x1748 - m.b2131 + m.b2132 <= 0) m.c176 = Constraint(expr= - m.x1749 - m.b2132 + m.b2133 <= 0) m.c177 = Constraint(expr= - m.x1750 - m.b2133 + m.b2134 <= 0) m.c178 = Constraint(expr= - m.x1751 - m.b2134 + m.b2135 <= 0) m.c179 = Constraint(expr= - m.x1752 - m.b2135 + m.b2136 <= 0) m.c180 = Constraint(expr= - m.x1753 - m.b2136 + m.b2137 <= 0) m.c181 = Constraint(expr= - m.x1755 - m.b2138 + m.b2139 <= 0) m.c182 = Constraint(expr= - m.x1756 - m.b2139 + m.b2140 <= 0) m.c183 = Constraint(expr= - m.x1757 - m.b2140 + m.b2141 <= 0) m.c184 = Constraint(expr= - m.x1758 - m.b2141 + m.b2142 <= 0) m.c185 = Constraint(expr= - m.x1759 - m.b2142 + m.b2143 <= 0) m.c186 = Constraint(expr= - m.x1760 - m.b2143 + m.b2144 <= 0) m.c187 = Constraint(expr= - m.x1761 - m.b2144 + m.b2145 <= 0) m.c188 = Constraint(expr= - m.x1762 - m.b2145 + m.b2146 <= 0) m.c189 = Constraint(expr= - m.x1763 - m.b2146 + m.b2147 <= 0) m.c190 = Constraint(expr= - m.x1764 - m.b2147 + m.b2148 <= 0) m.c191 = Constraint(expr= - m.x1765 - m.b2148 + m.b2149 <= 0) m.c192 = Constraint(expr= - m.x1766 - m.b2149 + m.b2150 <= 0) m.c193 = Constraint(expr= - m.x1767 - m.b2150 + m.b2151 <= 0) m.c194 = Constraint(expr= - m.x1768 - m.b2151 + m.b2152 <= 0) m.c195 = Constraint(expr= - m.x1769 - m.b2152 + m.b2153 <= 0) m.c196 = Constraint(expr= - m.x1770 - m.b2153 + m.b2154 <= 0) m.c197 = Constraint(expr= - m.x1771 - m.b2154 + m.b2155 <= 0) m.c198 = Constraint(expr= - m.x1772 - m.b2155 + m.b2156 <= 0) m.c199 = Constraint(expr= - m.x1773 - m.b2156 + m.b2157 <= 0) m.c200 = Constraint(expr= - m.x1774 - m.b2157 + m.b2158 <= 0) m.c201 = Constraint(expr= - m.x1775 - m.b2158 + m.b2159 <= 0) m.c202 = Constraint(expr= - m.x1776 - m.b2159 + m.b2160 <= 0) m.c203 = Constraint(expr= - m.x1777 - m.b2160 + m.b2161 <= 0) m.c204 = Constraint(expr= - m.x1779 - m.b2162 + m.b2163 <= 0) m.c205 = Constraint(expr= - m.x1780 - m.b2163 + m.b2164 <= 0) m.c206 = Constraint(expr= - m.x1781 - m.b2164 + m.b2165 <= 0) m.c207 = Constraint(expr= - m.x1782 - m.b2165 + m.b2166 <= 0) m.c208 = Constraint(expr= - m.x1783 - m.b2166 + m.b2167 <= 0) m.c209 = Constraint(expr= - m.x1784 - m.b2167 + m.b2168 <= 0) m.c210 = Constraint(expr= - m.x1785 - m.b2168 + m.b2169 <= 0) m.c211 = Constraint(expr= - m.x1786 - m.b2169 + m.b2170 <= 0) m.c212 = Constraint(expr= - m.x1787 - m.b2170 + m.b2171 <= 0) m.c213 = Constraint(expr= - m.x1788 - m.b2171 + m.b2172 <= 0) m.c214 = Constraint(expr= - m.x1789 - m.b2172 + m.b2173 <= 0) m.c215 = Constraint(expr= - m.x1790 - m.b2173 + m.b2174 <= 0) m.c216 = Constraint(expr= - m.x1791 - m.b2174 + m.b2175 <= 0) m.c217 = Constraint(expr= - m.x1792 - m.b2175 + m.b2176 <= 0) m.c218 = Constraint(expr= - m.x1793 - m.b2176 + m.b2177 <= 0) m.c219 = Constraint(expr= - m.x1794 - m.b2177 + m.b2178 <= 0) m.c220 = Constraint(expr= - m.x1795 - m.b2178 + m.b2179 <= 0) m.c221 = Constraint(expr= - m.x1796 - m.b2179 + m.b2180 <= 0) m.c222 = Constraint(expr= - m.x1797 - m.b2180 + m.b2181 <= 0) m.c223 = Constraint(expr= - m.x1798 - m.b2181 + m.b2182 <= 0) m.c224 = Constraint(expr= - m.x1799 - m.b2182 + m.b2183 <= 0) m.c225 = Constraint(expr= - m.x1800 - m.b2183 + m.b2184 <= 0) m.c226 = Constraint(expr= - m.x1801 - m.b2184 + m.b2185 <= 0) m.c227 = Constraint(expr= - m.x1803 - m.b2186 + m.b2187 <= 0) m.c228 = Constraint(expr= - m.x1804 - m.b2187 + m.b2188 <= 0) m.c229 = Constraint(expr= - m.x1805 - m.b2188 + m.b2189 <= 0) m.c230 = Constraint(expr= - m.x1806 - m.b2189 + m.b2190 <= 0) m.c231 = Constraint(expr= - m.x1807 - m.b2190 + m.b2191 <= 0) m.c232 = Constraint(expr= - m.x1808 - m.b2191 + m.b2192 <= 0) m.c233 = Constraint(expr= - m.x1809 - m.b2192 + m.b2193 <= 0) m.c234 = Constraint(expr= - m.x1810 - m.b2193 + m.b2194 <= 0) m.c235 = Constraint(expr= - m.x1811 - m.b2194 + m.b2195 <= 0) m.c236 = Constraint(expr= - m.x1812 - m.b2195 + m.b2196 <= 0) m.c237 = Constraint(expr= - m.x1813 - m.b2196 + m.b2197 <= 0) m.c238 = Constraint(expr= - m.x1814 - m.b2197 + m.b2198 <= 0) m.c239 = Constraint(expr= - m.x1815 - m.b2198 + m.b2199 <= 0) m.c240 = Constraint(expr= - m.x1816 - m.b2199 + m.b2200 <= 0) m.c241 = Constraint(expr= - m.x1817 - m.b2200 + m.b2201 <= 0) m.c242 = Constraint(expr= - m.x1818 - m.b2201 + m.b2202 <= 0) m.c243 = Constraint(expr= - m.x1819 - m.b2202 + m.b2203 <= 0) m.c244 = Constraint(expr= - m.x1820 - m.b2203 + m.b2204 <= 0) m.c245 = Constraint(expr= - m.x1821 - m.b2204 + m.b2205 <= 0) m.c246 = Constraint(expr= - m.x1822 - m.b2205 + m.b2206 <= 0) m.c247 = Constraint(expr= - m.x1823 - m.b2206 + m.b2207 <= 0) m.c248 = Constraint(expr= - m.x1824 - m.b2207 + m.b2208 <= 0) m.c249 = Constraint(expr= - m.x1825 - m.b2208 + m.b2209 <= 0) m.c250 = Constraint(expr= - m.x1827 - m.b2210 + m.b2211 <= 0) m.c251 = Constraint(expr= - m.x1828 - m.b2211 + m.b2212 <= 0) m.c252 = Constraint(expr= - m.x1829 - m.b2212 + m.b2213 <= 0) m.c253 = Constraint(expr= - m.x1830 - m.b2213 + m.b2214 <= 0) m.c254 = Constraint(expr= - m.x1831 - m.b2214 + m.b2215 <= 0) m.c255 = Constraint(expr= - m.x1832 - m.b2215 + m.b2216 <= 0) m.c256 = Constraint(expr= - m.x1833 - m.b2216 + m.b2217 <= 0) m.c257 = Constraint(expr= - m.x1834 - m.b2217 + m.b2218 <= 0) m.c258 = Constraint(expr= - m.x1835 - m.b2218 + m.b2219 <= 0) m.c259 = Constraint(expr= - m.x1836 - m.b2219 + m.b2220 <= 0) m.c260 = Constraint(expr= - m.x1837 - m.b2220 + m.b2221 <= 0) m.c261 = Constraint(expr= - m.x1838 - m.b2221 + m.b2222 <= 0) m.c262 = Constraint(expr= - m.x1839 - m.b2222 + m.b2223 <= 0) m.c263 = Constraint(expr= - m.x1840 - m.b2223 + m.b2224 <= 0) m.c264 = Constraint(expr= - m.x1841 - m.b2224 + m.b2225 <= 0) m.c265 = Constraint(expr= - m.x1842 - m.b2225 + m.b2226 <= 0) m.c266 = Constraint(expr= - m.x1843 - m.b2226 + m.b2227 <= 0) m.c267 = Constraint(expr= - m.x1844 - m.b2227 + m.b2228 <= 0) m.c268 = Constraint(expr= - m.x1845 - m.b2228 + m.b2229 <= 0) m.c269 = Constraint(expr= - m.x1846 - m.b2229 + m.b2230 <= 0) m.c270 = Constraint(expr= - m.x1847 - m.b2230 + m.b2231 <= 0) m.c271 = Constraint(expr= - m.x1848 - m.b2231 + m.b2232 <= 0) m.c272 = Constraint(expr= - m.x1849 - m.b2232 + m.b2233 <= 0) m.c273 = Constraint(expr= - m.x1851 - m.b2234 + m.b2235 <= 0) m.c274 = Constraint(expr= - m.x1852 - m.b2235 + m.b2236 <= 0) m.c275 = Constraint(expr= - m.x1853 - m.b2236 + m.b2237 <= 0) m.c276 = Constraint(expr= - m.x1854 - m.b2237 + m.b2238 <= 0) m.c277 = Constraint(expr= - m.x1855 - m.b2238 + m.b2239 <= 0) m.c278 = Constraint(expr= - m.x1856 - m.b2239 + m.b2240 <= 0) m.c279 = Constraint(expr= - m.x1857 - m.b2240 + m.b2241 <= 0) m.c280 = Constraint(expr= - m.x1858 - m.b2241 + m.b2242 <= 0) m.c281 = Constraint(expr= - m.x1859 - m.b2242 + m.b2243 <= 0) m.c282 = Constraint(expr= - m.x1860 - m.b2243 + m.b2244 <= 0) m.c283 = Constraint(expr= - m.x1861 - m.b2244 + m.b2245 <= 0) m.c284 = Constraint(expr= - m.x1862 - m.b2245 + m.b2246 <= 0) m.c285 = Constraint(expr= - m.x1863 - m.b2246 + m.b2247 <= 0) m.c286 = Constraint(expr= - m.x1864 - m.b2247 + m.b2248 <= 0) m.c287 = Constraint(expr= - m.x1865 - m.b2248 + m.b2249 <= 0) m.c288 = Constraint(expr= - m.x1866 - m.b2249 + m.b2250 <= 0) m.c289 = Constraint(expr= - m.x1867 - m.b2250 + m.b2251 <= 0) m.c290 = Constraint(expr= - m.x1868 - m.b2251 + m.b2252 <= 0) m.c291 = Constraint(expr= - m.x1869 - m.b2252 + m.b2253 <= 0) m.c292 = Constraint(expr= - m.x1870 - m.b2253 + m.b2254 <= 0) m.c293 = Constraint(expr= - m.x1871 - m.b2254 + m.b2255 <= 0) m.c294 = Constraint(expr= - m.x1872 - m.b2255 + m.b2256 <= 0) m.c295 = Constraint(expr= - m.x1873 - m.b2256 + m.b2257 <= 0) m.c296 = Constraint(expr= - m.x1875 - m.b2258 + m.b2259 <= 0) m.c297 = Constraint(expr= - m.x1876 - m.b2259 + m.b2260 <= 0) m.c298 = Constraint(expr= - m.x1877 - m.b2260 + m.b2261 <= 0) m.c299 = Constraint(expr= - m.x1878 - m.b2261 + m.b2262 <= 0) m.c300 = Constraint(expr= - m.x1879 - m.b2262 + m.b2263 <= 0) m.c301 = Constraint(expr= - m.x1880 - m.b2263 + m.b2264 <= 0) m.c302 = Constraint(expr= - m.x1881 - m.b2264 + m.b2265 <= 0) m.c303 = Constraint(expr= - m.x1882 - m.b2265 + m.b2266 <= 0) m.c304 = Constraint(expr= - m.x1883 - m.b2266 + m.b2267 <= 0) m.c305 = Constraint(expr= - m.x1884 - m.b2267 + m.b2268 <= 0) m.c306 = Constraint(expr= - m.x1885 - m.b2268 + m.b2269 <= 0) m.c307 = Constraint(expr= - m.x1886 - m.b2269 + m.b2270 <= 0) m.c308 = Constraint(expr= - m.x1887 - m.b2270 + m.b2271 <= 0) m.c309 = Constraint(expr= - m.x1888 - m.b2271 + m.b2272 <= 0) m.c310 = Constraint(expr= - m.x1889 - m.b2272 + m.b2273 <= 0) m.c311 = Constraint(expr= - m.x1890 - m.b2273 + m.b2274 <= 0) m.c312 = Constraint(expr= - m.x1891 - m.b2274 + m.b2275 <= 0) m.c313 = Constraint(expr= - m.x1892 - m.b2275 + m.b2276 <= 0) m.c314 = Constraint(expr= - m.x1893 - m.b2276 + m.b2277 <= 0) m.c315 = Constraint(expr= - m.x1894 - m.b2277 + m.b2278 <= 0) m.c316 = Constraint(expr= - m.x1895 - m.b2278 + m.b2279 <= 0) m.c317 = Constraint(expr= - m.x1896 - m.b2279 + m.b2280 <= 0) m.c318 = Constraint(expr= - m.x1897 - m.b2280 + m.b2281 <= 0) m.c319 = Constraint(expr= - m.x1899 - m.b2282 + m.b2283 <= 0) m.c320 = Constraint(expr= - m.x1900 - m.b2283 + m.b2284 <= 0) m.c321 = Constraint(expr= - m.x1901 - m.b2284 + m.b2285 <= 0) m.c322 = Constraint(expr= - m.x1902 - m.b2285 + m.b2286 <= 0) m.c323 = Constraint(expr= - m.x1903 - m.b2286 + m.b2287 <= 0) m.c324 = Constraint(expr= - m.x1904 - m.b2287 + m.b2288 <= 0) m.c325 = Constraint(expr= - m.x1905 - m.b2288 + m.b2289 <= 0) m.c326 = Constraint(expr= - m.x1906 - m.b2289 + m.b2290 <= 0) m.c327 = Constraint(expr= - m.x1907 - m.b2290 + m.b2291 <= 0) m.c328 = Constraint(expr= - m.x1908 - m.b2291 + m.b2292 <= 0) m.c329 = Constraint(expr= - m.x1909 - m.b2292 + m.b2293 <= 0) m.c330 = Constraint(expr= - m.x1910 - m.b2293 + m.b2294 <= 0) m.c331 = Constraint(expr= - m.x1911 - m.b2294 + m.b2295 <= 0) m.c332 = Constraint(expr= - m.x1912 - m.b2295 + m.b2296 <= 0) m.c333 = Constraint(expr= - m.x1913 - m.b2296 + m.b2297 <= 0) m.c334 = Constraint(expr= - m.x1914 - m.b2297 + m.b2298 <= 0) m.c335 = Constraint(expr= - m.x1915 - m.b2298 + m.b2299 <= 0) m.c336 = Constraint(expr= - m.x1916 - m.b2299 + m.b2300 <= 0) m.c337 = Constraint(expr= - m.x1917 - m.b2300 + m.b2301 <= 0) m.c338 = Constraint(expr= - m.x1918 - m.b2301 + m.b2302 <= 0) m.c339 = Constraint(expr= - m.x1919 - m.b2302 + m.b2303 <= 0) m.c340 = Constraint(expr= - m.x1920 - m.b2303 + m.b2304 <= 0) m.c341 = Constraint(expr= - m.x1921 - m.b2304 + m.b2305 <= 0) m.c342 = Constraint(expr= - m.x1923 - m.b2306 + m.b2307 <= 0) m.c343 = Constraint(expr= - m.x1924 - m.b2307 + m.b2308 <= 0) m.c344 = Constraint(expr= - m.x1925 - m.b2308 + m.b2309 <= 0) m.c345 = Constraint(expr= - m.x1926 - m.b2309 + m.b2310 <= 0) m.c346 = Constraint(expr= - m.x1927 - m.b2310 + m.b2311 <= 0) m.c347 = Constraint(expr= - m.x1928 - m.b2311 + m.b2312 <= 0) m.c348 = Constraint(expr= - m.x1929 - m.b2312 + m.b2313 <= 0) m.c349 = Constraint(expr= - m.x1930 - m.b2313 + m.b2314 <= 0) m.c350 = Constraint(expr= - m.x1931 - m.b2314 + m.b2315 <= 0) m.c351 = Constraint(expr= - m.x1932 - m.b2315 + m.b2316 <= 0) m.c352 = Constraint(expr= - m.x1933 - m.b2316 + m.b2317 <= 0) m.c353 = Constraint(expr= - m.x1934 - m.b2317 + m.b2318 <= 0) m.c354 = Constraint(expr= - m.x1935 - m.b2318 + m.b2319 <= 0) m.c355 = Constraint(expr= - m.x1936 - m.b2319 + m.b2320 <= 0) m.c356 = Constraint(expr= - m.x1937 - m.b2320 + m.b2321 <= 0) m.c357 = Constraint(expr= - m.x1938 - m.b2321 + m.b2322 <= 0) m.c358 = Constraint(expr= - m.x1939 - m.b2322 + m.b2323 <= 0) m.c359 = Constraint(expr= - m.x1940 - m.b2323 + m.b2324 <= 0) m.c360 = Constraint(expr= - m.x1941 - m.b2324 + m.b2325 <= 0) m.c361 = Constraint(expr= - m.x1942 - m.b2325 + m.b2326 <= 0) m.c362 = Constraint(expr= - m.x1943 - m.b2326 + m.b2327 <= 0) m.c363 = Constraint(expr= - m.x1944 - m.b2327 + m.b2328 <= 0) m.c364 = Constraint(expr= - m.x1945 - m.b2328 + m.b2329 <= 0) m.c365 = Constraint(expr= - m.x1947 - m.b2330 + m.b2331 <= 0) m.c366 = Constraint(expr= - m.x1948 - m.b2331 + m.b2332 <= 0) m.c367 = Constraint(expr= - m.x1949 - m.b2332 + m.b2333 <= 0) m.c368 = Constraint(expr= - m.x1950 - m.b2333 + m.b2334 <= 0) m.c369 = Constraint(expr= - m.x1951 - m.b2334 + m.b2335 <= 0) m.c370 = Constraint(expr= - m.x1952 - m.b2335 + m.b2336 <= 0) m.c371 = Constraint(expr= - m.x1953 - m.b2336 + m.b2337 <= 0) m.c372 = Constraint(expr= - m.x1954 - m.b2337 + m.b2338 <= 0) m.c373 = Constraint(expr= - m.x1955 - m.b2338 + m.b2339 <= 0) m.c374 = Constraint(expr= - m.x1956 - m.b2339 + m.b2340 <= 0) m.c375 = Constraint(expr= - m.x1957 - m.b2340 + m.b2341 <= 0) m.c376 = Constraint(expr= - m.x1958 - m.b2341 + m.b2342 <= 0) m.c377 = Constraint(expr= - m.x1959 - m.b2342 + m.b2343 <= 0) m.c378 = Constraint(expr= - m.x1960 - m.b2343 + m.b2344 <= 0) m.c379 = Constraint(expr= - m.x1961 - m.b2344 + m.b2345 <= 0) m.c380 = Constraint(expr= - m.x1962 - m.b2345 + m.b2346 <= 0) m.c381 = Constraint(expr= - m.x1963 - m.b2346 + m.b2347 <= 0) m.c382 = Constraint(expr= - m.x1964 - m.b2347 + m.b2348 <= 0) m.c383 = Constraint(expr= - m.x1965 - m.b2348 + m.b2349 <= 0) m.c384 = Constraint(expr= - m.x1966 - m.b2349 + m.b2350 <= 0) m.c385 = Constraint(expr= - m.x1967 - m.b2350 + m.b2351 <= 0) m.c386 = Constraint(expr= - m.x1968 - m.b2351 + m.b2352 <= 0) m.c387 = Constraint(expr= - m.x1969 - m.b2352 + m.b2353 <= 0) m.c388 = Constraint(expr= - m.x1971 - m.b2354 + m.b2355 <= 0) m.c389 = Constraint(expr= - m.x1972 - m.b2355 + m.b2356 <= 0) m.c390 = Constraint(expr= - m.x1973 - m.b2356 + m.b2357 <= 0) m.c391 = Constraint(expr= - m.x1974 - m.b2357 + m.b2358 <= 0) m.c392 = Constraint(expr= - m.x1975 - m.b2358 + m.b2359 <= 0) m.c393 = Constraint(expr= - m.x1976 - m.b2359 + m.b2360 <= 0) m.c394 = Constraint(expr= - m.x1977 - m.b2360 + m.b2361 <= 0) m.c395 = Constraint(expr= - m.x1978 - m.b2361 + m.b2362 <= 0) m.c396 = Constraint(expr= - m.x1979 - m.b2362 + m.b2363 <= 0) m.c397 = Constraint(expr= - m.x1980 - m.b2363 + m.b2364 <= 0) m.c398 = Constraint(expr= - m.x1981 - m.b2364 + m.b2365 <= 0) m.c399 = Constraint(expr= - m.x1982 - m.b2365 + m.b2366 <= 0) m.c400 = Constraint(expr= - m.x1983 - m.b2366 + m.b2367 <= 0) m.c401 = Constraint(expr= - m.x1984 - m.b2367 + m.b2368 <= 0) m.c402 = Constraint(expr= - m.x1985 - m.b2368 + m.b2369 <= 0) m.c403 = Constraint(expr= - m.x1986 - m.b2369 + m.b2370 <= 0) m.c404 = Constraint(expr= - m.x1987 - m.b2370 + m.b2371 <= 0) m.c405 = Constraint(expr= - m.x1988 - m.b2371 + m.b2372 <= 0) m.c406 = Constraint(expr= - m.x1989 - m.b2372 + m.b2373 <= 0) m.c407 = Constraint(expr= - m.x1990 - m.b2373 + m.b2374 <= 0) m.c408 = Constraint(expr= - m.x1991 - m.b2374 + m.b2375 <= 0) m.c409 = Constraint(expr= - m.x1992 - m.b2375 + m.b2376 <= 0) m.c410 = Constraint(expr= - m.x1993 - m.b2376 + m.b2377 <= 0) m.c411 = Constraint(expr= - m.x1995 - m.b2378 + m.b2379 <= 0) m.c412 = Constraint(expr= - m.x1996 - m.b2379 + m.b2380 <= 0) m.c413 = Constraint(expr= - m.x1997 - m.b2380 + m.b2381 <= 0) m.c414 = Constraint(expr= - m.x1998 - m.b2381 + m.b2382 <= 0) m.c415 = Constraint(expr= - m.x1999 - m.b2382 + m.b2383 <= 0) m.c416 = Constraint(expr= - m.x2000 - m.b2383 + m.b2384 <= 0) m.c417 = Constraint(expr= - m.x2001 - m.b2384 + m.b2385 <= 0) m.c418 = Constraint(expr= - m.x2002 - m.b2385 + m.b2386 <= 0) m.c419 = Constraint(expr= - m.x2003 - m.b2386 + m.b2387 <= 0) m.c420 = Constraint(expr= - m.x2004 - m.b2387 + m.b2388 <= 0) m.c421 = Constraint(expr= - m.x2005 - m.b2388 + m.b2389 <= 0) m.c422 = Constraint(expr= - m.x2006 - m.b2389 + m.b2390 <= 0) m.c423 = Constraint(expr= - m.x2007 - m.b2390 + m.b2391 <= 0) m.c424 = Constraint(expr= - m.x2008 - m.b2391 + m.b2392 <= 0) m.c425 = Constraint(expr= - m.x2009 - m.b2392 + m.b2393 <= 0) m.c426 = Constraint(expr= - m.x2010 - m.b2393 + m.b2394 <= 0) m.c427 = Constraint(expr= - m.x2011 - m.b2394 + m.b2395 <= 0) m.c428 = Constraint(expr= - m.x2012 - m.b2395 + m.b2396 <= 0) m.c429 = Constraint(expr= - m.x2013 - m.b2396 + m.b2397 <= 0) m.c430 = Constraint(expr= - m.x2014 - m.b2397 + m.b2398 <= 0) m.c431 = Constraint(expr= - m.x2015 - m.b2398 + m.b2399 <= 0) m.c432 = Constraint(expr= - m.x2016 - m.b2399 + m.b2400 <= 0) m.c433 = Constraint(expr= - m.x2017 - m.b2400 + m.b2401 <= 0) m.c434 = Constraint(expr= m.x1634 + m.x1635 + m.x1636 + m.x1637 + m.x1638 + m.x1639 + m.x1640 + m.x1641 + m.x1642 + m.x1643 + m.x1644 + m.x1645 + m.x1646 + m.x1647 + m.x1648 + m.x1649 + m.x1650 + m.x1651 + m.x1652 + m.x1653 + m.x1654 + m.x1655 + m.x1656 + m.x1657 <= 4) m.c435 = Constraint(expr= m.x1682 + m.x1683 + m.x1684 + m.x1685 + m.x1686 + m.x1687 + m.x1688 + m.x1689 + m.x1690 + m.x1691 + m.x1692 + m.x1693 + m.x1694 + m.x1695 + m.x1696 + m.x1697 + m.x1698 + m.x1699 + m.x1700 + m.x1701 + m.x1702 + m.x1703 + m.x1704 + m.x1705 <= 4) m.c436 = Constraint(expr= m.x1730 + m.x1731 + m.x1732 + m.x1733 + m.x1734 + m.x1735 + m.x1736 + m.x1737 + m.x1738 + m.x1739 + m.x1740 + m.x1741 + m.x1742 + m.x1743 + m.x1744 + m.x1745 + m.x1746 + m.x1747 + m.x1748 + m.x1749 + m.x1750 + m.x1751 + m.x1752 + m.x1753 <= 4) m.c437 = Constraint(expr= m.x1778 + m.x1779 + m.x1780 + m.x1781 + m.x1782 + m.x1783 + m.x1784 + m.x1785 + m.x1786 + m.x1787 + m.x1788 + m.x1789 + m.x1790 + m.x1791 + m.x1792 + m.x1793 + m.x1794 + m.x1795 + m.x1796 + m.x1797 + m.x1798 + m.x1799 + m.x1800 + m.x1801 <= 4) m.c438 = Constraint(expr= m.x1826 + m.x1827 + m.x1828 + m.x1829 + m.x1830 + m.x1831 + m.x1832 + m.x1833 + m.x1834 + m.x1835 + m.x1836 + m.x1837 + m.x1838 + m.x1839 + m.x1840 + m.x1841 + m.x1842 + m.x1843 + m.x1844 + m.x1845 + m.x1846 + m.x1847 + m.x1848 + m.x1849 <= 2) m.c439 = Constraint(expr= m.x1874 + m.x1875 + m.x1876 + m.x1877 + m.x1878 + m.x1879 + m.x1880 + m.x1881 + m.x1882 + m.x1883 + m.x1884 + m.x1885 + m.x1886 + m.x1887 + m.x1888 + m.x1889 + m.x1890 + m.x1891 + m.x1892 + m.x1893 + m.x1894 + m.x1895 + m.x1896 + m.x1897 <= 2) m.c440 = Constraint(expr= m.x1922 + m.x1923 + m.x1924 + m.x1925 + m.x1926 + m.x1927 + m.x1928 + m.x1929 + m.x1930 + m.x1931 + m.x1932 + m.x1933 + m.x1934 + m.x1935 + m.x1936 + m.x1937 + m.x1938 + m.x1939 + m.x1940 + m.x1941 + m.x1942 + m.x1943 + m.x1944 + m.x1945 <= 10000) m.c441 = Constraint(expr= m.x1970 + m.x1971 + m.x1972 + m.x1973 + m.x1974 + m.x1975 + m.x1976 + m.x1977 + m.x1978 + m.x1979 + m.x1980 + m.x1981 + m.x1982 + m.x1983 + m.x1984 + m.x1985 + m.x1986 + m.x1987 + m.x1988 + m.x1989 + m.x1990 + m.x1991 + m.x1992 + m.x1993 <= 10000) m.c442 = Constraint(expr= m.x1658 + m.x1659 + m.x1660 + m.x1661 + m.x1662 + m.x1663 + m.x1664 + m.x1665 + m.x1666 + m.x1667 + m.x1668 + m.x1669 + m.x1670 + m.x1671 + m.x1672 + m.x1673 + m.x1674 + m.x1675 + m.x1676 + m.x1677 + m.x1678 + m.x1679 + m.x1680 + m.x1681 <= 4) m.c443 = Constraint(expr= m.x1706 + m.x1707 + m.x1708 + m.x1709 + m.x1710 + m.x1711 + m.x1712 + m.x1713 + m.x1714 + m.x1715 + m.x1716 + m.x1717 + m.x1718 + m.x1719 + m.x1720 + m.x1721 + m.x1722 + m.x1723 + m.x1724 + m.x1725 + m.x1726 + m.x1727 + m.x1728 + m.x1729 <= 4) m.c444 = Constraint(expr= m.x1754 + m.x1755 + m.x1756 + m.x1757 + m.x1758 + m.x1759 + m.x1760 + m.x1761 + m.x1762 + m.x1763 + m.x1764 + m.x1765 + m.x1766 + m.x1767 + m.x1768 + m.x1769 + m.x1770 + m.x1771 + m.x1772 + m.x1773 + m.x1774 + m.x1775 + m.x1776 + m.x1777 <= 4) m.c445 = Constraint(expr= m.x1802 + m.x1803 + m.x1804 + m.x1805 + m.x1806 + m.x1807 + m.x1808 + m.x1809 + m.x1810 + m.x1811 + m.x1812 + m.x1813 + m.x1814 + m.x1815 + m.x1816 + m.x1817 + m.x1818 + m.x1819 + m.x1820 + m.x1821 + m.x1822 + m.x1823 + m.x1824 + m.x1825 <= 4) m.c446 = Constraint(expr= m.x1850 + m.x1851 + m.x1852 + m.x1853 + m.x1854 + m.x1855 + m.x1856 + m.x1857 + m.x1858 + m.x1859 + m.x1860 + m.x1861 + m.x1862 + m.x1863 + m.x1864 + m.x1865 + m.x1866 + m.x1867 + m.x1868 + m.x1869 + m.x1870 + m.x1871 + m.x1872 + m.x1873 <= 2) m.c447 = Constraint(expr= m.x1898 + m.x1899 + m.x1900 + m.x1901 + m.x1902 + m.x1903 + m.x1904 + m.x1905 + m.x1906 + m.x1907 + m.x1908 + m.x1909 + m.x1910 + m.x1911 + m.x1912 + m.x1913 + m.x1914 + m.x1915 + m.x1916 + m.x1917 + m.x1918 + m.x1919 + m.x1920 + m.x1921 <= 2) m.c448 = Constraint(expr= m.x1946 + m.x1947 + m.x1948 + m.x1949 + m.x1950 + m.x1951 + m.x1952 + m.x1953 + m.x1954 + m.x1955 + m.x1956 + m.x1957 + m.x1958 + m.x1959 + m.x1960 + m.x1961 + m.x1962 + m.x1963 + m.x1964 + m.x1965 + m.x1966 + m.x1967 + m.x1968 + m.x1969 <= 10000) m.c449 = Constraint(expr= m.x1994 + m.x1995 + m.x1996 + m.x1997 + m.x1998 + m.x1999 + m.x2000 + m.x2001 + m.x2002 + m.x2003 + m.x2004 + m.x2005 + m.x2006 + m.x2007 + m.x2008 + m.x2009 + m.x2010 + m.x2011 + m.x2012 + m.x2013 + m.x2014 + m.x2015 + m.x2016 + m.x2017 <= 10000) m.c450 = Constraint(expr= m.x482 - m.x505 <= 4.32706) m.c451 = Constraint(expr= - m.x482 + m.x483 <= 4.32575) m.c452 = Constraint(expr= - m.x483 + m.x484 <= 4.32509) m.c453 = Constraint(expr= - m.x484 + m.x485 <= 4.32378) m.c454 = Constraint(expr= - m.x485 + m.x486 <= 4.32313) m.c455 = Constraint(expr= - m.x486 + m.x487 <= 4.32247) m.c456 = Constraint(expr= - m.x487 + m.x488 <= 4.32313) m.c457 = Constraint(expr= - m.x488 + m.x489 <= 4.32444) m.c458 = Constraint(expr= - m.x489 + m.x490 <= 4.32771) m.c459 = Constraint(expr= - m.x490 + m.x491 <= 4.33427) m.c460 = Constraint(expr= - m.x491 + m.x492 <= 4.34475) m.c461 = Constraint(expr= - m.x492 + m.x493 <= 4.35655) m.c462 = Constraint(expr= - m.x493 + m.x494 <= 4.37031) m.c463 = Constraint(expr= - m.x494 + m.x495 <= 4.37358) m.c464 = Constraint(expr= - m.x495 + m.x496 <= 4.36375) m.c465 = Constraint(expr= - m.x496 + m.x497 <= 4.36113) m.c466 = Constraint(expr= - m.x497 + m.x498 <= 4.35589) m.c467 = Constraint(expr= - m.x498 + m.x499 <= 4.34737) m.c468 = Constraint(expr= - m.x499 + m.x500 <= 4.34213) m.c469 = Constraint(expr= - m.x500 + m.x501 <= 4.33951) m.c470 = Constraint(expr= - m.x501 + m.x502 <= 4.33689) m.c471 = Constraint(expr= - m.x502 + m.x503 <= 4.33427) m.c472 = Constraint(expr= - m.x503 + m.x504 <= 4.3323) m.c473 = Constraint(expr= - m.x504 + m.x505 <= 4.33034) m.c474 = Constraint(expr= m.x506 - m.x529 <= 4.34016) m.c475 = Constraint(expr= - m.x506 + m.x507 <= 4.34541) m.c476 = Constraint(expr= - m.x507 + m.x508 <= 4.3513) m.c477 = Constraint(expr= - m.x508 + m.x509 <= 4.35655) m.c478 = Constraint(expr= - m.x509 + m.x510 <= 4.36244) m.c479 = Constraint(expr= - m.x510 + m.x511 <= 4.36179) m.c480 = Constraint(expr= - m.x511 + m.x512 <= 4.36244) m.c481 = Constraint(expr= - m.x512 + m.x513 <= 4.37031) m.c482 = Constraint(expr= - m.x513 + m.x514 <= 4.37358) m.c483 = Constraint(expr= - m.x514 + m.x515 <= 4.38669) m.c484 = Constraint(expr= - m.x515 + m.x516 <= 4.39062) m.c485 = Constraint(expr= - m.x516 + m.x517 <= 4.39586) m.c486 = Constraint(expr= - m.x517 + m.x518 <= 4.40962) m.c487 = Constraint(expr= - m.x518 + m.x519 <= 4.41945) m.c488 = Constraint(expr= - m.x519 + m.x520 <= 4.41618) m.c489 = Constraint(expr= - m.x520 + m.x521 <= 4.407) m.c490 = Constraint(expr= - m.x521 + m.x522 <= 4.40176) m.c491 = Constraint(expr= - m.x522 + m.x523 <= 4.38669) m.c492 = Constraint(expr= - m.x523 + m.x524 <= 4.37489) m.c493 = Constraint(expr= - m.x524 + m.x525 <= 4.37227) m.c494 = Constraint(expr= - m.x525 + m.x526 <= 4.3631) m.c495 = Constraint(expr= - m.x526 + m.x527 <= 4.36703) m.c496 = Constraint(expr= - m.x527 + m.x528 <= 4.36506) m.c497 = Constraint(expr= - m.x528 + m.x529 <= 4.33034) m.c498 = Constraint(expr= m.x530 - m.x553 <= 4.32706) m.c499 = Constraint(expr= - m.x530 + m.x531 <= 4.32575) m.c500 = Constraint(expr= - m.x531 + m.x532 <= 4.32509) m.c501 = Constraint(expr= - m.x532 + m.x533 <= 4.32378) m.c502 = Constraint(expr= - m.x533 + m.x534 <= 4.32313) m.c503 = Constraint(expr= - m.x534 + m.x535 <= 4.32247) m.c504 = Constraint(expr= - m.x535 + m.x536 <= 4.32313) m.c505 = Constraint(expr= - m.x536 + m.x537 <= 4.32444) m.c506 = Constraint(expr= - m.x537 + m.x538 <= 4.32771) m.c507 = Constraint(expr= - m.x538 + m.x539 <= 4.33427) m.c508 = Constraint(expr= - m.x539 + m.x540 <= 4.34475) m.c509 = Constraint(expr= - m.x540 + m.x541 <= 4.35655) m.c510 = Constraint(expr= - m.x541 + m.x542 <= 4.37031) m.c511 = Constraint(expr= - m.x542 + m.x543 <= 4.37358) m.c512 = Constraint(expr= - m.x543 + m.x544 <= 4.36375) m.c513 = Constraint(expr= - m.x544 + m.x545 <= 4.36113) m.c514 = Constraint(expr= - m.x545 + m.x546 <= 4.35589) m.c515 = Constraint(expr= - m.x546 + m.x547 <= 4.34737) m.c516 = Constraint(expr= - m.x547 + m.x548 <= 4.34213) m.c517 = Constraint(expr= - m.x548 + m.x549 <= 4.33951) m.c518 = Constraint(expr= - m.x549 + m.x550 <= 4.33689) m.c519 = Constraint(expr= - m.x550 + m.x551 <= 4.33427) m.c520 = Constraint(expr= - m.x551 + m.x552 <= 4.3323) m.c521 = Constraint(expr= - m.x552 + m.x553 <= 4.33034) m.c522 = Constraint(expr= m.x554 - m.x577 <= 4.34016) m.c523 = Constraint(expr= - m.x554 + m.x555 <= 4.34541) m.c524 = Constraint(expr= - m.x555 + m.x556 <= 4.3513) m.c525 = Constraint(expr= - m.x556 + m.x557 <= 4.35655) m.c526 = Constraint(expr= - m.x557 + m.x558 <= 4.36244) m.c527 = Constraint(expr= - m.x558 + m.x559 <= 4.36179) m.c528 = Constraint(expr= - m.x559 + m.x560 <= 4.36244) m.c529 = Constraint(expr= - m.x560 + m.x561 <= 4.37031) m.c530 = Constraint(expr= - m.x561 + m.x562 <= 4.37358) m.c531 = Constraint(expr= - m.x562 + m.x563 <= 4.38669) m.c532 = Constraint(expr= - m.x563 + m.x564 <= 4.39062) m.c533 = Constraint(expr= - m.x564 + m.x565 <= 4.39586) m.c534 = Constraint(expr= - m.x565 + m.x566 <= 4.40962) m.c535 = Constraint(expr= - m.x566 + m.x567 <= 4.41945) m.c536 = Constraint(expr= - m.x567 + m.x568 <= 4.41618) m.c537 = Constraint(expr= - m.x568 + m.x569 <= 4.407) m.c538 = Constraint(expr= - m.x569 + m.x570 <= 4.40176) m.c539 = Constraint(expr= - m.x570 + m.x571 <= 4.38669) m.c540 = Constraint(expr= - m.x571 + m.x572 <= 4.37489) m.c541 = Constraint(expr= - m.x572 + m.x573 <= 4.37227) m.c542 = Constraint(expr= - m.x573 + m.x574 <= 4.3631) m.c543 = Constraint(expr= - m.x574 + m.x575 <= 4.36703) m.c544 = Constraint(expr= - m.x575 + m.x576 <= 4.36506) m.c545 = Constraint(expr= - m.x576 + m.x577 <= 4.33034) m.c546 = Constraint(expr= m.x578 - m.x601 <= 1.7525) m.c547 = Constraint(expr= - m.x578 + m.x579 <= 1.75226) m.c548 = Constraint(expr= - m.x579 + m.x580 <= 1.75214) m.c549 = Constraint(expr= - m.x580 + m.x581 <= 1.7519) m.c550 = Constraint(expr= - m.x581 + m.x582 <= 1.75179) m.c551 = Constraint(expr= - m.x582 + m.x583 <= 1.75167) m.c552 = Constraint(expr= - m.x583 + m.x584 <= 1.75179) m.c553 = Constraint(expr= - m.x584 + m.x585 <= 1.75202) m.c554 = Constraint(expr= - m.x585 + m.x586 <= 1.75262) m.c555 = Constraint(expr= - m.x586 + m.x587 <= 1.7538) m.c556 = Constraint(expr= - m.x587 + m.x588 <= 1.7557) m.c557 = Constraint(expr= - m.x588 + m.x589 <= 1.75784) m.c558 = Constraint(expr= - m.x589 + m.x590 <= 1.76033) m.c559 = Constraint(expr= - m.x590 + m.x591 <= 1.76093) m.c560 = Constraint(expr= - m.x591 + m.x592 <= 1.75915) m.c561 = Constraint(expr= - m.x592 + m.x593 <= 1.75867) m.c562 = Constraint(expr= - m.x593 + m.x594 <= 1.75772) m.c563 = Constraint(expr= - m.x594 + m.x595 <= 1.75618) m.c564 = Constraint(expr= - m.x595 + m.x596 <= 1.75523) m.c565 = Constraint(expr= - m.x596 + m.x597 <= 1.75475) m.c566 = Constraint(expr= - m.x597 + m.x598 <= 1.75428) m.c567 = Constraint(expr= - m.x598 + m.x599 <= 1.7538) m.c568 = Constraint(expr= - m.x599 + m.x600 <= 1.75345) m.c569 = Constraint(expr= - m.x600 + m.x601 <= 1.75309) m.c570 = Constraint(expr= m.x602 - m.x625 <= 1.75487) m.c571 = Constraint(expr= - m.x602 + m.x603 <= 1.75582) m.c572 = Constraint(expr= - m.x603 + m.x604 <= 1.75689) m.c573 = Constraint(expr= - m.x604 + m.x605 <= 1.75784) m.c574 = Constraint(expr= - m.x605 + m.x606 <= 1.75891) m.c575 = Constraint(expr= - m.x606 + m.x607 <= 1.75879) m.c576 = Constraint(expr= - m.x607 + m.x608 <= 1.75891) m.c577 = Constraint(expr= - m.x608 + m.x609 <= 1.76033) m.c578 = Constraint(expr= - m.x609 + m.x610 <= 1.76093) m.c579 = Constraint(expr= - m.x610 + m.x611 <= 1.7633) m.c580 = Constraint(expr= - m.x611 + m.x612 <= 1.76402) m.c581 = Constraint(expr= - m.x612 + m.x613 <= 1.76496) m.c582 = Constraint(expr= - m.x613 + m.x614 <= 1.76746) m.c583 = Constraint(expr= - m.x614 + m.x615 <= 1.76924) m.c584 = Constraint(expr= - m.x615 + m.x616 <= 1.76865) m.c585 = Constraint(expr= - m.x616 + m.x617 <= 1.76698) m.c586 = Constraint(expr= - m.x617 + m.x618 <= 1.76603) m.c587 = Constraint(expr= - m.x618 + m.x619 <= 1.7633) m.c588 = Constraint(expr= - m.x619 + m.x620 <= 1.76117) m.c589 = Constraint(expr= - m.x620 + m.x621 <= 1.76069) m.c590 = Constraint(expr= - m.x621 + m.x622 <= 1.75903) m.c591 = Constraint(expr= - m.x622 + m.x623 <= 1.75974) m.c592 = Constraint(expr= - m.x623 + m.x624 <= 1.75938) m.c593 = Constraint(expr= - m.x624 + m.x625 <= 1.75309) m.c594 = Constraint(expr= m.x626 - m.x649 <= 1.7525) m.c595 = Constraint(expr= - m.x626 + m.x627 <= 1.75226) m.c596 = Constraint(expr= - m.x627 + m.x628 <= 1.75214) m.c597 = Constraint(expr= - m.x628 + m.x629 <= 1.7519) m.c598 = Constraint(expr= - m.x629 + m.x630 <= 1.75179) m.c599 = Constraint(expr= - m.x630 + m.x631 <= 1.75167) m.c600 = Constraint(expr= - m.x631 + m.x632 <= 1.75179) m.c601 = Constraint(expr= - m.x632 + m.x633 <= 1.75202) m.c602 = Constraint(expr= - m.x633 + m.x634 <= 1.75262) m.c603 = Constraint(expr= - m.x634 + m.x635 <= 1.7538) m.c604 = Constraint(expr= - m.x635 + m.x636 <= 1.7557) m.c605 = Constraint(expr= - m.x636 + m.x637 <= 1.75784) m.c606 = Constraint(expr= - m.x637 + m.x638 <= 1.76033) m.c607 = Constraint(expr= - m.x638 + m.x639 <= 1.76093) m.c608 = Constraint(expr= - m.x639 + m.x640 <= 1.75915) m.c609 = Constraint(expr= - m.x640 + m.x641 <= 1.75867) m.c610 = Constraint(expr= - m.x641 + m.x642 <= 1.75772) m.c611 = Constraint(expr= - m.x642 + m.x643 <= 1.75618) m.c612 = Constraint(expr= - m.x643 + m.x644 <= 1.75523) m.c613 = Constraint(expr= - m.x644 + m.x645 <= 1.75475) m.c614 = Constraint(expr= - m.x645 + m.x646 <= 1.75428) m.c615 = Constraint(expr= - m.x646 + m.x647 <= 1.7538) m.c616 = Constraint(expr= - m.x647 + m.x648 <= 1.75345) m.c617 = Constraint(expr= - m.x648 + m.x649 <= 1.75309) m.c618 = Constraint(expr= m.x650 - m.x673 <= 1.75487) m.c619 = Constraint(expr= - m.x650 + m.x651 <= 1.75582) m.c620 = Constraint(expr= - m.x651 + m.x652 <= 1.75689) m.c621 = Constraint(expr= - m.x652 + m.x653 <= 1.75784) m.c622 = Constraint(expr= - m.x653 + m.x654 <= 1.75891) m.c623 = Constraint(expr= - m.x654 + m.x655 <= 1.75879) m.c624 = Constraint(expr= - m.x655 + m.x656 <= 1.75891) m.c625 = Constraint(expr= - m.x656 + m.x657 <= 1.76033) m.c626 = Constraint(expr= - m.x657 + m.x658 <= 1.76093) m.c627 = Constraint(expr= - m.x658 + m.x659 <= 1.7633) m.c628 = Constraint(expr= - m.x659 + m.x660 <= 1.76402) m.c629 = Constraint(expr= - m.x660 + m.x661 <= 1.76496) m.c630 = Constraint(expr= - m.x661 + m.x662 <= 1.76746) m.c631 = Constraint(expr= - m.x662 + m.x663 <= 1.76924) m.c632 = Constraint(expr= - m.x663 + m.x664 <= 1.76865) m.c633 = Constraint(expr= - m.x664 + m.x665 <= 1.76698) m.c634 = Constraint(expr= - m.x665 + m.x666 <= 1.76603) m.c635 = Constraint(expr= - m.x666 + m.x667 <= 1.7633) m.c636 = Constraint(expr= - m.x667 + m.x668 <= 1.76117) m.c637 = Constraint(expr= - m.x668 + m.x669 <= 1.76069) m.c638 = Constraint(expr= - m.x669 + m.x670 <= 1.75903) m.c639 = Constraint(expr= - m.x670 + m.x671 <= 1.75974) m.c640 = Constraint(expr= - m.x671 + m.x672 <= 1.75938) m.c641 = Constraint(expr= - m.x672 + m.x673 <= 1.75309) m.c642 = Constraint(expr= m.x674 - m.x697 <= 1.7525) m.c643 = Constraint(expr= - m.x674 + m.x675 <= 1.75226) m.c644 = Constraint(expr= - m.x675 + m.x676 <= 1.75214) m.c645 = Constraint(expr= - m.x676 + m.x677 <= 1.7519) m.c646 = Constraint(expr= - m.x677 + m.x678 <= 1.75179) m.c647 = Constraint(expr= - m.x678 + m.x679 <= 1.75167) m.c648 = Constraint(expr= - m.x679 + m.x680 <= 1.75179) m.c649 = Constraint(expr= - m.x680 + m.x681 <= 1.75202) m.c650 = Constraint(expr= - m.x681 + m.x682 <= 1.75262) m.c651 = Constraint(expr= - m.x682 + m.x683 <= 1.7538) m.c652 = Constraint(expr= - m.x683 + m.x684 <= 1.7557) m.c653 = Constraint(expr= - m.x684 + m.x685 <= 1.75784) m.c654 = Constraint(expr= - m.x685 + m.x686 <= 1.76033) m.c655 = Constraint(expr= - m.x686 + m.x687 <= 1.76093) m.c656 = Constraint(expr= - m.x687 + m.x688 <= 1.75915) m.c657 = Constraint(expr= - m.x688 + m.x689 <= 1.75867) m.c658 = Constraint(expr= - m.x689 + m.x690 <= 1.75772) m.c659 = Constraint(expr= - m.x690 + m.x691 <= 1.75618) m.c660 = Constraint(expr= - m.x691 + m.x692 <= 1.75523) m.c661 = Constraint(expr= - m.x692 + m.x693 <= 1.75475) m.c662 = Constraint(expr= - m.x693 + m.x694 <= 1.75428) m.c663 = Constraint(expr= - m.x694 + m.x695 <= 1.7538) m.c664 = Constraint(expr= - m.x695 + m.x696 <= 1.75345) m.c665 = Constraint(expr= - m.x696 + m.x697 <= 1.75309) m.c666 = Constraint(expr= m.x698 - m.x721 <= 1.75487) m.c667 = Constraint(expr= - m.x698 + m.x699 <= 1.75582) m.c668 = Constraint(expr= - m.x699 + m.x700 <= 1.75689) m.c669 = Constraint(expr= - m.x700 + m.x701 <= 1.75784) m.c670 = Constraint(expr= - m.x701 + m.x702 <= 1.75891) m.c671 = Constraint(expr= - m.x702 + m.x703 <= 1.75879) m.c672 = Constraint(expr= - m.x703 + m.x704 <= 1.75891) m.c673 = Constraint(expr= - m.x704 + m.x705 <= 1.76033) m.c674 = Constraint(expr= - m.x705 + m.x706 <= 1.76093) m.c675 = Constraint(expr= - m.x706 + m.x707 <= 1.7633) m.c676 = Constraint(expr= - m.x707 + m.x708 <= 1.76402) m.c677 = Constraint(expr= - m.x708 + m.x709 <= 1.76496) m.c678 = Constraint(expr= - m.x709 + m.x710 <= 1.76746) m.c679 = Constraint(expr= - m.x710 + m.x711 <= 1.76924) m.c680 = Constraint(expr= - m.x711 + m.x712 <= 1.76865) m.c681 = Constraint(expr= - m.x712 + m.x713 <= 1.76698) m.c682 = Constraint(expr= - m.x713 + m.x714 <= 1.76603) m.c683 = Constraint(expr= - m.x714 + m.x715 <= 1.7633) m.c684 = Constraint(expr= - m.x715 + m.x716 <= 1.76117) m.c685 = Constraint(expr= - m.x716 + m.x717 <= 1.76069) m.c686 = Constraint(expr= - m.x717 + m.x718 <= 1.75903) m.c687 = Constraint(expr= - m.x718 + m.x719 <= 1.75974) m.c688 = Constraint(expr= - m.x719 + m.x720 <= 1.75938) m.c689 = Constraint(expr= - m.x720 + m.x721 <= 1.75309) m.c690 = Constraint(expr= m.x722 - m.x745 <= 1.7525) m.c691 = Constraint(expr= - m.x722 + m.x723 <= 1.75226) m.c692 = Constraint(expr= - m.x723 + m.x724 <= 1.75214) m.c693 = Constraint(expr= - m.x724 + m.x725 <= 1.7519) m.c694 = Constraint(expr= - m.x725 + m.x726 <= 1.75179) m.c695 = Constraint(expr= - m.x726 + m.x727 <= 1.75167) m.c696 = Constraint(expr= - m.x727 + m.x728 <= 1.75179) m.c697 = Constraint(expr= - m.x728 + m.x729 <= 1.75202) m.c698 = Constraint(expr= - m.x729 + m.x730 <= 1.75262) m.c699 = Constraint(expr= - m.x730 + m.x731 <= 1.7538) m.c700 = Constraint(expr= - m.x731 + m.x732 <= 1.7557) m.c701 = Constraint(expr= - m.x732 + m.x733 <= 1.75784) m.c702 = Constraint(expr= - m.x733 + m.x734 <= 1.76033) m.c703 = Constraint(expr= - m.x734 + m.x735 <= 1.76093) m.c704 = Constraint(expr= - m.x735 + m.x736 <= 1.75915) m.c705 = Constraint(expr= - m.x736 + m.x737 <= 1.75867) m.c706 = Constraint(expr= - m.x737 + m.x738 <= 1.75772) m.c707 = Constraint(expr= - m.x738 + m.x739 <= 1.75618) m.c708 = Constraint(expr= - m.x739 + m.x740 <= 1.75523) m.c709 = Constraint(expr= - m.x740 + m.x741 <= 1.75475) m.c710 = Constraint(expr= - m.x741 + m.x742 <= 1.75428) m.c711 = Constraint(expr= - m.x742 + m.x743 <= 1.7538) m.c712 = Constraint(expr= - m.x743 + m.x744 <= 1.75345) m.c713 = Constraint(expr= - m.x744 + m.x745 <= 1.75309) m.c714 = Constraint(expr= m.x746 - m.x769 <= 1.75487) m.c715 = Constraint(expr= - m.x746 + m.x747 <= 1.75582) m.c716 = Constraint(expr= - m.x747 + m.x748 <= 1.75689) m.c717 = Constraint(expr= - m.x748 + m.x749 <= 1.75784) m.c718 = Constraint(expr= - m.x749 + m.x750 <= 1.75891) m.c719 = Constraint(expr= - m.x750 + m.x751 <= 1.75879) m.c720 = Constraint(expr= - m.x751 + m.x752 <= 1.75891) m.c721 = Constraint(expr= - m.x752 + m.x753 <= 1.76033) m.c722 = Constraint(expr= - m.x753 + m.x754 <= 1.76093) m.c723 = Constraint(expr= - m.x754 + m.x755 <= 1.7633) m.c724 = Constraint(expr= - m.x755 + m.x756 <= 1.76402) m.c725 = Constraint(expr= - m.x756 + m.x757 <= 1.76496) m.c726 = Constraint(expr= - m.x757 + m.x758 <= 1.76746) m.c727 = Constraint(expr= - m.x758 + m.x759 <= 1.76924) m.c728 = Constraint(expr= - m.x759 + m.x760 <= 1.76865) m.c729 = Constraint(expr= - m.x760 + m.x761 <= 1.76698) m.c730 = Constraint(expr= - m.x761 + m.x762 <= 1.76603) m.c731 = Constraint(expr= - m.x762 + m.x763 <= 1.7633) m.c732 = Constraint(expr= - m.x763 + m.x764 <= 1.76117) m.c733 = Constraint(expr= - m.x764 + m.x765 <= 1.76069) m.c734 = Constraint(expr= - m.x765 + m.x766 <= 1.75903) m.c735 = Constraint(expr= - m.x766 + m.x767 <= 1.75974) m.c736 = Constraint(expr= - m.x767 + m.x768 <= 1.75938) m.c737 = Constraint(expr= - m.x768 + m.x769 <= 1.75309) m.c738 = Constraint(expr= m.x482 - m.x505 >= -4.32706) m.c739 = Constraint(expr= - m.x482 + m.x483 >= -4.32575) m.c740 = Constraint(expr= - m.x483 + m.x484 >= -4.32509) m.c741 = Constraint(expr= - m.x484 + m.x485 >= -4.32378) m.c742 = Constraint(expr= - m.x485 + m.x486 >= -4.32313) m.c743 = Constraint(expr= - m.x486 + m.x487 >= -4.32247) m.c744 = Constraint(expr= - m.x487 + m.x488 >= -4.32313) m.c745 = Constraint(expr= - m.x488 + m.x489 >= -4.32444) m.c746 = Constraint(expr= - m.x489 + m.x490 >= -4.32771) m.c747 = Constraint(expr= - m.x490 + m.x491 >= -4.33427) m.c748 = Constraint(expr= - m.x491 + m.x492 >= -4.34475) m.c749 = Constraint(expr= - m.x492 + m.x493 >= -4.35655) m.c750 = Constraint(expr= - m.x493 + m.x494 >= -4.37031) m.c751 = Constraint(expr= - m.x494 + m.x495 >= -4.37358) m.c752 = Constraint(expr= - m.x495 + m.x496 >= -4.36375) m.c753 = Constraint(expr= - m.x496 + m.x497 >= -4.36113) m.c754 = Constraint(expr= - m.x497 + m.x498 >= -4.35589) m.c755 = Constraint(expr= - m.x498 + m.x499 >= -4.34737) m.c756 = Constraint(expr= - m.x499 + m.x500 >= -4.34213) m.c757 = Constraint(expr= - m.x500 + m.x501 >= -4.33951) m.c758 = Constraint(expr= - m.x501 + m.x502 >= -4.33689) m.c759 = Constraint(expr= - m.x502 + m.x503 >= -4.33427) m.c760 = Constraint(expr= - m.x503 + m.x504 >= -4.3323) m.c761 = Constraint(expr= - m.x504 + m.x505 >= -4.33034) m.c762 = Constraint(expr= m.x506 - m.x529 >= -4.34016) m.c763 = Constraint(expr= - m.x506 + m.x507 >= -4.34541) m.c764 = Constraint(expr= - m.x507 + m.x508 >= -4.3513) m.c765 = Constraint(expr= - m.x508 + m.x509 >= -4.35655) m.c766 = Constraint(expr= - m.x509 + m.x510 >= -4.36244) m.c767 = Constraint(expr= - m.x510 + m.x511 >= -4.36179) m.c768 = Constraint(expr= - m.x511 + m.x512 >= -4.36244) m.c769 = Constraint(expr= - m.x512 + m.x513 >= -4.37031) m.c770 = Constraint(expr= - m.x513 + m.x514 >= -4.37358) m.c771 = Constraint(expr= - m.x514 + m.x515 >= -4.38669) m.c772 = Constraint(expr= - m.x515 + m.x516 >= -4.39062) m.c773 = Constraint(expr= - m.x516 + m.x517 >= -4.39586) m.c774 = Constraint(expr= - m.x517 + m.x518 >= -4.40962) m.c775 = Constraint(expr= - m.x518 + m.x519 >= -4.41945) m.c776 = Constraint(expr= - m.x519 + m.x520 >= -4.41618) m.c777 = Constraint(expr= - m.x520 + m.x521 >= -4.407) m.c778 = Constraint(expr= - m.x521 + m.x522 >= -4.40176) m.c779 = Constraint(expr= - m.x522 + m.x523 >= -4.38669) m.c780 = Constraint(expr= - m.x523 + m.x524 >= -4.37489) m.c781 = Constraint(expr= - m.x524 + m.x525 >= -4.37227) m.c782 = Constraint(expr= - m.x525 + m.x526 >= -4.3631) m.c783 = Constraint(expr= - m.x526 + m.x527 >= -4.36703) m.c784 = Constraint(expr= - m.x527 + m.x528 >= -4.36506) m.c785 = Constraint(expr= - m.x528 + m.x529 >= -4.33034) m.c786 = Constraint(expr= m.x530 - m.x553 >= -4.32706) m.c787 = Constraint(expr= - m.x530 + m.x531 >= -4.32575) m.c788 = Constraint(expr= - m.x531 + m.x532 >= -4.32509) m.c789 = Constraint(expr= - m.x532 + m.x533 >= -4.32378) m.c790 = Constraint(expr= - m.x533 + m.x534 >= -4.32313) m.c791 = Constraint(expr= - m.x534 + m.x535 >= -4.32247) m.c792 = Constraint(expr= - m.x535 + m.x536 >= -4.32313) m.c793 = Constraint(expr= - m.x536 + m.x537 >= -4.32444) m.c794 = Constraint(expr= - m.x537 + m.x538 >= -4.32771) m.c795 = Constraint(expr= - m.x538 + m.x539 >= -4.33427) m.c796 = Constraint(expr= - m.x539 + m.x540 >= -4.34475) m.c797 = Constraint(expr= - m.x540 + m.x541 >= -4.35655) m.c798 = Constraint(expr= - m.x541 + m.x542 >= -4.37031) m.c799 = Constraint(expr= - m.x542 + m.x543 >= -4.37358) m.c800 = Constraint(expr= - m.x543 + m.x544 >= -4.36375) m.c801 = Constraint(expr= - m.x544 + m.x545 >= -4.36113) m.c802 = Constraint(expr= - m.x545 + m.x546 >= -4.35589) m.c803 = Constraint(expr= - m.x546 + m.x547 >= -4.34737) m.c804 = Constraint(expr= - m.x547 + m.x548 >= -4.34213) m.c805 = Constraint(expr= - m.x548 + m.x549 >= -4.33951) m.c806 = Constraint(expr= - m.x549 + m.x550 >= -4.33689) m.c807 = Constraint(expr= - m.x550 + m.x551 >= -4.33427) m.c808 = Constraint(expr= - m.x551 + m.x552 >= -4.3323) m.c809 = Constraint(expr= - m.x552 + m.x553 >= -4.33034) m.c810 = Constraint(expr= m.x554 - m.x577 >= -4.34016) m.c811 = Constraint(expr= - m.x554 + m.x555 >= -4.34541) m.c812 = Constraint(expr= - m.x555 + m.x556 >= -4.3513) m.c813 = Constraint(expr= - m.x556 + m.x557 >= -4.35655) m.c814 = Constraint(expr= - m.x557 + m.x558 >= -4.36244) m.c815 = Constraint(expr= - m.x558 + m.x559 >= -4.36179) m.c816 = Constraint(expr= - m.x559 + m.x560 >= -4.36244) m.c817 = Constraint(expr= - m.x560 + m.x561 >= -4.37031) m.c818 = Constraint(expr= - m.x561 + m.x562 >= -4.37358) m.c819 = Constraint(expr= - m.x562 + m.x563 >= -4.38669) m.c820 = Constraint(expr= - m.x563 + m.x564 >= -4.39062) m.c821 = Constraint(expr= - m.x564 + m.x565 >= -4.39586) m.c822 = Constraint(expr= - m.x565 + m.x566 >= -4.40962) m.c823 = Constraint(expr= - m.x566 + m.x567 >= -4.41945) m.c824 = Constraint(expr= - m.x567 + m.x568 >= -4.41618) m.c825 = Constraint(expr= - m.x568 + m.x569 >= -4.407) m.c826 = Constraint(expr= - m.x569 + m.x570 >= -4.40176) m.c827 = Constraint(expr= - m.x570 + m.x571 >= -4.38669) m.c828 = Constraint(expr= - m.x571 + m.x572 >= -4.37489) m.c829 = Constraint(expr= - m.x572 + m.x573 >= -4.37227) m.c830 = Constraint(expr= - m.x573 + m.x574 >= -4.3631) m.c831 = Constraint(expr= - m.x574 + m.x575 >= -4.36703) m.c832 = Constraint(expr= - m.x575 + m.x576 >= -4.36506) m.c833 = Constraint(expr= - m.x576 + m.x577 >= -4.33034) m.c834 = Constraint(expr= m.x578 - m.x601 >= -1.7525) m.c835 = Constraint(expr= - m.x578 + m.x579 >= -1.75226) m.c836 = Constraint(expr= - m.x579 + m.x580 >= -1.75214) m.c837 = Constraint(expr= - m.x580 + m.x581 >= -1.7519) m.c838 = Constraint(expr= - m.x581 + m.x582 >= -1.75179) m.c839 = Constraint(expr= - m.x582 + m.x583 >= -1.75167) m.c840 = Constraint(expr= - m.x583 + m.x584 >= -1.75179) m.c841 = Constraint(expr= - m.x584 + m.x585 >= -1.75202) m.c842 = Constraint(expr= - m.x585 + m.x586 >= -1.75262) m.c843 = Constraint(expr= - m.x586 + m.x587 >= -1.7538) m.c844 = Constraint(expr= - m.x587 + m.x588 >= -1.7557) m.c845 = Constraint(expr= - m.x588 + m.x589 >= -1.75784) m.c846 = Constraint(expr= - m.x589 + m.x590 >= -1.76033) m.c847 = Constraint(expr= - m.x590 + m.x591 >= -1.76093) m.c848 = Constraint(expr= - m.x591 + m.x592 >= -1.75915) m.c849 = Constraint(expr= - m.x592 + m.x593 >= -1.75867) m.c850 = Constraint(expr= - m.x593 + m.x594 >= -1.75772) m.c851 = Constraint(expr= - m.x594 + m.x595 >= -1.75618) m.c852 = Constraint(expr= - m.x595 + m.x596 >= -1.75523) m.c853 = Constraint(expr= - m.x596 + m.x597 >= -1.75475) m.c854 = Constraint(expr= - m.x597 + m.x598 >= -1.75428) m.c855 = Constraint(expr= - m.x598 + m.x599 >= -1.7538) m.c856 = Constraint(expr= - m.x599 + m.x600 >= -1.75345) m.c857 = Constraint(expr= - m.x600 + m.x601 >= -1.75309) m.c858 = Constraint(expr= m.x602 - m.x625 >= -1.75487) m.c859 = Constraint(expr= - m.x602 + m.x603 >= -1.75582) m.c860 = Constraint(expr= - m.x603 + m.x604 >= -1.75689) m.c861 = Constraint(expr= - m.x604 + m.x605 >= -1.75784) m.c862 = Constraint(expr= - m.x605 + m.x606 >= -1.75891) m.c863 = Constraint(expr= - m.x606 + m.x607 >= -1.75879) m.c864 = Constraint(expr= - m.x607 + m.x608 >= -1.75891) m.c865 = Constraint(expr= - m.x608 + m.x609 >= -1.76033) m.c866 = Constraint(expr= - m.x609 + m.x610 >= -1.76093) m.c867 = Constraint(expr= - m.x610 + m.x611 >= -1.7633) m.c868 = Constraint(expr= - m.x611 + m.x612 >= -1.76402) m.c869 = Constraint(expr= - m.x612 + m.x613 >= -1.76496) m.c870 = Constraint(expr= - m.x613 + m.x614 >= -1.76746) m.c871 = Constraint(expr= - m.x614 + m.x615 >= -1.76924) m.c872 = Constraint(expr= - m.x615 + m.x616 >= -1.76865) m.c873 = Constraint(expr= - m.x616 + m.x617 >= -1.76698) m.c874 = Constraint(expr= - m.x617 + m.x618 >= -1.76603) m.c875 = Constraint(expr= - m.x618 + m.x619 >= -1.7633) m.c876 = Constraint(expr= - m.x619 + m.x620 >= -1.76117) m.c877 = Constraint(expr= - m.x620 + m.x621 >= -1.76069) m.c878 = Constraint(expr= - m.x621 + m.x622 >= -1.75903) m.c879 = Constraint(expr= - m.x622 + m.x623 >= -1.75974) m.c880 = Constraint(expr= - m.x623 + m.x624 >= -1.75938) m.c881 = Constraint(expr= - m.x624 + m.x625 >= -1.75309) m.c882 = Constraint(expr= m.x626 - m.x649 >= -1.7525) m.c883 = Constraint(expr= - m.x626 + m.x627 >= -1.75226) m.c884 = Constraint(expr= - m.x627 + m.x628 >= -1.75214) m.c885 = Constraint(expr= - m.x628 + m.x629 >= -1.7519) m.c886 = Constraint(expr= - m.x629 + m.x630 >= -1.75179) m.c887 = Constraint(expr= - m.x630 + m.x631 >= -1.75167) m.c888 = Constraint(expr= - m.x631 + m.x632 >= -1.75179) m.c889 = Constraint(expr= - m.x632 + m.x633 >= -1.75202) m.c890 = Constraint(expr= - m.x633 + m.x634 >= -1.75262) m.c891 = Constraint(expr= - m.x634 + m.x635 >= -1.7538) m.c892 = Constraint(expr= - m.x635 + m.x636 >= -1.7557) m.c893 = Constraint(expr= - m.x636 + m.x637 >= -1.75784) m.c894 = Constraint(expr= - m.x637 + m.x638 >= -1.76033) m.c895 = Constraint(expr= - m.x638 + m.x639 >= -1.76093) m.c896 = Constraint(expr= - m.x639 + m.x640 >= -1.75915) m.c897 = Constraint(expr= - m.x640 + m.x641 >= -1.75867) m.c898 = Constraint(expr= - m.x641 + m.x642 >= -1.75772) m.c899 = Constraint(expr= - m.x642 + m.x643 >= -1.75618) m.c900 = Constraint(expr= - m.x643 + m.x644 >= -1.75523) m.c901 = Constraint(expr= - m.x644 + m.x645 >= -1.75475) m.c902 = Constraint(expr= - m.x645 + m.x646 >= -1.75428) m.c903 = Constraint(expr= - m.x646 + m.x647 >= -1.7538) m.c904 = Constraint(expr= - m.x647 + m.x648 >= -1.75345) m.c905 = Constraint(expr= - m.x648 + m.x649 >= -1.75309) m.c906 = Constraint(expr= m.x650 - m.x673 >= -1.75487) m.c907 = Constraint(expr= - m.x650 + m.x651 >= -1.75582) m.c908 = Constraint(expr= - m.x651 + m.x652 >= -1.75689) m.c909 = Constraint(expr= - m.x652 + m.x653 >= -1.75784) m.c910 = Constraint(expr= - m.x653 + m.x654 >= -1.75891) m.c911 = Constraint(expr= - m.x654 + m.x655 >= -1.75879) m.c912 = Constraint(expr= - m.x655 + m.x656 >= -1.75891) m.c913 = Constraint(expr= - m.x656 + m.x657 >= -1.76033) m.c914 = Constraint(expr= - m.x657 + m.x658 >= -1.76093) m.c915 = Constraint(expr= - m.x658 + m.x659 >= -1.7633) m.c916 = Constraint(expr= - m.x659 + m.x660 >= -1.76402) m.c917 = Constraint(expr= - m.x660 + m.x661 >= -1.76496) m.c918 = Constraint(expr= - m.x661 + m.x662 >= -1.76746) m.c919 = Constraint(expr= - m.x662 + m.x663 >= -1.76924) m.c920 = Constraint(expr= - m.x663 + m.x664 >= -1.76865) m.c921 = Constraint(expr= - m.x664 + m.x665 >= -1.76698) m.c922 = Constraint(expr= - m.x665 + m.x666 >= -1.76603) m.c923 = Constraint(expr= - m.x666 + m.x667 >= -1.7633) m.c924 = Constraint(expr= - m.x667 + m.x668 >= -1.76117) m.c925 = Constraint(expr= - m.x668 + m.x669 >= -1.76069) m.c926 = Constraint(expr= - m.x669 + m.x670 >= -1.75903) m.c927 = Constraint(expr= - m.x670 + m.x671 >= -1.75974) m.c928 = Constraint(expr= - m.x671 + m.x672 >= -1.75938) m.c929 = Constraint(expr= - m.x672 + m.x673 >= -1.75309) m.c930 = Constraint(expr= m.x674 - m.x697 >= -1.7525) m.c931 = Constraint(expr= - m.x674 + m.x675 >= -1.75226) m.c932 = Constraint(expr= - m.x675 + m.x676 >= -1.75214) m.c933 = Constraint(expr= - m.x676 + m.x677 >= -1.7519) m.c934 = Constraint(expr= - m.x677 + m.x678 >= -1.75179) m.c935 = Constraint(expr= - m.x678 + m.x679 >= -1.75167) m.c936 = Constraint(expr= - m.x679 + m.x680 >= -1.75179) m.c937 = Constraint(expr= - m.x680 + m.x681 >= -1.75202) m.c938 = Constraint(expr= - m.x681 + m.x682 >= -1.75262) m.c939 = Constraint(expr= - m.x682 + m.x683 >= -1.7538) m.c940 = Constraint(expr= - m.x683 + m.x684 >= -1.7557) m.c941 = Constraint(expr= - m.x684 + m.x685 >= -1.75784) m.c942 = Constraint(expr= - m.x685 + m.x686 >= -1.76033) m.c943 = Constraint(expr= - m.x686 + m.x687 >= -1.76093) m.c944 = Constraint(expr= - m.x687 + m.x688 >= -1.75915) m.c945 = Constraint(expr= - m.x688 + m.x689 >= -1.75867) m.c946 = Constraint(expr= - m.x689 + m.x690 >= -1.75772) m.c947 = Constraint(expr= - m.x690 + m.x691 >= -1.75618) m.c948 = Constraint(expr= - m.x691 + m.x692 >= -1.75523) m.c949 = Constraint(expr= - m.x692 + m.x693 >= -1.75475) m.c950 = Constraint(expr= - m.x693 + m.x694 >= -1.75428) m.c951 = Constraint(expr= - m.x694 + m.x695 >= -1.7538) m.c952 = Constraint(expr= - m.x695 + m.x696 >= -1.75345) m.c953 = Constraint(expr= - m.x696 + m.x697 >= -1.75309) m.c954 = Constraint(expr= m.x698 - m.x721 >= -1.75487) m.c955 = Constraint(expr= - m.x698 + m.x699 >= -1.75582) m.c956 = Constraint(expr= - m.x699 + m.x700 >= -1.75689) m.c957 = Constraint(expr= - m.x700 + m.x701 >= -1.75784) m.c958 = Constraint(expr= - m.x701 + m.x702 >= -1.75891) m.c959 = Constraint(expr= - m.x702 + m.x703 >= -1.75879) m.c960 = Constraint(expr= - m.x703 + m.x704 >= -1.75891) m.c961 = Constraint(expr= - m.x704 + m.x705 >= -1.76033) m.c962 = Constraint(expr= - m.x705 + m.x706 >= -1.76093) m.c963 = Constraint(expr= - m.x706 + m.x707 >= -1.7633) m.c964 = Constraint(expr= - m.x707 + m.x708 >= -1.76402) m.c965 = Constraint(expr= - m.x708 + m.x709 >= -1.76496) m.c966 = Constraint(expr= - m.x709 + m.x710 >= -1.76746) m.c967 = Constraint(expr= - m.x710 + m.x711 >= -1.76924) m.c968 = Constraint(expr= - m.x711 + m.x712 >= -1.76865) m.c969 = Constraint(expr= - m.x712 + m.x713 >= -1.76698) m.c970 = Constraint(expr= - m.x713 + m.x714 >= -1.76603) m.c971 = Constraint(expr= - m.x714 + m.x715 >= -1.7633) m.c972 = Constraint(expr= - m.x715 + m.x716 >= -1.76117) m.c973 = Constraint(expr= - m.x716 + m.x717 >= -1.76069) m.c974 = Constraint(expr= - m.x717 + m.x718 >= -1.75903) m.c975 = Constraint(expr= - m.x718 + m.x719 >= -1.75974) m.c976 = Constraint(expr= - m.x719 + m.x720 >= -1.75938) m.c977 = Constraint(expr= - m.x720 + m.x721 >= -1.75309) m.c978 = Constraint(expr= m.x722 - m.x745 >= -1.7525) m.c979 = Constraint(expr= - m.x722 + m.x723 >= -1.75226) m.c980 = Constraint(expr= - m.x723 + m.x724 >= -1.75214) m.c981 = Constraint(expr= - m.x724 + m.x725 >= -1.7519) m.c982 = Constraint(expr= - m.x725 + m.x726 >= -1.75179) m.c983 = Constraint(expr= - m.x726 + m.x727 >= -1.75167) m.c984 = Constraint(expr= - m.x727 + m.x728 >= -1.75179) m.c985 = Constraint(expr= - m.x728 + m.x729 >= -1.75202) m.c986 = Constraint(expr= - m.x729 + m.x730 >= -1.75262) m.c987 = Constraint(expr= - m.x730 + m.x731 >= -1.7538) m.c988 = Constraint(expr= - m.x731 + m.x732 >= -1.7557) m.c989 = Constraint(expr= - m.x732 + m.x733 >= -1.75784) m.c990 = Constraint(expr= - m.x733 + m.x734 >= -1.76033) m.c991 = Constraint(expr= - m.x734 + m.x735 >= -1.76093) m.c992 = Constraint(expr= - m.x735 + m.x736 >= -1.75915) m.c993 = Constraint(expr= - m.x736 + m.x737 >= -1.75867) m.c994 = Constraint(expr= - m.x737 + m.x738 >= -1.75772) m.c995 = Constraint(expr= - m.x738 + m.x739 >= -1.75618) m.c996 = Constraint(expr= - m.x739 + m.x740 >= -1.75523) m.c997 = Constraint(expr= - m.x740 + m.x741 >= -1.75475) m.c998 = Constraint(expr= - m.x741 + m.x742 >= -1.75428) m.c999 = Constraint(expr= - m.x742 + m.x743 >= -1.7538) m.c1000 = Constraint(expr= - m.x743 + m.x744 >= -1.75345) m.c1001 = Constraint(expr= - m.x744 + m.x745 >= -1.75309) m.c1002 = Constraint(expr= m.x746 - m.x769 >= -1.75487) m.c1003 = Constraint(expr= - m.x746 + m.x747 >= -1.75582) m.c1004 = Constraint(expr= - m.x747 + m.x748 >= -1.75689) m.c1005 = Constraint(expr= - m.x748 + m.x749 >= -1.75784) m.c1006 = Constraint(expr= - m.x749 + m.x750 >= -1.75891) m.c1007 = Constraint(expr= - m.x750 + m.x751 >= -1.75879) m.c1008 = Constraint(expr= - m.x751 + m.x752 >= -1.75891) m.c1009 = Constraint(expr= - m.x752 + m.x753 >= -1.76033) m.c1010 = Constraint(expr= - m.x753 + m.x754 >= -1.76093) m.c1011 = Constraint(expr= - m.x754 + m.x755 >= -1.7633) m.c1012 = Constraint(expr= - m.x755 + m.x756 >= -1.76402) m.c1013 = Constraint(expr= - m.x756 + m.x757 >= -1.76496) m.c1014 = Constraint(expr= - m.x757 + m.x758 >= -1.76746) m.c1015 = Constraint(expr= - m.x758 + m.x759 >= -1.76924) m.c1016 = Constraint(expr= - m.x759 + m.x760 >= -1.76865) m.c1017 = Constraint(expr= - m.x760 + m.x761 >= -1.76698) m.c1018 = Constraint(expr= - m.x761 + m.x762 >= -1.76603) m.c1019 = Constraint(expr= - m.x762 + m.x763 >= -1.7633) m.c1020 = Constraint(expr= - m.x763 + m.x764 >= -1.76117) m.c1021 = Constraint(expr= - m.x764 + m.x765 >= -1.76069) m.c1022 = Constraint(expr= - m.x765 + m.x766 >= -1.75903) m.c1023 = Constraint(expr= - m.x766 + m.x767 >= -1.75974) m.c1024 = Constraint(expr= - m.x767 + m.x768 >= -1.75938) m.c1025 = Constraint(expr= - m.x768 + m.x769 >= -1.75309) m.c1026 = Constraint(expr= m.x770 - m.x793 <= 6.983) m.c1027 = Constraint(expr= - m.x770 + m.x771 <= 6.983) m.c1028 = Constraint(expr= - m.x771 + m.x772 <= 6.983) m.c1029 = Constraint(expr= - m.x772 + m.x773 <= 6.983) m.c1030 = Constraint(expr= - m.x773 + m.x774 <= 6.983) m.c1031 = Constraint(expr= - m.x774 + m.x775 <= 6.983) m.c1032 = Constraint(expr= - m.x775 + m.x776 <= 6.983) m.c1033 = Constraint(expr= - m.x776 + m.x777 <= 6.983) m.c1034 = Constraint(expr= - m.x777 + m.x778 <= 6.983) m.c1035 = Constraint(expr= - m.x778 + m.x779 <= 6.983) m.c1036 = Constraint(expr= - m.x779 + m.x780 <= 6.983) m.c1037 = Constraint(expr= - m.x780 + m.x781 <= 6.983) m.c1038 = Constraint(expr= - m.x781 + m.x782 <= 6.983) m.c1039 = Constraint(expr= - m.x782 + m.x783 <= 6.983) m.c1040 = Constraint(expr= - m.x783 + m.x784 <= 6.983) m.c1041 = Constraint(expr= - m.x784 + m.x785 <= 6.983) m.c1042 = Constraint(expr= - m.x785 + m.x786 <= 6.983) m.c1043 = Constraint(expr= - m.x786 + m.x787 <= 6.983) m.c1044 = Constraint(expr= - m.x787 + m.x788 <= 6.983) m.c1045 = Constraint(expr= - m.x788 + m.x789 <= 6.983) m.c1046 = Constraint(expr= - m.x789 + m.x790 <= 6.983) m.c1047 = Constraint(expr= - m.x790 + m.x791 <= 6.983) m.c1048 = Constraint(expr= - m.x791 + m.x792 <= 6.983) m.c1049 = Constraint(expr= - m.x792 + m.x793 <= 6.983) m.c1050 = Constraint(expr= m.x794 - m.x817 <= 6.983) m.c1051 = Constraint(expr= - m.x794 + m.x795 <= 6.983) m.c1052 = Constraint(expr= - m.x795 + m.x796 <= 6.983) m.c1053 = Constraint(expr= - m.x796 + m.x797 <= 6.983) m.c1054 = Constraint(expr= - m.x797 + m.x798 <= 6.983) m.c1055 = Constraint(expr= - m.x798 + m.x799 <= 6.983) m.c1056 = Constraint(expr= - m.x799 + m.x800 <= 6.983) m.c1057 = Constraint(expr= - m.x800 + m.x801 <= 6.983) m.c1058 = Constraint(expr= - m.x801 + m.x802 <= 6.983) m.c1059 = Constraint(expr= - m.x802 + m.x803 <= 6.983) m.c1060 = Constraint(expr= - m.x803 + m.x804 <= 6.983) m.c1061 = Constraint(expr= - m.x804 + m.x805 <= 6.983) m.c1062 = Constraint(expr= - m.x805 + m.x806 <= 6.983) m.c1063 = Constraint(expr= - m.x806 + m.x807 <= 6.983) m.c1064 = Constraint(expr= - m.x807 + m.x808 <= 6.983) m.c1065 = Constraint(expr= - m.x808 + m.x809 <= 6.983) m.c1066 = Constraint(expr= - m.x809 + m.x810 <= 6.983) m.c1067 = Constraint(expr= - m.x810 + m.x811 <= 6.983) m.c1068 = Constraint(expr= - m.x811 + m.x812 <= 6.983) m.c1069 = Constraint(expr= - m.x812 + m.x813 <= 6.983) m.c1070 = Constraint(expr= - m.x813 + m.x814 <= 6.983) m.c1071 = Constraint(expr= - m.x814 + m.x815 <= 6.983) m.c1072 = Constraint(expr= - m.x815 + m.x816 <= 6.983) m.c1073 = Constraint(expr= - m.x816 + m.x817 <= 6.983) m.c1074 = Constraint(expr= m.x818 - m.x841 <= 6.983) m.c1075 = Constraint(expr= - m.x818 + m.x819 <= 6.983) m.c1076 = Constraint(expr= - m.x819 + m.x820 <= 6.983) m.c1077 = Constraint(expr= - m.x820 + m.x821 <= 6.983) m.c1078 = Constraint(expr= - m.x821 + m.x822 <= 6.983) m.c1079 = Constraint(expr= - m.x822 + m.x823 <= 6.983) m.c1080 = Constraint(expr= - m.x823 + m.x824 <= 6.983) m.c1081 = Constraint(expr= - m.x824 + m.x825 <= 6.983) m.c1082 = Constraint(expr= - m.x825 + m.x826 <= 6.983) m.c1083 = Constraint(expr= - m.x826 + m.x827 <= 6.983) m.c1084 = Constraint(expr= - m.x827 + m.x828 <= 6.983) m.c1085 = Constraint(expr= - m.x828 + m.x829 <= 6.983) m.c1086 = Constraint(expr= - m.x829 + m.x830 <= 6.983) m.c1087 = Constraint(expr= - m.x830 + m.x831 <= 6.983) m.c1088 = Constraint(expr= - m.x831 + m.x832 <= 6.983) m.c1089 = Constraint(expr= - m.x832 + m.x833 <= 6.983) m.c1090 = Constraint(expr= - m.x833 + m.x834 <= 6.983) m.c1091 = Constraint(expr= - m.x834 + m.x835 <= 6.983) m.c1092 = Constraint(expr= - m.x835 + m.x836 <= 6.983) m.c1093 = Constraint(expr= - m.x836 + m.x837 <= 6.983) m.c1094 = Constraint(expr= - m.x837 + m.x838 <= 6.983) m.c1095 = Constraint(expr= - m.x838 + m.x839 <= 6.983) m.c1096 = Constraint(expr= - m.x839 + m.x840 <= 6.983) m.c1097 = Constraint(expr= - m.x840 + m.x841 <= 6.983) m.c1098 = Constraint(expr= m.x842 - m.x865 <= 6.983) m.c1099 = Constraint(expr= - m.x842 + m.x843 <= 6.983) m.c1100 = Constraint(expr= - m.x843 + m.x844 <= 6.983) m.c1101 = Constraint(expr= - m.x844 + m.x845 <= 6.983) m.c1102 = Constraint(expr= - m.x845 + m.x846 <= 6.983) m.c1103 = Constraint(expr= - m.x846 + m.x847 <= 6.983) m.c1104 = Constraint(expr= - m.x847 + m.x848 <= 6.983) m.c1105 = Constraint(expr= - m.x848 + m.x849 <= 6.983) m.c1106 = Constraint(expr= - m.x849 + m.x850 <= 6.983) m.c1107 = Constraint(expr= - m.x850 + m.x851 <= 6.983) m.c1108 = Constraint(expr= - m.x851 + m.x852 <= 6.983) m.c1109 = Constraint(expr= - m.x852 + m.x853 <= 6.983) m.c1110 = Constraint(expr= - m.x853 + m.x854 <= 6.983) m.c1111 = Constraint(expr= - m.x854 + m.x855 <= 6.983) m.c1112 = Constraint(expr= - m.x855 + m.x856 <= 6.983) m.c1113 = Constraint(expr= - m.x856 + m.x857 <= 6.983) m.c1114 = Constraint(expr= - m.x857 + m.x858 <= 6.983) m.c1115 = Constraint(expr= - m.x858 + m.x859 <= 6.983) m.c1116 = Constraint(expr= - m.x859 + m.x860 <= 6.983) m.c1117 = Constraint(expr= - m.x860 + m.x861 <= 6.983) m.c1118 = Constraint(expr= - m.x861 + m.x862 <= 6.983) m.c1119 = Constraint(expr= - m.x862 + m.x863 <= 6.983) m.c1120 = Constraint(expr= - m.x863 + m.x864 <= 6.983) m.c1121 = Constraint(expr= - m.x864 + m.x865 <= 6.983) m.c1122 = Constraint(expr= m.x866 - m.x889 <= 5.1187) m.c1123 = Constraint(expr= - m.x866 + m.x867 <= 5.11491) m.c1124 = Constraint(expr= - m.x867 + m.x868 <= 5.11301) m.c1125 = Constraint(expr= - m.x868 + m.x869 <= 5.10922) m.c1126 = Constraint(expr= - m.x869 + m.x870 <= 5.10733) m.c1127 = Constraint(expr= - m.x870 + m.x871 <= 5.10543) m.c1128 = Constraint(expr= - m.x871 + m.x872 <= 5.10733) m.c1129 = Constraint(expr= - m.x872 + m.x873 <= 5.11112) m.c1130 = Constraint(expr= - m.x873 + m.x874 <= 5.12059) m.c1131 = Constraint(expr= - m.x874 + m.x875 <= 5.13954) m.c1132 = Constraint(expr= - m.x875 + m.x876 <= 5.16985) m.c1133 = Constraint(expr= - m.x876 + m.x877 <= 5.20395) m.c1134 = Constraint(expr= - m.x877 + m.x878 <= 5.24374) m.c1135 = Constraint(expr= - m.x878 + m.x879 <= 5.25321) m.c1136 = Constraint(expr= - m.x879 + m.x880 <= 5.22479) m.c1137 = Constraint(expr= - m.x880 + m.x881 <= 5.21721) m.c1138 = Constraint(expr= - m.x881 + m.x882 <= 5.20206) m.c1139 = Constraint(expr= - m.x882 + m.x883 <= 5.17743) m.c1140 = Constraint(expr= - m.x883 + m.x884 <= 5.16227) m.c1141 = Constraint(expr= - m.x884 + m.x885 <= 5.15469) m.c1142 = Constraint(expr= - m.x885 + m.x886 <= 5.14712) m.c1143 = Constraint(expr= - m.x886 + m.x887 <= 5.13954) m.c1144 = Constraint(expr= - m.x887 + m.x888 <= 5.13385) m.c1145 = Constraint(expr= - m.x888 + m.x889 <= 5.12817) m.c1146 = Constraint(expr= m.x890 - m.x913 <= 5.15659) m.c1147 = Constraint(expr= - m.x890 + m.x891 <= 5.17174) m.c1148 = Constraint(expr= - m.x891 + m.x892 <= 5.1888) m.c1149 = Constraint(expr= - m.x892 + m.x893 <= 5.20395) m.c1150 = Constraint(expr= - m.x893 + m.x894 <= 5.221) m.c1151 = Constraint(expr= - m.x894 + m.x895 <= 5.21911) m.c1152 = Constraint(expr= - m.x895 + m.x896 <= 5.221) m.c1153 = Constraint(expr= - m.x896 + m.x897 <= 5.24374) m.c1154 = Constraint(expr= - m.x897 + m.x898 <= 5.25321) m.c1155 = Constraint(expr= - m.x898 + m.x899 <= 5.2911) m.c1156 = Constraint(expr= - m.x899 + m.x900 <= 5.30247) m.c1157 = Constraint(expr= - m.x900 + m.x901 <= 5.31763) m.c1158 = Constraint(expr= - m.x901 + m.x902 <= 5.35741) m.c1159 = Constraint(expr= - m.x902 + m.x903 <= 5.38583) m.c1160 = Constraint(expr= - m.x903 + m.x904 <= 5.37636) m.c1161 = Constraint(expr= - m.x904 + m.x905 <= 5.34984) m.c1162 = Constraint(expr= - m.x905 + m.x906 <= 5.33468) m.c1163 = Constraint(expr= - m.x906 + m.x907 <= 5.2911) m.c1164 = Constraint(expr= - m.x907 + m.x908 <= 5.257) m.c1165 = Constraint(expr= - m.x908 + m.x909 <= 5.24942) m.c1166 = Constraint(expr= - m.x909 + m.x910 <= 5.2229) m.c1167 = Constraint(expr= - m.x910 + m.x911 <= 5.23427) m.c1168 = Constraint(expr= - m.x911 + m.x912 <= 5.22858) m.c1169 = Constraint(expr= - m.x912 + m.x913 <= 5.12817) m.c1170 = Constraint(expr= m.x914 - m.x937 <= 5.1187) m.c1171 = Constraint(expr= - m.x914 + m.x915 <= 5.11491) m.c1172 = Constraint(expr= - m.x915 + m.x916 <= 5.11301) m.c1173 = Constraint(expr= - m.x916 + m.x917 <= 5.10922) m.c1174 = Constraint(expr= - m.x917 + m.x918 <= 5.10733) m.c1175 = Constraint(expr= - m.x918 + m.x919 <= 5.10543) m.c1176 = Constraint(expr= - m.x919 + m.x920 <= 5.10733) m.c1177 = Constraint(expr= - m.x920 + m.x921 <= 5.11112) m.c1178 = Constraint(expr= - m.x921 + m.x922 <= 5.12059) m.c1179 = Constraint(expr= - m.x922 + m.x923 <= 5.13954) m.c1180 = Constraint(expr= - m.x923 + m.x924 <= 5.16985) m.c1181 = Constraint(expr= - m.x924 + m.x925 <= 5.20395) m.c1182 = Constraint(expr= - m.x925 + m.x926 <= 5.24374) m.c1183 = Constraint(expr= - m.x926 + m.x927 <= 5.25321) m.c1184 = Constraint(expr= - m.x927 + m.x928 <= 5.22479) m.c1185 = Constraint(expr= - m.x928 + m.x929 <= 5.21721) m.c1186 = Constraint(expr= - m.x929 + m.x930 <= 5.20206) m.c1187 = Constraint(expr= - m.x930 + m.x931 <= 5.17743) m.c1188 = Constraint(expr= - m.x931 + m.x932 <= 5.16227) m.c1189 = Constraint(expr= - m.x932 + m.x933 <= 5.15469) m.c1190 = Constraint(expr= - m.x933 + m.x934 <= 5.14712) m.c1191 = Constraint(expr= - m.x934 + m.x935 <= 5.13954) m.c1192 = Constraint(expr= - m.x935 + m.x936 <= 5.13385) m.c1193 = Constraint(expr= - m.x936 + m.x937 <= 5.12817) m.c1194 = Constraint(expr= m.x938 - m.x961 <= 5.15659) m.c1195 = Constraint(expr= - m.x938 + m.x939 <= 5.17174) m.c1196 = Constraint(expr= - m.x939 + m.x940 <= 5.1888) m.c1197 = Constraint(expr= - m.x940 + m.x941 <= 5.20395) m.c1198 = Constraint(expr= - m.x941 + m.x942 <= 5.221) m.c1199 = Constraint(expr= - m.x942 + m.x943 <= 5.21911) m.c1200 = Constraint(expr= - m.x943 + m.x944 <= 5.221) m.c1201 = Constraint(expr= - m.x944 + m.x945 <= 5.24374) m.c1202 = Constraint(expr= - m.x945 + m.x946 <= 5.25321) m.c1203 = Constraint(expr= - m.x946 + m.x947 <= 5.2911) m.c1204 = Constraint(expr= - m.x947 + m.x948 <= 5.30247) m.c1205 = Constraint(expr= - m.x948 + m.x949 <= 5.31763) m.c1206 = Constraint(expr= - m.x949 + m.x950 <= 5.35741) m.c1207 = Constraint(expr= - m.x950 + m.x951 <= 5.38583) m.c1208 = Constraint(expr= - m.x951 + m.x952 <= 5.37636) m.c1209 = Constraint(expr= - m.x952 + m.x953 <= 5.34984) m.c1210 = Constraint(expr= - m.x953 + m.x954 <= 5.33468) m.c1211 = Constraint(expr= - m.x954 + m.x955 <= 5.2911) m.c1212 = Constraint(expr= - m.x955 + m.x956 <= 5.257) m.c1213 = Constraint(expr= - m.x956 + m.x957 <= 5.24942) m.c1214 = Constraint(expr= - m.x957 + m.x958 <= 5.2229) m.c1215 = Constraint(expr= - m.x958 + m.x959 <= 5.23427) m.c1216 = Constraint(expr= - m.x959 + m.x960 <= 5.22858) m.c1217 = Constraint(expr= - m.x960 + m.x961 <= 5.12817) m.c1218 = Constraint(expr= m.x962 - m.x985 <= 2.28215) m.c1219 = Constraint(expr= - m.x962 + m.x963 <= 2.28176) m.c1220 = Constraint(expr= - m.x963 + m.x964 <= 2.28157) m.c1221 = Constraint(expr= - m.x964 + m.x965 <= 2.28118) m.c1222 = Constraint(expr= - m.x965 + m.x966 <= 2.28099) m.c1223 = Constraint(expr= - m.x966 + m.x967 <= 2.2808) m.c1224 = Constraint(expr= - m.x967 + m.x968 <= 2.28099) m.c1225 = Constraint(expr= - m.x968 + m.x969 <= 2.28138) m.c1226 = Constraint(expr= - m.x969 + m.x970 <= 2.28235) m.c1227 = Constraint(expr= - m.x970 + m.x971 <= 2.28428) m.c1228 = Constraint(expr= - m.x971 + m.x972 <= 2.28738) m.c1229 = Constraint(expr= - m.x972 + m.x973 <= 2.29087) m.c1230 = Constraint(expr= - m.x973 + m.x974 <= 2.29494) m.c1231 = Constraint(expr= - m.x974 + m.x975 <= 2.29591) m.c1232 = Constraint(expr= - m.x975 + m.x976 <= 2.293) m.c1233 = Constraint(expr= - m.x976 + m.x977 <= 2.29223) m.c1234 = Constraint(expr= - m.x977 + m.x978 <= 2.29068) m.c1235 = Constraint(expr= - m.x978 + m.x979 <= 2.28816) m.c1236 = Constraint(expr= - m.x979 + m.x980 <= 2.28661) m.c1237 = Constraint(expr= - m.x980 + m.x981 <= 2.28583) m.c1238 = Constraint(expr= - m.x981 + m.x982 <= 2.28506) m.c1239 = Constraint(expr= - m.x982 + m.x983 <= 2.28428) m.c1240 = Constraint(expr= - m.x983 + m.x984 <= 2.2837) m.c1241 = Constraint(expr= - m.x984 + m.x985 <= 2.28312) m.c1242 = Constraint(expr= m.x986 - m.x1009 <= 2.28603) m.c1243 = Constraint(expr= - m.x986 + m.x987 <= 2.28758) m.c1244 = Constraint(expr= - m.x987 + m.x988 <= 2.28932) m.c1245 = Constraint(expr= - m.x988 + m.x989 <= 2.29087) m.c1246 = Constraint(expr= - m.x989 + m.x990 <= 2.29262) m.c1247 = Constraint(expr= - m.x990 + m.x991 <= 2.29242) m.c1248 = Constraint(expr= - m.x991 + m.x992 <= 2.29262) m.c1249 = Constraint(expr= - m.x992 + m.x993 <= 2.29494) m.c1250 = Constraint(expr= - m.x993 + m.x994 <= 2.29591) m.c1251 = Constraint(expr= - m.x994 + m.x995 <= 2.29979) m.c1252 = Constraint(expr= - m.x995 + m.x996 <= 2.30095) m.c1253 = Constraint(expr= - m.x996 + m.x997 <= 2.3025) m.c1254 = Constraint(expr= - m.x997 + m.x998 <= 2.30657) m.c1255 = Constraint(expr= - m.x998 + m.x999 <= 2.30947) m.c1256 = Constraint(expr= - m.x999 + m.x1000 <= 2.30851) m.c1257 = Constraint(expr= - m.x1000 + m.x1001 <= 2.30579) m.c1258 = Constraint(expr= - m.x1001 + m.x1002 <= 2.30424) m.c1259 = Constraint(expr= - m.x1002 + m.x1003 <= 2.29979) m.c1260 = Constraint(expr= - m.x1003 + m.x1004 <= 2.2963) m.c1261 = Constraint(expr= - m.x1004 + m.x1005 <= 2.29552) m.c1262 = Constraint(expr= - m.x1005 + m.x1006 <= 2.29281) m.c1263 = Constraint(expr= - m.x1006 + m.x1007 <= 2.29397) m.c1264 = Constraint(expr= - m.x1007 + m.x1008 <= 2.29339) m.c1265 = Constraint(expr= - m.x1008 + m.x1009 <= 2.28312) m.c1266 = Constraint(expr= m.x1010 - m.x1033 <= 2.28215) m.c1267 = Constraint(expr= - m.x1010 + m.x1011 <= 2.28176) m.c1268 = Constraint(expr= - m.x1011 + m.x1012 <= 2.28157) m.c1269 = Constraint(expr= - m.x1012 + m.x1013 <= 2.28118) m.c1270 = Constraint(expr= - m.x1013 + m.x1014 <= 2.28099) m.c1271 = Constraint(expr= - m.x1014 + m.x1015 <= 2.2808) m.c1272 = Constraint(expr= - m.x1015 + m.x1016 <= 2.28099) m.c1273 = Constraint(expr= - m.x1016 + m.x1017 <= 2.28138) m.c1274 = Constraint(expr= - m.x1017 + m.x1018 <= 2.28235) m.c1275 = Constraint(expr= - m.x1018 + m.x1019 <= 2.28428) m.c1276 = Constraint(expr= - m.x1019 + m.x1020 <= 2.28738) m.c1277 = Constraint(expr= - m.x1020 + m.x1021 <= 2.29087) m.c1278 = Constraint(expr= - m.x1021 + m.x1022 <= 2.29494) m.c1279 = Constraint(expr= - m.x1022 + m.x1023 <= 2.29591) m.c1280 = Constraint(expr= - m.x1023 + m.x1024 <= 2.293) m.c1281 = Constraint(expr= - m.x1024 + m.x1025 <= 2.29223) m.c1282 = Constraint(expr= - m.x1025 + m.x1026 <= 2.29068) m.c1283 = Constraint(expr= - m.x1026 + m.x1027 <= 2.28816) m.c1284 = Constraint(expr= - m.x1027 + m.x1028 <= 2.28661) m.c1285 = Constraint(expr= - m.x1028 + m.x1029 <= 2.28583) m.c1286 = Constraint(expr= - m.x1029 + m.x1030 <= 2.28506) m.c1287 = Constraint(expr= - m.x1030 + m.x1031 <= 2.28428) m.c1288 = Constraint(expr= - m.x1031 + m.x1032 <= 2.2837) m.c1289 = Constraint(expr= - m.x1032 + m.x1033 <= 2.28312) m.c1290 = Constraint(expr= m.x1034 - m.x1057 <= 2.28603) m.c1291 = Constraint(expr= - m.x1034 + m.x1035 <= 2.28758) m.c1292 = Constraint(expr= - m.x1035 + m.x1036 <= 2.28932) m.c1293 = Constraint(expr= - m.x1036 + m.x1037 <= 2.29087) m.c1294 = Constraint(expr= - m.x1037 + m.x1038 <= 2.29262) m.c1295 = Constraint(expr= - m.x1038 + m.x1039 <= 2.29242) m.c1296 = Constraint(expr= - m.x1039 + m.x1040 <= 2.29262) m.c1297 = Constraint(expr= - m.x1040 + m.x1041 <= 2.29494) m.c1298 = Constraint(expr= - m.x1041 + m.x1042 <= 2.29591) m.c1299 = Constraint(expr= - m.x1042 + m.x1043 <= 2.29979) m.c1300 = Constraint(expr= - m.x1043 + m.x1044 <= 2.30095) m.c1301 = Constraint(expr= - m.x1044 + m.x1045 <= 2.3025) m.c1302 = Constraint(expr= - m.x1045 + m.x1046 <= 2.30657) m.c1303 = Constraint(expr= - m.x1046 + m.x1047 <= 2.30947) m.c1304 = Constraint(expr= - m.x1047 + m.x1048 <= 2.30851) m.c1305 = Constraint(expr= - m.x1048 + m.x1049 <= 2.30579) m.c1306 = Constraint(expr= - m.x1049 + m.x1050 <= 2.30424) m.c1307 = Constraint(expr= - m.x1050 + m.x1051 <= 2.29979) m.c1308 = Constraint(expr= - m.x1051 + m.x1052 <= 2.2963) m.c1309 = Constraint(expr= - m.x1052 + m.x1053 <= 2.29552) m.c1310 = Constraint(expr= - m.x1053 + m.x1054 <= 2.29281) m.c1311 = Constraint(expr= - m.x1054 + m.x1055 <= 2.29397) m.c1312 = Constraint(expr= - m.x1055 + m.x1056 <= 2.29339) m.c1313 = Constraint(expr= - m.x1056 + m.x1057 <= 2.28312) m.c1314 = Constraint(expr= m.x1058 - m.x1081 <= 2.28215) m.c1315 = Constraint(expr= - m.x1058 + m.x1059 <= 2.28176) m.c1316 = Constraint(expr= - m.x1059 + m.x1060 <= 2.28157) m.c1317 = Constraint(expr= - m.x1060 + m.x1061 <= 2.28118) m.c1318 = Constraint(expr= - m.x1061 + m.x1062 <= 2.28099) m.c1319 = Constraint(expr= - m.x1062 + m.x1063 <= 2.2808) m.c1320 = Constraint(expr= - m.x1063 + m.x1064 <= 2.28099) m.c1321 = Constraint(expr= - m.x1064 + m.x1065 <= 2.28138) m.c1322 = Constraint(expr= - m.x1065 + m.x1066 <= 2.28235) m.c1323 = Constraint(expr= - m.x1066 + m.x1067 <= 2.28428) m.c1324 = Constraint(expr= - m.x1067 + m.x1068 <= 2.28738) m.c1325 = Constraint(expr= - m.x1068 + m.x1069 <= 2.29087) m.c1326 = Constraint(expr= - m.x1069 + m.x1070 <= 2.29494) m.c1327 = Constraint(expr= - m.x1070 + m.x1071 <= 2.29591) m.c1328 = Constraint(expr= - m.x1071 + m.x1072 <= 2.293) m.c1329 = Constraint(expr= - m.x1072 + m.x1073 <= 2.29223) m.c1330 = Constraint(expr= - m.x1073 + m.x1074 <= 2.29068) m.c1331 = Constraint(expr= - m.x1074 + m.x1075 <= 2.28816) m.c1332 = Constraint(expr= - m.x1075 + m.x1076 <= 2.28661) m.c1333 = Constraint(expr= - m.x1076 + m.x1077 <= 2.28583) m.c1334 = Constraint(expr= - m.x1077 + m.x1078 <= 2.28506) m.c1335 = Constraint(expr= - m.x1078 + m.x1079 <= 2.28428) m.c1336 = Constraint(expr= - m.x1079 + m.x1080 <= 2.2837) m.c1337 = Constraint(expr= - m.x1080 + m.x1081 <= 2.28312) m.c1338 = Constraint(expr= m.x1082 - m.x1105 <= 2.28603) m.c1339 = Constraint(expr= - m.x1082 + m.x1083 <= 2.28758) m.c1340 = Constraint(expr= - m.x1083 + m.x1084 <= 2.28932) m.c1341 = Constraint(expr= - m.x1084 + m.x1085 <= 2.29087) m.c1342 = Constraint(expr= - m.x1085 + m.x1086 <= 2.29262) m.c1343 = Constraint(expr= - m.x1086 + m.x1087 <= 2.29242) m.c1344 = Constraint(expr= - m.x1087 + m.x1088 <= 2.29262) m.c1345 = Constraint(expr= - m.x1088 + m.x1089 <= 2.29494) m.c1346 = Constraint(expr= - m.x1089 + m.x1090 <= 2.29591) m.c1347 = Constraint(expr= - m.x1090 + m.x1091 <= 2.29979) m.c1348 = Constraint(expr= - m.x1091 + m.x1092 <= 2.30095) m.c1349 = Constraint(expr= - m.x1092 + m.x1093 <= 2.3025) m.c1350 = Constraint(expr= - m.x1093 + m.x1094 <= 2.30657) m.c1351 = Constraint(expr= - m.x1094 + m.x1095 <= 2.30947) m.c1352 = Constraint(expr= - m.x1095 + m.x1096 <= 2.30851) m.c1353 = Constraint(expr= - m.x1096 + m.x1097 <= 2.30579) m.c1354 = Constraint(expr= - m.x1097 + m.x1098 <= 2.30424) m.c1355 = Constraint(expr= - m.x1098 + m.x1099 <= 2.29979) m.c1356 = Constraint(expr= - m.x1099 + m.x1100 <= 2.2963) m.c1357 = Constraint(expr= - m.x1100 + m.x1101 <= 2.29552) m.c1358 = Constraint(expr= - m.x1101 + m.x1102 <= 2.29281) m.c1359 = Constraint(expr= - m.x1102 + m.x1103 <= 2.29397) m.c1360 = Constraint(expr= - m.x1103 + m.x1104 <= 2.29339) m.c1361 = Constraint(expr= - m.x1104 + m.x1105 <= 2.28312) m.c1362 = Constraint(expr= m.x1106 - m.x1129 <= 2.28215) m.c1363 = Constraint(expr= - m.x1106 + m.x1107 <= 2.28176) m.c1364 = Constraint(expr= - m.x1107 + m.x1108 <= 2.28157) m.c1365 = Constraint(expr= - m.x1108 + m.x1109 <= 2.28118) m.c1366 = Constraint(expr= - m.x1109 + m.x1110 <= 2.28099) m.c1367 = Constraint(expr= - m.x1110 + m.x1111 <= 2.2808) m.c1368 = Constraint(expr= - m.x1111 + m.x1112 <= 2.28099) m.c1369 = Constraint(expr= - m.x1112 + m.x1113 <= 2.28138) m.c1370 = Constraint(expr= - m.x1113 + m.x1114 <= 2.28235) m.c1371 = Constraint(expr= - m.x1114 + m.x1115 <= 2.28428) m.c1372 = Constraint(expr= - m.x1115 + m.x1116 <= 2.28738) m.c1373 = Constraint(expr= - m.x1116 + m.x1117 <= 2.29087) m.c1374 = Constraint(expr= - m.x1117 + m.x1118 <= 2.29494) m.c1375 = Constraint(expr= - m.x1118 + m.x1119 <= 2.29591) m.c1376 = Constraint(expr= - m.x1119 + m.x1120 <= 2.293) m.c1377 = Constraint(expr= - m.x1120 + m.x1121 <= 2.29223) m.c1378 = Constraint(expr= - m.x1121 + m.x1122 <= 2.29068) m.c1379 = Constraint(expr= - m.x1122 + m.x1123 <= 2.28816) m.c1380 = Constraint(expr= - m.x1123 + m.x1124 <= 2.28661) m.c1381 = Constraint(expr= - m.x1124 + m.x1125 <= 2.28583) m.c1382 = Constraint(expr= - m.x1125 + m.x1126 <= 2.28506) m.c1383 = Constraint(expr= - m.x1126 + m.x1127 <= 2.28428) m.c1384 = Constraint(expr= - m.x1127 + m.x1128 <= 2.2837) m.c1385 = Constraint(expr= - m.x1128 + m.x1129 <= 2.28312) m.c1386 = Constraint(expr= m.x1130 - m.x1153 <= 2.28603) m.c1387 = Constraint(expr= - m.x1130 + m.x1131 <= 2.28758) m.c1388 = Constraint(expr= - m.x1131 + m.x1132 <= 2.28932) m.c1389 = Constraint(expr= - m.x1132 + m.x1133 <= 2.29087) m.c1390 = Constraint(expr= - m.x1133 + m.x1134 <= 2.29262) m.c1391 = Constraint(expr= - m.x1134 + m.x1135 <= 2.29242) m.c1392 = Constraint(expr= - m.x1135 + m.x1136 <= 2.29262) m.c1393 = Constraint(expr= - m.x1136 + m.x1137 <= 2.29494) m.c1394 = Constraint(expr= - m.x1137 + m.x1138 <= 2.29591) m.c1395 = Constraint(expr= - m.x1138 + m.x1139 <= 2.29979) m.c1396 = Constraint(expr= - m.x1139 + m.x1140 <= 2.30095) m.c1397 = Constraint(expr= - m.x1140 + m.x1141 <= 2.3025) m.c1398 = Constraint(expr= - m.x1141 + m.x1142 <= 2.30657) m.c1399 = Constraint(expr= - m.x1142 + m.x1143 <= 2.30947) m.c1400 = Constraint(expr= - m.x1143 + m.x1144 <= 2.30851) m.c1401 = Constraint(expr= - m.x1144 + m.x1145 <= 2.30579) m.c1402 = Constraint(expr= - m.x1145 + m.x1146 <= 2.30424) m.c1403 = Constraint(expr= - m.x1146 + m.x1147 <= 2.29979) m.c1404 = Constraint(expr= - m.x1147 + m.x1148 <= 2.2963) m.c1405 = Constraint(expr= - m.x1148 + m.x1149 <= 2.29552) m.c1406 = Constraint(expr= - m.x1149 + m.x1150 <= 2.29281) m.c1407 = Constraint(expr= - m.x1150 + m.x1151 <= 2.29397) m.c1408 = Constraint(expr= - m.x1151 + m.x1152 <= 2.29339) m.c1409 = Constraint(expr= - m.x1152 + m.x1153 <= 2.28312) m.c1410 = Constraint(expr= m.x770 - m.x793 >= -6.983) m.c1411 = Constraint(expr= - m.x770 + m.x771 >= -6.983) m.c1412 = Constraint(expr= - m.x771 + m.x772 >= -6.983) m.c1413 = Constraint(expr= - m.x772 + m.x773 >= -6.983) m.c1414 = Constraint(expr= - m.x773 + m.x774 >= -6.983) m.c1415 = Constraint(expr= - m.x774 + m.x775 >= -6.983) m.c1416 = Constraint(expr= - m.x775 + m.x776 >= -6.983) m.c1417 = Constraint(expr= - m.x776 + m.x777 >= -6.983) m.c1418 = Constraint(expr= - m.x777 + m.x778 >= -6.983) m.c1419 = Constraint(expr= - m.x778 + m.x779 >= -6.983) m.c1420 = Constraint(expr= - m.x779 + m.x780 >= -6.983) m.c1421 = Constraint(expr= - m.x780 + m.x781 >= -6.983) m.c1422 = Constraint(expr= - m.x781 + m.x782 >= -6.983) m.c1423 = Constraint(expr= - m.x782 + m.x783 >= -6.983) m.c1424 = Constraint(expr= - m.x783 + m.x784 >= -6.983) m.c1425 = Constraint(expr= - m.x784 + m.x785 >= -6.983) m.c1426 = Constraint(expr= - m.x785 + m.x786 >= -6.983) m.c1427 = Constraint(expr= - m.x786 + m.x787 >= -6.983) m.c1428 = Constraint(expr= - m.x787 + m.x788 >= -6.983) m.c1429 = Constraint(expr= - m.x788 + m.x789 >= -6.983) m.c1430 = Constraint(expr= - m.x789 + m.x790 >= -6.983) m.c1431 = Constraint(expr= - m.x790 + m.x791 >= -6.983) m.c1432 = Constraint(expr= - m.x791 + m.x792 >= -6.983) m.c1433 = Constraint(expr= - m.x792 + m.x793 >= -6.983) m.c1434 = Constraint(expr= m.x794 - m.x817 >= -6.983) m.c1435 = Constraint(expr= - m.x794 + m.x795 >= -6.983) m.c1436 = Constraint(expr= - m.x795 + m.x796 >= -6.983) m.c1437 = Constraint(expr= - m.x796 + m.x797 >= -6.983) m.c1438 = Constraint(expr= - m.x797 + m.x798 >= -6.983) m.c1439 = Constraint(expr= - m.x798 + m.x799 >= -6.983) m.c1440 = Constraint(expr= - m.x799 + m.x800 >= -6.983) m.c1441 = Constraint(expr= - m.x800 + m.x801 >= -6.983) m.c1442 = Constraint(expr= - m.x801 + m.x802 >= -6.983) m.c1443 = Constraint(expr= - m.x802 + m.x803 >= -6.983) m.c1444 = Constraint(expr= - m.x803 + m.x804 >= -6.983) m.c1445 = Constraint(expr= - m.x804 + m.x805 >= -6.983) m.c1446 = Constraint(expr= - m.x805 + m.x806 >= -6.983) m.c1447 = Constraint(expr= - m.x806 + m.x807 >= -6.983) m.c1448 = Constraint(expr= - m.x807 + m.x808 >= -6.983) m.c1449 = Constraint(expr= - m.x808 + m.x809 >= -6.983) m.c1450 = Constraint(expr= - m.x809 + m.x810 >= -6.983) m.c1451 = Constraint(expr= - m.x810 + m.x811 >= -6.983) m.c1452 = Constraint(expr= - m.x811 + m.x812 >= -6.983) m.c1453 = Constraint(expr= - m.x812 + m.x813 >= -6.983) m.c1454 = Constraint(expr= - m.x813 + m.x814 >= -6.983) m.c1455 = Constraint(expr= - m.x814 + m.x815 >= -6.983) m.c1456 = Constraint(expr= - m.x815 + m.x816 >= -6.983) m.c1457 = Constraint(expr= - m.x816 + m.x817 >= -6.983) m.c1458 = Constraint(expr= m.x818 - m.x841 >= -6.983) m.c1459 = Constraint(expr= - m.x818 + m.x819 >= -6.983) m.c1460 = Constraint(expr= - m.x819 + m.x820 >= -6.983) m.c1461 = Constraint(expr= - m.x820 + m.x821 >= -6.983) m.c1462 = Constraint(expr= - m.x821 + m.x822 >= -6.983) m.c1463 = Constraint(expr= - m.x822 + m.x823 >= -6.983) m.c1464 = Constraint(expr= - m.x823 + m.x824 >= -6.983) m.c1465 = Constraint(expr= - m.x824 + m.x825 >= -6.983) m.c1466 = Constraint(expr= - m.x825 + m.x826 >= -6.983) m.c1467 = Constraint(expr= - m.x826 + m.x827 >= -6.983) m.c1468 = Constraint(expr= - m.x827 + m.x828 >= -6.983) m.c1469 = Constraint(expr= - m.x828 + m.x829 >= -6.983) m.c1470 = Constraint(expr= - m.x829 + m.x830 >= -6.983) m.c1471 = Constraint(expr= - m.x830 + m.x831 >= -6.983) m.c1472 = Constraint(expr= - m.x831 + m.x832 >= -6.983) m.c1473 = Constraint(expr= - m.x832 + m.x833 >= -6.983) m.c1474 = Constraint(expr= - m.x833 + m.x834 >= -6.983) m.c1475 = Constraint(expr= - m.x834 + m.x835 >= -6.983) m.c1476 = Constraint(expr= - m.x835 + m.x836 >= -6.983) m.c1477 = Constraint(expr= - m.x836 + m.x837 >= -6.983) m.c1478 = Constraint(expr= - m.x837 + m.x838 >= -6.983) m.c1479 = Constraint(expr= - m.x838 + m.x839 >= -6.983) m.c1480 = Constraint(expr= - m.x839 + m.x840 >= -6.983) m.c1481 = Constraint(expr= - m.x840 + m.x841 >= -6.983) m.c1482 = Constraint(expr= m.x842 - m.x865 >= -6.983) m.c1483 = Constraint(expr= - m.x842 + m.x843 >= -6.983) m.c1484 = Constraint(expr= - m.x843 + m.x844 >= -6.983) m.c1485 = Constraint(expr= - m.x844 + m.x845 >= -6.983) m.c1486 = Constraint(expr= - m.x845 + m.x846 >= -6.983) m.c1487 = Constraint(expr= - m.x846 + m.x847 >= -6.983) m.c1488 = Constraint(expr= - m.x847 + m.x848 >= -6.983) m.c1489 = Constraint(expr= - m.x848 + m.x849 >= -6.983) m.c1490 = Constraint(expr= - m.x849 + m.x850 >= -6.983) m.c1491 = Constraint(expr= - m.x850 + m.x851 >= -6.983) m.c1492 = Constraint(expr= - m.x851 + m.x852 >= -6.983) m.c1493 = Constraint(expr= - m.x852 + m.x853 >= -6.983) m.c1494 = Constraint(expr= - m.x853 + m.x854 >= -6.983) m.c1495 = Constraint(expr= - m.x854 + m.x855 >= -6.983) m.c1496 = Constraint(expr= - m.x855 + m.x856 >= -6.983) m.c1497 = Constraint(expr= - m.x856 + m.x857 >= -6.983) m.c1498 = Constraint(expr= - m.x857 + m.x858 >= -6.983) m.c1499 = Constraint(expr= - m.x858 + m.x859 >= -6.983) m.c1500 = Constraint(expr= - m.x859 + m.x860 >= -6.983) m.c1501 = Constraint(expr= - m.x860 + m.x861 >= -6.983) m.c1502 = Constraint(expr= - m.x861 + m.x862 >= -6.983) m.c1503 = Constraint(expr= - m.x862 + m.x863 >= -6.983) m.c1504 = Constraint(expr= - m.x863 + m.x864 >= -6.983) m.c1505 = Constraint(expr= - m.x864 + m.x865 >= -6.983) m.c1506 = Constraint(expr= m.x866 - m.x889 >= -5.1187) m.c1507 = Constraint(expr= - m.x866 + m.x867 >= -5.11491) m.c1508 = Constraint(expr= - m.x867 + m.x868 >= -5.11301) m.c1509 = Constraint(expr= - m.x868 + m.x869 >= -5.10922) m.c1510 = Constraint(expr= - m.x869 + m.x870 >= -5.10733) m.c1511 = Constraint(expr= - m.x870 + m.x871 >= -5.10543) m.c1512 = Constraint(expr= - m.x871 + m.x872 >= -5.10733) m.c1513 = Constraint(expr= - m.x872 + m.x873 >= -5.11112) m.c1514 = Constraint(expr= - m.x873 + m.x874 >= -5.12059) m.c1515 = Constraint(expr= - m.x874 + m.x875 >= -5.13954) m.c1516 = Constraint(expr= - m.x875 + m.x876 >= -5.16985) m.c1517 = Constraint(expr= - m.x876 + m.x877 >= -5.20395) m.c1518 = Constraint(expr= - m.x877 + m.x878 >= -5.24374) m.c1519 = Constraint(expr= - m.x878 + m.x879 >= -5.25321) m.c1520 = Constraint(expr= - m.x879 + m.x880 >= -5.22479) m.c1521 = Constraint(expr= - m.x880 + m.x881 >= -5.21721) m.c1522 = Constraint(expr= - m.x881 + m.x882 >= -5.20206) m.c1523 = Constraint(expr= - m.x882 + m.x883 >= -5.17743) m.c1524 = Constraint(expr= - m.x883 + m.x884 >= -5.16227) m.c1525 = Constraint(expr= - m.x884 + m.x885 >= -5.15469) m.c1526 = Constraint(expr= - m.x885 + m.x886 >= -5.14712) m.c1527 = Constraint(expr= - m.x886 + m.x887 >= -5.13954) m.c1528 = Constraint(expr= - m.x887 + m.x888 >= -5.13385) m.c1529 = Constraint(expr= - m.x888 + m.x889 >= -5.12817) m.c1530 = Constraint(expr= m.x890 - m.x913 >= -5.15659) m.c1531 = Constraint(expr= - m.x890 + m.x891 >= -5.17174) m.c1532 = Constraint(expr= - m.x891 + m.x892 >= -5.1888) m.c1533 = Constraint(expr= - m.x892 + m.x893 >= -5.20395) m.c1534 = Constraint(expr= - m.x893 + m.x894 >= -5.221) m.c1535 = Constraint(expr= - m.x894 + m.x895 >= -5.21911) m.c1536 = Constraint(expr= - m.x895 + m.x896 >= -5.221) m.c1537 = Constraint(expr= - m.x896 + m.x897 >= -5.24374) m.c1538 = Constraint(expr= - m.x897 + m.x898 >= -5.25321) m.c1539 = Constraint(expr= - m.x898 + m.x899 >= -5.2911) m.c1540 = Constraint(expr= - m.x899 + m.x900 >= -5.30247) m.c1541 = Constraint(expr= - m.x900 + m.x901 >= -5.31763) m.c1542 = Constraint(expr= - m.x901 + m.x902 >= -5.35741) m.c1543 = Constraint(expr= - m.x902 + m.x903 >= -5.38583) m.c1544 = Constraint(expr= - m.x903 + m.x904 >= -5.37636) m.c1545 = Constraint(expr= - m.x904 + m.x905 >= -5.34984) m.c1546 = Constraint(expr= - m.x905 + m.x906 >= -5.33468) m.c1547 = Constraint(expr= - m.x906 + m.x907 >= -5.2911) m.c1548 = Constraint(expr= - m.x907 + m.x908 >= -5.257) m.c1549 = Constraint(expr= - m.x908 + m.x909 >= -5.24942) m.c1550 = Constraint(expr= - m.x909 + m.x910 >= -5.2229) m.c1551 = Constraint(expr= - m.x910 + m.x911 >= -5.23427) m.c1552 = Constraint(expr= - m.x911 + m.x912 >= -5.22858) m.c1553 = Constraint(expr= - m.x912 + m.x913 >= -5.12817) m.c1554 = Constraint(expr= m.x914 - m.x937 >= -5.1187) m.c1555 = Constraint(expr= - m.x914 + m.x915 >= -5.11491) m.c1556 = Constraint(expr= - m.x915 + m.x916 >= -5.11301) m.c1557 = Constraint(expr= - m.x916 + m.x917 >= -5.10922) m.c1558 = Constraint(expr= - m.x917 + m.x918 >= -5.10733) m.c1559 = Constraint(expr= - m.x918 + m.x919 >= -5.10543) m.c1560 = Constraint(expr= - m.x919 + m.x920 >= -5.10733) m.c1561 = Constraint(expr= - m.x920 + m.x921 >= -5.11112) m.c1562 = Constraint(expr= - m.x921 + m.x922 >= -5.12059) m.c1563 = Constraint(expr= - m.x922 + m.x923 >= -5.13954) m.c1564 = Constraint(expr= - m.x923 + m.x924 >= -5.16985) m.c1565 = Constraint(expr= - m.x924 + m.x925 >= -5.20395) m.c1566 = Constraint(expr= - m.x925 + m.x926 >= -5.24374) m.c1567 = Constraint(expr= - m.x926 + m.x927 >= -5.25321) m.c1568 = Constraint(expr= - m.x927 + m.x928 >= -5.22479) m.c1569 = Constraint(expr= - m.x928 + m.x929 >= -5.21721) m.c1570 = Constraint(expr= - m.x929 + m.x930 >= -5.20206) m.c1571 = Constraint(expr= - m.x930 + m.x931 >= -5.17743) m.c1572 = Constraint(expr= - m.x931 + m.x932 >= -5.16227) m.c1573 = Constraint(expr= - m.x932 + m.x933 >= -5.15469) m.c1574 = Constraint(expr= - m.x933 + m.x934 >= -5.14712) m.c1575 = Constraint(expr= - m.x934 + m.x935 >= -5.13954) m.c1576 = Constraint(expr= - m.x935 + m.x936 >= -5.13385) m.c1577 = Constraint(expr= - m.x936 + m.x937 >= -5.12817) m.c1578 = Constraint(expr= m.x938 - m.x961 >= -5.15659) m.c1579 = Constraint(expr= - m.x938 + m.x939 >= -5.17174) m.c1580 = Constraint(expr= - m.x939 + m.x940 >= -5.1888) m.c1581 = Constraint(expr= - m.x940 + m.x941 >= -5.20395) m.c1582 = Constraint(expr= - m.x941 + m.x942 >= -5.221) m.c1583 = Constraint(expr= - m.x942 + m.x943 >= -5.21911) m.c1584 = Constraint(expr= - m.x943 + m.x944 >= -5.221) m.c1585 = Constraint(expr= - m.x944 + m.x945 >= -5.24374) m.c1586 = Constraint(expr= - m.x945 + m.x946 >= -5.25321) m.c1587 = Constraint(expr= - m.x946 + m.x947 >= -5.2911) m.c1588 = Constraint(expr= - m.x947 + m.x948 >= -5.30247) m.c1589 = Constraint(expr= - m.x948 + m.x949 >= -5.31763) m.c1590 = Constraint(expr= - m.x949 + m.x950 >= -5.35741) m.c1591 = Constraint(expr= - m.x950 + m.x951 >= -5.38583) m.c1592 = Constraint(expr= - m.x951 + m.x952 >= -5.37636) m.c1593 = Constraint(expr= - m.x952 + m.x953 >= -5.34984) m.c1594 = Constraint(expr= - m.x953 + m.x954 >= -5.33468) m.c1595 = Constraint(expr= - m.x954 + m.x955 >= -5.2911) m.c1596 = Constraint(expr= - m.x955 + m.x956 >= -5.257) m.c1597 = Constraint(expr= - m.x956 + m.x957 >= -5.24942) m.c1598 = Constraint(expr= - m.x957 + m.x958 >= -5.2229) m.c1599 = Constraint(expr= - m.x958 + m.x959 >= -5.23427) m.c1600 = Constraint(expr= - m.x959 + m.x960 >= -5.22858) m.c1601 = Constraint(expr= - m.x960 + m.x961 >= -5.12817) m.c1602 = Constraint(expr= m.x962 - m.x985 >= -2.28215) m.c1603 = Constraint(expr= - m.x962 + m.x963 >= -2.28176) m.c1604 = Constraint(expr= - m.x963 + m.x964 >= -2.28157) m.c1605 = Constraint(expr= - m.x964 + m.x965 >= -2.28118) m.c1606 = Constraint(expr= - m.x965 + m.x966 >= -2.28099) m.c1607 = Constraint(expr= - m.x966 + m.x967 >= -2.2808) m.c1608 = Constraint(expr= - m.x967 + m.x968 >= -2.28099) m.c1609 = Constraint(expr= - m.x968 + m.x969 >= -2.28138) m.c1610 = Constraint(expr= - m.x969 + m.x970 >= -2.28235) m.c1611 = Constraint(expr= - m.x970 + m.x971 >= -2.28428) m.c1612 = Constraint(expr= - m.x971 + m.x972 >= -2.28738) m.c1613 = Constraint(expr= - m.x972 + m.x973 >= -2.29087) m.c1614 = Constraint(expr= - m.x973 + m.x974 >= -2.29494) m.c1615 = Constraint(expr= - m.x974 + m.x975 >= -2.29591) m.c1616 = Constraint(expr= - m.x975 + m.x976 >= -2.293) m.c1617 = Constraint(expr= - m.x976 + m.x977 >= -2.29223) m.c1618 = Constraint(expr= - m.x977 + m.x978 >= -2.29068) m.c1619 = Constraint(expr= - m.x978 + m.x979 >= -2.28816) m.c1620 = Constraint(expr= - m.x979 + m.x980 >= -2.28661) m.c1621 = Constraint(expr= - m.x980 + m.x981 >= -2.28583) m.c1622 = Constraint(expr= - m.x981 + m.x982 >= -2.28506) m.c1623 = Constraint(expr= - m.x982 + m.x983 >= -2.28428) m.c1624 = Constraint(expr= - m.x983 + m.x984 >= -2.2837) m.c1625 = Constraint(expr= - m.x984 + m.x985 >= -2.28312) m.c1626 = Constraint(expr= m.x986 - m.x1009 >= -2.28603) m.c1627 = Constraint(expr= - m.x986 + m.x987 >= -2.28758) m.c1628 = Constraint(expr= - m.x987 + m.x988 >= -2.28932) m.c1629 = Constraint(expr= - m.x988 + m.x989 >= -2.29087) m.c1630 = Constraint(expr= - m.x989 + m.x990 >= -2.29262) m.c1631 = Constraint(expr= - m.x990 + m.x991 >= -2.29242) m.c1632 = Constraint(expr= - m.x991 + m.x992 >= -2.29262) m.c1633 = Constraint(expr= - m.x992 + m.x993 >= -2.29494) m.c1634 = Constraint(expr= - m.x993 + m.x994 >= -2.29591) m.c1635 = Constraint(expr= - m.x994 + m.x995 >= -2.29979) m.c1636 = Constraint(expr= - m.x995 + m.x996 >= -2.30095) m.c1637 = Constraint(expr= - m.x996 + m.x997 >= -2.3025) m.c1638 = Constraint(expr= - m.x997 + m.x998 >= -2.30657) m.c1639 = Constraint(expr= - m.x998 + m.x999 >= -2.30947) m.c1640 = Constraint(expr= - m.x999 + m.x1000 >= -2.30851) m.c1641 = Constraint(expr= - m.x1000 + m.x1001 >= -2.30579) m.c1642 = Constraint(expr= - m.x1001 + m.x1002 >= -2.30424) m.c1643 = Constraint(expr= - m.x1002 + m.x1003 >= -2.29979) m.c1644 = Constraint(expr= - m.x1003 + m.x1004 >= -2.2963) m.c1645 = Constraint(expr= - m.x1004 + m.x1005 >= -2.29552) m.c1646 = Constraint(expr= - m.x1005 + m.x1006 >= -2.29281) m.c1647 = Constraint(expr= - m.x1006 + m.x1007 >= -2.29397) m.c1648 = Constraint(expr= - m.x1007 + m.x1008 >= -2.29339) m.c1649 = Constraint(expr= - m.x1008 + m.x1009 >= -2.28312) m.c1650 = Constraint(expr= m.x1010 - m.x1033 >= -2.28215) m.c1651 = Constraint(expr= - m.x1010 + m.x1011 >= -2.28176) m.c1652 = Constraint(expr= - m.x1011 + m.x1012 >= -2.28157) m.c1653 = Constraint(expr= - m.x1012 + m.x1013 >= -2.28118) m.c1654 = Constraint(expr= - m.x1013 + m.x1014 >= -2.28099) m.c1655 = Constraint(expr= - m.x1014 + m.x1015 >= -2.2808) m.c1656 = Constraint(expr= - m.x1015 + m.x1016 >= -2.28099) m.c1657 = Constraint(expr= - m.x1016 + m.x1017 >= -2.28138) m.c1658 = Constraint(expr= - m.x1017 + m.x1018 >= -2.28235) m.c1659 = Constraint(expr= - m.x1018 + m.x1019 >= -2.28428) m.c1660 = Constraint(expr= - m.x1019 + m.x1020 >= -2.28738) m.c1661 = Constraint(expr= - m.x1020 + m.x1021 >= -2.29087) m.c1662 = Constraint(expr= - m.x1021 + m.x1022 >= -2.29494) m.c1663 = Constraint(expr= - m.x1022 + m.x1023 >= -2.29591) m.c1664 = Constraint(expr= - m.x1023 + m.x1024 >= -2.293) m.c1665 = Constraint(expr= - m.x1024 + m.x1025 >= -2.29223) m.c1666 = Constraint(expr= - m.x1025 + m.x1026 >= -2.29068) m.c1667 = Constraint(expr= - m.x1026 + m.x1027 >= -2.28816) m.c1668 = Constraint(expr= - m.x1027 + m.x1028 >= -2.28661) m.c1669 = Constraint(expr= - m.x1028 + m.x1029 >= -2.28583) m.c1670 = Constraint(expr= - m.x1029 + m.x1030 >= -2.28506) m.c1671 = Constraint(expr= - m.x1030 + m.x1031 >= -2.28428) m.c1672 = Constraint(expr= - m.x1031 + m.x1032 >= -2.2837) m.c1673 = Constraint(expr= - m.x1032 + m.x1033 >= -2.28312) m.c1674 = Constraint(expr= m.x1034 - m.x1057 >= -2.28603) m.c1675 = Constraint(expr= - m.x1034 + m.x1035 >= -2.28758) m.c1676 = Constraint(expr= - m.x1035 + m.x1036 >= -2.28932) m.c1677 = Constraint(expr= - m.x1036 + m.x1037 >= -2.29087) m.c1678 = Constraint(expr= - m.x1037 + m.x1038 >= -2.29262) m.c1679 = Constraint(expr= - m.x1038 + m.x1039 >= -2.29242) m.c1680 = Constraint(expr= - m.x1039 + m.x1040 >= -2.29262) m.c1681 = Constraint(expr= - m.x1040 + m.x1041 >= -2.29494) m.c1682 = Constraint(expr= - m.x1041 + m.x1042 >= -2.29591) m.c1683 = Constraint(expr= - m.x1042 + m.x1043 >= -2.29979) m.c1684 = Constraint(expr= - m.x1043 + m.x1044 >= -2.30095) m.c1685 = Constraint(expr= - m.x1044 + m.x1045 >= -2.3025) m.c1686 = Constraint(expr= - m.x1045 + m.x1046 >= -2.30657) m.c1687 = Constraint(expr= - m.x1046 + m.x1047 >= -2.30947) m.c1688 = Constraint(expr= - m.x1047 + m.x1048 >= -2.30851) m.c1689 = Constraint(expr= - m.x1048 + m.x1049 >= -2.30579) m.c1690 = Constraint(expr= - m.x1049 + m.x1050 >= -2.30424) m.c1691 = Constraint(expr= - m.x1050 + m.x1051 >= -2.29979) m.c1692 = Constraint(expr= - m.x1051 + m.x1052 >= -2.2963) m.c1693 = Constraint(expr= - m.x1052 + m.x1053 >= -2.29552) m.c1694 = Constraint(expr= - m.x1053 + m.x1054 >= -2.29281) m.c1695 = Constraint(expr= - m.x1054 + m.x1055 >= -2.29397) m.c1696 = Constraint(expr= - m.x1055 + m.x1056 >= -2.29339) m.c1697 = Constraint(expr= - m.x1056 + m.x1057 >= -2.28312) m.c1698 = Constraint(expr= m.x1058 - m.x1081 >= -2.28215) m.c1699 = Constraint(expr= - m.x1058 + m.x1059 >= -2.28176) m.c1700 = Constraint(expr= - m.x1059 + m.x1060 >= -2.28157) m.c1701 = Constraint(expr= - m.x1060 + m.x1061 >= -2.28118) m.c1702 = Constraint(expr= - m.x1061 + m.x1062 >= -2.28099) m.c1703 = Constraint(expr= - m.x1062 + m.x1063 >= -2.2808) m.c1704 = Constraint(expr= - m.x1063 + m.x1064 >= -2.28099) m.c1705 = Constraint(expr= - m.x1064 + m.x1065 >= -2.28138) m.c1706 = Constraint(expr= - m.x1065 + m.x1066 >= -2.28235) m.c1707 = Constraint(expr= - m.x1066 + m.x1067 >= -2.28428) m.c1708 = Constraint(expr= - m.x1067 + m.x1068 >= -2.28738) m.c1709 = Constraint(expr= - m.x1068 + m.x1069 >= -2.29087) m.c1710 = Constraint(expr= - m.x1069 + m.x1070 >= -2.29494) m.c1711 = Constraint(expr= - m.x1070 + m.x1071 >= -2.29591) m.c1712 = Constraint(expr= - m.x1071 + m.x1072 >= -2.293) m.c1713 = Constraint(expr= - m.x1072 + m.x1073 >= -2.29223) m.c1714 = Constraint(expr= - m.x1073 + m.x1074 >= -2.29068) m.c1715 = Constraint(expr= - m.x1074 + m.x1075 >= -2.28816) m.c1716 = Constraint(expr= - m.x1075 + m.x1076 >= -2.28661) m.c1717 = Constraint(expr= - m.x1076 + m.x1077 >= -2.28583) m.c1718 = Constraint(expr= - m.x1077 + m.x1078 >= -2.28506) m.c1719 = Constraint(expr= - m.x1078 + m.x1079 >= -2.28428) m.c1720 = Constraint(expr= - m.x1079 + m.x1080 >= -2.2837) m.c1721 = Constraint(expr= - m.x1080 + m.x1081 >= -2.28312) m.c1722 = Constraint(expr= m.x1082 - m.x1105 >= -2.28603) m.c1723 = Constraint(expr= - m.x1082 + m.x1083 >= -2.28758) m.c1724 = Constraint(expr= - m.x1083 + m.x1084 >= -2.28932) m.c1725 = Constraint(expr= - m.x1084 + m.x1085 >= -2.29087) m.c1726 = Constraint(expr= - m.x1085 + m.x1086 >= -2.29262) m.c1727 = Constraint(expr= - m.x1086 + m.x1087 >= -2.29242) m.c1728 = Constraint(expr= - m.x1087 + m.x1088 >= -2.29262) m.c1729 = Constraint(expr= - m.x1088 + m.x1089 >= -2.29494) m.c1730 = Constraint(expr= - m.x1089 + m.x1090 >= -2.29591) m.c1731 = Constraint(expr= - m.x1090 + m.x1091 >= -2.29979) m.c1732 = Constraint(expr= - m.x1091 + m.x1092 >= -2.30095) m.c1733 = Constraint(expr= - m.x1092 + m.x1093 >= -2.3025) m.c1734 = Constraint(expr= - m.x1093 + m.x1094 >= -2.30657) m.c1735 = Constraint(expr= - m.x1094 + m.x1095 >= -2.30947) m.c1736 = Constraint(expr= - m.x1095 + m.x1096 >= -2.30851) m.c1737 = Constraint(expr= - m.x1096 + m.x1097 >= -2.30579) m.c1738 = Constraint(expr= - m.x1097 + m.x1098 >= -2.30424) m.c1739 = Constraint(expr= - m.x1098 + m.x1099 >= -2.29979) m.c1740 = Constraint(expr= - m.x1099 + m.x1100 >= -2.2963) m.c1741 = Constraint(expr= - m.x1100 + m.x1101 >= -2.29552) m.c1742 = Constraint(expr= - m.x1101 + m.x1102 >= -2.29281) m.c1743 = Constraint(expr= - m.x1102 + m.x1103 >= -2.29397) m.c1744 = Constraint(expr= - m.x1103 + m.x1104 >= -2.29339) m.c1745 = Constraint(expr= - m.x1104 + m.x1105 >= -2.28312) m.c1746 = Constraint(expr= m.x1106 - m.x1129 >= -2.28215) m.c1747 = Constraint(expr= - m.x1106 + m.x1107 >= -2.28176) m.c1748 = Constraint(expr= - m.x1107 + m.x1108 >= -2.28157) m.c1749 = Constraint(expr= - m.x1108 + m.x1109 >= -2.28118) m.c1750 = Constraint(expr= - m.x1109 + m.x1110 >= -2.28099) m.c1751 = Constraint(expr= - m.x1110 + m.x1111 >= -2.2808) m.c1752 = Constraint(expr= - m.x1111 + m.x1112 >= -2.28099) m.c1753 = Constraint(expr= - m.x1112 + m.x1113 >= -2.28138) m.c1754 = Constraint(expr= - m.x1113 + m.x1114 >= -2.28235) m.c1755 = Constraint(expr= - m.x1114 + m.x1115 >= -2.28428) m.c1756 = Constraint(expr= - m.x1115 + m.x1116 >= -2.28738) m.c1757 = Constraint(expr= - m.x1116 + m.x1117 >= -2.29087) m.c1758 = Constraint(expr= - m.x1117 + m.x1118 >= -2.29494) m.c1759 = Constraint(expr= - m.x1118 + m.x1119 >= -2.29591) m.c1760 = Constraint(expr= - m.x1119 + m.x1120 >= -2.293) m.c1761 = Constraint(expr= - m.x1120 + m.x1121 >= -2.29223) m.c1762 = Constraint(expr= - m.x1121 + m.x1122 >= -2.29068) m.c1763 = Constraint(expr= - m.x1122 + m.x1123 >= -2.28816) m.c1764 = Constraint(expr= - m.x1123 + m.x1124 >= -2.28661) m.c1765 = Constraint(expr= - m.x1124 + m.x1125 >= -2.28583) m.c1766 = Constraint(expr= - m.x1125 + m.x1126 >= -2.28506) m.c1767 = Constraint(expr= - m.x1126 + m.x1127 >= -2.28428) m.c1768 = Constraint(expr= - m.x1127 + m.x1128 >= -2.2837) m.c1769 = Constraint(expr= - m.x1128 + m.x1129 >= -2.28312) m.c1770 = Constraint(expr= m.x1130 - m.x1153 >= -2.28603) m.c1771 = Constraint(expr= - m.x1130 + m.x1131 >= -2.28758) m.c1772 = Constraint(expr= - m.x1131 + m.x1132 >= -2.28932) m.c1773 = Constraint(expr= - m.x1132 + m.x1133 >= -2.29087) m.c1774 = Constraint(expr= - m.x1133 + m.x1134 >= -2.29262) m.c1775 = Constraint(expr= - m.x1134 + m.x1135 >= -2.29242) m.c1776 = Constraint(expr= - m.x1135 + m.x1136 >= -2.29262) m.c1777 = Constraint(expr= - m.x1136 + m.x1137 >= -2.29494) m.c1778 = Constraint(expr= - m.x1137 + m.x1138 >= -2.29591) m.c1779 = Constraint(expr= - m.x1138 + m.x1139 >= -2.29979) m.c1780 = Constraint(expr= - m.x1139 + m.x1140 >= -2.30095) m.c1781 = Constraint(expr= - m.x1140 + m.x1141 >= -2.3025) m.c1782 = Constraint(expr= - m.x1141 + m.x1142 >= -2.30657) m.c1783 = Constraint(expr= - m.x1142 + m.x1143 >= -2.30947) m.c1784 = Constraint(expr= - m.x1143 + m.x1144 >= -2.30851) m.c1785 = Constraint(expr= - m.x1144 + m.x1145 >= -2.30579) m.c1786 = Constraint(expr= - m.x1145 + m.x1146 >= -2.30424) m.c1787 = Constraint(expr= - m.x1146 + m.x1147 >= -2.29979) m.c1788 = Constraint(expr= - m.x1147 + m.x1148 >= -2.2963) m.c1789 = Constraint(expr= - m.x1148 + m.x1149 >= -2.29552) m.c1790 = Constraint(expr= - m.x1149 + m.x1150 >= -2.29281) m.c1791 = Constraint(expr= - m.x1150 + m.x1151 >= -2.29397) m.c1792 = Constraint(expr= - m.x1151 + m.x1152 >= -2.29339) m.c1793 = Constraint(expr= - m.x1152 + m.x1153 >= -2.28312) m.c1794 = Constraint(expr= m.b2306 + m.b2307 + m.b2308 + m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 <= 7) m.c1795 = Constraint(expr= m.b2354 + m.b2355 + m.b2356 + m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 <= 7) m.c1796 = Constraint(expr= m.b2330 + m.b2331 + m.b2332 + m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 <= 7) m.c1797 = Constraint(expr= m.b2378 + m.b2379 + m.b2380 + m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 <= 7) m.c1798 = Constraint(expr= m.b2307 + m.b2308 + m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 <= 7) m.c1799 = Constraint(expr= m.b2355 + m.b2356 + m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 <= 7) m.c1800 = Constraint(expr= m.b2331 + m.b2332 + m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 <= 7) m.c1801 = Constraint(expr= m.b2379 + m.b2380 + m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 <= 7) m.c1802 = Constraint(expr= m.b2308 + m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 <= 7) m.c1803 = Constraint(expr= m.b2356 + m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 <= 7) m.c1804 = Constraint(expr= m.b2332 + m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 <= 7) m.c1805 = Constraint(expr= m.b2380 + m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 <= 7) m.c1806 = Constraint(expr= m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 <= 7) m.c1807 = Constraint(expr= m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 <= 7) m.c1808 = Constraint(expr= m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 <= 7) m.c1809 = Constraint(expr= m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 <= 7) m.c1810 = Constraint(expr= m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 <= 7) m.c1811 = Constraint(expr= m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 <= 7) m.c1812 = Constraint(expr= m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 <= 7) m.c1813 = Constraint(expr= m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 <= 7) m.c1814 = Constraint(expr= m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 <= 7) m.c1815 = Constraint(expr= m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 <= 7) m.c1816 = Constraint(expr= m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 <= 7) m.c1817 = Constraint(expr= m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 <= 7) m.c1818 = Constraint(expr= m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 <= 7) m.c1819 = Constraint(expr= m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 <= 7) m.c1820 = Constraint(expr= m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 <= 7) m.c1821 = Constraint(expr= m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 <= 7) m.c1822 = Constraint(expr= m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 <= 7) m.c1823 = Constraint(expr= m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 <= 7) m.c1824 = Constraint(expr= m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 <= 7) m.c1825 = Constraint(expr= m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 <= 7) m.c1826 = Constraint(expr= m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 <= 7) m.c1827 = Constraint(expr= m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 <= 7) m.c1828 = Constraint(expr= m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 <= 7) m.c1829 = Constraint(expr= m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 <= 7) m.c1830 = Constraint(expr= m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 <= 7) m.c1831 = Constraint(expr= m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 <= 7) m.c1832 = Constraint(expr= m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 <= 7) m.c1833 = Constraint(expr= m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 <= 7) m.c1834 = Constraint(expr= m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 <= 7) m.c1835 = Constraint(expr= m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 <= 7) m.c1836 = Constraint(expr= m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 <= 7) m.c1837 = Constraint(expr= m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 <= 7) m.c1838 = Constraint(expr= m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 <= 7) m.c1839 = Constraint(expr= m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 <= 7) m.c1840 = Constraint(expr= m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 <= 7) m.c1841 = Constraint(expr= m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 <= 7) m.c1842 = Constraint(expr= m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 <= 7) m.c1843 = Constraint(expr= m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 <= 7) m.c1844 = Constraint(expr= m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 <= 7) m.c1845 = Constraint(expr= m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 <= 7) m.c1846 = Constraint(expr= m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 <= 7) m.c1847 = Constraint(expr= m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 <= 7) m.c1848 = Constraint(expr= m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 <= 7) m.c1849 = Constraint(expr= m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 <= 7) m.c1850 = Constraint(expr= m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 <= 7) m.c1851 = Constraint(expr= m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 <= 7) m.c1852 = Constraint(expr= m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 <= 7) m.c1853 = Constraint(expr= m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 <= 7) m.c1854 = Constraint(expr= m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 <= 7) m.c1855 = Constraint(expr= m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 <= 7) m.c1856 = Constraint(expr= m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 <= 7) m.c1857 = Constraint(expr= m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 <= 7) m.c1858 = Constraint(expr= m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1859 = Constraint(expr= m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1860 = Constraint(expr= m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1861 = Constraint(expr= m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1862 = Constraint(expr= m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1863 = Constraint(expr= m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1864 = Constraint(expr= m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1865 = Constraint(expr= m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1866 = Constraint(expr= m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1867 = Constraint(expr= m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1868 = Constraint(expr= m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1869 = Constraint(expr= m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1870 = Constraint(expr= m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1871 = Constraint(expr= m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1872 = Constraint(expr= m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1873 = Constraint(expr= m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1874 = Constraint(expr= m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1875 = Constraint(expr= m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1876 = Constraint(expr= m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1877 = Constraint(expr= m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1878 = Constraint(expr= m.b2327 + m.b2328 + m.b2329 <= 7) m.c1879 = Constraint(expr= m.b2375 + m.b2376 + m.b2377 <= 7) m.c1880 = Constraint(expr= m.b2351 + m.b2352 + m.b2353 <= 7) m.c1881 = Constraint(expr= m.b2399 + m.b2400 + m.b2401 <= 7) m.c1882 = Constraint(expr= m.b2328 + m.b2329 <= 7) m.c1883 = Constraint(expr= m.b2376 + m.b2377 <= 7) m.c1884 = Constraint(expr= m.b2352 + m.b2353 <= 7) m.c1885 = Constraint(expr= m.b2400 + m.b2401 <= 7) m.c1886 = Constraint(expr= m.b2329 <= 7) m.c1887 = Constraint(expr= m.b2377 <= 7) m.c1888 = Constraint(expr= m.b2353 <= 7) m.c1889 = Constraint(expr= m.b2401 <= 7) m.c1890 = Constraint(expr= m.x770 + m.x818 + m.x866 + m.x914 + m.x962 + m.x1010 + m.x1058 + m.x1106 + 0.9975*m.x1490 - m.x1491 - m.x1586 >= 78.44) m.c1891 = Constraint(expr= m.x771 + m.x819 + m.x867 + m.x915 + m.x963 + m.x1011 + m.x1059 + m.x1107 + 0.9975*m.x1491 - m.x1492 - m.x1587 >= 79.24) m.c1892 = Constraint(expr= m.x772 + m.x820 + m.x868 + m.x916 + m.x964 + m.x1012 + m.x1060 + m.x1108 + 0.9975*m.x1492 - m.x1493 - m.x1588 >= 81.84) m.c1893 = Constraint(expr= m.x773 + m.x821 + m.x869 + m.x917 + m.x965 + m.x1013 + m.x1061 + m.x1109 + 0.9975*m.x1493 - m.x1494 - m.x1589 >= 84.24) m.c1894 = Constraint(expr= m.x774 + m.x822 + m.x870 + m.x918 + m.x966 + m.x1014 + m.x1062 + m.x1110 + 0.9975*m.x1494 - m.x1495 - m.x1590 >= 87.24) m.c1895 = Constraint(expr= m.x775 + m.x823 + m.x871 + m.x919 + m.x967 + m.x1015 + m.x1063 + m.x1111 + 0.9975*m.x1495 - m.x1496 - m.x1591 >= 90.25) m.c1896 = Constraint(expr= m.x776 + m.x824 + m.x872 + m.x920 + m.x968 + m.x1016 + m.x1064 + m.x1112 + 0.9975*m.x1496 - m.x1497 - m.x1592 >= 92.85) m.c1897 = Constraint(expr= m.x777 + m.x825 + m.x873 + m.x921 + m.x969 + m.x1017 + m.x1065 + m.x1113 + 0.9975*m.x1497 - m.x1498 - m.x1593 >= 93.85) m.c1898 = Constraint(expr= m.x778 + m.x826 + m.x874 + m.x922 + m.x970 + m.x1018 + m.x1066 + m.x1114 + 0.9975*m.x1498 - m.x1499 - m.x1594 >= 93.85) m.c1899 = Constraint(expr= m.x779 + m.x827 + m.x875 + m.x923 + m.x971 + m.x1019 + m.x1067 + m.x1115 + 0.9975*m.x1499 - m.x1500 - m.x1595 >= 92.45) m.c1900 = Constraint(expr= m.x780 + m.x828 + m.x876 + m.x924 + m.x972 + m.x1020 + m.x1068 + m.x1116 + 0.9975*m.x1500 - m.x1501 - m.x1596 >= 90.85) m.c1901 = Constraint(expr= m.x781 + m.x829 + m.x877 + m.x925 + m.x973 + m.x1021 + m.x1069 + m.x1117 + 0.9975*m.x1501 - m.x1502 - m.x1597 >= 87.65) m.c1902 = Constraint(expr= m.x782 + m.x830 + m.x878 + m.x926 + m.x974 + m.x1022 + m.x1070 + m.x1118 + 0.9975*m.x1502 - m.x1503 - m.x1598 >= 87.44) m.c1903 = Constraint(expr= m.x783 + m.x831 + m.x879 + m.x927 + m.x975 + m.x1023 + m.x1071 + m.x1119 + 0.9975*m.x1503 - m.x1504 - m.x1599 >= 89.05) m.c1904 = Constraint(expr= m.x784 + m.x832 + m.x880 + m.x928 + m.x976 + m.x1024 + m.x1072 + m.x1120 + 0.9975*m.x1504 - m.x1505 - m.x1600 >= 90.65) m.c1905 = Constraint(expr= m.x785 + m.x833 + m.x881 + m.x929 + m.x977 + m.x1025 + m.x1073 + m.x1121 + 0.9975*m.x1505 - m.x1506 - m.x1601 >= 90.85) m.c1906 = Constraint(expr= m.x786 + m.x834 + m.x882 + m.x930 + m.x978 + m.x1026 + m.x1074 + m.x1122 + 0.9975*m.x1506 - m.x1507 - m.x1602 >= 90.65) m.c1907 = Constraint(expr= m.x787 + m.x835 + m.x883 + m.x931 + m.x979 + m.x1027 + m.x1075 + m.x1123 + 0.9975*m.x1507 - m.x1508 - m.x1603 >= 89.45) m.c1908 = Constraint(expr= m.x788 + m.x836 + m.x884 + m.x932 + m.x980 + m.x1028 + m.x1076 + m.x1124 + 0.9975*m.x1508 - m.x1509 - m.x1604 >= 88.25) m.c1909 = Constraint(expr= m.x789 + m.x837 + m.x885 + m.x933 + m.x981 + m.x1029 + m.x1077 + m.x1125 + 0.9975*m.x1509 - m.x1510 - m.x1605 >= 87.04) m.c1910 = Constraint(expr= m.x790 + m.x838 + m.x886 + m.x934 + m.x982 + m.x1030 + m.x1078 + m.x1126 + 0.9975*m.x1510 - m.x1511 - m.x1606 >= 85.84) m.c1911 = Constraint(expr= m.x791 + m.x839 + m.x887 + m.x935 + m.x983 + m.x1031 + m.x1079 + m.x1127 + 0.9975*m.x1511 - m.x1512 - m.x1607 >= 82.64) m.c1912 = Constraint(expr= m.x792 + m.x840 + m.x888 + m.x936 + m.x984 + m.x1032 + m.x1080 + m.x1128 + 0.9975*m.x1512 - m.x1513 - m.x1608 >= 79.04) m.c1913 = Constraint(expr= m.x794 + m.x842 + m.x890 + m.x938 + m.x986 + m.x1034 + m.x1082 + m.x1130 + 0.9975*m.x1514 - m.x1515 - m.x1610 >= 154.15) m.c1914 = Constraint(expr= m.x795 + m.x843 + m.x891 + m.x939 + m.x987 + m.x1035 + m.x1083 + m.x1131 + 0.9975*m.x1515 - m.x1516 - m.x1611 >= 155.56) m.c1915 = Constraint(expr= m.x796 + m.x844 + m.x892 + m.x940 + m.x988 + m.x1036 + m.x1084 + m.x1132 + 0.9975*m.x1516 - m.x1517 - m.x1612 >= 156.98) m.c1916 = Constraint(expr= m.x797 + m.x845 + m.x893 + m.x941 + m.x989 + m.x1037 + m.x1085 + m.x1133 + 0.9975*m.x1517 - m.x1518 - m.x1613 >= 156.98) m.c1917 = Constraint(expr= m.x798 + m.x846 + m.x894 + m.x942 + m.x990 + m.x1038 + m.x1086 + m.x1134 + 0.9975*m.x1518 - m.x1519 - m.x1614 >= 155.56) m.c1918 = Constraint(expr= m.x799 + m.x847 + m.x895 + m.x943 + m.x991 + m.x1039 + m.x1087 + m.x1135 + 0.9975*m.x1519 - m.x1520 - m.x1615 >= 168.57) m.c1919 = Constraint(expr= m.x800 + m.x848 + m.x896 + m.x944 + m.x992 + m.x1040 + m.x1088 + m.x1136 + 0.9975*m.x1520 - m.x1521 - m.x1616 >= 171.29) m.c1920 = Constraint(expr= m.x801 + m.x849 + m.x897 + m.x945 + m.x993 + m.x1041 + m.x1089 + m.x1137 + 0.9975*m.x1521 - m.x1522 - m.x1617 >= 141.38) m.c1921 = Constraint(expr= m.x802 + m.x850 + m.x898 + m.x946 + m.x994 + m.x1042 + m.x1090 + m.x1138 + 0.9975*m.x1522 - m.x1523 - m.x1618 >= 139.11) m.c1922 = Constraint(expr= m.x803 + m.x851 + m.x899 + m.x947 + m.x995 + m.x1043 + m.x1091 + m.x1139 + 0.9975*m.x1523 - m.x1524 - m.x1619 >= 136.4) m.c1923 = Constraint(expr= m.x804 + m.x852 + m.x900 + m.x948 + m.x996 + m.x1044 + m.x1092 + m.x1140 + 0.9975*m.x1524 - m.x1525 - m.x1620 >= 133.57) m.c1924 = Constraint(expr= m.x805 + m.x853 + m.x901 + m.x949 + m.x997 + m.x1045 + m.x1093 + m.x1141 + 0.9975*m.x1525 - m.x1526 - m.x1621 >= 127.23) m.c1925 = Constraint(expr= m.x806 + m.x854 + m.x902 + m.x950 + m.x998 + m.x1046 + m.x1094 + m.x1142 + 0.9975*m.x1526 - m.x1527 - m.x1622 >= 123.92) m.c1926 = Constraint(expr= m.x807 + m.x855 + m.x903 + m.x951 + m.x999 + m.x1047 + m.x1095 + m.x1143 + 0.9975*m.x1527 - m.x1528 - m.x1623 >= 119.3) m.c1927 = Constraint(expr= m.x808 + m.x856 + m.x904 + m.x952 + m.x1000 + m.x1048 + m.x1096 + m.x1144 + 0.9975*m.x1528 - m.x1529 - m.x1624 >= 120.58) m.c1928 = Constraint(expr= m.x809 + m.x857 + m.x905 + m.x953 + m.x1001 + m.x1049 + m.x1097 + m.x1145 + 0.9975*m.x1529 - m.x1530 - m.x1625 >= 122.88) m.c1929 = Constraint(expr= m.x810 + m.x858 + m.x906 + m.x954 + m.x1002 + m.x1050 + m.x1098 + m.x1146 + 0.9975*m.x1530 - m.x1531 - m.x1626 >= 126.71) m.c1930 = Constraint(expr= m.x811 + m.x859 + m.x907 + m.x955 + m.x1003 + m.x1051 + m.x1099 + m.x1147 + 0.9975*m.x1531 - m.x1532 - m.x1627 >= 128.65) m.c1931 = Constraint(expr= m.x812 + m.x860 + m.x908 + m.x956 + m.x1004 + m.x1052 + m.x1100 + m.x1148 + 0.9975*m.x1532 - m.x1533 - m.x1628 >= 136.78) m.c1932 = Constraint(expr= m.x813 + m.x861 + m.x909 + m.x957 + m.x1005 + m.x1053 + m.x1101 + m.x1149 + 0.9975*m.x1533 - m.x1534 - m.x1629 >= 143.94) m.c1933 = Constraint(expr= m.x814 + m.x862 + m.x910 + m.x958 + m.x1006 + m.x1054 + m.x1102 + m.x1150 + 0.9975*m.x1534 - m.x1535 - m.x1630 >= 144.06) m.c1934 = Constraint(expr= m.x815 + m.x863 + m.x911 + m.x959 + m.x1007 + m.x1055 + m.x1103 + m.x1151 + 0.9975*m.x1535 - m.x1536 - m.x1631 >= 146.68) m.c1935 = Constraint(expr= m.x816 + m.x864 + m.x912 + m.x960 + m.x1008 + m.x1056 + m.x1104 + m.x1152 + 0.9975*m.x1536 - m.x1537 - m.x1632 >= 134.97) m.c1936 = Constraint(expr= m.x770 + m.x818 + m.x866 + m.x914 + m.x962 + m.x1010 + m.x1058 + m.x1106 + 0.9975*m.x1490 - m.x1491 - m.x1586 <= 86.284) m.c1937 = Constraint(expr= m.x771 + m.x819 + m.x867 + m.x915 + m.x963 + m.x1011 + m.x1059 + m.x1107 + 0.9975*m.x1491 - m.x1492 - m.x1587 <= 87.164) m.c1938 = Constraint(expr= m.x772 + m.x820 + m.x868 + m.x916 + m.x964 + m.x1012 + m.x1060 + m.x1108 + 0.9975*m.x1492 - m.x1493 - m.x1588 <= 90.024) m.c1939 = Constraint(expr= m.x773 + m.x821 + m.x869 + m.x917 + m.x965 + m.x1013 + m.x1061 + m.x1109 + 0.9975*m.x1493 - m.x1494 - m.x1589 <= 92.664) m.c1940 = Constraint(expr= m.x774 + m.x822 + m.x870 + m.x918 + m.x966 + m.x1014 + m.x1062 + m.x1110 + 0.9975*m.x1494 - m.x1495 - m.x1590 <= 95.964) m.c1941 = Constraint(expr= m.x775 + m.x823 + m.x871 + m.x919 + m.x967 + m.x1015 + m.x1063 + m.x1111 + 0.9975*m.x1495 - m.x1496 - m.x1591 <= 99.275) m.c1942 = Constraint(expr= m.x776 + m.x824 + m.x872 + m.x920 + m.x968 + m.x1016 + m.x1064 + m.x1112 + 0.9975*m.x1496 - m.x1497 - m.x1592 <= 102.135) m.c1943 = Constraint(expr= m.x777 + m.x825 + m.x873 + m.x921 + m.x969 + m.x1017 + m.x1065 + m.x1113 + 0.9975*m.x1497 - m.x1498 - m.x1593 <= 103.235) m.c1944 = Constraint(expr= m.x778 + m.x826 + m.x874 + m.x922 + m.x970 + m.x1018 + m.x1066 + m.x1114 + 0.9975*m.x1498 - m.x1499 - m.x1594 <= 103.235) m.c1945 = Constraint(expr= m.x779 + m.x827 + m.x875 + m.x923 + m.x971 + m.x1019 + m.x1067 + m.x1115 + 0.9975*m.x1499 - m.x1500 - m.x1595 <= 101.695) m.c1946 = Constraint(expr= m.x780 + m.x828 + m.x876 + m.x924 + m.x972 + m.x1020 + m.x1068 + m.x1116 + 0.9975*m.x1500 - m.x1501 - m.x1596 <= 99.935) m.c1947 = Constraint(expr= m.x781 + m.x829 + m.x877 + m.x925 + m.x973 + m.x1021 + m.x1069 + m.x1117 + 0.9975*m.x1501 - m.x1502 - m.x1597 <= 96.415) m.c1948 = Constraint(expr= m.x782 + m.x830 + m.x878 + m.x926 + m.x974 + m.x1022 + m.x1070 + m.x1118 + 0.9975*m.x1502 - m.x1503 - m.x1598 <= 96.184) m.c1949 = Constraint(expr= m.x783 + m.x831 + m.x879 + m.x927 + m.x975 + m.x1023 + m.x1071 + m.x1119 + 0.9975*m.x1503 - m.x1504 - m.x1599 <= 97.955) m.c1950 = Constraint(expr= m.x784 + m.x832 + m.x880 + m.x928 + m.x976 + m.x1024 + m.x1072 + m.x1120 + 0.9975*m.x1504 - m.x1505 - m.x1600 <= 99.715) m.c1951 = Constraint(expr= m.x785 + m.x833 + m.x881 + m.x929 + m.x977 + m.x1025 + m.x1073 + m.x1121 + 0.9975*m.x1505 - m.x1506 - m.x1601 <= 99.935) m.c1952 = Constraint(expr= m.x786 + m.x834 + m.x882 + m.x930 + m.x978 + m.x1026 + m.x1074 + m.x1122 + 0.9975*m.x1506 - m.x1507 - m.x1602 <= 99.715) m.c1953 = Constraint(expr= m.x787 + m.x835 + m.x883 + m.x931 + m.x979 + m.x1027 + m.x1075 + m.x1123 + 0.9975*m.x1507 - m.x1508 - m.x1603 <= 98.395) m.c1954 = Constraint(expr= m.x788 + m.x836 + m.x884 + m.x932 + m.x980 + m.x1028 + m.x1076 + m.x1124 + 0.9975*m.x1508 - m.x1509 - m.x1604 <= 97.075) m.c1955 = Constraint(expr= m.x789 + m.x837 + m.x885 + m.x933 + m.x981 + m.x1029 + m.x1077 + m.x1125 + 0.9975*m.x1509 - m.x1510 - m.x1605 <= 95.744) m.c1956 = Constraint(expr= m.x790 + m.x838 + m.x886 + m.x934 + m.x982 + m.x1030 + m.x1078 + m.x1126 + 0.9975*m.x1510 - m.x1511 - m.x1606 <= 94.424) m.c1957 = Constraint(expr= m.x791 + m.x839 + m.x887 + m.x935 + m.x983 + m.x1031 + m.x1079 + m.x1127 + 0.9975*m.x1511 - m.x1512 - m.x1607 <= 90.904) m.c1958 = Constraint(expr= m.x792 + m.x840 + m.x888 + m.x936 + m.x984 + m.x1032 + m.x1080 + m.x1128 + 0.9975*m.x1512 - m.x1513 - m.x1608 <= 86.944) m.c1959 = Constraint(expr= m.x794 + m.x842 + m.x890 + m.x938 + m.x986 + m.x1034 + m.x1082 + m.x1130 + 0.9975*m.x1514 - m.x1515 - m.x1610 <= 169.565) m.c1960 = Constraint(expr= m.x795 + m.x843 + m.x891 + m.x939 + m.x987 + m.x1035 + m.x1083 + m.x1131 + 0.9975*m.x1515 - m.x1516 - m.x1611 <= 171.116) m.c1961 = Constraint(expr= m.x796 + m.x844 + m.x892 + m.x940 + m.x988 + m.x1036 + m.x1084 + m.x1132 + 0.9975*m.x1516 - m.x1517 - m.x1612 <= 172.678) m.c1962 = Constraint(expr= m.x797 + m.x845 + m.x893 + m.x941 + m.x989 + m.x1037 + m.x1085 + m.x1133 + 0.9975*m.x1517 - m.x1518 - m.x1613 <= 172.678) m.c1963 = Constraint(expr= m.x798 + m.x846 + m.x894 + m.x942 + m.x990 + m.x1038 + m.x1086 + m.x1134 + 0.9975*m.x1518 - m.x1519 - m.x1614 <= 171.116) m.c1964 = Constraint(expr= m.x799 + m.x847 + m.x895 + m.x943 + m.x991 + m.x1039 + m.x1087 + m.x1135 + 0.9975*m.x1519 - m.x1520 - m.x1615 <= 185.427) m.c1965 = Constraint(expr= m.x800 + m.x848 + m.x896 + m.x944 + m.x992 + m.x1040 + m.x1088 + m.x1136 + 0.9975*m.x1520 - m.x1521 - m.x1616 <= 188.419) m.c1966 = Constraint(expr= m.x801 + m.x849 + m.x897 + m.x945 + m.x993 + m.x1041 + m.x1089 + m.x1137 + 0.9975*m.x1521 - m.x1522 - m.x1617 <= 155.518) m.c1967 = Constraint(expr= m.x802 + m.x850 + m.x898 + m.x946 + m.x994 + m.x1042 + m.x1090 + m.x1138 + 0.9975*m.x1522 - m.x1523 - m.x1618 <= 153.021) m.c1968 = Constraint(expr= m.x803 + m.x851 + m.x899 + m.x947 + m.x995 + m.x1043 + m.x1091 + m.x1139 + 0.9975*m.x1523 - m.x1524 - m.x1619 <= 150.04) m.c1969 = Constraint(expr= m.x804 + m.x852 + m.x900 + m.x948 + m.x996 + m.x1044 + m.x1092 + m.x1140 + 0.9975*m.x1524 - m.x1525 - m.x1620 <= 146.927) m.c1970 = Constraint(expr= m.x805 + m.x853 + m.x901 + m.x949 + m.x997 + m.x1045 + m.x1093 + m.x1141 + 0.9975*m.x1525 - m.x1526 - m.x1621 <= 139.953) m.c1971 = Constraint(expr= m.x806 + m.x854 + m.x902 + m.x950 + m.x998 + m.x1046 + m.x1094 + m.x1142 + 0.9975*m.x1526 - m.x1527 - m.x1622 <= 136.312) m.c1972 = Constraint(expr= m.x807 + m.x855 + m.x903 + m.x951 + m.x999 + m.x1047 + m.x1095 + m.x1143 + 0.9975*m.x1527 - m.x1528 - m.x1623 <= 131.23) m.c1973 = Constraint(expr= m.x808 + m.x856 + m.x904 + m.x952 + m.x1000 + m.x1048 + m.x1096 + m.x1144 + 0.9975*m.x1528 - m.x1529 - m.x1624 <= 132.638) m.c1974 = Constraint(expr= m.x809 + m.x857 + m.x905 + m.x953 + m.x1001 + m.x1049 + m.x1097 + m.x1145 + 0.9975*m.x1529 - m.x1530 - m.x1625 <= 135.168) m.c1975 = Constraint(expr= m.x810 + m.x858 + m.x906 + m.x954 + m.x1002 + m.x1050 + m.x1098 + m.x1146 + 0.9975*m.x1530 - m.x1531 - m.x1626 <= 139.381) m.c1976 = Constraint(expr= m.x811 + m.x859 + m.x907 + m.x955 + m.x1003 + m.x1051 + m.x1099 + m.x1147 + 0.9975*m.x1531 - m.x1532 - m.x1627 <= 141.515) m.c1977 = Constraint(expr= m.x812 + m.x860 + m.x908 + m.x956 + m.x1004 + m.x1052 + m.x1100 + m.x1148 + 0.9975*m.x1532 - m.x1533 - m.x1628 <= 150.458) m.c1978 = Constraint(expr= m.x813 + m.x861 + m.x909 + m.x957 + m.x1005 + m.x1053 + m.x1101 + m.x1149 + 0.9975*m.x1533 - m.x1534 - m.x1629 <= 158.334) m.c1979 = Constraint(expr= m.x814 + m.x862 + m.x910 + m.x958 + m.x1006 + m.x1054 + m.x1102 + m.x1150 + 0.9975*m.x1534 - m.x1535 - m.x1630 <= 158.466) m.c1980 = Constraint(expr= m.x815 + m.x863 + m.x911 + m.x959 + m.x1007 + m.x1055 + m.x1103 + m.x1151 + 0.9975*m.x1535 - m.x1536 - m.x1631 <= 161.348) m.c1981 = Constraint(expr= m.x816 + m.x864 + m.x912 + m.x960 + m.x1008 + m.x1056 + m.x1104 + m.x1152 + 0.9975*m.x1536 - m.x1537 - m.x1632 <= 148.467) m.c1982 = Constraint(expr= m.x793 + m.x841 + m.x889 + m.x937 + m.x985 + m.x1033 + m.x1081 + m.x1129 + 0.9975*m.x1513 - m.x1514 - m.x1609 >= 75.24) m.c1983 = Constraint(expr= m.x817 + m.x865 + m.x913 + m.x961 + m.x1009 + m.x1057 + m.x1105 + m.x1153 - m.x1490 + 0.9975*m.x1537 - m.x1633 >= 150.55) m.c1984 = Constraint(expr= m.x1154 + m.x1202 + m.x1250 + m.x1298 + m.x1346 + m.x1394 + 0.9975*m.x1442 - m.x1443 + m.x1586 >= 0) m.c1985 = Constraint(expr= m.x1155 + m.x1203 + m.x1251 + m.x1299 + m.x1347 + m.x1395 + 0.9975*m.x1443 - m.x1444 + m.x1587 >= 0) m.c1986 = Constraint(expr= m.x1156 + m.x1204 + m.x1252 + m.x1300 + m.x1348 + m.x1396 + 0.9975*m.x1444 - m.x1445 + m.x1588 >= 0) m.c1987 = Constraint(expr= m.x1157 + m.x1205 + m.x1253 + m.x1301 + m.x1349 + m.x1397 + 0.9975*m.x1445 - m.x1446 + m.x1589 >= 0) m.c1988 = Constraint(expr= m.x1158 + m.x1206 + m.x1254 + m.x1302 + m.x1350 + m.x1398 + 0.9975*m.x1446 - m.x1447 + m.x1590 >= 0) m.c1989 = Constraint(expr= m.x1159 + m.x1207 + m.x1255 + m.x1303 + m.x1351 + m.x1399 + 0.9975*m.x1447 - m.x1448 + m.x1591 >= 0) m.c1990 = Constraint(expr= m.x1160 + m.x1208 + m.x1256 + m.x1304 + m.x1352 + m.x1400 + 0.9975*m.x1448 - m.x1449 + m.x1592 >= 0) m.c1991 = Constraint(expr= m.x1161 + m.x1209 + m.x1257 + m.x1305 + m.x1353 + m.x1401 + 0.9975*m.x1449 - m.x1450 + m.x1593 >= 0) m.c1992 = Constraint(expr= m.x1162 + m.x1210 + m.x1258 + m.x1306 + m.x1354 + m.x1402 + 0.9975*m.x1450 - m.x1451 + m.x1594 >= 0) m.c1993 = Constraint(expr= m.x1163 + m.x1211 + m.x1259 + m.x1307 + m.x1355 + m.x1403 + 0.9975*m.x1451 - m.x1452 + m.x1595 >= 0) m.c1994 = Constraint(expr= m.x1164 + m.x1212 + m.x1260 + m.x1308 + m.x1356 + m.x1404 + 0.9975*m.x1452 - m.x1453 + m.x1596 >= 0) m.c1995 = Constraint(expr= m.x1165 + m.x1213 + m.x1261 + m.x1309 + m.x1357 + m.x1405 + 0.9975*m.x1453 - m.x1454 + m.x1597 >= 0) m.c1996 = Constraint(expr= m.x1166 + m.x1214 + m.x1262 + m.x1310 + m.x1358 + m.x1406 + 0.9975*m.x1454 - m.x1455 + m.x1598 >= 0) m.c1997 = Constraint(expr= m.x1167 + m.x1215 + m.x1263 + m.x1311 + m.x1359 + m.x1407 + 0.9975*m.x1455 - m.x1456 + m.x1599 >= 0) m.c1998 = Constraint(expr= m.x1168 + m.x1216 + m.x1264 + m.x1312 + m.x1360 + m.x1408 + 0.9975*m.x1456 - m.x1457 + m.x1600 >= 0) m.c1999 = Constraint(expr= m.x1169 + m.x1217 + m.x1265 + m.x1313 + m.x1361 + m.x1409 + 0.9975*m.x1457 - m.x1458 + m.x1601 >= 0) m.c2000 = Constraint(expr= m.x1170 + m.x1218 + m.x1266 + m.x1314 + m.x1362 + m.x1410 + 0.9975*m.x1458 - m.x1459 + m.x1602 >= 0) m.c2001 = Constraint(expr= m.x1171 + m.x1219 + m.x1267 + m.x1315 + m.x1363 + m.x1411 + 0.9975*m.x1459 - m.x1460 + m.x1603 >= 0) m.c2002 = Constraint(expr= m.x1172 + m.x1220 + m.x1268 + m.x1316 + m.x1364 + m.x1412 + 0.9975*m.x1460 - m.x1461 + m.x1604 >= 0) m.c2003 = Constraint(expr= m.x1173 + m.x1221 + m.x1269 + m.x1317 + m.x1365 + m.x1413 + 0.9975*m.x1461 - m.x1462 + m.x1605 >= 0) m.c2004 = Constraint(expr= m.x1174 + m.x1222 + m.x1270 + m.x1318 + m.x1366 + m.x1414 + 0.9975*m.x1462 - m.x1463 + m.x1606 >= 0) m.c2005 = Constraint(expr= m.x1175 + m.x1223 + m.x1271 + m.x1319 + m.x1367 + m.x1415 + 0.9975*m.x1463 - m.x1464 + m.x1607 >= 0) m.c2006 = Constraint(expr= m.x1176 + m.x1224 + m.x1272 + m.x1320 + m.x1368 + m.x1416 + 0.9975*m.x1464 - m.x1465 + m.x1608 >= 0) m.c2007 = Constraint(expr= m.x1178 + m.x1226 + m.x1274 + m.x1322 + m.x1370 + m.x1418 + 0.9975*m.x1466 - m.x1467 + m.x1610 >= 0) m.c2008 = Constraint(expr= m.x1179 + m.x1227 + m.x1275 + m.x1323 + m.x1371 + m.x1419 + 0.9975*m.x1467 - m.x1468 + m.x1611 >= 0) m.c2009 = Constraint(expr= m.x1180 + m.x1228 + m.x1276 + m.x1324 + m.x1372 + m.x1420 + 0.9975*m.x1468 - m.x1469 + m.x1612 >= 0) m.c2010 = Constraint(expr= m.x1181 + m.x1229 + m.x1277 + m.x1325 + m.x1373 + m.x1421 + 0.9975*m.x1469 - m.x1470 + m.x1613 >= 0) m.c2011 = Constraint(expr= m.x1182 + m.x1230 + m.x1278 + m.x1326 + m.x1374 + m.x1422 + 0.9975*m.x1470 - m.x1471 + m.x1614 >= 0) m.c2012 = Constraint(expr= m.x1183 + m.x1231 + m.x1279 + m.x1327 + m.x1375 + m.x1423 + 0.9975*m.x1471 - m.x1472 + m.x1615 >= 0) m.c2013 = Constraint(expr= m.x1184 + m.x1232 + m.x1280 + m.x1328 + m.x1376 + m.x1424 + 0.9975*m.x1472 - m.x1473 + m.x1616 >= 0) m.c2014 = Constraint(expr= m.x1185 + m.x1233 + m.x1281 + m.x1329 + m.x1377 + m.x1425 + 0.9975*m.x1473 - m.x1474 + m.x1617 >= 0) m.c2015 = Constraint(expr= m.x1186 + m.x1234 + m.x1282 + m.x1330 + m.x1378 + m.x1426 + 0.9975*m.x1474 - m.x1475 + m.x1618 >= 0) m.c2016 = Constraint(expr= m.x1187 + m.x1235 + m.x1283 + m.x1331 + m.x1379 + m.x1427 + 0.9975*m.x1475 - m.x1476 + m.x1619 >= 0) m.c2017 = Constraint(expr= m.x1188 + m.x1236 + m.x1284 + m.x1332 + m.x1380 + m.x1428 + 0.9975*m.x1476 - m.x1477 + m.x1620 >= 0) m.c2018 = Constraint(expr= m.x1189 + m.x1237 + m.x1285 + m.x1333 + m.x1381 + m.x1429 + 0.9975*m.x1477 - m.x1478 + m.x1621 >= 0) m.c2019 = Constraint(expr= m.x1190 + m.x1238 + m.x1286 + m.x1334 + m.x1382 + m.x1430 + 0.9975*m.x1478 - m.x1479 + m.x1622 >= 0) m.c2020 = Constraint(expr= m.x1191 + m.x1239 + m.x1287 + m.x1335 + m.x1383 + m.x1431 + 0.9975*m.x1479 - m.x1480 + m.x1623 >= 0) m.c2021 = Constraint(expr= m.x1192 + m.x1240 + m.x1288 + m.x1336 + m.x1384 + m.x1432 + 0.9975*m.x1480 - m.x1481 + m.x1624 >= 0) m.c2022 = Constraint(expr= m.x1193 + m.x1241 + m.x1289 + m.x1337 + m.x1385 + m.x1433 + 0.9975*m.x1481 - m.x1482 + m.x1625 >= 0) m.c2023 = Constraint(expr= m.x1194 + m.x1242 + m.x1290 + m.x1338 + m.x1386 + m.x1434 + 0.9975*m.x1482 - m.x1483 + m.x1626 >= 0) m.c2024 = Constraint(expr= m.x1195 + m.x1243 + m.x1291 + m.x1339 + m.x1387 + m.x1435 + 0.9975*m.x1483 - m.x1484 + m.x1627 >= 0) m.c2025 = Constraint(expr= m.x1196 + m.x1244 + m.x1292 + m.x1340 + m.x1388 + m.x1436 + 0.9975*m.x1484 - m.x1485 + m.x1628 >= 0) m.c2026 = Constraint(expr= m.x1197 + m.x1245 + m.x1293 + m.x1341 + m.x1389 + m.x1437 + 0.9975*m.x1485 - m.x1486 + m.x1629 >= 0) m.c2027 = Constraint(expr= m.x1198 + m.x1246 + m.x1294 + m.x1342 + m.x1390 + m.x1438 + 0.9975*m.x1486 - m.x1487 + m.x1630 >= 0) m.c2028 = Constraint(expr= m.x1199 + m.x1247 + m.x1295 + m.x1343 + m.x1391 + m.x1439 + 0.9975*m.x1487 - m.x1488 + m.x1631 >= 0) m.c2029 = Constraint(expr= m.x1200 + m.x1248 + m.x1296 + m.x1344 + m.x1392 + m.x1440 + 0.9975*m.x1488 - m.x1489 + m.x1632 >= 0) m.c2030 = Constraint(expr= m.x1177 + m.x1225 + m.x1273 + m.x1321 + m.x1369 + m.x1417 + 0.9975*m.x1465 - m.x1466 + m.x1609 >= 0) m.c2031 = Constraint(expr= m.x1201 + m.x1249 + m.x1297 + m.x1345 + m.x1393 + m.x1441 - m.x1442 + 0.9975*m.x1489 + m.x1633 >= 0) m.c2032 = Constraint(expr= - m.x386 + m.x434 + m.x482 + m.x530 + m.x578 + m.x626 + m.x674 + m.x722 == 0) m.c2033 = Constraint(expr= - m.x387 + m.x435 + m.x483 + m.x531 + m.x579 + m.x627 + m.x675 + m.x723 == 0) m.c2034 = Constraint(expr= - m.x388 + m.x436 + m.x484 + m.x532 + m.x580 + m.x628 + m.x676 + m.x724 == 0) m.c2035 = Constraint(expr= - m.x389 + m.x437 + m.x485 + m.x533 + m.x581 + m.x629 + m.x677 + m.x725 == 0) m.c2036 = Constraint(expr= - m.x390 + m.x438 + m.x486 + m.x534 + m.x582 + m.x630 + m.x678 + m.x726 == 0) m.c2037 = Constraint(expr= - m.x391 + m.x439 + m.x487 + m.x535 + m.x583 + m.x631 + m.x679 + m.x727 == 0) m.c2038 = Constraint(expr= - m.x392 + m.x440 + m.x488 + m.x536 + m.x584 + m.x632 + m.x680 + m.x728 == 0) m.c2039 = Constraint(expr= - m.x393 + m.x441 + m.x489 + m.x537 + m.x585 + m.x633 + m.x681 + m.x729 == 0) m.c2040 = Constraint(expr= - m.x394 + m.x442 + m.x490 + m.x538 + m.x586 + m.x634 + m.x682 + m.x730 == 0) m.c2041 = Constraint(expr= - m.x395 + m.x443 + m.x491 + m.x539 + m.x587 + m.x635 + m.x683 + m.x731 == 0) m.c2042 = Constraint(expr= - m.x396 + m.x444 + m.x492 + m.x540 + m.x588 + m.x636 + m.x684 + m.x732 == 0) m.c2043 = Constraint(expr= - m.x397 + m.x445 + m.x493 + m.x541 + m.x589 + m.x637 + m.x685 + m.x733 == 0) m.c2044 = Constraint(expr= - m.x398 + m.x446 + m.x494 + m.x542 + m.x590 + m.x638 + m.x686 + m.x734 == 0) m.c2045 = Constraint(expr= - m.x399 + m.x447 + m.x495 + m.x543 + m.x591 + m.x639 + m.x687 + m.x735 == 0) m.c2046 = Constraint(expr= - m.x400 + m.x448 + m.x496 + m.x544 + m.x592 + m.x640 + m.x688 + m.x736 == 0) m.c2047 = Constraint(expr= - m.x401 + m.x449 + m.x497 + m.x545 + m.x593 + m.x641 + m.x689 + m.x737 == 0) m.c2048 = Constraint(expr= - m.x402 + m.x450 + m.x498 + m.x546 + m.x594 + m.x642 + m.x690 + m.x738 == 0) m.c2049 = Constraint(expr= - m.x403 + m.x451 + m.x499 + m.x547 + m.x595 + m.x643 + m.x691 + m.x739 == 0) m.c2050 = Constraint(expr= - m.x404 + m.x452 + m.x500 + m.x548 + m.x596 + m.x644 + m.x692 + m.x740 == 0) m.c2051 = Constraint(expr= - m.x405 + m.x453 + m.x501 + m.x549 + m.x597 + m.x645 + m.x693 + m.x741 == 0) m.c2052 = Constraint(expr= - m.x406 + m.x454 + m.x502 + m.x550 + m.x598 + m.x646 + m.x694 + m.x742 == 0) m.c2053 = Constraint(expr= - m.x407 + m.x455 + m.x503 + m.x551 + m.x599 + m.x647 + m.x695 + m.x743 == 0) m.c2054 = Constraint(expr= - m.x408 + m.x456 + m.x504 + m.x552 + m.x600 + m.x648 + m.x696 + m.x744 == 0) m.c2055 = Constraint(expr= - m.x409 + m.x457 + m.x505 + m.x553 + m.x601 + m.x649 + m.x697 + m.x745 == 0) m.c2056 = Constraint(expr= - m.x410 + m.x458 + m.x506 + m.x554 + m.x602 + m.x650 + m.x698 + m.x746 == 0) m.c2057 = Constraint(expr= - m.x411 + m.x459 + m.x507 + m.x555 + m.x603 + m.x651 + m.x699 + m.x747 == 0) m.c2058 = Constraint(expr= - m.x412 + m.x460 + m.x508 + m.x556 + m.x604 + m.x652 + m.x700 + m.x748 == 0) m.c2059 = Constraint(expr= - m.x413 + m.x461 + m.x509 + m.x557 + m.x605 + m.x653 + m.x701 + m.x749 == 0) m.c2060 = Constraint(expr= - m.x414 + m.x462 + m.x510 + m.x558 + m.x606 + m.x654 + m.x702 + m.x750 == 0) m.c2061 = Constraint(expr= - m.x415 + m.x463 + m.x511 + m.x559 + m.x607 + m.x655 + m.x703 + m.x751 == 0) m.c2062 = Constraint(expr= - m.x416 + m.x464 + m.x512 + m.x560 + m.x608 + m.x656 + m.x704 + m.x752 == 0) m.c2063 = Constraint(expr= - m.x417 + m.x465 + m.x513 + m.x561 + m.x609 + m.x657 + m.x705 + m.x753 == 0) m.c2064 = Constraint(expr= - m.x418 + m.x466 + m.x514 + m.x562 + m.x610 + m.x658 + m.x706 + m.x754 == 0) m.c2065 = Constraint(expr= - m.x419 + m.x467 + m.x515 + m.x563 + m.x611 + m.x659 + m.x707 + m.x755 == 0) m.c2066 = Constraint(expr= - m.x420 + m.x468 + m.x516 + m.x564 + m.x612 + m.x660 + m.x708 + m.x756 == 0) m.c2067 = Constraint(expr= - m.x421 + m.x469 + m.x517 + m.x565 + m.x613 + m.x661 + m.x709 + m.x757 == 0) m.c2068 = Constraint(expr= - m.x422 + m.x470 + m.x518 + m.x566 + m.x614 + m.x662 + m.x710 + m.x758 == 0) m.c2069 = Constraint(expr= - m.x423 + m.x471 + m.x519 + m.x567 + m.x615 + m.x663 + m.x711 + m.x759 == 0) m.c2070 = Constraint(expr= - m.x424 + m.x472 + m.x520 + m.x568 + m.x616 + m.x664 + m.x712 + m.x760 == 0) m.c2071 = Constraint(expr= - m.x425 + m.x473 + m.x521 + m.x569 + m.x617 + m.x665 + m.x713 + m.x761 == 0) m.c2072 = Constraint(expr= - m.x426 + m.x474 + m.x522 + m.x570 + m.x618 + m.x666 + m.x714 + m.x762 == 0) m.c2073 = Constraint(expr= - m.x427 + m.x475 + m.x523 + m.x571 + m.x619 + m.x667 + m.x715 + m.x763 == 0) m.c2074 = Constraint(expr= - m.x428 + m.x476 + m.x524 + m.x572 + m.x620 + m.x668 + m.x716 + m.x764 == 0) m.c2075 = Constraint(expr= - m.x429 + m.x477 + m.x525 + m.x573 + m.x621 + m.x669 + m.x717 + m.x765 == 0) m.c2076 = Constraint(expr= - m.x430 + m.x478 + m.x526 + m.x574 + m.x622 + m.x670 + m.x718 + m.x766 == 0) m.c2077 = Constraint(expr= - m.x431 + m.x479 + m.x527 + m.x575 + m.x623 + m.x671 + m.x719 + m.x767 == 0) m.c2078 = Constraint(expr= - m.x432 + m.x480 + m.x528 + m.x576 + m.x624 + m.x672 + m.x720 + m.x768 == 0) m.c2079 = Constraint(expr= - m.x433 + m.x481 + m.x529 + m.x577 + m.x625 + m.x673 + m.x721 + m.x769 == 0) m.c2080 = Constraint(expr= 0.997*m.x1538 - m.x1539 >= 0) m.c2081 = Constraint(expr= 0.997*m.x1539 - m.x1540 >= 0) m.c2082 = Constraint(expr= 0.997*m.x1540 - m.x1541 >= 0) m.c2083 = Constraint(expr= 0.997*m.x1541 - m.x1542 >= 0) m.c2084 = Constraint(expr= 0.997*m.x1542 - m.x1543 >= 0) m.c2085 = Constraint(expr= 0.997*m.x1543 - m.x1544 >= 0) m.c2086 = Constraint(expr= 0.997*m.x1544 - m.x1545 >= 0) m.c2087 = Constraint(expr= 0.997*m.x1545 - m.x1546 >= 0) m.c2088 = Constraint(expr= 0.997*m.x1546 - m.x1547 >= 0) m.c2089 = Constraint(expr= 0.997*m.x1547 - m.x1548 >= 0) m.c2090 = Constraint(expr= 0.997*m.x1548 - m.x1549 >= 0) m.c2091 = Constraint(expr= 0.997*m.x1549 - m.x1550 >= 0) m.c2092 = Constraint(expr= 0.997*m.x1550 - m.x1551 >= 0) m.c2093 = Constraint(expr= 0.997*m.x1551 - m.x1552 >= 0) m.c2094 = Constraint(expr= 0.997*m.x1552 - m.x1553 >= 0) m.c2095 = Constraint(expr= 0.997*m.x1553 - m.x1554 >= 0) m.c2096 = Constraint(expr= 0.997*m.x1554 - m.x1555 >= 0) m.c2097 = Constraint(expr= 0.997*m.x1555 - m.x1556 >= 0) m.c2098 = Constraint(expr= 0.997*m.x1556 - m.x1557 >= 0) m.c2099 = Constraint(expr= 0.997*m.x1557 - m.x1558 >= 0) m.c2100 = Constraint(expr= 0.997*m.x1558 - m.x1559 >= 0) m.c2101 = Constraint(expr= 0.997*m.x1559 - m.x1560 >= 0) m.c2102 = Constraint(expr= 0.997*m.x1560 - m.x1561 >= 0) m.c2103 = Constraint(expr= 0.997*m.x1562 - m.x1563 >= 0) m.c2104 = Constraint(expr= 0.997*m.x1563 - m.x1564 >= 0) m.c2105 = Constraint(expr= 0.997*m.x1564 - m.x1565 >= 0) m.c2106 = Constraint(expr= 0.997*m.x1565 - m.x1566 >= 0) m.c2107 = Constraint(expr= 0.997*m.x1566 - m.x1567 >= 0) m.c2108 = Constraint(expr= 0.997*m.x1567 - m.x1568 >= 0) m.c2109 = Constraint(expr= 0.997*m.x1568 - m.x1569 >= 0) m.c2110 = Constraint(expr= 0.997*m.x1569 - m.x1570 >= 0) m.c2111 = Constraint(expr= 0.997*m.x1570 - m.x1571 >= 0) m.c2112 = Constraint(expr= 0.997*m.x1571 - m.x1572 >= 0) m.c2113 = Constraint(expr= 0.997*m.x1572 - m.x1573 >= 0) m.c2114 = Constraint(expr= 0.997*m.x1573 - m.x1574 >= 0) m.c2115 = Constraint(expr= 0.997*m.x1574 - m.x1575 >= 0) m.c2116 = Constraint(expr= 0.997*m.x1575 - m.x1576 >= 0) m.c2117 = Constraint(expr= 0.997*m.x1576 - m.x1577 >= 0) m.c2118 = Constraint(expr= 0.997*m.x1577 - m.x1578 >= 0) m.c2119 = Constraint(expr= 0.997*m.x1578 - m.x1579 >= 0) m.c2120 = Constraint(expr= 0.997*m.x1579 - m.x1580 >= 0) m.c2121 = Constraint(expr= 0.997*m.x1580 - m.x1581 >= 0) m.c2122 = Constraint(expr= 0.997*m.x1581 - m.x1582 >= 0) m.c2123 = Constraint(expr= 0.997*m.x1582 - m.x1583 >= 0) m.c2124 = Constraint(expr= 0.997*m.x1583 - m.x1584 >= 0) m.c2125 = Constraint(expr= 0.997*m.x1584 - m.x1585 >= 0) m.c2126 = Constraint(expr= 0.997*m.x1561 - m.x1562 >= 0) m.c2127 = Constraint(expr= - m.x1538 + 0.997*m.x1585 >= 0) m.c2128 = Constraint(expr= - m.x2 + m.b2306 <= 0) m.c2129 = Constraint(expr= - m.x3 + m.b2307 <= 0) m.c2130 = Constraint(expr= - m.x4 + m.b2308 <= 0) m.c2131 = Constraint(expr= - m.x5 + m.b2309 <= 0) m.c2132 = Constraint(expr= - m.x6 + m.b2310 <= 0) m.c2133 = Constraint(expr= - m.x7 + m.b2311 <= 0) m.c2134 = Constraint(expr= - m.x8 + m.b2312 <= 0) m.c2135 = Constraint(expr= - m.x9 + m.b2313 <= 0) m.c2136 = Constraint(expr= - m.x10 + m.b2314 <= 0) m.c2137 = Constraint(expr= - m.x11 + m.b2315 <= 0) m.c2138 = Constraint(expr= - m.x12 + m.b2316 <= 0) m.c2139 = Constraint(expr= - m.x13 + m.b2317 <= 0) m.c2140 = Constraint(expr= - m.x14 + m.b2318 <= 0) m.c2141 = Constraint(expr= - m.x15 + m.b2319 <= 0) m.c2142 = Constraint(expr= - m.x16 + m.b2320 <= 0) m.c2143 = Constraint(expr= - m.x17 + m.b2321 <= 0) m.c2144 = Constraint(expr= - m.x18 + m.b2322 <= 0) m.c2145 = Constraint(expr= - m.x19 + m.b2323 <= 0) m.c2146 = Constraint(expr= - m.x20 + m.b2324 <= 0) m.c2147 = Constraint(expr= - m.x21 + m.b2325 <= 0) m.c2148 = Constraint(expr= - m.x22 + m.b2326 <= 0) m.c2149 = Constraint(expr= - m.x23 + m.b2327 <= 0) m.c2150 = Constraint(expr= - m.x24 + m.b2328 <= 0) m.c2151 = Constraint(expr= - m.x25 + m.b2329 <= 0) m.c2152 = Constraint(expr= - m.x26 + m.b2330 <= 0) m.c2153 = Constraint(expr= - m.x27 + m.b2331 <= 0) m.c2154 = Constraint(expr= - m.x28 + m.b2332 <= 0) m.c2155 = Constraint(expr= - m.x29 + m.b2333 <= 0) m.c2156 = Constraint(expr= - m.x30 + m.b2334 <= 0) m.c2157 = Constraint(expr= - m.x31 + m.b2335 <= 0) m.c2158 = Constraint(expr= - m.x32 + m.b2336 <= 0) m.c2159 = Constraint(expr= - m.x33 + m.b2337 <= 0) m.c2160 = Constraint(expr= - m.x34 + m.b2338 <= 0) m.c2161 = Constraint(expr= - m.x35 + m.b2339 <= 0) m.c2162 = Constraint(expr= - m.x36 + m.b2340 <= 0) m.c2163 = Constraint(expr= - m.x37 + m.b2341 <= 0) m.c2164 = Constraint(expr= - m.x38 + m.b2342 <= 0) m.c2165 = Constraint(expr= - m.x39 + m.b2343 <= 0) m.c2166 = Constraint(expr= - m.x40 + m.b2344 <= 0) m.c2167 = Constraint(expr= - m.x41 + m.b2345 <= 0) m.c2168 = Constraint(expr= - m.x42 + m.b2346 <= 0) m.c2169 = Constraint(expr= - m.x43 + m.b2347 <= 0) m.c2170 = Constraint(expr= - m.x44 + m.b2348 <= 0) m.c2171 = Constraint(expr= - m.x45 + m.b2349 <= 0) m.c2172 = Constraint(expr= - m.x46 + m.b2350 <= 0) m.c2173 = Constraint(expr= - m.x47 + m.b2351 <= 0) m.c2174 = Constraint(expr= - m.x48 + m.b2352 <= 0) m.c2175 = Constraint(expr= - m.x49 + m.b2353 <= 0) m.c2176 = Constraint(expr= - m.x50 + m.b2354 <= 0) m.c2177 = Constraint(expr= - m.x51 + m.b2355 <= 0) m.c2178 = Constraint(expr= - m.x52 + m.b2356 <= 0) m.c2179 = Constraint(expr= - m.x53 + m.b2357 <= 0) m.c2180 = Constraint(expr= - m.x54 + m.b2358 <= 0) m.c2181 = Constraint(expr= - m.x55 + m.b2359 <= 0) m.c2182 = Constraint(expr= - m.x56 + m.b2360 <= 0) m.c2183 = Constraint(expr= - m.x57 + m.b2361 <= 0) m.c2184 = Constraint(expr= - m.x58 + m.b2362 <= 0) m.c2185 = Constraint(expr= - m.x59 + m.b2363 <= 0) m.c2186 = Constraint(expr= - m.x60 + m.b2364 <= 0) m.c2187 = Constraint(expr= - m.x61 + m.b2365 <= 0) m.c2188 = Constraint(expr= - m.x62 + m.b2366 <= 0) m.c2189 = Constraint(expr= - m.x63 + m.b2367 <= 0) m.c2190 = Constraint(expr= - m.x64 + m.b2368 <= 0) m.c2191 = Constraint(expr= - m.x65 + m.b2369 <= 0) m.c2192 = Constraint(expr= - m.x66 + m.b2370 <= 0) m.c2193 = Constraint(expr= - m.x67 + m.b2371 <= 0) m.c2194 = Constraint(expr= - m.x68 + m.b2372 <= 0) m.c2195 = Constraint(expr= - m.x69 + m.b2373 <= 0) m.c2196 = Constraint(expr= - m.x70 + m.b2374 <= 0) m.c2197 = Constraint(expr= - m.x71 + m.b2375 <= 0) m.c2198 = Constraint(expr= - m.x72 + m.b2376 <= 0) m.c2199 = Constraint(expr= - m.x73 + m.b2377 <= 0) m.c2200 = Constraint(expr= - m.x74 + m.b2378 <= 0) m.c2201 = Constraint(expr= - m.x75 + m.b2379 <= 0) m.c2202 = Constraint(expr= - m.x76 + m.b2380 <= 0) m.c2203 = Constraint(expr= - m.x77 + m.b2381 <= 0) m.c2204 = Constraint(expr= - m.x78 + m.b2382 <= 0) m.c2205 = Constraint(expr= - m.x79 + m.b2383 <= 0) m.c2206 = Constraint(expr= - m.x80 + m.b2384 <= 0) m.c2207 = Constraint(expr= - m.x81 + m.b2385 <= 0) m.c2208 = Constraint(expr= - m.x82 + m.b2386 <= 0) m.c2209 = Constraint(expr= - m.x83 + m.b2387 <= 0) m.c2210 = Constraint(expr= - m.x84 + m.b2388 <= 0) m.c2211 = Constraint(expr= - m.x85 + m.b2389 <= 0) m.c2212 = Constraint(expr= - m.x86 + m.b2390 <= 0) m.c2213 = Constraint(expr= - m.x87 + m.b2391 <= 0) m.c2214 = Constraint(expr= - m.x88 + m.b2392 <= 0) m.c2215 = Constraint(expr= - m.x89 + m.b2393 <= 0) m.c2216 = Constraint(expr= - m.x90 + m.b2394 <= 0) m.c2217 = Constraint(expr= - m.x91 + m.b2395 <= 0) m.c2218 = Constraint(expr= - m.x92 + m.b2396 <= 0) m.c2219 = Constraint(expr= - m.x93 + m.b2397 <= 0) m.c2220 = Constraint(expr= - m.x94 + m.b2398 <= 0) m.c2221 = Constraint(expr= - m.x95 + m.b2399 <= 0) m.c2222 = Constraint(expr= - m.x96 + m.b2400 <= 0) m.c2223 = Constraint(expr= - m.x97 + m.b2401 <= 0) m.c2224 = Constraint(expr= - m.x98 + 48*m.b2210 <= 0) m.c2225 = Constraint(expr= - m.x99 + 48*m.b2211 <= 0) m.c2226 = Constraint(expr= - m.x100 + 48*m.b2212 <= 0) m.c2227 = Constraint(expr= - m.x101 + 48*m.b2213 <= 0) m.c2228 = Constraint(expr= - m.x102 + 48*m.b2214 <= 0) m.c2229 = Constraint(expr= - m.x103 + 48*m.b2215 <= 0) m.c2230 = Constraint(expr= - m.x104 + 48*m.b2216 <= 0) m.c2231 = Constraint(expr= - m.x105 + 48*m.b2217 <= 0) m.c2232 = Constraint(expr= - m.x106 + 48*m.b2218 <= 0) m.c2233 = Constraint(expr= - m.x107 + 48*m.b2219 <= 0) m.c2234 = Constraint(expr= - m.x108 + 48*m.b2220 <= 0) m.c2235 = Constraint(expr= - m.x109 + 48*m.b2221 <= 0) m.c2236 = Constraint(expr= - m.x110 + 48*m.b2222 <= 0) m.c2237 = Constraint(expr= - m.x111 + 48*m.b2223 <= 0) m.c2238 = Constraint(expr= - m.x112 + 48*m.b2224 <= 0) m.c2239 = Constraint(expr= - m.x113 + 48*m.b2225 <= 0) m.c2240 = Constraint(expr= - m.x114 + 48*m.b2226 <= 0) m.c2241 = Constraint(expr= - m.x115 + 48*m.b2227 <= 0) m.c2242 = Constraint(expr= - m.x116 + 48*m.b2228 <= 0) m.c2243 = Constraint(expr= - m.x117 + 48*m.b2229 <= 0) m.c2244 = Constraint(expr= - m.x118 + 48*m.b2230 <= 0) m.c2245 = Constraint(expr= - m.x119 + 48*m.b2231 <= 0) m.c2246 = Constraint(expr= - m.x120 + 48*m.b2232 <= 0) m.c2247 = Constraint(expr= - m.x121 + 48*m.b2233 <= 0) m.c2248 = Constraint(expr= - m.x122 + 48*m.b2234 <= 0) m.c2249 = Constraint(expr= - m.x123 + 48*m.b2235 <= 0) m.c2250 = Constraint(expr= - m.x124 + 48*m.b2236 <= 0) m.c2251 = Constraint(expr= - m.x125 + 48*m.b2237 <= 0) m.c2252 = Constraint(expr= - m.x126 + 48*m.b2238 <= 0) m.c2253 = Constraint(expr= - m.x127 + 48*m.b2239 <= 0) m.c2254 = Constraint(expr= - m.x128 + 48*m.b2240 <= 0) m.c2255 = Constraint(expr= - m.x129 + 48*m.b2241 <= 0) m.c2256 = Constraint(expr= - m.x130 + 48*m.b2242 <= 0) m.c2257 = Constraint(expr= - m.x131 + 48*m.b2243 <= 0) m.c2258 = Constraint(expr= - m.x132 + 48*m.b2244 <= 0) m.c2259 = Constraint(expr= - m.x133 + 48*m.b2245 <= 0) m.c2260 = Constraint(expr= - m.x134 + 48*m.b2246 <= 0) m.c2261 = Constraint(expr= - m.x135 + 48*m.b2247 <= 0) m.c2262 = Constraint(expr= - m.x136 + 48*m.b2248 <= 0) m.c2263 = Constraint(expr= - m.x137 + 48*m.b2249 <= 0) m.c2264 = Constraint(expr= - m.x138 + 48*m.b2250 <= 0) m.c2265 = Constraint(expr= - m.x139 + 48*m.b2251 <= 0) m.c2266 = Constraint(expr= - m.x140 + 48*m.b2252 <= 0) m.c2267 = Constraint(expr= - m.x141 + 48*m.b2253 <= 0) m.c2268 = Constraint(expr= - m.x142 + 48*m.b2254 <= 0) m.c2269 = Constraint(expr= - m.x143 + 48*m.b2255 <= 0) m.c2270 = Constraint(expr= - m.x144 + 48*m.b2256 <= 0) m.c2271 = Constraint(expr= - m.x145 + 48*m.b2257 <= 0) m.c2272 = Constraint(expr= - m.x146 + 48*m.b2258 <= 0) m.c2273 = Constraint(expr= - m.x147 + 48*m.b2259 <= 0) m.c2274 = Constraint(expr= - m.x148 + 48*m.b2260 <= 0) m.c2275 = Constraint(expr= - m.x149 + 48*m.b2261 <= 0) m.c2276 = Constraint(expr= - m.x150 + 48*m.b2262 <= 0) m.c2277 = Constraint(expr= - m.x151 + 48*m.b2263 <= 0) m.c2278 = Constraint(expr= - m.x152 + 48*m.b2264 <= 0) m.c2279 = Constraint(expr= - m.x153 + 48*m.b2265 <= 0) m.c2280 = Constraint(expr= - m.x154 + 48*m.b2266 <= 0) m.c2281 = Constraint(expr= - m.x155 + 48*m.b2267 <= 0) m.c2282 = Constraint(expr= - m.x156 + 48*m.b2268 <= 0) m.c2283 = Constraint(expr= - m.x157 + 48*m.b2269 <= 0) m.c2284 = Constraint(expr= - m.x158 + 48*m.b2270 <= 0) m.c2285 = Constraint(expr= - m.x159 + 48*m.b2271 <= 0) m.c2286 = Constraint(expr= - m.x160 + 48*m.b2272 <= 0) m.c2287 = Constraint(expr= - m.x161 + 48*m.b2273 <= 0) m.c2288 = Constraint(expr= - m.x162 + 48*m.b2274 <= 0) m.c2289 = Constraint(expr= - m.x163 + 48*m.b2275 <= 0) m.c2290 = Constraint(expr= - m.x164 + 48*m.b2276 <= 0) m.c2291 = Constraint(expr= - m.x165 + 48*m.b2277 <= 0) m.c2292 = Constraint(expr= - m.x166 + 48*m.b2278 <= 0) m.c2293 = Constraint(expr= - m.x167 + 48*m.b2279 <= 0) m.c2294 = Constraint(expr= - m.x168 + 48*m.b2280 <= 0) m.c2295 = Constraint(expr= - m.x169 + 48*m.b2281 <= 0) m.c2296 = Constraint(expr= - m.x170 + 48*m.b2282 <= 0) m.c2297 = Constraint(expr= - m.x171 + 48*m.b2283 <= 0) m.c2298 = Constraint(expr= - m.x172 + 48*m.b2284 <= 0) m.c2299 = Constraint(expr= - m.x173 + 48*m.b2285 <= 0) m.c2300 = Constraint(expr= - m.x174 + 48*m.b2286 <= 0) m.c2301 = Constraint(expr= - m.x175 + 48*m.b2287 <= 0) m.c2302 = Constraint(expr= - m.x176 + 48*m.b2288 <= 0) m.c2303 = Constraint(expr= - m.x177 + 48*m.b2289 <= 0) m.c2304 = Constraint(expr= - m.x178 + 48*m.b2290 <= 0) m.c2305 = Constraint(expr= - m.x179 + 48*m.b2291 <= 0) m.c2306 = Constraint(expr= - m.x180 + 48*m.b2292 <= 0) m.c2307 = Constraint(expr= - m.x181 + 48*m.b2293 <= 0) m.c2308 = Constraint(expr= - m.x182 + 48*m.b2294 <= 0) m.c2309 = Constraint(expr= - m.x183 + 48*m.b2295 <= 0) m.c2310 = Constraint(expr= - m.x184 + 48*m.b2296 <= 0) m.c2311 = Constraint(expr= - m.x185 + 48*m.b2297 <= 0) m.c2312 = Constraint(expr= - m.x186 + 48*m.b2298 <= 0) m.c2313 = Constraint(expr= - m.x187 + 48*m.b2299 <= 0) m.c2314 = Constraint(expr= - m.x188 + 48*m.b2300 <= 0) m.c2315 = Constraint(expr= - m.x189 + 48*m.b2301 <= 0) m.c2316 = Constraint(expr= - m.x190 + 48*m.b2302 <= 0) m.c2317 = Constraint(expr= - m.x191 + 48*m.b2303 <= 0) m.c2318 = Constraint(expr= - m.x192 + 48*m.b2304 <= 0) m.c2319 = Constraint(expr= - m.x193 + 48*m.b2305 <= 0) m.c2320 = Constraint(expr= - m.x194 + 9*m.b2018 <= 0) m.c2321 = Constraint(expr= - m.x195 + 9*m.b2019 <= 0) m.c2322 = Constraint(expr= - m.x196 + 9*m.b2020 <= 0) m.c2323 = Constraint(expr= - m.x197 + 9*m.b2021 <= 0) m.c2324 = Constraint(expr= - m.x198 + 9*m.b2022 <= 0) m.c2325 = Constraint(expr= - m.x199 + 9*m.b2023 <= 0) m.c2326 = Constraint(expr= - m.x200 + 9*m.b2024 <= 0) m.c2327 = Constraint(expr= - m.x201 + 9*m.b2025 <= 0) m.c2328 = Constraint(expr= - m.x202 + 9*m.b2026 <= 0) m.c2329 = Constraint(expr= - m.x203 + 9*m.b2027 <= 0) m.c2330 = Constraint(expr= - m.x204 + 9*m.b2028 <= 0) m.c2331 = Constraint(expr= - m.x205 + 9*m.b2029 <= 0) m.c2332 = Constraint(expr= - m.x206 + 9*m.b2030 <= 0) m.c2333 = Constraint(expr= - m.x207 + 9*m.b2031 <= 0) m.c2334 = Constraint(expr= - m.x208 + 9*m.b2032 <= 0) m.c2335 = Constraint(expr= - m.x209 + 9*m.b2033 <= 0) m.c2336 = Constraint(expr= - m.x210 + 9*m.b2034 <= 0) m.c2337 = Constraint(expr= - m.x211 + 9*m.b2035 <= 0) m.c2338 = Constraint(expr= - m.x212 + 9*m.b2036 <= 0) m.c2339 = Constraint(expr= - m.x213 + 9*m.b2037 <= 0) m.c2340 = Constraint(expr= - m.x214 + 9*m.b2038 <= 0) m.c2341 = Constraint(expr= - m.x215 + 9*m.b2039 <= 0) m.c2342 = Constraint(expr= - m.x216 + 9*m.b2040 <= 0) m.c2343 = Constraint(expr= - m.x217 + 9*m.b2041 <= 0) m.c2344 = Constraint(expr= - m.x218 + 9*m.b2042 <= 0) m.c2345 = Constraint(expr= - m.x219 + 9*m.b2043 <= 0) m.c2346 = Constraint(expr= - m.x220 + 9*m.b2044 <= 0) m.c2347 = Constraint(expr= - m.x221 + 9*m.b2045 <= 0) m.c2348 = Constraint(expr= - m.x222 + 9*m.b2046 <= 0) m.c2349 = Constraint(expr= - m.x223 + 9*m.b2047 <= 0) m.c2350 = Constraint(expr= - m.x224 + 9*m.b2048 <= 0) m.c2351 = Constraint(expr= - m.x225 + 9*m.b2049 <= 0) m.c2352 = Constraint(expr= - m.x226 + 9*m.b2050 <= 0) m.c2353 = Constraint(expr= - m.x227 + 9*m.b2051 <= 0) m.c2354 = Constraint(expr= - m.x228 + 9*m.b2052 <= 0) m.c2355 = Constraint(expr= - m.x229 + 9*m.b2053 <= 0) m.c2356 = Constraint(expr= - m.x230 + 9*m.b2054 <= 0) m.c2357 = Constraint(expr= - m.x231 + 9*m.b2055 <= 0) m.c2358 = Constraint(expr= - m.x232 + 9*m.b2056 <= 0) m.c2359 = Constraint(expr= - m.x233 + 9*m.b2057 <= 0) m.c2360 = Constraint(expr= - m.x234 + 9*m.b2058 <= 0) m.c2361 = Constraint(expr= - m.x235 + 9*m.b2059 <= 0) m.c2362 = Constraint(expr= - m.x236 + 9*m.b2060 <= 0) m.c2363 = Constraint(expr= - m.x237 + 9*m.b2061 <= 0) m.c2364 = Constraint(expr= - m.x238 + 9*m.b2062 <= 0) m.c2365 = Constraint(expr= - m.x239 + 9*m.b2063 <= 0) m.c2366 = Constraint(expr= - m.x240 + 9*m.b2064 <= 0) m.c2367 = Constraint(expr= - m.x241 + 9*m.b2065 <= 0) m.c2368 = Constraint(expr= - m.x242 + 9*m.b2066 <= 0) m.c2369 = Constraint(expr= - m.x243 + 9*m.b2067 <= 0) m.c2370 = Constraint(expr= - m.x244 + 9*m.b2068 <= 0) m.c2371 = Constraint(expr= - m.x245 + 9*m.b2069 <= 0) m.c2372 = Constraint(expr= - m.x246 + 9*m.b2070 <= 0) m.c2373 = Constraint(expr= - m.x247 + 9*m.b2071 <= 0) m.c2374 = Constraint(expr= - m.x248 + 9*m.b2072 <= 0) m.c2375 = Constraint(expr= - m.x249 + 9*m.b2073 <= 0) m.c2376 = Constraint(expr= - m.x250 + 9*m.b2074 <= 0) m.c2377 = Constraint(expr= - m.x251 + 9*m.b2075 <= 0) m.c2378 = Constraint(expr= - m.x252 + 9*m.b2076 <= 0) m.c2379 = Constraint(expr= - m.x253 + 9*m.b2077 <= 0) m.c2380 = Constraint(expr= - m.x254 + 9*m.b2078 <= 0) m.c2381 = Constraint(expr= - m.x255 + 9*m.b2079 <= 0) m.c2382 = Constraint(expr= - m.x256 + 9*m.b2080 <= 0) m.c2383 = Constraint(expr= - m.x257 + 9*m.b2081 <= 0) m.c2384 = Constraint(expr= - m.x258 + 9*m.b2082 <= 0) m.c2385 = Constraint(expr= - m.x259 + 9*m.b2083 <= 0) m.c2386 = Constraint(expr= - m.x260 + 9*m.b2084 <= 0) m.c2387 = Constraint(expr= - m.x261 + 9*m.b2085 <= 0) m.c2388 = Constraint(expr= - m.x262 + 9*m.b2086 <= 0) m.c2389 = Constraint(expr= - m.x263 + 9*m.b2087 <= 0) m.c2390 = Constraint(expr= - m.x264 + 9*m.b2088 <= 0) m.c2391 = Constraint(expr= - m.x265 + 9*m.b2089 <= 0) m.c2392 = Constraint(expr= - m.x266 + 9*m.b2090 <= 0) m.c2393 = Constraint(expr= - m.x267 + 9*m.b2091 <= 0) m.c2394 = Constraint(expr= - m.x268 + 9*m.b2092 <= 0) m.c2395 = Constraint(expr= - m.x269 + 9*m.b2093 <= 0) m.c2396 = Constraint(expr= - m.x270 + 9*m.b2094 <= 0) m.c2397 = Constraint(expr= - m.x271 + 9*m.b2095 <= 0) m.c2398 = Constraint(expr= - m.x272 + 9*m.b2096 <= 0) m.c2399 = Constraint(expr= - m.x273 + 9*m.b2097 <= 0) m.c2400 = Constraint(expr= - m.x274 + 9*m.b2098 <= 0) m.c2401 = Constraint(expr= - m.x275 + 9*m.b2099 <= 0) m.c2402 = Constraint(expr= - m.x276 + 9*m.b2100 <= 0) m.c2403 = Constraint(expr= - m.x277 + 9*m.b2101 <= 0) m.c2404 = Constraint(expr= - m.x278 + 9*m.b2102 <= 0) m.c2405 = Constraint(expr= - m.x279 + 9*m.b2103 <= 0) m.c2406 = Constraint(expr= - m.x280 + 9*m.b2104 <= 0) m.c2407 = Constraint(expr= - m.x281 + 9*m.b2105 <= 0) m.c2408 = Constraint(expr= - m.x282 + 9*m.b2106 <= 0) m.c2409 = Constraint(expr= - m.x283 + 9*m.b2107 <= 0) m.c2410 = Constraint(expr= - m.x284 + 9*m.b2108 <= 0) m.c2411 = Constraint(expr= - m.x285 + 9*m.b2109 <= 0) m.c2412 = Constraint(expr= - m.x286 + 9*m.b2110 <= 0) m.c2413 = Constraint(expr= - m.x287 + 9*m.b2111 <= 0) m.c2414 = Constraint(expr= - m.x288 + 9*m.b2112 <= 0) m.c2415 = Constraint(expr= - m.x289 + 9*m.b2113 <= 0) m.c2416 = Constraint(expr= - m.x290 + 9*m.b2114 <= 0) m.c2417 = Constraint(expr= - m.x291 + 9*m.b2115 <= 0) m.c2418 = Constraint(expr= - m.x292 + 9*m.b2116 <= 0) m.c2419 = Constraint(expr= - m.x293 + 9*m.b2117 <= 0) m.c2420 = Constraint(expr= - m.x294 + 9*m.b2118 <= 0) m.c2421 = Constraint(expr= - m.x295 + 9*m.b2119 <= 0) m.c2422 = Constraint(expr= - m.x296 + 9*m.b2120 <= 0) m.c2423 = Constraint(expr= - m.x297 + 9*m.b2121 <= 0) m.c2424 = Constraint(expr= - m.x298 + 9*m.b2122 <= 0) m.c2425 = Constraint(expr= - m.x299 + 9*m.b2123 <= 0) m.c2426 = Constraint(expr= - m.x300 + 9*m.b2124 <= 0) m.c2427 = Constraint(expr= - m.x301 + 9*m.b2125 <= 0) m.c2428 = Constraint(expr= - m.x302 + 9*m.b2126 <= 0) m.c2429 = Constraint(expr= - m.x303 + 9*m.b2127 <= 0) m.c2430 = Constraint(expr= - m.x304 + 9*m.b2128 <= 0) m.c2431 = Constraint(expr= - m.x305 + 9*m.b2129 <= 0) m.c2432 = Constraint(expr= - m.x306 + 9*m.b2130 <= 0) m.c2433 = Constraint(expr= - m.x307 + 9*m.b2131 <= 0) m.c2434 = Constraint(expr= - m.x308 + 9*m.b2132 <= 0) m.c2435 = Constraint(expr= - m.x309 + 9*m.b2133 <= 0) m.c2436 = Constraint(expr= - m.x310 + 9*m.b2134 <= 0) m.c2437 = Constraint(expr= - m.x311 + 9*m.b2135 <= 0) m.c2438 = Constraint(expr= - m.x312 + 9*m.b2136 <= 0) m.c2439 = Constraint(expr= - m.x313 + 9*m.b2137 <= 0) m.c2440 = Constraint(expr= - m.x314 + 9*m.b2138 <= 0) m.c2441 = Constraint(expr= - m.x315 + 9*m.b2139 <= 0) m.c2442 = Constraint(expr= - m.x316 + 9*m.b2140 <= 0) m.c2443 = Constraint(expr= - m.x317 + 9*m.b2141 <= 0) m.c2444 = Constraint(expr= - m.x318 + 9*m.b2142 <= 0) m.c2445 = Constraint(expr= - m.x319 + 9*m.b2143 <= 0) m.c2446 = Constraint(expr= - m.x320 + 9*m.b2144 <= 0) m.c2447 = Constraint(expr= - m.x321 + 9*m.b2145 <= 0) m.c2448 = Constraint(expr= - m.x322 + 9*m.b2146 <= 0) m.c2449 = Constraint(expr= - m.x323 + 9*m.b2147 <= 0) m.c2450 = Constraint(expr= - m.x324 + 9*m.b2148 <= 0) m.c2451 = Constraint(expr= - m.x325 + 9*m.b2149 <= 0) m.c2452 = Constraint(expr= - m.x326 + 9*m.b2150 <= 0) m.c2453 = Constraint(expr= - m.x327 + 9*m.b2151 <= 0) m.c2454 = Constraint(expr= - m.x328 + 9*m.b2152 <= 0) m.c2455 = Constraint(expr= - m.x329 + 9*m.b2153 <= 0) m.c2456 = Constraint(expr= - m.x330 + 9*m.b2154 <= 0) m.c2457 = Constraint(expr= - m.x331 + 9*m.b2155 <= 0) m.c2458 = Constraint(expr= - m.x332 + 9*m.b2156 <= 0) m.c2459 = Constraint(expr= - m.x333 + 9*m.b2157 <= 0) m.c2460 = Constraint(expr= - m.x334 + 9*m.b2158 <= 0) m.c2461 = Constraint(expr= - m.x335 + 9*m.b2159 <= 0) m.c2462 = Constraint(expr= - m.x336 + 9*m.b2160 <= 0) m.c2463 = Constraint(expr= - m.x337 + 9*m.b2161 <= 0) m.c2464 = Constraint(expr= - m.x338 + 9*m.b2162 <= 0) m.c2465 = Constraint(expr= - m.x339 + 9*m.b2163 <= 0) m.c2466 = Constraint(expr= - m.x340 + 9*m.b2164 <= 0) m.c2467 = Constraint(expr= - m.x341 + 9*m.b2165 <= 0) m.c2468 = Constraint(expr= - m.x342 + 9*m.b2166 <= 0) m.c2469 = Constraint(expr= - m.x343 + 9*m.b2167 <= 0) m.c2470 = Constraint(expr= - m.x344 + 9*m.b2168 <= 0) m.c2471 = Constraint(expr= - m.x345 + 9*m.b2169 <= 0) m.c2472 = Constraint(expr= - m.x346 + 9*m.b2170 <= 0) m.c2473 = Constraint(expr= - m.x347 + 9*m.b2171 <= 0) m.c2474 = Constraint(expr= - m.x348 + 9*m.b2172 <= 0) m.c2475 = Constraint(expr= - m.x349 + 9*m.b2173 <= 0) m.c2476 = Constraint(expr= - m.x350 + 9*m.b2174 <= 0) m.c2477 = Constraint(expr= - m.x351 + 9*m.b2175 <= 0) m.c2478 = Constraint(expr= - m.x352 + 9*m.b2176 <= 0) m.c2479 = Constraint(expr= - m.x353 + 9*m.b2177 <= 0) m.c2480 = Constraint(expr= - m.x354 + 9*m.b2178 <= 0) m.c2481 = Constraint(expr= - m.x355 + 9*m.b2179 <= 0) m.c2482 = Constraint(expr= - m.x356 + 9*m.b2180 <= 0) m.c2483 = Constraint(expr= - m.x357 + 9*m.b2181 <= 0) m.c2484 = Constraint(expr= - m.x358 + 9*m.b2182 <= 0) m.c2485 = Constraint(expr= - m.x359 + 9*m.b2183 <= 0) m.c2486 = Constraint(expr= - m.x360 + 9*m.b2184 <= 0) m.c2487 = Constraint(expr= - m.x361 + 9*m.b2185 <= 0) m.c2488 = Constraint(expr= - m.x362 + 9*m.b2186 <= 0) m.c2489 = Constraint(expr= - m.x363 + 9*m.b2187 <= 0) m.c2490 = Constraint(expr= - m.x364 + 9*m.b2188 <= 0) m.c2491 = Constraint(expr= - m.x365 + 9*m.b2189 <= 0) m.c2492 = Constraint(expr= - m.x366 + 9*m.b2190 <= 0) m.c2493 = Constraint(expr= - m.x367 + 9*m.b2191 <= 0) m.c2494 = Constraint(expr= - m.x368 + 9*m.b2192 <= 0) m.c2495 = Constraint(expr= - m.x369 + 9*m.b2193 <= 0) m.c2496 = Constraint(expr= - m.x370 + 9*m.b2194 <= 0) m.c2497 = Constraint(expr= - m.x371 + 9*m.b2195 <= 0) m.c2498 = Constraint(expr= - m.x372 + 9*m.b2196 <= 0) m.c2499 = Constraint(expr= - m.x373 + 9*m.b2197 <= 0) m.c2500 = Constraint(expr= - m.x374 + 9*m.b2198 <= 0) m.c2501 = Constraint(expr= - m.x375 + 9*m.b2199 <= 0) m.c2502 = Constraint(expr= - m.x376 + 9*m.b2200 <= 0) m.c2503 = Constraint(expr= - m.x377 + 9*m.b2201 <= 0) m.c2504 = Constraint(expr= - m.x378 + 9*m.b2202 <= 0) m.c2505 = Constraint(expr= - m.x379 + 9*m.b2203 <= 0) m.c2506 = Constraint(expr= - m.x380 + 9*m.b2204 <= 0) m.c2507 = Constraint(expr= - m.x381 + 9*m.b2205 <= 0) m.c2508 = Constraint(expr= - m.x382 + 9*m.b2206 <= 0) m.c2509 = Constraint(expr= - m.x383 + 9*m.b2207 <= 0) m.c2510 = Constraint(expr= - m.x384 + 9*m.b2208 <= 0) m.c2511 = Constraint(expr= - m.x385 + 9*m.b2209 <= 0) m.c2512 = Constraint(expr= m.x2 - 45*m.b2306 <= 0) m.c2513 = Constraint(expr= m.x3 - 45*m.b2307 <= 0) m.c2514 = Constraint(expr= m.x4 - 45*m.b2308 <= 0) m.c2515 = Constraint(expr= m.x5 - 45*m.b2309 <= 0) m.c2516 = Constraint(expr= m.x6 - 45*m.b2310 <= 0) m.c2517 = Constraint(expr= m.x7 - 45*m.b2311 <= 0) m.c2518 = Constraint(expr= m.x8 - 45*m.b2312 <= 0) m.c2519 = Constraint(expr= m.x9 - 45*m.b2313 <= 0) m.c2520 = Constraint(expr= m.x10 - 45*m.b2314 <= 0) m.c2521 = Constraint(expr= m.x11 - 45*m.b2315 <= 0) m.c2522 = Constraint(expr= m.x12 - 45*m.b2316 <= 0) m.c2523 = Constraint(expr= m.x13 - 45*m.b2317 <= 0) m.c2524 = Constraint(expr= m.x14 - 45*m.b2318 <= 0) m.c2525 = Constraint(expr= m.x15 - 45*m.b2319 <= 0) m.c2526 = Constraint(expr= m.x16 - 45*m.b2320 <= 0) m.c2527 = Constraint(expr= m.x17 - 45*m.b2321 <= 0) m.c2528 = Constraint(expr= m.x18 - 45*m.b2322 <= 0) m.c2529 = Constraint(expr= m.x19 - 45*m.b2323 <= 0) m.c2530 = Constraint(expr= m.x20 - 45*m.b2324 <= 0) m.c2531 = Constraint(expr= m.x21 - 45*m.b2325 <= 0) m.c2532 = Constraint(expr= m.x22 - 45*m.b2326 <= 0) m.c2533 = Constraint(expr= m.x23 - 45*m.b2327 <= 0) m.c2534 = Constraint(expr= m.x24 - 45*m.b2328 <= 0) m.c2535 = Constraint(expr= m.x25 - 45*m.b2329 <= 0) m.c2536 = Constraint(expr= m.x26 - 45*m.b2330 <= 0) m.c2537 = Constraint(expr= m.x27 - 45*m.b2331 <= 0) m.c2538 = Constraint(expr= m.x28 - 45*m.b2332 <= 0) m.c2539 = Constraint(expr= m.x29 - 45*m.b2333 <= 0) m.c2540 = Constraint(expr= m.x30 - 45*m.b2334 <= 0) m.c2541 = Constraint(expr= m.x31 - 45*m.b2335 <= 0) m.c2542 = Constraint(expr= m.x32 - 45*m.b2336 <= 0) m.c2543 = Constraint(expr= m.x33 - 45*m.b2337 <= 0) m.c2544 = Constraint(expr= m.x34 - 45*m.b2338 <= 0) m.c2545 = Constraint(expr= m.x35 - 45*m.b2339 <= 0) m.c2546 = Constraint(expr= m.x36 - 45*m.b2340 <= 0) m.c2547 = Constraint(expr= m.x37 - 45*m.b2341 <= 0) m.c2548 = Constraint(expr= m.x38 - 45*m.b2342 <= 0) m.c2549 = Constraint(expr= m.x39 - 45*m.b2343 <= 0) m.c2550 = Constraint(expr= m.x40 - 45*m.b2344 <= 0) m.c2551 = Constraint(expr= m.x41 - 45*m.b2345 <= 0) m.c2552 = Constraint(expr= m.x42 - 45*m.b2346 <= 0) m.c2553 = Constraint(expr= m.x43 - 45*m.b2347 <= 0) m.c2554 = Constraint(expr= m.x44 - 45*m.b2348 <= 0) m.c2555 = Constraint(expr= m.x45 - 45*m.b2349 <= 0) m.c2556 = Constraint(expr= m.x46 - 45*m.b2350 <= 0) m.c2557 = Constraint(expr= m.x47 - 45*m.b2351 <= 0) m.c2558 = Constraint(expr= m.x48 - 45*m.b2352 <= 0) m.c2559 = Constraint(expr= m.x49 - 45*m.b2353 <= 0) m.c2560 = Constraint(expr= m.x50 - 45*m.b2354 <= 0) m.c2561 = Constraint(expr= m.x51 - 45*m.b2355 <= 0) m.c2562 = Constraint(expr= m.x52 - 45*m.b2356 <= 0) m.c2563 = Constraint(expr= m.x53 - 45*m.b2357 <= 0) m.c2564 = Constraint(expr= m.x54 - 45*m.b2358 <= 0) m.c2565 = Constraint(expr= m.x55 - 45*m.b2359 <= 0) m.c2566 = Constraint(expr= m.x56 - 45*m.b2360 <= 0) m.c2567 = Constraint(expr= m.x57 - 45*m.b2361 <= 0) m.c2568 = Constraint(expr= m.x58 - 45*m.b2362 <= 0) m.c2569 = Constraint(expr= m.x59 - 45*m.b2363 <= 0) m.c2570 = Constraint(expr= m.x60 - 45*m.b2364 <= 0) m.c2571 = Constraint(expr= m.x61 - 45*m.b2365 <= 0) m.c2572 = Constraint(expr= m.x62 - 45*m.b2366 <= 0) m.c2573 = Constraint(expr= m.x63 - 45*m.b2367 <= 0) m.c2574 = Constraint(expr= m.x64 - 45*m.b2368 <= 0) m.c2575 = Constraint(expr= m.x65 - 45*m.b2369 <= 0) m.c2576 = Constraint(expr= m.x66 - 45*m.b2370 <= 0) m.c2577 = Constraint(expr= m.x67 - 45*m.b2371 <= 0) m.c2578 = Constraint(expr= m.x68 - 45*m.b2372 <= 0) m.c2579 = Constraint(expr= m.x69 - 45*m.b2373 <= 0) m.c2580 = Constraint(expr= m.x70 - 45*m.b2374 <= 0) m.c2581 = Constraint(expr= m.x71 - 45*m.b2375 <= 0) m.c2582 = Constraint(expr= m.x72 - 45*m.b2376 <= 0) m.c2583 = Constraint(expr= m.x73 - 45*m.b2377 <= 0) m.c2584 = Constraint(expr= m.x74 - 45*m.b2378 <= 0) m.c2585 = Constraint(expr= m.x75 - 45*m.b2379 <= 0) m.c2586 = Constraint(expr= m.x76 - 45*m.b2380 <= 0) m.c2587 = Constraint(expr= m.x77 - 45*m.b2381 <= 0) m.c2588 = Constraint(expr= m.x78 - 45*m.b2382 <= 0) m.c2589 = Constraint(expr= m.x79 - 45*m.b2383 <= 0) m.c2590 = Constraint(expr= m.x80 - 45*m.b2384 <= 0) m.c2591 = Constraint(expr= m.x81 - 45*m.b2385 <= 0) m.c2592 = Constraint(expr= m.x82 - 45*m.b2386 <= 0) m.c2593 = Constraint(expr= m.x83 - 45*m.b2387 <= 0) m.c2594 = Constraint(expr= m.x84 - 45*m.b2388 <= 0) m.c2595 = Constraint(expr= m.x85 - 45*m.b2389 <= 0) m.c2596 = Constraint(expr= m.x86 - 45*m.b2390 <= 0) m.c2597 = Constraint(expr= m.x87 - 45*m.b2391 <= 0) m.c2598 = Constraint(expr= m.x88 - 45*m.b2392 <= 0) m.c2599 = Constraint(expr= m.x89 - 45*m.b2393 <= 0) m.c2600 = Constraint(expr= m.x90 - 45*m.b2394 <= 0) m.c2601 = Constraint(expr= m.x91 - 45*m.b2395 <= 0) m.c2602 = Constraint(expr= m.x92 - 45*m.b2396 <= 0) m.c2603 = Constraint(expr= m.x93 - 45*m.b2397 <= 0) m.c2604 = Constraint(expr= m.x94 - 45*m.b2398 <= 0) m.c2605 = Constraint(expr= m.x95 - 45*m.b2399 <= 0) m.c2606 = Constraint(expr= m.x96 - 45*m.b2400 <= 0) m.c2607 = Constraint(expr= m.x97 - 45*m.b2401 <= 0) m.c2608 = Constraint(expr= m.x98 - 97*m.b2210 <= 0) m.c2609 = Constraint(expr= m.x99 - 97*m.b2211 <= 0) m.c2610 = Constraint(expr= m.x100 - 97*m.b2212 <= 0) m.c2611 = Constraint(expr= m.x101 - 97*m.b2213 <= 0) m.c2612 = Constraint(expr= m.x102 - 97*m.b2214 <= 0) m.c2613 = Constraint(expr= m.x103 - 97*m.b2215 <= 0) m.c2614 = Constraint(expr= m.x104 - 97*m.b2216 <= 0) m.c2615 = Constraint(expr= m.x105 - 97*m.b2217 <= 0) m.c2616 = Constraint(expr= m.x106 - 97*m.b2218 <= 0) m.c2617 = Constraint(expr= m.x107 - 97*m.b2219 <= 0) m.c2618 = Constraint(expr= m.x108 - 97*m.b2220 <= 0) m.c2619 = Constraint(expr= m.x109 - 97*m.b2221 <= 0) m.c2620 = Constraint(expr= m.x110 - 97*m.b2222 <= 0) m.c2621 = Constraint(expr= m.x111 - 97*m.b2223 <= 0) m.c2622 = Constraint(expr= m.x112 - 97*m.b2224 <= 0) m.c2623 = Constraint(expr= m.x113 - 97*m.b2225 <= 0) m.c2624 = Constraint(expr= m.x114 - 97*m.b2226 <= 0) m.c2625 = Constraint(expr= m.x115 - 97*m.b2227 <= 0) m.c2626 = Constraint(expr= m.x116 - 97*m.b2228 <= 0) m.c2627 = Constraint(expr= m.x117 - 97*m.b2229 <= 0) m.c2628 = Constraint(expr= m.x118 - 97*m.b2230 <= 0) m.c2629 = Constraint(expr= m.x119 - 97*m.b2231 <= 0) m.c2630 = Constraint(expr= m.x120 - 97*m.b2232 <= 0) m.c2631 = Constraint(expr= m.x121 - 97*m.b2233 <= 0) m.c2632 = Constraint(expr= m.x122 - 97*m.b2234 <= 0) m.c2633 = Constraint(expr= m.x123 - 97*m.b2235 <= 0) m.c2634 = Constraint(expr= m.x124 - 97*m.b2236 <= 0) m.c2635 = Constraint(expr= m.x125 - 97*m.b2237 <= 0) m.c2636 = Constraint(expr= m.x126 - 97*m.b2238 <= 0) m.c2637 = Constraint(expr= m.x127 - 97*m.b2239 <= 0) m.c2638 = Constraint(expr= m.x128 - 97*m.b2240 <= 0) m.c2639 = Constraint(expr= m.x129 - 97*m.b2241 <= 0) m.c2640 = Constraint(expr= m.x130 - 97*m.b2242 <= 0) m.c2641 = Constraint(expr= m.x131 - 97*m.b2243 <= 0) m.c2642 = Constraint(expr= m.x132 - 97*m.b2244 <= 0) m.c2643 = Constraint(expr= m.x133 - 97*m.b2245 <= 0) m.c2644 = Constraint(expr= m.x134 - 97*m.b2246 <= 0) m.c2645 = Constraint(expr= m.x135 - 97*m.b2247 <= 0) m.c2646 = Constraint(expr= m.x136 - 97*m.b2248 <= 0) m.c2647 = Constraint(expr= m.x137 - 97*m.b2249 <= 0) m.c2648 = Constraint(expr= m.x138 - 97*m.b2250 <= 0) m.c2649 = Constraint(expr= m.x139 - 97*m.b2251 <= 0) m.c2650 = Constraint(expr= m.x140 - 97*m.b2252 <= 0) m.c2651 = Constraint(expr= m.x141 - 97*m.b2253 <= 0) m.c2652 = Constraint(expr= m.x142 - 97*m.b2254 <= 0) m.c2653 = Constraint(expr= m.x143 - 97*m.b2255 <= 0) m.c2654 = Constraint(expr= m.x144 - 97*m.b2256 <= 0) m.c2655 = Constraint(expr= m.x145 - 97*m.b2257 <= 0) m.c2656 = Constraint(expr= m.x146 - 97*m.b2258 <= 0) m.c2657 = Constraint(expr= m.x147 - 97*m.b2259 <= 0) m.c2658 = Constraint(expr= m.x148 - 97*m.b2260 <= 0) m.c2659 = Constraint(expr= m.x149 - 97*m.b2261 <= 0) m.c2660 = Constraint(expr= m.x150 - 97*m.b2262 <= 0) m.c2661 = Constraint(expr= m.x151 - 97*m.b2263 <= 0) m.c2662 = Constraint(expr= m.x152 - 97*m.b2264 <= 0) m.c2663 = Constraint(expr= m.x153 - 97*m.b2265 <= 0) m.c2664 = Constraint(expr= m.x154 - 97*m.b2266 <= 0) m.c2665 = Constraint(expr= m.x155 - 97*m.b2267 <= 0) m.c2666 = Constraint(expr= m.x156 - 97*m.b2268 <= 0) m.c2667 = Constraint(expr= m.x157 - 97*m.b2269 <= 0) m.c2668 = Constraint(expr= m.x158 - 97*m.b2270 <= 0) m.c2669 = Constraint(expr= m.x159 - 97*m.b2271 <= 0) m.c2670 = Constraint(expr= m.x160 - 97*m.b2272 <= 0) m.c2671 = Constraint(expr= m.x161 - 97*m.b2273 <= 0) m.c2672 = Constraint(expr= m.x162 - 97*m.b2274 <= 0) m.c2673 = Constraint(expr= m.x163 - 97*m.b2275 <= 0) m.c2674 = Constraint(expr= m.x164 - 97*m.b2276 <= 0) m.c2675 = Constraint(expr= m.x165 - 97*m.b2277 <= 0) m.c2676 = Constraint(expr= m.x166 - 97*m.b2278 <= 0) m.c2677 = Constraint(expr= m.x167 - 97*m.b2279 <= 0) m.c2678 = Constraint(expr= m.x168 - 97*m.b2280 <= 0) m.c2679 = Constraint(expr= m.x169 - 97*m.b2281 <= 0) m.c2680 = Constraint(expr= m.x170 - 97*m.b2282 <= 0) m.c2681 = Constraint(expr= m.x171 - 97*m.b2283 <= 0) m.c2682 = Constraint(expr= m.x172 - 97*m.b2284 <= 0) m.c2683 = Constraint(expr= m.x173 - 97*m.b2285 <= 0) m.c2684 = Constraint(expr= m.x174 - 97*m.b2286 <= 0) m.c2685 = Constraint(expr= m.x175 - 97*m.b2287 <= 0) m.c2686 = Constraint(expr= m.x176 - 97*m.b2288 <= 0) m.c2687 = Constraint(expr= m.x177 - 97*m.b2289 <= 0) m.c2688 = Constraint(expr= m.x178 - 97*m.b2290 <= 0) m.c2689 = Constraint(expr= m.x179 - 97*m.b2291 <= 0) m.c2690 = Constraint(expr= m.x180 - 97*m.b2292 <= 0) m.c2691 = Constraint(expr= m.x181 - 97*m.b2293 <= 0) m.c2692 = Constraint(expr= m.x182 - 97*m.b2294 <= 0) m.c2693 = Constraint(expr= m.x183 - 97*m.b2295 <= 0) m.c2694 = Constraint(expr= m.x184 - 97*m.b2296 <= 0) m.c2695 = Constraint(expr= m.x185 - 97*m.b2297 <= 0) m.c2696 = Constraint(expr= m.x186 - 97*m.b2298 <= 0) m.c2697 = Constraint(expr= m.x187 - 97*m.b2299 <= 0) m.c2698 = Constraint(expr= m.x188 - 97*m.b2300 <= 0) m.c2699 = Constraint(expr= m.x189 - 97*m.b2301 <= 0) m.c2700 = Constraint(expr= m.x190 - 97*m.b2302 <= 0) m.c2701 = Constraint(expr= m.x191 - 97*m.b2303 <= 0) m.c2702 = Constraint(expr= m.x192 - 97*m.b2304 <= 0) m.c2703 = Constraint(expr= m.x193 - 97*m.b2305 <= 0) m.c2704 = Constraint(expr= m.x194 - 19*m.b2018 <= 0) m.c2705 = Constraint(expr= m.x195 - 19*m.b2019 <= 0) m.c2706 = Constraint(expr= m.x196 - 19*m.b2020 <= 0) m.c2707 = Constraint(expr= m.x197 - 19*m.b2021 <= 0) m.c2708 = Constraint(expr= m.x198 - 19*m.b2022 <= 0) m.c2709 = Constraint(expr= m.x199 - 19*m.b2023 <= 0) m.c2710 = Constraint(expr= m.x200 - 19*m.b2024 <= 0) m.c2711 = Constraint(expr= m.x201 - 19*m.b2025 <= 0) m.c2712 = Constraint(expr= m.x202 - 19*m.b2026 <= 0) m.c2713 = Constraint(expr= m.x203 - 19*m.b2027 <= 0) m.c2714 = Constraint(expr= m.x204 - 19*m.b2028 <= 0) m.c2715 = Constraint(expr= m.x205 - 19*m.b2029 <= 0) m.c2716 = Constraint(expr= m.x206 - 19*m.b2030 <= 0) m.c2717 = Constraint(expr= m.x207 - 19*m.b2031 <= 0) m.c2718 = Constraint(expr= m.x208 - 19*m.b2032 <= 0) m.c2719 = Constraint(expr= m.x209 - 19*m.b2033 <= 0) m.c2720 = Constraint(expr= m.x210 - 19*m.b2034 <= 0) m.c2721 = Constraint(expr= m.x211 - 19*m.b2035 <= 0) m.c2722 = Constraint(expr= m.x212 - 19*m.b2036 <= 0) m.c2723 = Constraint(expr= m.x213 - 19*m.b2037 <= 0) m.c2724 = Constraint(expr= m.x214 - 19*m.b2038 <= 0) m.c2725 = Constraint(expr= m.x215 - 19*m.b2039 <= 0) m.c2726 = Constraint(expr= m.x216 - 19*m.b2040 <= 0) m.c2727 = Constraint(expr= m.x217 - 19*m.b2041 <= 0) m.c2728 = Constraint(expr= m.x218 - 19*m.b2042 <= 0) m.c2729 = Constraint(expr= m.x219 - 19*m.b2043 <= 0) m.c2730 = Constraint(expr= m.x220 - 19*m.b2044 <= 0) m.c2731 = Constraint(expr= m.x221 - 19*m.b2045 <= 0) m.c2732 = Constraint(expr= m.x222 - 19*m.b2046 <= 0) m.c2733 = Constraint(expr= m.x223 - 19*m.b2047 <= 0) m.c2734 = Constraint(expr= m.x224 - 19*m.b2048 <= 0) m.c2735 = Constraint(expr= m.x225 - 19*m.b2049 <= 0) m.c2736 = Constraint(expr= m.x226 - 19*m.b2050 <= 0) m.c2737 = Constraint(expr= m.x227 - 19*m.b2051 <= 0) m.c2738 = Constraint(expr= m.x228 - 19*m.b2052 <= 0) m.c2739 = Constraint(expr= m.x229 - 19*m.b2053 <= 0) m.c2740 = Constraint(expr= m.x230 - 19*m.b2054 <= 0) m.c2741 = Constraint(expr= m.x231 - 19*m.b2055 <= 0) m.c2742 = Constraint(expr= m.x232 - 19*m.b2056 <= 0) m.c2743 = Constraint(expr= m.x233 - 19*m.b2057 <= 0) m.c2744 = Constraint(expr= m.x234 - 19*m.b2058 <= 0) m.c2745 = Constraint(expr= m.x235 - 19*m.b2059 <= 0) m.c2746 = Constraint(expr= m.x236 - 19*m.b2060 <= 0) m.c2747 = Constraint(expr= m.x237 - 19*m.b2061 <= 0) m.c2748 = Constraint(expr= m.x238 - 19*m.b2062 <= 0) m.c2749 = Constraint(expr= m.x239 - 19*m.b2063 <= 0) m.c2750 = Constraint(expr= m.x240 - 19*m.b2064 <= 0) m.c2751 = Constraint(expr= m.x241 - 19*m.b2065 <= 0) m.c2752 = Constraint(expr= m.x242 - 19*m.b2066 <= 0) m.c2753 = Constraint(expr= m.x243 - 19*m.b2067 <= 0) m.c2754 = Constraint(expr= m.x244 - 19*m.b2068 <= 0) m.c2755 = Constraint(expr= m.x245 - 19*m.b2069 <= 0) m.c2756 = Constraint(expr= m.x246 - 19*m.b2070 <= 0) m.c2757 = Constraint(expr= m.x247 - 19*m.b2071 <= 0) m.c2758 = Constraint(expr= m.x248 - 19*m.b2072 <= 0) m.c2759 = Constraint(expr= m.x249 - 19*m.b2073 <= 0) m.c2760 = Constraint(expr= m.x250 - 19*m.b2074 <= 0) m.c2761 = Constraint(expr= m.x251 - 19*m.b2075 <= 0) m.c2762 = Constraint(expr= m.x252 - 19*m.b2076 <= 0) m.c2763 = Constraint(expr= m.x253 - 19*m.b2077 <= 0) m.c2764 = Constraint(expr= m.x254 - 19*m.b2078 <= 0) m.c2765 = Constraint(expr= m.x255 - 19*m.b2079 <= 0) m.c2766 = Constraint(expr= m.x256 - 19*m.b2080 <= 0) m.c2767 = Constraint(expr= m.x257 - 19*m.b2081 <= 0) m.c2768 = Constraint(expr= m.x258 - 19*m.b2082 <= 0) m.c2769 = Constraint(expr= m.x259 - 19*m.b2083 <= 0) m.c2770 = Constraint(expr= m.x260 - 19*m.b2084 <= 0) m.c2771 = Constraint(expr= m.x261 - 19*m.b2085 <= 0) m.c2772 = Constraint(expr= m.x262 - 19*m.b2086 <= 0) m.c2773 = Constraint(expr= m.x263 - 19*m.b2087 <= 0) m.c2774 = Constraint(expr= m.x264 - 19*m.b2088 <= 0) m.c2775 = Constraint(expr= m.x265 - 19*m.b2089 <= 0) m.c2776 = Constraint(expr= m.x266 - 19*m.b2090 <= 0) m.c2777 = Constraint(expr= m.x267 - 19*m.b2091 <= 0) m.c2778 = Constraint(expr= m.x268 - 19*m.b2092 <= 0) m.c2779 = Constraint(expr= m.x269 - 19*m.b2093 <= 0) m.c2780 = Constraint(expr= m.x270 - 19*m.b2094 <= 0) m.c2781 = Constraint(expr= m.x271 - 19*m.b2095 <= 0) m.c2782 = Constraint(expr= m.x272 - 19*m.b2096 <= 0) m.c2783 = Constraint(expr= m.x273 - 19*m.b2097 <= 0) m.c2784 = Constraint(expr= m.x274 - 19*m.b2098 <= 0) m.c2785 = Constraint(expr= m.x275 - 19*m.b2099 <= 0) m.c2786 = Constraint(expr= m.x276 - 19*m.b2100 <= 0) m.c2787 = Constraint(expr= m.x277 - 19*m.b2101 <= 0) m.c2788 = Constraint(expr= m.x278 - 19*m.b2102 <= 0) m.c2789 = Constraint(expr= m.x279 - 19*m.b2103 <= 0) m.c2790 = Constraint(expr= m.x280 - 19*m.b2104 <= 0) m.c2791 = Constraint(expr= m.x281 - 19*m.b2105 <= 0) m.c2792 = Constraint(expr= m.x282 - 19*m.b2106 <= 0) m.c2793 = Constraint(expr= m.x283 - 19*m.b2107 <= 0) m.c2794 = Constraint(expr= m.x284 - 19*m.b2108 <= 0) m.c2795 = Constraint(expr= m.x285 - 19*m.b2109 <= 0) m.c2796 = Constraint(expr= m.x286 - 19*m.b2110 <= 0) m.c2797 = Constraint(expr= m.x287 - 19*m.b2111 <= 0) m.c2798 = Constraint(expr= m.x288 - 19*m.b2112 <= 0) m.c2799 = Constraint(expr= m.x289 - 19*m.b2113 <= 0) m.c2800 = Constraint(expr= m.x290 - 19*m.b2114 <= 0) m.c2801 = Constraint(expr= m.x291 - 19*m.b2115 <= 0) m.c2802 = Constraint(expr= m.x292 - 19*m.b2116 <= 0) m.c2803 = Constraint(expr= m.x293 - 19*m.b2117 <= 0) m.c2804 = Constraint(expr= m.x294 - 19*m.b2118 <= 0) m.c2805 = Constraint(expr= m.x295 - 19*m.b2119 <= 0) m.c2806 = Constraint(expr= m.x296 - 19*m.b2120 <= 0) m.c2807 = Constraint(expr= m.x297 - 19*m.b2121 <= 0) m.c2808 = Constraint(expr= m.x298 - 19*m.b2122 <= 0) m.c2809 = Constraint(expr= m.x299 - 19*m.b2123 <= 0) m.c2810 = Constraint(expr= m.x300 - 19*m.b2124 <= 0) m.c2811 = Constraint(expr= m.x301 - 19*m.b2125 <= 0) m.c2812 = Constraint(expr= m.x302 - 19*m.b2126 <= 0) m.c2813 = Constraint(expr= m.x303 - 19*m.b2127 <= 0) m.c2814 = Constraint(expr= m.x304 - 19*m.b2128 <= 0) m.c2815 = Constraint(expr= m.x305 - 19*m.b2129 <= 0) m.c2816 = Constraint(expr= m.x306 - 19*m.b2130 <= 0) m.c2817 = Constraint(expr= m.x307 - 19*m.b2131 <= 0) m.c2818 = Constraint(expr= m.x308 - 19*m.b2132 <= 0) m.c2819 = Constraint(expr= m.x309 - 19*m.b2133 <= 0) m.c2820 = Constraint(expr= m.x310 - 19*m.b2134 <= 0) m.c2821 = Constraint(expr= m.x311 - 19*m.b2135 <= 0) m.c2822 = Constraint(expr= m.x312 - 19*m.b2136 <= 0) m.c2823 = Constraint(expr= m.x313 - 19*m.b2137 <= 0) m.c2824 = Constraint(expr= m.x314 - 19*m.b2138 <= 0) m.c2825 = Constraint(expr= m.x315 - 19*m.b2139 <= 0) m.c2826 = Constraint(expr= m.x316 - 19*m.b2140 <= 0) m.c2827 = Constraint(expr= m.x317 - 19*m.b2141 <= 0) m.c2828 = Constraint(expr= m.x318 - 19*m.b2142 <= 0) m.c2829 = Constraint(expr= m.x319 - 19*m.b2143 <= 0) m.c2830 = Constraint(expr= m.x320 - 19*m.b2144 <= 0) m.c2831 = Constraint(expr= m.x321 - 19*m.b2145 <= 0) m.c2832 = Constraint(expr= m.x322 - 19*m.b2146 <= 0) m.c2833 = Constraint(expr= m.x323 - 19*m.b2147 <= 0) m.c2834 = Constraint(expr= m.x324 - 19*m.b2148 <= 0) m.c2835 = Constraint(expr= m.x325 - 19*m.b2149 <= 0) m.c2836 = Constraint(expr= m.x326 - 19*m.b2150 <= 0) m.c2837 = Constraint(expr= m.x327 - 19*m.b2151 <= 0) m.c2838 = Constraint(expr= m.x328 - 19*m.b2152 <= 0) m.c2839 = Constraint(expr= m.x329 - 19*m.b2153 <= 0) m.c2840 = Constraint(expr= m.x330 - 19*m.b2154 <= 0) m.c2841 = Constraint(expr= m.x331 - 19*m.b2155 <= 0) m.c2842 = Constraint(expr= m.x332 - 19*m.b2156 <= 0) m.c2843 = Constraint(expr= m.x333 - 19*m.b2157 <= 0) m.c2844 = Constraint(expr= m.x334 - 19*m.b2158 <= 0) m.c2845 = Constraint(expr= m.x335 - 19*m.b2159 <= 0) m.c2846 = Constraint(expr= m.x336 - 19*m.b2160 <= 0) m.c2847 = Constraint(expr= m.x337 - 19*m.b2161 <= 0) m.c2848 = Constraint(expr= m.x338 - 19*m.b2162 <= 0) m.c2849 = Constraint(expr= m.x339 - 19*m.b2163 <= 0) m.c2850 = Constraint(expr= m.x340 - 19*m.b2164 <= 0) m.c2851 = Constraint(expr= m.x341 - 19*m.b2165 <= 0) m.c2852 = Constraint(expr= m.x342 - 19*m.b2166 <= 0) m.c2853 = Constraint(expr= m.x343 - 19*m.b2167 <= 0) m.c2854 = Constraint(expr= m.x344 - 19*m.b2168 <= 0) m.c2855 = Constraint(expr= m.x345 - 19*m.b2169 <= 0) m.c2856 = Constraint(expr= m.x346 - 19*m.b2170 <= 0) m.c2857 = Constraint(expr= m.x347 - 19*m.b2171 <= 0) m.c2858 = Constraint(expr= m.x348 - 19*m.b2172 <= 0) m.c2859 = Constraint(expr= m.x349 - 19*m.b2173 <= 0) m.c2860 = Constraint(expr= m.x350 - 19*m.b2174 <= 0) m.c2861 = Constraint(expr= m.x351 - 19*m.b2175 <= 0) m.c2862 = Constraint(expr= m.x352 - 19*m.b2176 <= 0) m.c2863 = Constraint(expr= m.x353 - 19*m.b2177 <= 0) m.c2864 = Constraint(expr= m.x354 - 19*m.b2178 <= 0) m.c2865 = Constraint(expr= m.x355 - 19*m.b2179 <= 0) m.c2866 = Constraint(expr= m.x356 - 19*m.b2180 <= 0) m.c2867 = Constraint(expr= m.x357 - 19*m.b2181 <= 0) m.c2868 = Constraint(expr= m.x358 - 19*m.b2182 <= 0) m.c2869 = Constraint(expr= m.x359 - 19*m.b2183 <= 0) m.c2870 = Constraint(expr= m.x360 - 19*m.b2184 <= 0) m.c2871 = Constraint(expr= m.x361 - 19*m.b2185 <= 0) m.c2872 = Constraint(expr= m.x362 - 19*m.b2186 <= 0) m.c2873 = Constraint(expr= m.x363 - 19*m.b2187 <= 0) m.c2874 = Constraint(expr= m.x364 - 19*m.b2188 <= 0) m.c2875 = Constraint(expr= m.x365 - 19*m.b2189 <= 0) m.c2876 = Constraint(expr= m.x366 - 19*m.b2190 <= 0) m.c2877 = Constraint(expr= m.x367 - 19*m.b2191 <= 0) m.c2878 = Constraint(expr= m.x368 - 19*m.b2192 <= 0) m.c2879 = Constraint(expr= m.x369 - 19*m.b2193 <= 0) m.c2880 = Constraint(expr= m.x370 - 19*m.b2194 <= 0) m.c2881 = Constraint(expr= m.x371 - 19*m.b2195 <= 0) m.c2882 = Constraint(expr= m.x372 - 19*m.b2196 <= 0) m.c2883 = Constraint(expr= m.x373 - 19*m.b2197 <= 0) m.c2884 = Constraint(expr= m.x374 - 19*m.b2198 <= 0) m.c2885 = Constraint(expr= m.x375 - 19*m.b2199 <= 0) m.c2886 = Constraint(expr= m.x376 - 19*m.b2200 <= 0) m.c2887 = Constraint(expr= m.x377 - 19*m.b2201 <= 0) m.c2888 = Constraint(expr= m.x378 - 19*m.b2202 <= 0) m.c2889 = Constraint(expr= m.x379 - 19*m.b2203 <= 0) m.c2890 = Constraint(expr= m.x380 - 19*m.b2204 <= 0) m.c2891 = Constraint(expr= m.x381 - 19*m.b2205 <= 0) m.c2892 = Constraint(expr= m.x382 - 19*m.b2206 <= 0) m.c2893 = Constraint(expr= m.x383 - 19*m.b2207 <= 0) m.c2894 = Constraint(expr= m.x384 - 19*m.b2208 <= 0) m.c2895 = Constraint(expr= m.x385 - 19*m.b2209 <= 0) m.c2896 = Constraint(expr= - m.x482 + 7.23816*m.b2210 <= 0) m.c2897 = Constraint(expr= - m.x483 + 7.22483*m.b2211 <= 0) m.c2898 = Constraint(expr= - m.x484 + 7.21817*m.b2212 <= 0) m.c2899 = Constraint(expr= - m.x485 + 7.20485*m.b2213 <= 0) m.c2900 = Constraint(expr= - m.x486 + 7.19819*m.b2214 <= 0) m.c2901 = Constraint(expr= - m.x487 + 7.19153*m.b2215 <= 0) m.c2902 = Constraint(expr= - m.x488 + 7.19819*m.b2216 <= 0) m.c2903 = Constraint(expr= - m.x489 + 7.21151*m.b2217 <= 0) m.c2904 = Constraint(expr= - m.x490 + 7.24482*m.b2218 <= 0) m.c2905 = Constraint(expr= - m.x491 + 7.31142*m.b2219 <= 0) m.c2906 = Constraint(expr= - m.x492 + 7.418*m.b2220 <= 0) m.c2907 = Constraint(expr= - m.x493 + 7.53789*m.b2221 <= 0) m.c2908 = Constraint(expr= - m.x494 + 7.67777*m.b2222 <= 0) m.c2909 = Constraint(expr= - m.x495 + 7.71107*m.b2223 <= 0) m.c2910 = Constraint(expr= - m.x496 + 7.61116*m.b2224 <= 0) m.c2911 = Constraint(expr= - m.x497 + 7.58452*m.b2225 <= 0) m.c2912 = Constraint(expr= - m.x498 + 7.53123*m.b2226 <= 0) m.c2913 = Constraint(expr= - m.x499 + 7.44464*m.b2227 <= 0) m.c2914 = Constraint(expr= - m.x500 + 7.39135*m.b2228 <= 0) m.c2915 = Constraint(expr= - m.x501 + 7.36471*m.b2229 <= 0) m.c2916 = Constraint(expr= - m.x502 + 7.33807*m.b2230 <= 0) m.c2917 = Constraint(expr= - m.x503 + 7.31142*m.b2231 <= 0) m.c2918 = Constraint(expr= - m.x504 + 7.29144*m.b2232 <= 0) m.c2919 = Constraint(expr= - m.x505 + 7.27146*m.b2233 <= 0) m.c2920 = Constraint(expr= - m.x506 + 7.37137*m.b2234 <= 0) m.c2921 = Constraint(expr= - m.x507 + 7.42466*m.b2235 <= 0) m.c2922 = Constraint(expr= - m.x508 + 7.48461*m.b2236 <= 0) m.c2923 = Constraint(expr= - m.x509 + 7.53789*m.b2237 <= 0) m.c2924 = Constraint(expr= - m.x510 + 7.59784*m.b2238 <= 0) m.c2925 = Constraint(expr= - m.x511 + 7.59118*m.b2239 <= 0) m.c2926 = Constraint(expr= - m.x512 + 7.59784*m.b2240 <= 0) m.c2927 = Constraint(expr= - m.x513 + 7.67777*m.b2241 <= 0) m.c2928 = Constraint(expr= - m.x514 + 7.71107*m.b2242 <= 0) m.c2929 = Constraint(expr= - m.x515 + 7.84429*m.b2243 <= 0) m.c2930 = Constraint(expr= - m.x516 + 7.88425*m.b2244 <= 0) m.c2931 = Constraint(expr= - m.x517 + 7.93754*m.b2245 <= 0) m.c2932 = Constraint(expr= - m.x518 + 8.07742*m.b2246 <= 0) m.c2933 = Constraint(expr= - m.x519 + 8.17733*m.b2247 <= 0) m.c2934 = Constraint(expr= - m.x520 + 8.14403*m.b2248 <= 0) m.c2935 = Constraint(expr= - m.x521 + 8.05078*m.b2249 <= 0) m.c2936 = Constraint(expr= - m.x522 + 7.99749*m.b2250 <= 0) m.c2937 = Constraint(expr= - m.x523 + 7.84429*m.b2251 <= 0) m.c2938 = Constraint(expr= - m.x524 + 7.72439*m.b2252 <= 0) m.c2939 = Constraint(expr= - m.x525 + 7.69775*m.b2253 <= 0) m.c2940 = Constraint(expr= - m.x526 + 7.6045*m.b2254 <= 0) m.c2941 = Constraint(expr= - m.x527 + 7.64447*m.b2255 <= 0) m.c2942 = Constraint(expr= - m.x528 + 7.62448*m.b2256 <= 0) m.c2943 = Constraint(expr= - m.x529 + 7.27146*m.b2257 <= 0) m.c2944 = Constraint(expr= - m.x530 + 7.23816*m.b2258 <= 0) m.c2945 = Constraint(expr= - m.x531 + 7.22483*m.b2259 <= 0) m.c2946 = Constraint(expr= - m.x532 + 7.21817*m.b2260 <= 0) m.c2947 = Constraint(expr= - m.x533 + 7.20485*m.b2261 <= 0) m.c2948 = Constraint(expr= - m.x534 + 7.19819*m.b2262 <= 0) m.c2949 = Constraint(expr= - m.x535 + 7.19153*m.b2263 <= 0) m.c2950 = Constraint(expr= - m.x536 + 7.19819*m.b2264 <= 0) m.c2951 = Constraint(expr= - m.x537 + 7.21151*m.b2265 <= 0) m.c2952 = Constraint(expr= - m.x538 + 7.24482*m.b2266 <= 0) m.c2953 = Constraint(expr= - m.x539 + 7.31142*m.b2267 <= 0) m.c2954 = Constraint(expr= - m.x540 + 7.418*m.b2268 <= 0) m.c2955 = Constraint(expr= - m.x541 + 7.53789*m.b2269 <= 0) m.c2956 = Constraint(expr= - m.x542 + 7.67777*m.b2270 <= 0) m.c2957 = Constraint(expr= - m.x543 + 7.71107*m.b2271 <= 0) m.c2958 = Constraint(expr= - m.x544 + 7.61116*m.b2272 <= 0) m.c2959 = Constraint(expr= - m.x545 + 7.58452*m.b2273 <= 0) m.c2960 = Constraint(expr= - m.x546 + 7.53123*m.b2274 <= 0) m.c2961 = Constraint(expr= - m.x547 + 7.44464*m.b2275 <= 0) m.c2962 = Constraint(expr= - m.x548 + 7.39135*m.b2276 <= 0) m.c2963 = Constraint(expr= - m.x549 + 7.36471*m.b2277 <= 0) m.c2964 = Constraint(expr= - m.x550 + 7.33807*m.b2278 <= 0) m.c2965 = Constraint(expr= - m.x551 + 7.31142*m.b2279 <= 0) m.c2966 = Constraint(expr= - m.x552 + 7.29144*m.b2280 <= 0) m.c2967 = Constraint(expr= - m.x553 + 7.27146*m.b2281 <= 0) m.c2968 = Constraint(expr= - m.x554 + 7.37137*m.b2282 <= 0) m.c2969 = Constraint(expr= - m.x555 + 7.42466*m.b2283 <= 0) m.c2970 = Constraint(expr= - m.x556 + 7.48461*m.b2284 <= 0) m.c2971 = Constraint(expr= - m.x557 + 7.53789*m.b2285 <= 0) m.c2972 = Constraint(expr= - m.x558 + 7.59784*m.b2286 <= 0) m.c2973 = Constraint(expr= - m.x559 + 7.59118*m.b2287 <= 0) m.c2974 = Constraint(expr= - m.x560 + 7.59784*m.b2288 <= 0) m.c2975 = Constraint(expr= - m.x561 + 7.67777*m.b2289 <= 0) m.c2976 = Constraint(expr= - m.x562 + 7.71107*m.b2290 <= 0) m.c2977 = Constraint(expr= - m.x563 + 7.84429*m.b2291 <= 0) m.c2978 = Constraint(expr= - m.x564 + 7.88425*m.b2292 <= 0) m.c2979 = Constraint(expr= - m.x565 + 7.93754*m.b2293 <= 0) m.c2980 = Constraint(expr= - m.x566 + 8.07742*m.b2294 <= 0) m.c2981 = Constraint(expr= - m.x567 + 8.17733*m.b2295 <= 0) m.c2982 = Constraint(expr= - m.x568 + 8.14403*m.b2296 <= 0) m.c2983 = Constraint(expr= - m.x569 + 8.05078*m.b2297 <= 0) m.c2984 = Constraint(expr= - m.x570 + 7.99749*m.b2298 <= 0) m.c2985 = Constraint(expr= - m.x571 + 7.84429*m.b2299 <= 0) m.c2986 = Constraint(expr= - m.x572 + 7.72439*m.b2300 <= 0) m.c2987 = Constraint(expr= - m.x573 + 7.69775*m.b2301 <= 0) m.c2988 = Constraint(expr= - m.x574 + 7.6045*m.b2302 <= 0) m.c2989 = Constraint(expr= - m.x575 + 7.64447*m.b2303 <= 0) m.c2990 = Constraint(expr= - m.x576 + 7.62448*m.b2304 <= 0) m.c2991 = Constraint(expr= - m.x577 + 7.27146*m.b2305 <= 0) m.c2992 = Constraint(expr= - m.x578 + 2.17406*m.b2018 <= 0) m.c2993 = Constraint(expr= - m.x579 + 2.17396*m.b2019 <= 0) m.c2994 = Constraint(expr= - m.x580 + 2.1739*m.b2020 <= 0) m.c2995 = Constraint(expr= - m.x581 + 2.1738*m.b2021 <= 0) m.c2996 = Constraint(expr= - m.x582 + 2.17375*m.b2022 <= 0) m.c2997 = Constraint(expr= - m.x583 + 2.17369*m.b2023 <= 0) m.c2998 = Constraint(expr= - m.x584 + 2.17375*m.b2024 <= 0) m.c2999 = Constraint(expr= - m.x585 + 2.17385*m.b2025 <= 0) m.c3000 = Constraint(expr= - m.x586 + 2.17411*m.b2026 <= 0) m.c3001 = Constraint(expr= - m.x587 + 2.17464*m.b2027 <= 0) m.c3002 = Constraint(expr= - m.x588 + 2.17549*m.b2028 <= 0) m.c3003 = Constraint(expr= - m.x589 + 2.17644*m.b2029 <= 0) m.c3004 = Constraint(expr= - m.x590 + 2.17755*m.b2030 <= 0) m.c3005 = Constraint(expr= - m.x591 + 2.17781*m.b2031 <= 0) m.c3006 = Constraint(expr= - m.x592 + 2.17702*m.b2032 <= 0) m.c3007 = Constraint(expr= - m.x593 + 2.17681*m.b2033 <= 0) m.c3008 = Constraint(expr= - m.x594 + 2.17639*m.b2034 <= 0) m.c3009 = Constraint(expr= - m.x595 + 2.1757*m.b2035 <= 0) m.c3010 = Constraint(expr= - m.x596 + 2.17528*m.b2036 <= 0) m.c3011 = Constraint(expr= - m.x597 + 2.17507*m.b2037 <= 0) m.c3012 = Constraint(expr= - m.x598 + 2.17485*m.b2038 <= 0) m.c3013 = Constraint(expr= - m.x599 + 2.17464*m.b2039 <= 0) m.c3014 = Constraint(expr= - m.x600 + 2.17448*m.b2040 <= 0) m.c3015 = Constraint(expr= - m.x601 + 2.17433*m.b2041 <= 0) m.c3016 = Constraint(expr= - m.x602 + 2.17512*m.b2042 <= 0) m.c3017 = Constraint(expr= - m.x603 + 2.17554*m.b2043 <= 0) m.c3018 = Constraint(expr= - m.x604 + 2.17602*m.b2044 <= 0) m.c3019 = Constraint(expr= - m.x605 + 2.17644*m.b2045 <= 0) m.c3020 = Constraint(expr= - m.x606 + 2.17691*m.b2046 <= 0) m.c3021 = Constraint(expr= - m.x607 + 2.17686*m.b2047 <= 0) m.c3022 = Constraint(expr= - m.x608 + 2.17691*m.b2048 <= 0) m.c3023 = Constraint(expr= - m.x609 + 2.17755*m.b2049 <= 0) m.c3024 = Constraint(expr= - m.x610 + 2.17781*m.b2050 <= 0) m.c3025 = Constraint(expr= - m.x611 + 2.17887*m.b2051 <= 0) m.c3026 = Constraint(expr= - m.x612 + 2.17919*m.b2052 <= 0) m.c3027 = Constraint(expr= - m.x613 + 2.17961*m.b2053 <= 0) m.c3028 = Constraint(expr= - m.x614 + 2.18072*m.b2054 <= 0) m.c3029 = Constraint(expr= - m.x615 + 2.18151*m.b2055 <= 0) m.c3030 = Constraint(expr= - m.x616 + 2.18125*m.b2056 <= 0) m.c3031 = Constraint(expr= - m.x617 + 2.18051*m.b2057 <= 0) m.c3032 = Constraint(expr= - m.x618 + 2.18008*m.b2058 <= 0) m.c3033 = Constraint(expr= - m.x619 + 2.17887*m.b2059 <= 0) m.c3034 = Constraint(expr= - m.x620 + 2.17792*m.b2060 <= 0) m.c3035 = Constraint(expr= - m.x621 + 2.17771*m.b2061 <= 0) m.c3036 = Constraint(expr= - m.x622 + 2.17697*m.b2062 <= 0) m.c3037 = Constraint(expr= - m.x623 + 2.17728*m.b2063 <= 0) m.c3038 = Constraint(expr= - m.x624 + 2.17713*m.b2064 <= 0) m.c3039 = Constraint(expr= - m.x625 + 2.17433*m.b2065 <= 0) m.c3040 = Constraint(expr= - m.x626 + 2.17406*m.b2066 <= 0) m.c3041 = Constraint(expr= - m.x627 + 2.17396*m.b2067 <= 0) m.c3042 = Constraint(expr= - m.x628 + 2.1739*m.b2068 <= 0) m.c3043 = Constraint(expr= - m.x629 + 2.1738*m.b2069 <= 0) m.c3044 = Constraint(expr= - m.x630 + 2.17375*m.b2070 <= 0) m.c3045 = Constraint(expr= - m.x631 + 2.17369*m.b2071 <= 0) m.c3046 = Constraint(expr= - m.x632 + 2.17375*m.b2072 <= 0) m.c3047 = Constraint(expr= - m.x633 + 2.17385*m.b2073 <= 0) m.c3048 = Constraint(expr= - m.x634 + 2.17411*m.b2074 <= 0) m.c3049 = Constraint(expr= - m.x635 + 2.17464*m.b2075 <= 0) m.c3050 = Constraint(expr= - m.x636 + 2.17549*m.b2076 <= 0) m.c3051 = Constraint(expr= - m.x637 + 2.17644*m.b2077 <= 0) m.c3052 = Constraint(expr= - m.x638 + 2.17755*m.b2078 <= 0) m.c3053 = Constraint(expr= - m.x639 + 2.17781*m.b2079 <= 0) m.c3054 = Constraint(expr= - m.x640 + 2.17702*m.b2080 <= 0) m.c3055 = Constraint(expr= - m.x641 + 2.17681*m.b2081 <= 0) m.c3056 = Constraint(expr= - m.x642 + 2.17639*m.b2082 <= 0) m.c3057 = Constraint(expr= - m.x643 + 2.1757*m.b2083 <= 0) m.c3058 = Constraint(expr= - m.x644 + 2.17528*m.b2084 <= 0) m.c3059 = Constraint(expr= - m.x645 + 2.17507*m.b2085 <= 0) m.c3060 = Constraint(expr= - m.x646 + 2.17485*m.b2086 <= 0) m.c3061 = Constraint(expr= - m.x647 + 2.17464*m.b2087 <= 0) m.c3062 = Constraint(expr= - m.x648 + 2.17448*m.b2088 <= 0) m.c3063 = Constraint(expr= - m.x649 + 2.17433*m.b2089 <= 0) m.c3064 = Constraint(expr= - m.x650 + 2.17512*m.b2090 <= 0) m.c3065 = Constraint(expr= - m.x651 + 2.17554*m.b2091 <= 0) m.c3066 = Constraint(expr= - m.x652 + 2.17602*m.b2092 <= 0) m.c3067 = Constraint(expr= - m.x653 + 2.17644*m.b2093 <= 0) m.c3068 = Constraint(expr= - m.x654 + 2.17691*m.b2094 <= 0) m.c3069 = Constraint(expr= - m.x655 + 2.17686*m.b2095 <= 0) m.c3070 = Constraint(expr= - m.x656 + 2.17691*m.b2096 <= 0) m.c3071 = Constraint(expr= - m.x657 + 2.17755*m.b2097 <= 0) m.c3072 = Constraint(expr= - m.x658 + 2.17781*m.b2098 <= 0) m.c3073 = Constraint(expr= - m.x659 + 2.17887*m.b2099 <= 0) m.c3074 = Constraint(expr= - m.x660 + 2.17919*m.b2100 <= 0) m.c3075 = Constraint(expr= - m.x661 + 2.17961*m.b2101 <= 0) m.c3076 = Constraint(expr= - m.x662 + 2.18072*m.b2102 <= 0) m.c3077 = Constraint(expr= - m.x663 + 2.18151*m.b2103 <= 0) m.c3078 = Constraint(expr= - m.x664 + 2.18125*m.b2104 <= 0) m.c3079 = Constraint(expr= - m.x665 + 2.18051*m.b2105 <= 0) m.c3080 = Constraint(expr= - m.x666 + 2.18008*m.b2106 <= 0) m.c3081 = Constraint(expr= - m.x667 + 2.17887*m.b2107 <= 0) m.c3082 = Constraint(expr= - m.x668 + 2.17792*m.b2108 <= 0) m.c3083 = Constraint(expr= - m.x669 + 2.17771*m.b2109 <= 0) m.c3084 = Constraint(expr= - m.x670 + 2.17697*m.b2110 <= 0) m.c3085 = Constraint(expr= - m.x671 + 2.17728*m.b2111 <= 0) m.c3086 = Constraint(expr= - m.x672 + 2.17713*m.b2112 <= 0) m.c3087 = Constraint(expr= - m.x673 + 2.17433*m.b2113 <= 0) m.c3088 = Constraint(expr= - m.x674 + 2.17406*m.b2114 <= 0) m.c3089 = Constraint(expr= - m.x675 + 2.17396*m.b2115 <= 0) m.c3090 = Constraint(expr= - m.x676 + 2.1739*m.b2116 <= 0) m.c3091 = Constraint(expr= - m.x677 + 2.1738*m.b2117 <= 0) m.c3092 = Constraint(expr= - m.x678 + 2.17375*m.b2118 <= 0) m.c3093 = Constraint(expr= - m.x679 + 2.17369*m.b2119 <= 0) m.c3094 = Constraint(expr= - m.x680 + 2.17375*m.b2120 <= 0) m.c3095 = Constraint(expr= - m.x681 + 2.17385*m.b2121 <= 0) m.c3096 = Constraint(expr= - m.x682 + 2.17411*m.b2122 <= 0) m.c3097 = Constraint(expr= - m.x683 + 2.17464*m.b2123 <= 0) m.c3098 = Constraint(expr= - m.x684 + 2.17549*m.b2124 <= 0) m.c3099 = Constraint(expr= - m.x685 + 2.17644*m.b2125 <= 0) m.c3100 = Constraint(expr= - m.x686 + 2.17755*m.b2126 <= 0) m.c3101 = Constraint(expr= - m.x687 + 2.17781*m.b2127 <= 0) m.c3102 = Constraint(expr= - m.x688 + 2.17702*m.b2128 <= 0) m.c3103 = Constraint(expr= - m.x689 + 2.17681*m.b2129 <= 0) m.c3104 = Constraint(expr= - m.x690 + 2.17639*m.b2130 <= 0) m.c3105 = Constraint(expr= - m.x691 + 2.1757*m.b2131 <= 0) m.c3106 = Constraint(expr= - m.x692 + 2.17528*m.b2132 <= 0) m.c3107 = Constraint(expr= - m.x693 + 2.17507*m.b2133 <= 0) m.c3108 = Constraint(expr= - m.x694 + 2.17485*m.b2134 <= 0) m.c3109 = Constraint(expr= - m.x695 + 2.17464*m.b2135 <= 0) m.c3110 = Constraint(expr= - m.x696 + 2.17448*m.b2136 <= 0) m.c3111 = Constraint(expr= - m.x697 + 2.17433*m.b2137 <= 0) m.c3112 = Constraint(expr= - m.x698 + 2.17512*m.b2138 <= 0) m.c3113 = Constraint(expr= - m.x699 + 2.17554*m.b2139 <= 0) m.c3114 = Constraint(expr= - m.x700 + 2.17602*m.b2140 <= 0) m.c3115 = Constraint(expr= - m.x701 + 2.17644*m.b2141 <= 0) m.c3116 = Constraint(expr= - m.x702 + 2.17691*m.b2142 <= 0) m.c3117 = Constraint(expr= - m.x703 + 2.17686*m.b2143 <= 0) m.c3118 = Constraint(expr= - m.x704 + 2.17691*m.b2144 <= 0) m.c3119 = Constraint(expr= - m.x705 + 2.17755*m.b2145 <= 0) m.c3120 = Constraint(expr= - m.x706 + 2.17781*m.b2146 <= 0) m.c3121 = Constraint(expr= - m.x707 + 2.17887*m.b2147 <= 0) m.c3122 = Constraint(expr= - m.x708 + 2.17919*m.b2148 <= 0) m.c3123 = Constraint(expr= - m.x709 + 2.17961*m.b2149 <= 0) m.c3124 = Constraint(expr= - m.x710 + 2.18072*m.b2150 <= 0) m.c3125 = Constraint(expr= - m.x711 + 2.18151*m.b2151 <= 0) m.c3126 = Constraint(expr= - m.x712 + 2.18125*m.b2152 <= 0) m.c3127 = Constraint(expr= - m.x713 + 2.18051*m.b2153 <= 0) m.c3128 = Constraint(expr= - m.x714 + 2.18008*m.b2154 <= 0) m.c3129 = Constraint(expr= - m.x715 + 2.17887*m.b2155 <= 0) m.c3130 = Constraint(expr= - m.x716 + 2.17792*m.b2156 <= 0) m.c3131 = Constraint(expr= - m.x717 + 2.17771*m.b2157 <= 0) m.c3132 = Constraint(expr= - m.x718 + 2.17697*m.b2158 <= 0) m.c3133 = Constraint(expr= - m.x719 + 2.17728*m.b2159 <= 0) m.c3134 = Constraint(expr= - m.x720 + 2.17713*m.b2160 <= 0) m.c3135 = Constraint(expr= - m.x721 + 2.17433*m.b2161 <= 0) m.c3136 = Constraint(expr= - m.x722 + 2.17406*m.b2162 <= 0) m.c3137 = Constraint(expr= - m.x723 + 2.17396*m.b2163 <= 0) m.c3138 = Constraint(expr= - m.x724 + 2.1739*m.b2164 <= 0) m.c3139 = Constraint(expr= - m.x725 + 2.1738*m.b2165 <= 0) m.c3140 = Constraint(expr= - m.x726 + 2.17375*m.b2166 <= 0) m.c3141 = Constraint(expr= - m.x727 + 2.17369*m.b2167 <= 0) m.c3142 = Constraint(expr= - m.x728 + 2.17375*m.b2168 <= 0) m.c3143 = Constraint(expr= - m.x729 + 2.17385*m.b2169 <= 0) m.c3144 = Constraint(expr= - m.x730 + 2.17411*m.b2170 <= 0) m.c3145 = Constraint(expr= - m.x731 + 2.17464*m.b2171 <= 0) m.c3146 = Constraint(expr= - m.x732 + 2.17549*m.b2172 <= 0) m.c3147 = Constraint(expr= - m.x733 + 2.17644*m.b2173 <= 0) m.c3148 = Constraint(expr= - m.x734 + 2.17755*m.b2174 <= 0) m.c3149 = Constraint(expr= - m.x735 + 2.17781*m.b2175 <= 0) m.c3150 = Constraint(expr= - m.x736 + 2.17702*m.b2176 <= 0) m.c3151 = Constraint(expr= - m.x737 + 2.17681*m.b2177 <= 0) m.c3152 = Constraint(expr= - m.x738 + 2.17639*m.b2178 <= 0) m.c3153 = Constraint(expr= - m.x739 + 2.1757*m.b2179 <= 0) m.c3154 = Constraint(expr= - m.x740 + 2.17528*m.b2180 <= 0) m.c3155 = Constraint(expr= - m.x741 + 2.17507*m.b2181 <= 0) m.c3156 = Constraint(expr= - m.x742 + 2.17485*m.b2182 <= 0) m.c3157 = Constraint(expr= - m.x743 + 2.17464*m.b2183 <= 0) m.c3158 = Constraint(expr= - m.x744 + 2.17448*m.b2184 <= 0) m.c3159 = Constraint(expr= - m.x745 + 2.17433*m.b2185 <= 0) m.c3160 = Constraint(expr= - m.x746 + 2.17512*m.b2186 <= 0) m.c3161 = Constraint(expr= - m.x747 + 2.17554*m.b2187 <= 0) m.c3162 = Constraint(expr= - m.x748 + 2.17602*m.b2188 <= 0) m.c3163 = Constraint(expr= - m.x749 + 2.17644*m.b2189 <= 0) m.c3164 = Constraint(expr= - m.x750 + 2.17691*m.b2190 <= 0) m.c3165 = Constraint(expr= - m.x751 + 2.17686*m.b2191 <= 0) m.c3166 = Constraint(expr= - m.x752 + 2.17691*m.b2192 <= 0) m.c3167 = Constraint(expr= - m.x753 + 2.17755*m.b2193 <= 0) m.c3168 = Constraint(expr= - m.x754 + 2.17781*m.b2194 <= 0) m.c3169 = Constraint(expr= - m.x755 + 2.17887*m.b2195 <= 0) m.c3170 = Constraint(expr= - m.x756 + 2.17919*m.b2196 <= 0) m.c3171 = Constraint(expr= - m.x757 + 2.17961*m.b2197 <= 0) m.c3172 = Constraint(expr= - m.x758 + 2.18072*m.b2198 <= 0) m.c3173 = Constraint(expr= - m.x759 + 2.18151*m.b2199 <= 0) m.c3174 = Constraint(expr= - m.x760 + 2.18125*m.b2200 <= 0) m.c3175 = Constraint(expr= - m.x761 + 2.18051*m.b2201 <= 0) m.c3176 = Constraint(expr= - m.x762 + 2.18008*m.b2202 <= 0) m.c3177 = Constraint(expr= - m.x763 + 2.17887*m.b2203 <= 0) m.c3178 = Constraint(expr= - m.x764 + 2.17792*m.b2204 <= 0) m.c3179 = Constraint(expr= - m.x765 + 2.17771*m.b2205 <= 0) m.c3180 = Constraint(expr= - m.x766 + 2.17697*m.b2206 <= 0) m.c3181 = Constraint(expr= - m.x767 + 2.17728*m.b2207 <= 0) m.c3182 = Constraint(expr= - m.x768 + 2.17713*m.b2208 <= 0) m.c3183 = Constraint(expr= - m.x769 + 2.17433*m.b2209 <= 0) m.c3184 = Constraint(expr= m.x482 - 17.3082*m.b2210 <= 0) m.c3185 = Constraint(expr= m.x483 - 17.303*m.b2211 <= 0) m.c3186 = Constraint(expr= m.x484 - 17.3004*m.b2212 <= 0) m.c3187 = Constraint(expr= m.x485 - 17.2951*m.b2213 <= 0) m.c3188 = Constraint(expr= m.x486 - 17.2925*m.b2214 <= 0) m.c3189 = Constraint(expr= m.x487 - 17.2899*m.b2215 <= 0) m.c3190 = Constraint(expr= m.x488 - 17.2925*m.b2216 <= 0) m.c3191 = Constraint(expr= m.x489 - 17.2978*m.b2217 <= 0) m.c3192 = Constraint(expr= m.x490 - 17.3109*m.b2218 <= 0) m.c3193 = Constraint(expr= m.x491 - 17.3371*m.b2219 <= 0) m.c3194 = Constraint(expr= m.x492 - 17.379*m.b2220 <= 0) m.c3195 = Constraint(expr= m.x493 - 17.4262*m.b2221 <= 0) m.c3196 = Constraint(expr= m.x494 - 17.4812*m.b2222 <= 0) m.c3197 = Constraint(expr= m.x495 - 17.4943*m.b2223 <= 0) m.c3198 = Constraint(expr= m.x496 - 17.455*m.b2224 <= 0) m.c3199 = Constraint(expr= m.x497 - 17.4445*m.b2225 <= 0) m.c3200 = Constraint(expr= m.x498 - 17.4236*m.b2226 <= 0) m.c3201 = Constraint(expr= m.x499 - 17.3895*m.b2227 <= 0) m.c3202 = Constraint(expr= m.x500 - 17.3685*m.b2228 <= 0) m.c3203 = Constraint(expr= m.x501 - 17.358*m.b2229 <= 0) m.c3204 = Constraint(expr= m.x502 - 17.3476*m.b2230 <= 0) m.c3205 = Constraint(expr= m.x503 - 17.3371*m.b2231 <= 0) m.c3206 = Constraint(expr= m.x504 - 17.3292*m.b2232 <= 0) m.c3207 = Constraint(expr= m.x505 - 17.3213*m.b2233 <= 0) m.c3208 = Constraint(expr= m.x506 - 17.3607*m.b2234 <= 0) m.c3209 = Constraint(expr= m.x507 - 17.3816*m.b2235 <= 0) m.c3210 = Constraint(expr= m.x508 - 17.4052*m.b2236 <= 0) m.c3211 = Constraint(expr= m.x509 - 17.4262*m.b2237 <= 0) m.c3212 = Constraint(expr= m.x510 - 17.4498*m.b2238 <= 0) m.c3213 = Constraint(expr= m.x511 - 17.4472*m.b2239 <= 0) m.c3214 = Constraint(expr= m.x512 - 17.4498*m.b2240 <= 0) m.c3215 = Constraint(expr= m.x513 - 17.4812*m.b2241 <= 0) m.c3216 = Constraint(expr= m.x514 - 17.4943*m.b2242 <= 0) m.c3217 = Constraint(expr= m.x515 - 17.5468*m.b2243 <= 0) m.c3218 = Constraint(expr= m.x516 - 17.5625*m.b2244 <= 0) m.c3219 = Constraint(expr= m.x517 - 17.5834*m.b2245 <= 0) m.c3220 = Constraint(expr= m.x518 - 17.6385*m.b2246 <= 0) m.c3221 = Constraint(expr= m.x519 - 17.6778*m.b2247 <= 0) m.c3222 = Constraint(expr= m.x520 - 17.6647*m.b2248 <= 0) m.c3223 = Constraint(expr= m.x521 - 17.628*m.b2249 <= 0) m.c3224 = Constraint(expr= m.x522 - 17.607*m.b2250 <= 0) m.c3225 = Constraint(expr= m.x523 - 17.5468*m.b2251 <= 0) m.c3226 = Constraint(expr= m.x524 - 17.4996*m.b2252 <= 0) m.c3227 = Constraint(expr= m.x525 - 17.4891*m.b2253 <= 0) m.c3228 = Constraint(expr= m.x526 - 17.4524*m.b2254 <= 0) m.c3229 = Constraint(expr= m.x527 - 17.4681*m.b2255 <= 0) m.c3230 = Constraint(expr= m.x528 - 17.4603*m.b2256 <= 0) m.c3231 = Constraint(expr= m.x529 - 17.3213*m.b2257 <= 0) m.c3232 = Constraint(expr= m.x530 - 17.3082*m.b2258 <= 0) m.c3233 = Constraint(expr= m.x531 - 17.303*m.b2259 <= 0) m.c3234 = Constraint(expr= m.x532 - 17.3004*m.b2260 <= 0) m.c3235 = Constraint(expr= m.x533 - 17.2951*m.b2261 <= 0) m.c3236 = Constraint(expr= m.x534 - 17.2925*m.b2262 <= 0) m.c3237 = Constraint(expr= m.x535 - 17.2899*m.b2263 <= 0) m.c3238 = Constraint(expr= m.x536 - 17.2925*m.b2264 <= 0) m.c3239 = Constraint(expr= m.x537 - 17.2978*m.b2265 <= 0) m.c3240 = Constraint(expr= m.x538 - 17.3109*m.b2266 <= 0) m.c3241 = Constraint(expr= m.x539 - 17.3371*m.b2267 <= 0) m.c3242 = Constraint(expr= m.x540 - 17.379*m.b2268 <= 0) m.c3243 = Constraint(expr= m.x541 - 17.4262*m.b2269 <= 0) m.c3244 = Constraint(expr= m.x542 - 17.4812*m.b2270 <= 0) m.c3245 = Constraint(expr= m.x543 - 17.4943*m.b2271 <= 0) m.c3246 = Constraint(expr= m.x544 - 17.455*m.b2272 <= 0) m.c3247 = Constraint(expr= m.x545 - 17.4445*m.b2273 <= 0) m.c3248 = Constraint(expr= m.x546 - 17.4236*m.b2274 <= 0) m.c3249 = Constraint(expr= m.x547 - 17.3895*m.b2275 <= 0) m.c3250 = Constraint(expr= m.x548 - 17.3685*m.b2276 <= 0) m.c3251 = Constraint(expr= m.x549 - 17.358*m.b2277 <= 0) m.c3252 = Constraint(expr= m.x550 - 17.3476*m.b2278 <= 0) m.c3253 = Constraint(expr= m.x551 - 17.3371*m.b2279 <= 0) m.c3254 = Constraint(expr= m.x552 - 17.3292*m.b2280 <= 0) m.c3255 = Constraint(expr= m.x553 - 17.3213*m.b2281 <= 0) m.c3256 = Constraint(expr= m.x554 - 17.3607*m.b2282 <= 0) m.c3257 = Constraint(expr= m.x555 - 17.3816*m.b2283 <= 0) m.c3258 = Constraint(expr= m.x556 - 17.4052*m.b2284 <= 0) m.c3259 = Constraint(expr= m.x557 - 17.4262*m.b2285 <= 0) m.c3260 = Constraint(expr= m.x558 - 17.4498*m.b2286 <= 0) m.c3261 = Constraint(expr= m.x559 - 17.4472*m.b2287 <= 0) m.c3262 = Constraint(expr= m.x560 - 17.4498*m.b2288 <= 0) m.c3263 = Constraint(expr= m.x561 - 17.4812*m.b2289 <= 0) m.c3264 = Constraint(expr= m.x562 - 17.4943*m.b2290 <= 0) m.c3265 = Constraint(expr= m.x563 - 17.5468*m.b2291 <= 0) m.c3266 = Constraint(expr= m.x564 - 17.5625*m.b2292 <= 0) m.c3267 = Constraint(expr= m.x565 - 17.5834*m.b2293 <= 0) m.c3268 = Constraint(expr= m.x566 - 17.6385*m.b2294 <= 0) m.c3269 = Constraint(expr= m.x567 - 17.6778*m.b2295 <= 0) m.c3270 = Constraint(expr= m.x568 - 17.6647*m.b2296 <= 0) m.c3271 = Constraint(expr= m.x569 - 17.628*m.b2297 <= 0) m.c3272 = Constraint(expr= m.x570 - 17.607*m.b2298 <= 0) m.c3273 = Constraint(expr= m.x571 - 17.5468*m.b2299 <= 0) m.c3274 = Constraint(expr= m.x572 - 17.4996*m.b2300 <= 0) m.c3275 = Constraint(expr= m.x573 - 17.4891*m.b2301 <= 0) m.c3276 = Constraint(expr= m.x574 - 17.4524*m.b2302 <= 0) m.c3277 = Constraint(expr= m.x575 - 17.4681*m.b2303 <= 0) m.c3278 = Constraint(expr= m.x576 - 17.4603*m.b2304 <= 0) m.c3279 = Constraint(expr= m.x577 - 17.3213*m.b2305 <= 0) m.c3280 = Constraint(expr= m.x578 - 7.00999*m.b2018 <= 0) m.c3281 = Constraint(expr= m.x579 - 7.00904*m.b2019 <= 0) m.c3282 = Constraint(expr= m.x580 - 7.00857*m.b2020 <= 0) m.c3283 = Constraint(expr= m.x581 - 7.00762*m.b2021 <= 0) m.c3284 = Constraint(expr= m.x582 - 7.00714*m.b2022 <= 0) m.c3285 = Constraint(expr= m.x583 - 7.00667*m.b2023 <= 0) m.c3286 = Constraint(expr= m.x584 - 7.00714*m.b2024 <= 0) m.c3287 = Constraint(expr= m.x585 - 7.00809*m.b2025 <= 0) m.c3288 = Constraint(expr= m.x586 - 7.01047*m.b2026 <= 0) m.c3289 = Constraint(expr= m.x587 - 7.01522*m.b2027 <= 0) m.c3290 = Constraint(expr= m.x588 - 7.02282*m.b2028 <= 0) m.c3291 = Constraint(expr= m.x589 - 7.03137*m.b2029 <= 0) m.c3292 = Constraint(expr= m.x590 - 7.04134*m.b2030 <= 0) m.c3293 = Constraint(expr= m.x591 - 7.04371*m.b2031 <= 0) m.c3294 = Constraint(expr= m.x592 - 7.03659*m.b2032 <= 0) m.c3295 = Constraint(expr= m.x593 - 7.03469*m.b2033 <= 0) m.c3296 = Constraint(expr= m.x594 - 7.03089*m.b2034 <= 0) m.c3297 = Constraint(expr= m.x595 - 7.02472*m.b2035 <= 0) m.c3298 = Constraint(expr= m.x596 - 7.02092*m.b2036 <= 0) m.c3299 = Constraint(expr= m.x597 - 7.01902*m.b2037 <= 0) m.c3300 = Constraint(expr= m.x598 - 7.01712*m.b2038 <= 0) m.c3301 = Constraint(expr= m.x599 - 7.01522*m.b2039 <= 0) m.c3302 = Constraint(expr= m.x600 - 7.01379*m.b2040 <= 0) m.c3303 = Constraint(expr= m.x601 - 7.01237*m.b2041 <= 0) m.c3304 = Constraint(expr= m.x602 - 7.01949*m.b2042 <= 0) m.c3305 = Constraint(expr= m.x603 - 7.02329*m.b2043 <= 0) m.c3306 = Constraint(expr= m.x604 - 7.02757*m.b2044 <= 0) m.c3307 = Constraint(expr= m.x605 - 7.03137*m.b2045 <= 0) m.c3308 = Constraint(expr= m.x606 - 7.03564*m.b2046 <= 0) m.c3309 = Constraint(expr= m.x607 - 7.03516*m.b2047 <= 0) m.c3310 = Constraint(expr= m.x608 - 7.03564*m.b2048 <= 0) m.c3311 = Constraint(expr= m.x609 - 7.04134*m.b2049 <= 0) m.c3312 = Constraint(expr= m.x610 - 7.04371*m.b2050 <= 0) m.c3313 = Constraint(expr= m.x611 - 7.05321*m.b2051 <= 0) m.c3314 = Constraint(expr= m.x612 - 7.05606*m.b2052 <= 0) m.c3315 = Constraint(expr= m.x613 - 7.05986*m.b2053 <= 0) m.c3316 = Constraint(expr= m.x614 - 7.06983*m.b2054 <= 0) m.c3317 = Constraint(expr= m.x615 - 7.07696*m.b2055 <= 0) m.c3318 = Constraint(expr= m.x616 - 7.07458*m.b2056 <= 0) m.c3319 = Constraint(expr= m.x617 - 7.06793*m.b2057 <= 0) m.c3320 = Constraint(expr= m.x618 - 7.06413*m.b2058 <= 0) m.c3321 = Constraint(expr= m.x619 - 7.05321*m.b2059 <= 0) m.c3322 = Constraint(expr= m.x620 - 7.04466*m.b2060 <= 0) m.c3323 = Constraint(expr= m.x621 - 7.04276*m.b2061 <= 0) m.c3324 = Constraint(expr= m.x622 - 7.03611*m.b2062 <= 0) m.c3325 = Constraint(expr= m.x623 - 7.03896*m.b2063 <= 0) m.c3326 = Constraint(expr= m.x624 - 7.03754*m.b2064 <= 0) m.c3327 = Constraint(expr= m.x625 - 7.01237*m.b2065 <= 0) m.c3328 = Constraint(expr= m.x626 - 7.00999*m.b2066 <= 0) m.c3329 = Constraint(expr= m.x627 - 7.00904*m.b2067 <= 0) m.c3330 = Constraint(expr= m.x628 - 7.00857*m.b2068 <= 0) m.c3331 = Constraint(expr= m.x629 - 7.00762*m.b2069 <= 0) m.c3332 = Constraint(expr= m.x630 - 7.00714*m.b2070 <= 0) m.c3333 = Constraint(expr= m.x631 - 7.00667*m.b2071 <= 0) m.c3334 = Constraint(expr= m.x632 - 7.00714*m.b2072 <= 0) m.c3335 = Constraint(expr= m.x633 - 7.00809*m.b2073 <= 0) m.c3336 = Constraint(expr= m.x634 - 7.01047*m.b2074 <= 0) m.c3337 = Constraint(expr= m.x635 - 7.01522*m.b2075 <= 0) m.c3338 = Constraint(expr= m.x636 - 7.02282*m.b2076 <= 0) m.c3339 = Constraint(expr= m.x637 - 7.03137*m.b2077 <= 0) m.c3340 = Constraint(expr= m.x638 - 7.04134*m.b2078 <= 0) m.c3341 = Constraint(expr= m.x639 - 7.04371*m.b2079 <= 0) m.c3342 = Constraint(expr= m.x640 - 7.03659*m.b2080 <= 0) m.c3343 = Constraint(expr= m.x641 - 7.03469*m.b2081 <= 0) m.c3344 = Constraint(expr= m.x642 - 7.03089*m.b2082 <= 0) m.c3345 = Constraint(expr= m.x643 - 7.02472*m.b2083 <= 0) m.c3346 = Constraint(expr= m.x644 - 7.02092*m.b2084 <= 0) m.c3347 = Constraint(expr= m.x645 - 7.01902*m.b2085 <= 0) m.c3348 = Constraint(expr= m.x646 - 7.01712*m.b2086 <= 0) m.c3349 = Constraint(expr= m.x647 - 7.01522*m.b2087 <= 0) m.c3350 = Constraint(expr= m.x648 - 7.01379*m.b2088 <= 0) m.c3351 = Constraint(expr= m.x649 - 7.01237*m.b2089 <= 0) m.c3352 = Constraint(expr= m.x650 - 7.01949*m.b2090 <= 0) m.c3353 = Constraint(expr= m.x651 - 7.02329*m.b2091 <= 0) m.c3354 = Constraint(expr= m.x652 - 7.02757*m.b2092 <= 0) m.c3355 = Constraint(expr= m.x653 - 7.03137*m.b2093 <= 0) m.c3356 = Constraint(expr= m.x654 - 7.03564*m.b2094 <= 0) m.c3357 = Constraint(expr= m.x655 - 7.03516*m.b2095 <= 0) m.c3358 = Constraint(expr= m.x656 - 7.03564*m.b2096 <= 0) m.c3359 = Constraint(expr= m.x657 - 7.04134*m.b2097 <= 0) m.c3360 = Constraint(expr= m.x658 - 7.04371*m.b2098 <= 0) m.c3361 = Constraint(expr= m.x659 - 7.05321*m.b2099 <= 0) m.c3362 = Constraint(expr= m.x660 - 7.05606*m.b2100 <= 0) m.c3363 = Constraint(expr= m.x661 - 7.05986*m.b2101 <= 0) m.c3364 = Constraint(expr= m.x662 - 7.06983*m.b2102 <= 0) m.c3365 = Constraint(expr= m.x663 - 7.07696*m.b2103 <= 0) m.c3366 = Constraint(expr= m.x664 - 7.07458*m.b2104 <= 0) m.c3367 = Constraint(expr= m.x665 - 7.06793*m.b2105 <= 0) m.c3368 = Constraint(expr= m.x666 - 7.06413*m.b2106 <= 0) m.c3369 = Constraint(expr= m.x667 - 7.05321*m.b2107 <= 0) m.c3370 = Constraint(expr= m.x668 - 7.04466*m.b2108 <= 0) m.c3371 = Constraint(expr= m.x669 - 7.04276*m.b2109 <= 0) m.c3372 = Constraint(expr= m.x670 - 7.03611*m.b2110 <= 0) m.c3373 = Constraint(expr= m.x671 - 7.03896*m.b2111 <= 0) m.c3374 = Constraint(expr= m.x672 - 7.03754*m.b2112 <= 0) m.c3375 = Constraint(expr= m.x673 - 7.01237*m.b2113 <= 0) m.c3376 = Constraint(expr= m.x674 - 7.00999*m.b2114 <= 0) m.c3377 = Constraint(expr= m.x675 - 7.00904*m.b2115 <= 0) m.c3378 = Constraint(expr= m.x676 - 7.00857*m.b2116 <= 0) m.c3379 = Constraint(expr= m.x677 - 7.00762*m.b2117 <= 0) m.c3380 = Constraint(expr= m.x678 - 7.00714*m.b2118 <= 0) m.c3381 = Constraint(expr= m.x679 - 7.00667*m.b2119 <= 0) m.c3382 = Constraint(expr= m.x680 - 7.00714*m.b2120 <= 0) m.c3383 = Constraint(expr= m.x681 - 7.00809*m.b2121 <= 0) m.c3384 = Constraint(expr= m.x682 - 7.01047*m.b2122 <= 0) m.c3385 = Constraint(expr= m.x683 - 7.01522*m.b2123 <= 0) m.c3386 = Constraint(expr= m.x684 - 7.02282*m.b2124 <= 0) m.c3387 = Constraint(expr= m.x685 - 7.03137*m.b2125 <= 0) m.c3388 = Constraint(expr= m.x686 - 7.04134*m.b2126 <= 0) m.c3389 = Constraint(expr= m.x687 - 7.04371*m.b2127 <= 0) m.c3390 = Constraint(expr= m.x688 - 7.03659*m.b2128 <= 0) m.c3391 = Constraint(expr= m.x689 - 7.03469*m.b2129 <= 0) m.c3392 = Constraint(expr= m.x690 - 7.03089*m.b2130 <= 0) m.c3393 = Constraint(expr= m.x691 - 7.02472*m.b2131 <= 0) m.c3394 = Constraint(expr= m.x692 - 7.02092*m.b2132 <= 0) m.c3395 = Constraint(expr= m.x693 - 7.01902*m.b2133 <= 0) m.c3396 = Constraint(expr= m.x694 - 7.01712*m.b2134 <= 0) m.c3397 = Constraint(expr= m.x695 - 7.01522*m.b2135 <= 0) m.c3398 = Constraint(expr= m.x696 - 7.01379*m.b2136 <= 0) m.c3399 = Constraint(expr= m.x697 - 7.01237*m.b2137 <= 0) m.c3400 = Constraint(expr= m.x698 - 7.01949*m.b2138 <= 0) m.c3401 = Constraint(expr= m.x699 - 7.02329*m.b2139 <= 0) m.c3402 = Constraint(expr= m.x700 - 7.02757*m.b2140 <= 0) m.c3403 = Constraint(expr= m.x701 - 7.03137*m.b2141 <= 0) m.c3404 = Constraint(expr= m.x702 - 7.03564*m.b2142 <= 0) m.c3405 = Constraint(expr= m.x703 - 7.03516*m.b2143 <= 0) m.c3406 = Constraint(expr= m.x704 - 7.03564*m.b2144 <= 0) m.c3407 = Constraint(expr= m.x705 - 7.04134*m.b2145 <= 0) m.c3408 = Constraint(expr= m.x706 - 7.04371*m.b2146 <= 0) m.c3409 = Constraint(expr= m.x707 - 7.05321*m.b2147 <= 0) m.c3410 = Constraint(expr= m.x708 - 7.05606*m.b2148 <= 0) m.c3411 = Constraint(expr= m.x709 - 7.05986*m.b2149 <= 0) m.c3412 = Constraint(expr= m.x710 - 7.06983*m.b2150 <= 0) m.c3413 = Constraint(expr= m.x711 - 7.07696*m.b2151 <= 0) m.c3414 = Constraint(expr= m.x712 - 7.07458*m.b2152 <= 0) m.c3415 = Constraint(expr= m.x713 - 7.06793*m.b2153 <= 0) m.c3416 = Constraint(expr= m.x714 - 7.06413*m.b2154 <= 0) m.c3417 = Constraint(expr= m.x715 - 7.05321*m.b2155 <= 0) m.c3418 = Constraint(expr= m.x716 - 7.04466*m.b2156 <= 0) m.c3419 = Constraint(expr= m.x717 - 7.04276*m.b2157 <= 0) m.c3420 = Constraint(expr= m.x718 - 7.03611*m.b2158 <= 0) m.c3421 = Constraint(expr= m.x719 - 7.03896*m.b2159 <= 0) m.c3422 = Constraint(expr= m.x720 - 7.03754*m.b2160 <= 0) m.c3423 = Constraint(expr= m.x721 - 7.01237*m.b2161 <= 0) m.c3424 = Constraint(expr= m.x722 - 7.00999*m.b2162 <= 0) m.c3425 = Constraint(expr= m.x723 - 7.00904*m.b2163 <= 0) m.c3426 = Constraint(expr= m.x724 - 7.00857*m.b2164 <= 0) m.c3427 = Constraint(expr= m.x725 - 7.00762*m.b2165 <= 0) m.c3428 = Constraint(expr= m.x726 - 7.00714*m.b2166 <= 0) m.c3429 = Constraint(expr= m.x727 - 7.00667*m.b2167 <= 0) m.c3430 = Constraint(expr= m.x728 - 7.00714*m.b2168 <= 0) m.c3431 = Constraint(expr= m.x729 - 7.00809*m.b2169 <= 0) m.c3432 = Constraint(expr= m.x730 - 7.01047*m.b2170 <= 0) m.c3433 = Constraint(expr= m.x731 - 7.01522*m.b2171 <= 0) m.c3434 = Constraint(expr= m.x732 - 7.02282*m.b2172 <= 0) m.c3435 = Constraint(expr= m.x733 - 7.03137*m.b2173 <= 0) m.c3436 = Constraint(expr= m.x734 - 7.04134*m.b2174 <= 0) m.c3437 = Constraint(expr= m.x735 - 7.04371*m.b2175 <= 0) m.c3438 = Constraint(expr= m.x736 - 7.03659*m.b2176 <= 0) m.c3439 = Constraint(expr= m.x737 - 7.03469*m.b2177 <= 0) m.c3440 = Constraint(expr= m.x738 - 7.03089*m.b2178 <= 0) m.c3441 = Constraint(expr= m.x739 - 7.02472*m.b2179 <= 0) m.c3442 = Constraint(expr= m.x740 - 7.02092*m.b2180 <= 0) m.c3443 = Constraint(expr= m.x741 - 7.01902*m.b2181 <= 0) m.c3444 = Constraint(expr= m.x742 - 7.01712*m.b2182 <= 0) m.c3445 = Constraint(expr= m.x743 - 7.01522*m.b2183 <= 0) m.c3446 = Constraint(expr= m.x744 - 7.01379*m.b2184 <= 0) m.c3447 = Constraint(expr= m.x745 - 7.01237*m.b2185 <= 0) m.c3448 = Constraint(expr= m.x746 - 7.01949*m.b2186 <= 0) m.c3449 = Constraint(expr= m.x747 - 7.02329*m.b2187 <= 0) m.c3450 = Constraint(expr= m.x748 - 7.02757*m.b2188 <= 0) m.c3451 = Constraint(expr= m.x749 - 7.03137*m.b2189 <= 0) m.c3452 = Constraint(expr= m.x750 - 7.03564*m.b2190 <= 0) m.c3453 = Constraint(expr= m.x751 - 7.03516*m.b2191 <= 0) m.c3454 = Constraint(expr= m.x752 - 7.03564*m.b2192 <= 0) m.c3455 = Constraint(expr= m.x753 - 7.04134*m.b2193 <= 0) m.c3456 = Constraint(expr= m.x754 - 7.04371*m.b2194 <= 0) m.c3457 = Constraint(expr= m.x755 - 7.05321*m.b2195 <= 0) m.c3458 = Constraint(expr= m.x756 - 7.05606*m.b2196 <= 0) m.c3459 = Constraint(expr= m.x757 - 7.05986*m.b2197 <= 0) m.c3460 = Constraint(expr= m.x758 - 7.06983*m.b2198 <= 0) m.c3461 = Constraint(expr= m.x759 - 7.07696*m.b2199 <= 0) m.c3462 = Constraint(expr= m.x760 - 7.07458*m.b2200 <= 0) m.c3463 = Constraint(expr= m.x761 - 7.06793*m.b2201 <= 0) m.c3464 = Constraint(expr= m.x762 - 7.06413*m.b2202 <= 0) m.c3465 = Constraint(expr= m.x763 - 7.05321*m.b2203 <= 0) m.c3466 = Constraint(expr= m.x764 - 7.04466*m.b2204 <= 0) m.c3467 = Constraint(expr= m.x765 - 7.04276*m.b2205 <= 0) m.c3468 = Constraint(expr= m.x766 - 7.03611*m.b2206 <= 0) m.c3469 = Constraint(expr= m.x767 - 7.03896*m.b2207 <= 0) m.c3470 = Constraint(expr= m.x768 - 7.03754*m.b2208 <= 0) m.c3471 = Constraint(expr= m.x769 - 7.01237*m.b2209 <= 0) m.c3472 = Constraint(expr= - m.x1154 <= 0) m.c3473 = Constraint(expr= - m.x1155 <= 0) m.c3474 = Constraint(expr= - m.x1156 <= 0) m.c3475 = Constraint(expr= - m.x1157 <= 0) m.c3476 = Constraint(expr= - m.x1158 <= 0) m.c3477 = Constraint(expr= - m.x1159 <= 0) m.c3478 = Constraint(expr= - m.x1160 <= 0) m.c3479 = Constraint(expr= - m.x1161 <= 0) m.c3480 = Constraint(expr= - m.x1162 <= 0) m.c3481 = Constraint(expr= - m.x1163 <= 0) m.c3482 = Constraint(expr= - m.x1164 <= 0) m.c3483 = Constraint(expr= - m.x1165 <= 0) m.c3484 = Constraint(expr= - m.x1166 <= 0) m.c3485 = Constraint(expr= - m.x1167 <= 0) m.c3486 = Constraint(expr= - m.x1168 <= 0) m.c3487 = Constraint(expr= - m.x1169 <= 0) m.c3488 = Constraint(expr= - m.x1170 <= 0) m.c3489 = Constraint(expr= - m.x1171 <= 0) m.c3490 = Constraint(expr= - m.x1172 <= 0) m.c3491 = Constraint(expr= - m.x1173 <= 0) m.c3492 = Constraint(expr= - m.x1174 <= 0) m.c3493 = Constraint(expr= - m.x1175 <= 0) m.c3494 = Constraint(expr= - m.x1176 <= 0) m.c3495 = Constraint(expr= - m.x1177 <= 0) m.c3496 = Constraint(expr= - m.x1178 <= 0) m.c3497 = Constraint(expr= - m.x1179 <= 0) m.c3498 = Constraint(expr= - m.x1180 <= 0) m.c3499 = Constraint(expr= - m.x1181 <= 0) m.c3500 = Constraint(expr= - m.x1182 <= 0) m.c3501 = Constraint(expr= - m.x1183 <= 0) m.c3502 = Constraint(expr= - m.x1184 <= 0) m.c3503 = Constraint(expr= - m.x1185 <= 0) m.c3504 = Constraint(expr= - m.x1186 <= 0) m.c3505 = Constraint(expr= - m.x1187 <= 0) m.c3506 = Constraint(expr= - m.x1188 <= 0) m.c3507 = Constraint(expr= - m.x1189 <= 0) m.c3508 = Constraint(expr= - m.x1190 <= 0) m.c3509 = Constraint(expr= - m.x1191 <= 0) m.c3510 = Constraint(expr= - m.x1192 <= 0) m.c3511 = Constraint(expr= - m.x1193 <= 0) m.c3512 = Constraint(expr= - m.x1194 <= 0) m.c3513 = Constraint(expr= - m.x1195 <= 0) m.c3514 = Constraint(expr= - m.x1196 <= 0) m.c3515 = Constraint(expr= - m.x1197 <= 0) m.c3516 = Constraint(expr= - m.x1198 <= 0) m.c3517 = Constraint(expr= - m.x1199 <= 0) m.c3518 = Constraint(expr= - m.x1200 <= 0) m.c3519 = Constraint(expr= - m.x1201 <= 0) m.c3520 = Constraint(expr= - m.x1202 <= 0) m.c3521 = Constraint(expr= - m.x1203 <= 0) m.c3522 = Constraint(expr= - m.x1204 <= 0) m.c3523 = Constraint(expr= - m.x1205 <= 0) m.c3524 = Constraint(expr= - m.x1206 <= 0) m.c3525 = Constraint(expr= - m.x1207 <= 0) m.c3526 = Constraint(expr= - m.x1208 <= 0) m.c3527 = Constraint(expr= - m.x1209 <= 0) m.c3528 = Constraint(expr= - m.x1210 <= 0) m.c3529 = Constraint(expr= - m.x1211 <= 0) m.c3530 = Constraint(expr= - m.x1212 <= 0) m.c3531 = Constraint(expr= - m.x1213 <= 0) m.c3532 = Constraint(expr= - m.x1214 <= 0) m.c3533 = Constraint(expr= - m.x1215 <= 0) m.c3534 = Constraint(expr= - m.x1216 <= 0) m.c3535 = Constraint(expr= - m.x1217 <= 0) m.c3536 = Constraint(expr= - m.x1218 <= 0) m.c3537 = Constraint(expr= - m.x1219 <= 0) m.c3538 = Constraint(expr= - m.x1220 <= 0) m.c3539 = Constraint(expr= - m.x1221 <= 0) m.c3540 = Constraint(expr= - m.x1222 <= 0) m.c3541 = Constraint(expr= - m.x1223 <= 0) m.c3542 = Constraint(expr= - m.x1224 <= 0) m.c3543 = Constraint(expr= - m.x1225 <= 0) m.c3544 = Constraint(expr= - m.x1226 <= 0) m.c3545 = Constraint(expr= - m.x1227 <= 0) m.c3546 = Constraint(expr= - m.x1228 <= 0) m.c3547 = Constraint(expr= - m.x1229 <= 0) m.c3548 = Constraint(expr= - m.x1230 <= 0) m.c3549 = Constraint(expr= - m.x1231 <= 0) m.c3550 = Constraint(expr= - m.x1232 <= 0) m.c3551 = Constraint(expr= - m.x1233 <= 0) m.c3552 = Constraint(expr= - m.x1234 <= 0) m.c3553 = Constraint(expr= - m.x1235 <= 0) m.c3554 = Constraint(expr= - m.x1236 <= 0) m.c3555 = Constraint(expr= - m.x1237 <= 0) m.c3556 = Constraint(expr= - m.x1238 <= 0) m.c3557 = Constraint(expr= - m.x1239 <= 0) m.c3558 = Constraint(expr= - m.x1240 <= 0) m.c3559 = Constraint(expr= - m.x1241 <= 0) m.c3560 = Constraint(expr= - m.x1242 <= 0) m.c3561 = Constraint(expr= - m.x1243 <= 0) m.c3562 = Constraint(expr= - m.x1244 <= 0) m.c3563 = Constraint(expr= - m.x1245 <= 0) m.c3564 = Constraint(expr= - m.x1246 <= 0) m.c3565 = Constraint(expr= - m.x1247 <= 0) m.c3566 = Constraint(expr= - m.x1248 <= 0) m.c3567 = Constraint(expr= - m.x1249 <= 0) m.c3568 = Constraint(expr= - m.x1250 <= 0) m.c3569 = Constraint(expr= - m.x1251 <= 0) m.c3570 = Constraint(expr= - m.x1252 <= 0) m.c3571 = Constraint(expr= - m.x1253 <= 0) m.c3572 = Constraint(expr= - m.x1254 <= 0) m.c3573 = Constraint(expr= - m.x1255 <= 0) m.c3574 = Constraint(expr= - m.x1256 <= 0) m.c3575 = Constraint(expr= - m.x1257 <= 0) m.c3576 = Constraint(expr= - m.x1258 <= 0) m.c3577 = Constraint(expr= - m.x1259 <= 0) m.c3578 = Constraint(expr= - m.x1260 <= 0) m.c3579 = Constraint(expr= - m.x1261 <= 0) m.c3580 = Constraint(expr= - m.x1262 <= 0) m.c3581 = Constraint(expr= - m.x1263 <= 0) m.c3582 = Constraint(expr= - m.x1264 <= 0) m.c3583 = Constraint(expr= - m.x1265 <= 0) m.c3584 = Constraint(expr= - m.x1266 <= 0) m.c3585 = Constraint(expr= - m.x1267 <= 0) m.c3586 = Constraint(expr= - m.x1268 <= 0) m.c3587 = Constraint(expr= - m.x1269 <= 0) m.c3588 = Constraint(expr= - m.x1270 <= 0) m.c3589 = Constraint(expr= - m.x1271 <= 0) m.c3590 = Constraint(expr= - m.x1272 <= 0) m.c3591 = Constraint(expr= - m.x1273 <= 0) m.c3592 = Constraint(expr= - m.x1274 <= 0) m.c3593 = Constraint(expr= - m.x1275 <= 0) m.c3594 = Constraint(expr= - m.x1276 <= 0) m.c3595 = Constraint(expr= - m.x1277 <= 0) m.c3596 = Constraint(expr= - m.x1278 <= 0) m.c3597 = Constraint(expr= - m.x1279 <= 0) m.c3598 = Constraint(expr= - m.x1280 <= 0) m.c3599 = Constraint(expr= - m.x1281 <= 0) m.c3600 = Constraint(expr= - m.x1282 <= 0) m.c3601 = Constraint(expr= - m.x1283 <= 0) m.c3602 = Constraint(expr= - m.x1284 <= 0) m.c3603 = Constraint(expr= - m.x1285 <= 0) m.c3604 = Constraint(expr= - m.x1286 <= 0) m.c3605 = Constraint(expr= - m.x1287 <= 0) m.c3606 = Constraint(expr= - m.x1288 <= 0) m.c3607 = Constraint(expr= - m.x1289 <= 0) m.c3608 = Constraint(expr= - m.x1290 <= 0) m.c3609 = Constraint(expr= - m.x1291 <= 0) m.c3610 = Constraint(expr= - m.x1292 <= 0) m.c3611 = Constraint(expr= - m.x1293 <= 0) m.c3612 = Constraint(expr= - m.x1294 <= 0) m.c3613 = Constraint(expr= - m.x1295 <= 0) m.c3614 = Constraint(expr= - m.x1296 <= 0) m.c3615 = Constraint(expr= - m.x1297 <= 0) m.c3616 = Constraint(expr= - m.x1298 <= 0) m.c3617 = Constraint(expr= - m.x1299 <= 0) m.c3618 = Constraint(expr= - m.x1300 <= 0) m.c3619 = Constraint(expr= - m.x1301 <= 0) m.c3620 = Constraint(expr= - m.x1302 <= 0) m.c3621 = Constraint(expr= - m.x1303 <= 0) m.c3622 = Constraint(expr= - m.x1304 <= 0) m.c3623 = Constraint(expr= - m.x1305 <= 0) m.c3624 = Constraint(expr= - m.x1306 <= 0) m.c3625 = Constraint(expr= - m.x1307 <= 0) m.c3626 = Constraint(expr= - m.x1308 <= 0) m.c3627 = Constraint(expr= - m.x1309 <= 0) m.c3628 = Constraint(expr= - m.x1310 <= 0) m.c3629 = Constraint(expr= - m.x1311 <= 0) m.c3630 = Constraint(expr= - m.x1312 <= 0) m.c3631 = Constraint(expr= - m.x1313 <= 0) m.c3632 = Constraint(expr= - m.x1314 <= 0) m.c3633 = Constraint(expr= - m.x1315 <= 0) m.c3634 = Constraint(expr= - m.x1316 <= 0) m.c3635 = Constraint(expr= - m.x1317 <= 0) m.c3636 = Constraint(expr= - m.x1318 <= 0) m.c3637 = Constraint(expr= - m.x1319 <= 0) m.c3638 = Constraint(expr= - m.x1320 <= 0) m.c3639 = Constraint(expr= - m.x1321 <= 0) m.c3640 = Constraint(expr= - m.x1322 <= 0) m.c3641 = Constraint(expr= - m.x1323 <= 0) m.c3642 = Constraint(expr= - m.x1324 <= 0) m.c3643 = Constraint(expr= - m.x1325 <= 0) m.c3644 = Constraint(expr= - m.x1326 <= 0) m.c3645 = Constraint(expr= - m.x1327 <= 0) m.c3646 = Constraint(expr= - m.x1328 <= 0) m.c3647 = Constraint(expr= - m.x1329 <= 0) m.c3648 = Constraint(expr= - m.x1330 <= 0) m.c3649 = Constraint(expr= - m.x1331 <= 0) m.c3650 = Constraint(expr= - m.x1332 <= 0) m.c3651 = Constraint(expr= - m.x1333 <= 0) m.c3652 = Constraint(expr= - m.x1334 <= 0) m.c3653 = Constraint(expr= - m.x1335 <= 0) m.c3654 = Constraint(expr= - m.x1336 <= 0) m.c3655 = Constraint(expr= - m.x1337 <= 0) m.c3656 = Constraint(expr= - m.x1338 <= 0) m.c3657 = Constraint(expr= - m.x1339 <= 0) m.c3658 = Constraint(expr= - m.x1340 <= 0) m.c3659 = Constraint(expr= - m.x1341 <= 0) m.c3660 = Constraint(expr= - m.x1342 <= 0) m.c3661 = Constraint(expr= - m.x1343 <= 0) m.c3662 = Constraint(expr= - m.x1344 <= 0) m.c3663 = Constraint(expr= - m.x1345 <= 0) m.c3664 = Constraint(expr= - m.x1346 <= 0) m.c3665 = Constraint(expr= - m.x1347 <= 0) m.c3666 = Constraint(expr= - m.x1348 <= 0) m.c3667 = Constraint(expr= - m.x1349 <= 0) m.c3668 = Constraint(expr= - m.x1350 <= 0) m.c3669 = Constraint(expr= - m.x1351 <= 0) m.c3670 = Constraint(expr= - m.x1352 <= 0) m.c3671 = Constraint(expr= - m.x1353 <= 0) m.c3672 = Constraint(expr= - m.x1354 <= 0) m.c3673 = Constraint(expr= - m.x1355 <= 0) m.c3674 = Constraint(expr= - m.x1356 <= 0) m.c3675 = Constraint(expr= - m.x1357 <= 0) m.c3676 = Constraint(expr= - m.x1358 <= 0) m.c3677 = Constraint(expr= - m.x1359 <= 0) m.c3678 = Constraint(expr= - m.x1360 <= 0) m.c3679 = Constraint(expr= - m.x1361 <= 0) m.c3680 = Constraint(expr= - m.x1362 <= 0) m.c3681 = Constraint(expr= - m.x1363 <= 0) m.c3682 = Constraint(expr= - m.x1364 <= 0) m.c3683 = Constraint(expr= - m.x1365 <= 0) m.c3684 = Constraint(expr= - m.x1366 <= 0) m.c3685 = Constraint(expr= - m.x1367 <= 0) m.c3686 = Constraint(expr= - m.x1368 <= 0) m.c3687 = Constraint(expr= - m.x1369 <= 0) m.c3688 = Constraint(expr= - m.x1370 <= 0) m.c3689 = Constraint(expr= - m.x1371 <= 0) m.c3690 = Constraint(expr= - m.x1372 <= 0) m.c3691 = Constraint(expr= - m.x1373 <= 0) m.c3692 = Constraint(expr= - m.x1374 <= 0) m.c3693 = Constraint(expr= - m.x1375 <= 0) m.c3694 = Constraint(expr= - m.x1376 <= 0) m.c3695 = Constraint(expr= - m.x1377 <= 0) m.c3696 = Constraint(expr= - m.x1378 <= 0) m.c3697 = Constraint(expr= - m.x1379 <= 0) m.c3698 = Constraint(expr= - m.x1380 <= 0) m.c3699 = Constraint(expr= - m.x1381 <= 0) m.c3700 = Constraint(expr= - m.x1382 <= 0) m.c3701 = Constraint(expr= - m.x1383 <= 0) m.c3702 = Constraint(expr= - m.x1384 <= 0) m.c3703 = Constraint(expr= - m.x1385 <= 0) m.c3704 = Constraint(expr= - m.x1386 <= 0) m.c3705 = Constraint(expr= - m.x1387 <= 0) m.c3706 = Constraint(expr= - m.x1388 <= 0) m.c3707 = Constraint(expr= - m.x1389 <= 0) m.c3708 = Constraint(expr= - m.x1390 <= 0) m.c3709 = Constraint(expr= - m.x1391 <= 0) m.c3710 = Constraint(expr= - m.x1392 <= 0) m.c3711 = Constraint(expr= - m.x1393 <= 0) m.c3712 = Constraint(expr= - m.x1394 <= 0) m.c3713 = Constraint(expr= - m.x1395 <= 0) m.c3714 = Constraint(expr= - m.x1396 <= 0) m.c3715 = Constraint(expr= - m.x1397 <= 0) m.c3716 = Constraint(expr= - m.x1398 <= 0) m.c3717 = Constraint(expr= - m.x1399 <= 0) m.c3718 = Constraint(expr= - m.x1400 <= 0) m.c3719 = Constraint(expr= - m.x1401 <= 0) m.c3720 = Constraint(expr= - m.x1402 <= 0) m.c3721 = Constraint(expr= - m.x1403 <= 0) m.c3722 = Constraint(expr= - m.x1404 <= 0) m.c3723 = Constraint(expr= - m.x1405 <= 0) m.c3724 = Constraint(expr= - m.x1406 <= 0) m.c3725 = Constraint(expr= - m.x1407 <= 0) m.c3726 = Constraint(expr= - m.x1408 <= 0) m.c3727 = Constraint(expr= - m.x1409 <= 0) m.c3728 = Constraint(expr= - m.x1410 <= 0) m.c3729 = Constraint(expr= - m.x1411 <= 0) m.c3730 = Constraint(expr= - m.x1412 <= 0) m.c3731 = Constraint(expr= - m.x1413 <= 0) m.c3732 = Constraint(expr= - m.x1414 <= 0) m.c3733 = Constraint(expr= - m.x1415 <= 0) m.c3734 = Constraint(expr= - m.x1416 <= 0) m.c3735 = Constraint(expr= - m.x1417 <= 0) m.c3736 = Constraint(expr= - m.x1418 <= 0) m.c3737 = Constraint(expr= - m.x1419 <= 0) m.c3738 = Constraint(expr= - m.x1420 <= 0) m.c3739 = Constraint(expr= - m.x1421 <= 0) m.c3740 = Constraint(expr= - m.x1422 <= 0) m.c3741 = Constraint(expr= - m.x1423 <= 0) m.c3742 = Constraint(expr= - m.x1424 <= 0) m.c3743 = Constraint(expr= - m.x1425 <= 0) m.c3744 = Constraint(expr= - m.x1426 <= 0) m.c3745 = Constraint(expr= - m.x1427 <= 0) m.c3746 = Constraint(expr= - m.x1428 <= 0) m.c3747 = Constraint(expr= - m.x1429 <= 0) m.c3748 = Constraint(expr= - m.x1430 <= 0) m.c3749 = Constraint(expr= - m.x1431 <= 0) m.c3750 = Constraint(expr= - m.x1432 <= 0) m.c3751 = Constraint(expr= - m.x1433 <= 0) m.c3752 = Constraint(expr= - m.x1434 <= 0) m.c3753 = Constraint(expr= - m.x1435 <= 0) m.c3754 = Constraint(expr= - m.x1436 <= 0) m.c3755 = Constraint(expr= - m.x1437 <= 0) m.c3756 = Constraint(expr= - m.x1438 <= 0) m.c3757 = Constraint(expr= - m.x1439 <= 0) m.c3758 = Constraint(expr= - m.x1440 <= 0) m.c3759 = Constraint(expr= - m.x1441 <= 0) m.c3760 = Constraint(expr= m.x1154 <= 0) m.c3761 = Constraint(expr= m.x1155 <= 0) m.c3762 = Constraint(expr= m.x1156 <= 0) m.c3763 = Constraint(expr= m.x1157 <= 0) m.c3764 = Constraint(expr= m.x1158 <= 0) m.c3765 = Constraint(expr= m.x1159 <= 0) m.c3766 = Constraint(expr= m.x1160 <= 0) m.c3767 = Constraint(expr= m.x1161 <= 0) m.c3768 = Constraint(expr= m.x1162 <= 0) m.c3769 = Constraint(expr= m.x1163 <= 0) m.c3770 = Constraint(expr= m.x1164 <= 0) m.c3771 = Constraint(expr= m.x1165 <= 0) m.c3772 = Constraint(expr= m.x1166 <= 0) m.c3773 = Constraint(expr= m.x1167 <= 0) m.c3774 = Constraint(expr= m.x1168 <= 0) m.c3775 = Constraint(expr= m.x1169 <= 0) m.c3776 = Constraint(expr= m.x1170 <= 0) m.c3777 = Constraint(expr= m.x1171 <= 0) m.c3778 = Constraint(expr= m.x1172 <= 0) m.c3779 = Constraint(expr= m.x1173 <= 0) m.c3780 = Constraint(expr= m.x1174 <= 0) m.c3781 = Constraint(expr= m.x1175 <= 0) m.c3782 = Constraint(expr= m.x1176 <= 0) m.c3783 = Constraint(expr= m.x1177 <= 0) m.c3784 = Constraint(expr= m.x1178 <= 0) m.c3785 = Constraint(expr= m.x1179 <= 0) m.c3786 = Constraint(expr= m.x1180 <= 0) m.c3787 = Constraint(expr= m.x1181 <= 0) m.c3788 = Constraint(expr= m.x1182 <= 0) m.c3789 = Constraint(expr= m.x1183 <= 0) m.c3790 = Constraint(expr= m.x1184 <= 0) m.c3791 = Constraint(expr= m.x1185 <= 0) m.c3792 = Constraint(expr= m.x1186 <= 0) m.c3793 = Constraint(expr= m.x1187 <= 0) m.c3794 = Constraint(expr= m.x1188 <= 0) m.c3795 = Constraint(expr= m.x1189 <= 0) m.c3796 = Constraint(expr= m.x1190 <= 0) m.c3797 = Constraint(expr= m.x1191 <= 0) m.c3798 = Constraint(expr= m.x1192 <= 0) m.c3799 = Constraint(expr= m.x1193 <= 0) m.c3800 = Constraint(expr= m.x1194 <= 0) m.c3801 = Constraint(expr= m.x1195 <= 0) m.c3802 = Constraint(expr= m.x1196 <= 0) m.c3803 = Constraint(expr= m.x1197 <= 0) m.c3804 = Constraint(expr= m.x1198 <= 0) m.c3805 = Constraint(expr= m.x1199 <= 0) m.c3806 = Constraint(expr= m.x1200 <= 0) m.c3807 = Constraint(expr= m.x1201 <= 0) m.c3808 = Constraint(expr= m.x1202 <= 0) m.c3809 = Constraint(expr= m.x1203 <= 0) m.c3810 = Constraint(expr= m.x1204 <= 0) m.c3811 = Constraint(expr= m.x1205 <= 0) m.c3812 = Constraint(expr= m.x1206 <= 0) m.c3813 = Constraint(expr= m.x1207 <= 0) m.c3814 = Constraint(expr= m.x1208 <= 0) m.c3815 = Constraint(expr= m.x1209 <= 0) m.c3816 = Constraint(expr= m.x1210 <= 0) m.c3817 = Constraint(expr= m.x1211 <= 0) m.c3818 = Constraint(expr= m.x1212 <= 0) m.c3819 = Constraint(expr= m.x1213 <= 0) m.c3820 = Constraint(expr= m.x1214 <= 0) m.c3821 = Constraint(expr= m.x1215 <= 0) m.c3822 = Constraint(expr= m.x1216 <= 0) m.c3823 = Constraint(expr= m.x1217 <= 0) m.c3824 = Constraint(expr= m.x1218 <= 0) m.c3825 = Constraint(expr= m.x1219 <= 0) m.c3826 = Constraint(expr= m.x1220 <= 0) m.c3827 = Constraint(expr= m.x1221 <= 0) m.c3828 = Constraint(expr= m.x1222 <= 0) m.c3829 = Constraint(expr= m.x1223 <= 0) m.c3830 = Constraint(expr= m.x1224 <= 0) m.c3831 = Constraint(expr= m.x1225 <= 0) m.c3832 = Constraint(expr= m.x1226 <= 0) m.c3833 = Constraint(expr= m.x1227 <= 0) m.c3834 = Constraint(expr= m.x1228 <= 0) m.c3835 = Constraint(expr= m.x1229 <= 0) m.c3836 = Constraint(expr= m.x1230 <= 0) m.c3837 = Constraint(expr= m.x1231 <= 0) m.c3838 = Constraint(expr= m.x1232 <= 0) m.c3839 = Constraint(expr= m.x1233 <= 0) m.c3840 = Constraint(expr= m.x1234 <= 0) m.c3841 = Constraint(expr= m.x1235 <= 0) m.c3842 = Constraint(expr= m.x1236 <= 0) m.c3843 = Constraint(expr= m.x1237 <= 0) m.c3844 = Constraint(expr= m.x1238 <= 0) m.c3845 = Constraint(expr= m.x1239 <= 0) m.c3846 = Constraint(expr= m.x1240 <= 0) m.c3847 = Constraint(expr= m.x1241 <= 0) m.c3848 = Constraint(expr= m.x1242 <= 0) m.c3849 = Constraint(expr= m.x1243 <= 0) m.c3850 = Constraint(expr= m.x1244 <= 0) m.c3851 = Constraint(expr= m.x1245 <= 0) m.c3852 = Constraint(expr= m.x1246 <= 0) m.c3853 = Constraint(expr= m.x1247 <= 0) m.c3854 = Constraint(expr= m.x1248 <= 0) m.c3855 = Constraint(expr= m.x1249 <= 0) m.c3856 = Constraint(expr= m.x1250 <= 0) m.c3857 = Constraint(expr= m.x1251 <= 0) m.c3858 = Constraint(expr= m.x1252 <= 0) m.c3859 = Constraint(expr= m.x1253 <= 0) m.c3860 = Constraint(expr= m.x1254 <= 0) m.c3861 = Constraint(expr= m.x1255 <= 0) m.c3862 = Constraint(expr= m.x1256 <= 0) m.c3863 = Constraint(expr= m.x1257 <= 0) m.c3864 = Constraint(expr= m.x1258 <= 0) m.c3865 = Constraint(expr= m.x1259 <= 0) m.c3866 = Constraint(expr= m.x1260 <= 0) m.c3867 = Constraint(expr= m.x1261 <= 0) m.c3868 = Constraint(expr= m.x1262 <= 0) m.c3869 = Constraint(expr= m.x1263 <= 0) m.c3870 = Constraint(expr= m.x1264 <= 0) m.c3871 = Constraint(expr= m.x1265 <= 0) m.c3872 = Constraint(expr= m.x1266 <= 0) m.c3873 = Constraint(expr= m.x1267 <= 0) m.c3874 = Constraint(expr= m.x1268 <= 0) m.c3875 = Constraint(expr= m.x1269 <= 0) m.c3876 = Constraint(expr= m.x1270 <= 0) m.c3877 = Constraint(expr= m.x1271 <= 0) m.c3878 = Constraint(expr= m.x1272 <= 0) m.c3879 = Constraint(expr= m.x1273 <= 0) m.c3880 = Constraint(expr= m.x1274 <= 0) m.c3881 = Constraint(expr= m.x1275 <= 0) m.c3882 = Constraint(expr= m.x1276 <= 0) m.c3883 = Constraint(expr= m.x1277 <= 0) m.c3884 = Constraint(expr= m.x1278 <= 0) m.c3885 = Constraint(expr= m.x1279 <= 0) m.c3886 = Constraint(expr= m.x1280 <= 0) m.c3887 = Constraint(expr= m.x1281 <= 0) m.c3888 = Constraint(expr= m.x1282 <= 0) m.c3889 = Constraint(expr= m.x1283 <= 0) m.c3890 = Constraint(expr= m.x1284 <= 0) m.c3891 = Constraint(expr= m.x1285 <= 0) m.c3892 = Constraint(expr= m.x1286 <= 0) m.c3893 = Constraint(expr= m.x1287 <= 0) m.c3894 = Constraint(expr= m.x1288 <= 0) m.c3895 = Constraint(expr= m.x1289 <= 0) m.c3896 = Constraint(expr= m.x1290 <= 0) m.c3897 = Constraint(expr= m.x1291 <= 0) m.c3898 = Constraint(expr= m.x1292 <= 0) m.c3899 = Constraint(expr= m.x1293 <= 0) m.c3900 = Constraint(expr= m.x1294 <= 0) m.c3901 = Constraint(expr= m.x1295 <= 0) m.c3902 = Constraint(expr= m.x1296 <= 0) m.c3903 = Constraint(expr= m.x1297 <= 0) m.c3904 = Constraint(expr= m.x1298 <= 0) m.c3905 = Constraint(expr= m.x1299 <= 0) m.c3906 = Constraint(expr= m.x1300 <= 0) m.c3907 = Constraint(expr= m.x1301 <= 0) m.c3908 = Constraint(expr= m.x1302 <= 0) m.c3909 = Constraint(expr= m.x1303 <= 0) m.c3910 = Constraint(expr= m.x1304 <= 0) m.c3911 = Constraint(expr= m.x1305 <= 0) m.c3912 = Constraint(expr= m.x1306 <= 0) m.c3913 = Constraint(expr= m.x1307 <= 0) m.c3914 = Constraint(expr= m.x1308 <= 0) m.c3915 = Constraint(expr= m.x1309 <= 0) m.c3916 = Constraint(expr= m.x1310 <= 0) m.c3917 = Constraint(expr= m.x1311 <= 0) m.c3918 = Constraint(expr= m.x1312 <= 0) m.c3919 = Constraint(expr= m.x1313 <= 0) m.c3920 = Constraint(expr= m.x1314 <= 0) m.c3921 = Constraint(expr= m.x1315 <= 0) m.c3922 = Constraint(expr= m.x1316 <= 0) m.c3923 = Constraint(expr= m.x1317 <= 0) m.c3924 = Constraint(expr= m.x1318 <= 0) m.c3925 = Constraint(expr= m.x1319 <= 0) m.c3926 = Constraint(expr= m.x1320 <= 0) m.c3927 = Constraint(expr= m.x1321 <= 0) m.c3928 = Constraint(expr= m.x1322 <= 0) m.c3929 = Constraint(expr= m.x1323 <= 0) m.c3930 = Constraint(expr= m.x1324 <= 0) m.c3931 = Constraint(expr= m.x1325 <= 0) m.c3932 = Constraint(expr= m.x1326 <= 0) m.c3933 = Constraint(expr= m.x1327 <= 0) m.c3934 = Constraint(expr= m.x1328 <= 0) m.c3935 = Constraint(expr= m.x1329 <= 0) m.c3936 = Constraint(expr= m.x1330 <= 0) m.c3937 = Constraint(expr= m.x1331 <= 0) m.c3938 = Constraint(expr= m.x1332 <= 0) m.c3939 = Constraint(expr= m.x1333 <= 0) m.c3940 = Constraint(expr= m.x1334 <= 0) m.c3941 = Constraint(expr= m.x1335 <= 0) m.c3942 = Constraint(expr= m.x1336 <= 0) m.c3943 = Constraint(expr= m.x1337 <= 0) m.c3944 = Constraint(expr= m.x1338 <= 0) m.c3945 = Constraint(expr= m.x1339 <= 0) m.c3946 = Constraint(expr= m.x1340 <= 0) m.c3947 = Constraint(expr= m.x1341 <= 0) m.c3948 = Constraint(expr= m.x1342 <= 0) m.c3949 = Constraint(expr= m.x1343 <= 0) m.c3950 = Constraint(expr= m.x1344 <= 0) m.c3951 = Constraint(expr= m.x1345 <= 0) m.c3952 = Constraint(expr= m.x1346 <= 0) m.c3953 = Constraint(expr= m.x1347 <= 0) m.c3954 = Constraint(expr= m.x1348 <= 0) m.c3955 = Constraint(expr= m.x1349 <= 0) m.c3956 = Constraint(expr= m.x1350 <= 0) m.c3957 = Constraint(expr= m.x1351 <= 0) m.c3958 = Constraint(expr= m.x1352 <= 0) m.c3959 = Constraint(expr= m.x1353 <= 0) m.c3960 = Constraint(expr= m.x1354 <= 0) m.c3961 = Constraint(expr= m.x1355 <= 0) m.c3962 = Constraint(expr= m.x1356 <= 0) m.c3963 = Constraint(expr= m.x1357 <= 0) m.c3964 = Constraint(expr= m.x1358 <= 0) m.c3965 = Constraint(expr= m.x1359 <= 0) m.c3966 = Constraint(expr= m.x1360 <= 0) m.c3967 = Constraint(expr= m.x1361 <= 0) m.c3968 = Constraint(expr= m.x1362 <= 0) m.c3969 = Constraint(expr= m.x1363 <= 0) m.c3970 = Constraint(expr= m.x1364 <= 0) m.c3971 = Constraint(expr= m.x1365 <= 0) m.c3972 = Constraint(expr= m.x1366 <= 0) m.c3973 = Constraint(expr= m.x1367 <= 0) m.c3974 = Constraint(expr= m.x1368 <= 0) m.c3975 = Constraint(expr= m.x1369 <= 0) m.c3976 = Constraint(expr= m.x1370 <= 0) m.c3977 = Constraint(expr= m.x1371 <= 0) m.c3978 = Constraint(expr= m.x1372 <= 0) m.c3979 = Constraint(expr= m.x1373 <= 0) m.c3980 = Constraint(expr= m.x1374 <= 0) m.c3981 = Constraint(expr= m.x1375 <= 0) m.c3982 = Constraint(expr= m.x1376 <= 0) m.c3983 = Constraint(expr= m.x1377 <= 0) m.c3984 = Constraint(expr= m.x1378 <= 0) m.c3985 = Constraint(expr= m.x1379 <= 0) m.c3986 = Constraint(expr= m.x1380 <= 0) m.c3987 = Constraint(expr= m.x1381 <= 0) m.c3988 = Constraint(expr= m.x1382 <= 0) m.c3989 = Constraint(expr= m.x1383 <= 0) m.c3990 = Constraint(expr= m.x1384 <= 0) m.c3991 = Constraint(expr= m.x1385 <= 0) m.c3992 = Constraint(expr= m.x1386 <= 0) m.c3993 = Constraint(expr= m.x1387 <= 0) m.c3994 = Constraint(expr= m.x1388 <= 0) m.c3995 = Constraint(expr= m.x1389 <= 0) m.c3996 = Constraint(expr= m.x1390 <= 0) m.c3997 = Constraint(expr= m.x1391 <= 0) m.c3998 = Constraint(expr= m.x1392 <= 0) m.c3999 = Constraint(expr= m.x1393 <= 0) m.c4000 = Constraint(expr= m.x1394 <= 0) m.c4001 = Constraint(expr= m.x1395 <= 0) m.c4002 = Constraint(expr= m.x1396 <= 0) m.c4003 = Constraint(expr= m.x1397 <= 0) m.c4004 = Constraint(expr= m.x1398 <= 0) m.c4005 = Constraint(expr= m.x1399 <= 0) m.c4006 = Constraint(expr= m.x1400 <= 0) m.c4007 = Constraint(expr= m.x1401 <= 0) m.c4008 = Constraint(expr= m.x1402 <= 0) m.c4009 = Constraint(expr= m.x1403 <= 0) m.c4010 = Constraint(expr= m.x1404 <= 0) m.c4011 = Constraint(expr= m.x1405 <= 0) m.c4012 = Constraint(expr= m.x1406 <= 0) m.c4013 = Constraint(expr= m.x1407 <= 0) m.c4014 = Constraint(expr= m.x1408 <= 0) m.c4015 = Constraint(expr= m.x1409 <= 0) m.c4016 = Constraint(expr= m.x1410 <= 0) m.c4017 = Constraint(expr= m.x1411 <= 0) m.c4018 = Constraint(expr= m.x1412 <= 0) m.c4019 = Constraint(expr= m.x1413 <= 0) m.c4020 = Constraint(expr= m.x1414 <= 0) m.c4021 = Constraint(expr= m.x1415 <= 0) m.c4022 = Constraint(expr= m.x1416 <= 0) m.c4023 = Constraint(expr= m.x1417 <= 0) m.c4024 = Constraint(expr= m.x1418 <= 0) m.c4025 = Constraint(expr= m.x1419 <= 0) m.c4026 = Constraint(expr= m.x1420 <= 0) m.c4027 = Constraint(expr= m.x1421 <= 0) m.c4028 = Constraint(expr= m.x1422 <= 0) m.c4029 = Constraint(expr= m.x1423 <= 0) m.c4030 = Constraint(expr= m.x1424 <= 0) m.c4031 = Constraint(expr= m.x1425 <= 0) m.c4032 = Constraint(expr= m.x1426 <= 0) m.c4033 = Constraint(expr= m.x1427 <= 0) m.c4034 = Constraint(expr= m.x1428 <= 0) m.c4035 = Constraint(expr= m.x1429 <= 0) m.c4036 = Constraint(expr= m.x1430 <= 0) m.c4037 = Constraint(expr= m.x1431 <= 0) m.c4038 = Constraint(expr= m.x1432 <= 0) m.c4039 = Constraint(expr= m.x1433 <= 0) m.c4040 = Constraint(expr= m.x1434 <= 0) m.c4041 = Constraint(expr= m.x1435 <= 0) m.c4042 = Constraint(expr= m.x1436 <= 0) m.c4043 = Constraint(expr= m.x1437 <= 0) m.c4044 = Constraint(expr= m.x1438 <= 0) m.c4045 = Constraint(expr= m.x1439 <= 0) m.c4046 = Constraint(expr= m.x1440 <= 0) m.c4047 = Constraint(expr= m.x1441 <= 0) m.c4048 = Constraint(expr= - m.x770 + 0.0231802*m.b2306 <= 0) m.c4049 = Constraint(expr= - m.x771 + 0.0231802*m.b2307 <= 0) m.c4050 = Constraint(expr= - m.x772 + 0.0231802*m.b2308 <= 0) m.c4051 = Constraint(expr= - m.x773 + 0.0231802*m.b2309 <= 0) m.c4052 = Constraint(expr= - m.x774 + 0.0231802*m.b2310 <= 0) m.c4053 = Constraint(expr= - m.x775 + 0.0231802*m.b2311 <= 0) m.c4054 = Constraint(expr= - m.x776 + 0.0231802*m.b2312 <= 0) m.c4055 = Constraint(expr= - m.x777 + 0.0231802*m.b2313 <= 0) m.c4056 = Constraint(expr= - m.x778 + 0.0231802*m.b2314 <= 0) m.c4057 = Constraint(expr= - m.x779 + 0.0231802*m.b2315 <= 0) m.c4058 = Constraint(expr= - m.x780 + 0.0231802*m.b2316 <= 0) m.c4059 = Constraint(expr= - m.x781 + 0.0231802*m.b2317 <= 0) m.c4060 = Constraint(expr= - m.x782 + 0.0231802*m.b2318 <= 0) m.c4061 = Constraint(expr= - m.x783 + 0.0231802*m.b2319 <= 0) m.c4062 = Constraint(expr= - m.x784 + 0.0231802*m.b2320 <= 0) m.c4063 = Constraint(expr= - m.x785 + 0.0231802*m.b2321 <= 0) m.c4064 = Constraint(expr= - m.x786 + 0.0231802*m.b2322 <= 0) m.c4065 = Constraint(expr= - m.x787 + 0.0231802*m.b2323 <= 0) m.c4066 = Constraint(expr= - m.x788 + 0.0231802*m.b2324 <= 0) m.c4067 = Constraint(expr= - m.x789 + 0.0231802*m.b2325 <= 0) m.c4068 = Constraint(expr= - m.x790 + 0.0231802*m.b2326 <= 0) m.c4069 = Constraint(expr= - m.x791 + 0.0231802*m.b2327 <= 0) m.c4070 = Constraint(expr= - m.x792 + 0.0231802*m.b2328 <= 0) m.c4071 = Constraint(expr= - m.x793 + 0.0231802*m.b2329 <= 0) m.c4072 = Constraint(expr= - m.x794 + 0.0231802*m.b2330 <= 0) m.c4073 = Constraint(expr= - m.x795 + 0.0231802*m.b2331 <= 0) m.c4074 = Constraint(expr= - m.x796 + 0.0231802*m.b2332 <= 0) m.c4075 = Constraint(expr= - m.x797 + 0.0231802*m.b2333 <= 0) m.c4076 = Constraint(expr= - m.x798 + 0.0231802*m.b2334 <= 0) m.c4077 = Constraint(expr= - m.x799 + 0.0231802*m.b2335 <= 0) m.c4078 = Constraint(expr= - m.x800 + 0.0231802*m.b2336 <= 0) m.c4079 = Constraint(expr= - m.x801 + 0.0231802*m.b2337 <= 0) m.c4080 = Constraint(expr= - m.x802 + 0.0231802*m.b2338 <= 0) m.c4081 = Constraint(expr= - m.x803 + 0.0231802*m.b2339 <= 0) m.c4082 = Constraint(expr= - m.x804 + 0.0231802*m.b2340 <= 0) m.c4083 = Constraint(expr= - m.x805 + 0.0231802*m.b2341 <= 0) m.c4084 = Constraint(expr= - m.x806 + 0.0231802*m.b2342 <= 0) m.c4085 = Constraint(expr= - m.x807 + 0.0231802*m.b2343 <= 0) m.c4086 = Constraint(expr= - m.x808 + 0.0231802*m.b2344 <= 0) m.c4087 = Constraint(expr= - m.x809 + 0.0231802*m.b2345 <= 0) m.c4088 = Constraint(expr= - m.x810 + 0.0231802*m.b2346 <= 0) m.c4089 = Constraint(expr= - m.x811 + 0.0231802*m.b2347 <= 0) m.c4090 = Constraint(expr= - m.x812 + 0.0231802*m.b2348 <= 0) m.c4091 = Constraint(expr= - m.x813 + 0.0231802*m.b2349 <= 0) m.c4092 = Constraint(expr= - m.x814 + 0.0231802*m.b2350 <= 0) m.c4093 = Constraint(expr= - m.x815 + 0.0231802*m.b2351 <= 0) m.c4094 = Constraint(expr= - m.x816 + 0.0231802*m.b2352 <= 0) m.c4095 = Constraint(expr= - m.x817 + 0.0231802*m.b2353 <= 0) m.c4096 = Constraint(expr= - m.x818 + 0.0231802*m.b2354 <= 0) m.c4097 = Constraint(expr= - m.x819 + 0.0231802*m.b2355 <= 0) m.c4098 = Constraint(expr= - m.x820 + 0.0231802*m.b2356 <= 0) m.c4099 = Constraint(expr= - m.x821 + 0.0231802*m.b2357 <= 0) m.c4100 = Constraint(expr= - m.x822 + 0.0231802*m.b2358 <= 0) m.c4101 = Constraint(expr= - m.x823 + 0.0231802*m.b2359 <= 0) m.c4102 = Constraint(expr= - m.x824 + 0.0231802*m.b2360 <= 0) m.c4103 = Constraint(expr= - m.x825 + 0.0231802*m.b2361 <= 0) m.c4104 = Constraint(expr= - m.x826 + 0.0231802*m.b2362 <= 0) m.c4105 = Constraint(expr= - m.x827 + 0.0231802*m.b2363 <= 0) m.c4106 = Constraint(expr= - m.x828 + 0.0231802*m.b2364 <= 0) m.c4107 = Constraint(expr= - m.x829 + 0.0231802*m.b2365 <= 0) m.c4108 = Constraint(expr= - m.x830 + 0.0231802*m.b2366 <= 0) m.c4109 = Constraint(expr= - m.x831 + 0.0231802*m.b2367 <= 0) m.c4110 = Constraint(expr= - m.x832 + 0.0231802*m.b2368 <= 0) m.c4111 = Constraint(expr= - m.x833 + 0.0231802*m.b2369 <= 0) m.c4112 = Constraint(expr= - m.x834 + 0.0231802*m.b2370 <= 0) m.c4113 = Constraint(expr= - m.x835 + 0.0231802*m.b2371 <= 0) m.c4114 = Constraint(expr= - m.x836 + 0.0231802*m.b2372 <= 0) m.c4115 = Constraint(expr= - m.x837 + 0.0231802*m.b2373 <= 0) m.c4116 = Constraint(expr= - m.x838 + 0.0231802*m.b2374 <= 0) m.c4117 = Constraint(expr= - m.x839 + 0.0231802*m.b2375 <= 0) m.c4118 = Constraint(expr= - m.x840 + 0.0231802*m.b2376 <= 0) m.c4119 = Constraint(expr= - m.x841 + 0.0231802*m.b2377 <= 0) m.c4120 = Constraint(expr= - m.x842 + 0.0231802*m.b2378 <= 0) m.c4121 = Constraint(expr= - m.x843 + 0.0231802*m.b2379 <= 0) m.c4122 = Constraint(expr= - m.x844 + 0.0231802*m.b2380 <= 0) m.c4123 = Constraint(expr= - m.x845 + 0.0231802*m.b2381 <= 0) m.c4124 = Constraint(expr= - m.x846 + 0.0231802*m.b2382 <= 0) m.c4125 = Constraint(expr= - m.x847 + 0.0231802*m.b2383 <= 0) m.c4126 = Constraint(expr= - m.x848 + 0.0231802*m.b2384 <= 0) m.c4127 = Constraint(expr= - m.x849 + 0.0231802*m.b2385 <= 0) m.c4128 = Constraint(expr= - m.x850 + 0.0231802*m.b2386 <= 0) m.c4129 = Constraint(expr= - m.x851 + 0.0231802*m.b2387 <= 0) m.c4130 = Constraint(expr= - m.x852 + 0.0231802*m.b2388 <= 0) m.c4131 = Constraint(expr= - m.x853 + 0.0231802*m.b2389 <= 0) m.c4132 = Constraint(expr= - m.x854 + 0.0231802*m.b2390 <= 0) m.c4133 = Constraint(expr= - m.x855 + 0.0231802*m.b2391 <= 0) m.c4134 = Constraint(expr= - m.x856 + 0.0231802*m.b2392 <= 0) m.c4135 = Constraint(expr= - m.x857 + 0.0231802*m.b2393 <= 0) m.c4136 = Constraint(expr= - m.x858 + 0.0231802*m.b2394 <= 0) m.c4137 = Constraint(expr= - m.x859 + 0.0231802*m.b2395 <= 0) m.c4138 = Constraint(expr= - m.x860 + 0.0231802*m.b2396 <= 0) m.c4139 = Constraint(expr= - m.x861 + 0.0231802*m.b2397 <= 0) m.c4140 = Constraint(expr= - m.x862 + 0.0231802*m.b2398 <= 0) m.c4141 = Constraint(expr= - m.x863 + 0.0231802*m.b2399 <= 0) m.c4142 = Constraint(expr= - m.x864 + 0.0231802*m.b2400 <= 0) m.c4143 = Constraint(expr= - m.x865 + 0.0231802*m.b2401 <= 0) m.c4144 = Constraint(expr= - m.x866 + 10.8589*m.b2210 <= 0) m.c4145 = Constraint(expr= - m.x867 + 10.83*m.b2211 <= 0) m.c4146 = Constraint(expr= - m.x868 + 10.8155*m.b2212 <= 0) m.c4147 = Constraint(expr= - m.x869 + 10.7866*m.b2213 <= 0) m.c4148 = Constraint(expr= - m.x870 + 10.7721*m.b2214 <= 0) m.c4149 = Constraint(expr= - m.x871 + 10.7576*m.b2215 <= 0) m.c4150 = Constraint(expr= - m.x872 + 10.7721*m.b2216 <= 0) m.c4151 = Constraint(expr= - m.x873 + 10.801*m.b2217 <= 0) m.c4152 = Constraint(expr= - m.x874 + 10.8734*m.b2218 <= 0) m.c4153 = Constraint(expr= - m.x875 + 11.018*m.b2219 <= 0) m.c4154 = Constraint(expr= - m.x876 + 11.2495*m.b2220 <= 0) m.c4155 = Constraint(expr= - m.x877 + 11.5099*m.b2221 <= 0) m.c4156 = Constraint(expr= - m.x878 + 11.8136*m.b2222 <= 0) m.c4157 = Constraint(expr= - m.x879 + 11.886*m.b2223 <= 0) m.c4158 = Constraint(expr= - m.x880 + 11.669*m.b2224 <= 0) m.c4159 = Constraint(expr= - m.x881 + 11.6111*m.b2225 <= 0) m.c4160 = Constraint(expr= - m.x882 + 11.4954*m.b2226 <= 0) m.c4161 = Constraint(expr= - m.x883 + 11.3073*m.b2227 <= 0) m.c4162 = Constraint(expr= - m.x884 + 11.1916*m.b2228 <= 0) m.c4163 = Constraint(expr= - m.x885 + 11.1337*m.b2229 <= 0) m.c4164 = Constraint(expr= - m.x886 + 11.0759*m.b2230 <= 0) m.c4165 = Constraint(expr= - m.x887 + 11.018*m.b2231 <= 0) m.c4166 = Constraint(expr= - m.x888 + 10.9746*m.b2232 <= 0) m.c4167 = Constraint(expr= - m.x889 + 10.9312*m.b2233 <= 0) m.c4168 = Constraint(expr= - m.x890 + 11.1482*m.b2234 <= 0) m.c4169 = Constraint(expr= - m.x891 + 11.2639*m.b2235 <= 0) m.c4170 = Constraint(expr= - m.x892 + 11.3941*m.b2236 <= 0) m.c4171 = Constraint(expr= - m.x893 + 11.5099*m.b2237 <= 0) m.c4172 = Constraint(expr= - m.x894 + 11.64*m.b2238 <= 0) m.c4173 = Constraint(expr= - m.x895 + 11.6256*m.b2239 <= 0) m.c4174 = Constraint(expr= - m.x896 + 11.64*m.b2240 <= 0) m.c4175 = Constraint(expr= - m.x897 + 11.8136*m.b2241 <= 0) m.c4176 = Constraint(expr= - m.x898 + 11.886*m.b2242 <= 0) m.c4177 = Constraint(expr= - m.x899 + 12.1753*m.b2243 <= 0) m.c4178 = Constraint(expr= - m.x900 + 12.2621*m.b2244 <= 0) m.c4179 = Constraint(expr= - m.x901 + 12.3778*m.b2245 <= 0) m.c4180 = Constraint(expr= - m.x902 + 12.6815*m.b2246 <= 0) m.c4181 = Constraint(expr= - m.x903 + 12.8985*m.b2247 <= 0) m.c4182 = Constraint(expr= - m.x904 + 12.8262*m.b2248 <= 0) m.c4183 = Constraint(expr= - m.x905 + 12.6237*m.b2249 <= 0) m.c4184 = Constraint(expr= - m.x906 + 12.508*m.b2250 <= 0) m.c4185 = Constraint(expr= - m.x907 + 12.1753*m.b2251 <= 0) m.c4186 = Constraint(expr= - m.x908 + 11.9149*m.b2252 <= 0) m.c4187 = Constraint(expr= - m.x909 + 11.857*m.b2253 <= 0) m.c4188 = Constraint(expr= - m.x910 + 11.6545*m.b2254 <= 0) m.c4189 = Constraint(expr= - m.x911 + 11.7413*m.b2255 <= 0) m.c4190 = Constraint(expr= - m.x912 + 11.6979*m.b2256 <= 0) m.c4191 = Constraint(expr= - m.x913 + 10.9312*m.b2257 <= 0) m.c4192 = Constraint(expr= - m.x914 + 10.8589*m.b2258 <= 0) m.c4193 = Constraint(expr= - m.x915 + 10.83*m.b2259 <= 0) m.c4194 = Constraint(expr= - m.x916 + 10.8155*m.b2260 <= 0) m.c4195 = Constraint(expr= - m.x917 + 10.7866*m.b2261 <= 0) m.c4196 = Constraint(expr= - m.x918 + 10.7721*m.b2262 <= 0) m.c4197 = Constraint(expr= - m.x919 + 10.7576*m.b2263 <= 0) m.c4198 = Constraint(expr= - m.x920 + 10.7721*m.b2264 <= 0) m.c4199 = Constraint(expr= - m.x921 + 10.801*m.b2265 <= 0) m.c4200 = Constraint(expr= - m.x922 + 10.8734*m.b2266 <= 0) m.c4201 = Constraint(expr= - m.x923 + 11.018*m.b2267 <= 0) m.c4202 = Constraint(expr= - m.x924 + 11.2495*m.b2268 <= 0) m.c4203 = Constraint(expr= - m.x925 + 11.5099*m.b2269 <= 0) m.c4204 = Constraint(expr= - m.x926 + 11.8136*m.b2270 <= 0) m.c4205 = Constraint(expr= - m.x927 + 11.886*m.b2271 <= 0) m.c4206 = Constraint(expr= - m.x928 + 11.669*m.b2272 <= 0) m.c4207 = Constraint(expr= - m.x929 + 11.6111*m.b2273 <= 0) m.c4208 = Constraint(expr= - m.x930 + 11.4954*m.b2274 <= 0) m.c4209 = Constraint(expr= - m.x931 + 11.3073*m.b2275 <= 0) m.c4210 = Constraint(expr= - m.x932 + 11.1916*m.b2276 <= 0) m.c4211 = Constraint(expr= - m.x933 + 11.1337*m.b2277 <= 0) m.c4212 = Constraint(expr= - m.x934 + 11.0759*m.b2278 <= 0) m.c4213 = Constraint(expr= - m.x935 + 11.018*m.b2279 <= 0) m.c4214 = Constraint(expr= - m.x936 + 10.9746*m.b2280 <= 0) m.c4215 = Constraint(expr= - m.x937 + 10.9312*m.b2281 <= 0) m.c4216 = Constraint(expr= - m.x938 + 11.1482*m.b2282 <= 0) m.c4217 = Constraint(expr= - m.x939 + 11.2639*m.b2283 <= 0) m.c4218 = Constraint(expr= - m.x940 + 11.3941*m.b2284 <= 0) m.c4219 = Constraint(expr= - m.x941 + 11.5099*m.b2285 <= 0) m.c4220 = Constraint(expr= - m.x942 + 11.64*m.b2286 <= 0) m.c4221 = Constraint(expr= - m.x943 + 11.6256*m.b2287 <= 0) m.c4222 = Constraint(expr= - m.x944 + 11.64*m.b2288 <= 0) m.c4223 = Constraint(expr= - m.x945 + 11.8136*m.b2289 <= 0) m.c4224 = Constraint(expr= - m.x946 + 11.886*m.b2290 <= 0) m.c4225 = Constraint(expr= - m.x947 + 12.1753*m.b2291 <= 0) m.c4226 = Constraint(expr= - m.x948 + 12.2621*m.b2292 <= 0) m.c4227 = Constraint(expr= - m.x949 + 12.3778*m.b2293 <= 0) m.c4228 = Constraint(expr= - m.x950 + 12.6815*m.b2294 <= 0) m.c4229 = Constraint(expr= - m.x951 + 12.8985*m.b2295 <= 0) m.c4230 = Constraint(expr= - m.x952 + 12.8262*m.b2296 <= 0) m.c4231 = Constraint(expr= - m.x953 + 12.6237*m.b2297 <= 0) m.c4232 = Constraint(expr= - m.x954 + 12.508*m.b2298 <= 0) m.c4233 = Constraint(expr= - m.x955 + 12.1753*m.b2299 <= 0) m.c4234 = Constraint(expr= - m.x956 + 11.9149*m.b2300 <= 0) m.c4235 = Constraint(expr= - m.x957 + 11.857*m.b2301 <= 0) m.c4236 = Constraint(expr= - m.x958 + 11.6545*m.b2302 <= 0) m.c4237 = Constraint(expr= - m.x959 + 11.7413*m.b2303 <= 0) m.c4238 = Constraint(expr= - m.x960 + 11.6979*m.b2304 <= 0) m.c4239 = Constraint(expr= - m.x961 + 10.9312*m.b2305 <= 0) m.c4240 = Constraint(expr= - m.x962 + 5.3342*m.b2018 <= 0) m.c4241 = Constraint(expr= - m.x963 + 5.33199*m.b2019 <= 0) m.c4242 = Constraint(expr= - m.x964 + 5.33088*m.b2020 <= 0) m.c4243 = Constraint(expr= - m.x965 + 5.32866*m.b2021 <= 0) m.c4244 = Constraint(expr= - m.x966 + 5.32755*m.b2022 <= 0) m.c4245 = Constraint(expr= - m.x967 + 5.32644*m.b2023 <= 0) m.c4246 = Constraint(expr= - m.x968 + 5.32755*m.b2024 <= 0) m.c4247 = Constraint(expr= - m.x969 + 5.32977*m.b2025 <= 0) m.c4248 = Constraint(expr= - m.x970 + 5.33531*m.b2026 <= 0) m.c4249 = Constraint(expr= - m.x971 + 5.34641*m.b2027 <= 0) m.c4250 = Constraint(expr= - m.x972 + 5.36416*m.b2028 <= 0) m.c4251 = Constraint(expr= - m.x973 + 5.38413*m.b2029 <= 0) m.c4252 = Constraint(expr= - m.x974 + 5.40742*m.b2030 <= 0) m.c4253 = Constraint(expr= - m.x975 + 5.41297*m.b2031 <= 0) m.c4254 = Constraint(expr= - m.x976 + 5.39633*m.b2032 <= 0) m.c4255 = Constraint(expr= - m.x977 + 5.39189*m.b2033 <= 0) m.c4256 = Constraint(expr= - m.x978 + 5.38302*m.b2034 <= 0) m.c4257 = Constraint(expr= - m.x979 + 5.36859*m.b2035 <= 0) m.c4258 = Constraint(expr= - m.x980 + 5.35972*m.b2036 <= 0) m.c4259 = Constraint(expr= - m.x981 + 5.35528*m.b2037 <= 0) m.c4260 = Constraint(expr= - m.x982 + 5.35084*m.b2038 <= 0) m.c4261 = Constraint(expr= - m.x983 + 5.34641*m.b2039 <= 0) m.c4262 = Constraint(expr= - m.x984 + 5.34308*m.b2040 <= 0) m.c4263 = Constraint(expr= - m.x985 + 5.33975*m.b2041 <= 0) m.c4264 = Constraint(expr= - m.x986 + 5.35639*m.b2042 <= 0) m.c4265 = Constraint(expr= - m.x987 + 5.36527*m.b2043 <= 0) m.c4266 = Constraint(expr= - m.x988 + 5.37525*m.b2044 <= 0) m.c4267 = Constraint(expr= - m.x989 + 5.38413*m.b2045 <= 0) m.c4268 = Constraint(expr= - m.x990 + 5.39411*m.b2046 <= 0) m.c4269 = Constraint(expr= - m.x991 + 5.393*m.b2047 <= 0) m.c4270 = Constraint(expr= - m.x992 + 5.39411*m.b2048 <= 0) m.c4271 = Constraint(expr= - m.x993 + 5.40742*m.b2049 <= 0) m.c4272 = Constraint(expr= - m.x994 + 5.41297*m.b2050 <= 0) m.c4273 = Constraint(expr= - m.x995 + 5.43516*m.b2051 <= 0) m.c4274 = Constraint(expr= - m.x996 + 5.44181*m.b2052 <= 0) m.c4275 = Constraint(expr= - m.x997 + 5.45069*m.b2053 <= 0) m.c4276 = Constraint(expr= - m.x998 + 5.47398*m.b2054 <= 0) m.c4277 = Constraint(expr= - m.x999 + 5.49063*m.b2055 <= 0) m.c4278 = Constraint(expr= - m.x1000 + 5.48508*m.b2056 <= 0) m.c4279 = Constraint(expr= - m.x1001 + 5.46955*m.b2057 <= 0) m.c4280 = Constraint(expr= - m.x1002 + 5.46067*m.b2058 <= 0) m.c4281 = Constraint(expr= - m.x1003 + 5.43516*m.b2059 <= 0) m.c4282 = Constraint(expr= - m.x1004 + 5.41519*m.b2060 <= 0) m.c4283 = Constraint(expr= - m.x1005 + 5.41075*m.b2061 <= 0) m.c4284 = Constraint(expr= - m.x1006 + 5.39522*m.b2062 <= 0) m.c4285 = Constraint(expr= - m.x1007 + 5.40188*m.b2063 <= 0) m.c4286 = Constraint(expr= - m.x1008 + 5.39855*m.b2064 <= 0) m.c4287 = Constraint(expr= - m.x1009 + 5.33975*m.b2065 <= 0) m.c4288 = Constraint(expr= - m.x1010 + 5.3342*m.b2066 <= 0) m.c4289 = Constraint(expr= - m.x1011 + 5.33199*m.b2067 <= 0) m.c4290 = Constraint(expr= - m.x1012 + 5.33088*m.b2068 <= 0) m.c4291 = Constraint(expr= - m.x1013 + 5.32866*m.b2069 <= 0) m.c4292 = Constraint(expr= - m.x1014 + 5.32755*m.b2070 <= 0) m.c4293 = Constraint(expr= - m.x1015 + 5.32644*m.b2071 <= 0) m.c4294 = Constraint(expr= - m.x1016 + 5.32755*m.b2072 <= 0) m.c4295 = Constraint(expr= - m.x1017 + 5.32977*m.b2073 <= 0) m.c4296 = Constraint(expr= - m.x1018 + 5.33531*m.b2074 <= 0) m.c4297 = Constraint(expr= - m.x1019 + 5.34641*m.b2075 <= 0) m.c4298 = Constraint(expr= - m.x1020 + 5.36416*m.b2076 <= 0) m.c4299 = Constraint(expr= - m.x1021 + 5.38413*m.b2077 <= 0) m.c4300 = Constraint(expr= - m.x1022 + 5.40742*m.b2078 <= 0) m.c4301 = Constraint(expr= - m.x1023 + 5.41297*m.b2079 <= 0) m.c4302 = Constraint(expr= - m.x1024 + 5.39633*m.b2080 <= 0) m.c4303 = Constraint(expr= - m.x1025 + 5.39189*m.b2081 <= 0) m.c4304 = Constraint(expr= - m.x1026 + 5.38302*m.b2082 <= 0) m.c4305 = Constraint(expr= - m.x1027 + 5.36859*m.b2083 <= 0) m.c4306 = Constraint(expr= - m.x1028 + 5.35972*m.b2084 <= 0) m.c4307 = Constraint(expr= - m.x1029 + 5.35528*m.b2085 <= 0) m.c4308 = Constraint(expr= - m.x1030 + 5.35084*m.b2086 <= 0) m.c4309 = Constraint(expr= - m.x1031 + 5.34641*m.b2087 <= 0) m.c4310 = Constraint(expr= - m.x1032 + 5.34308*m.b2088 <= 0) m.c4311 = Constraint(expr= - m.x1033 + 5.33975*m.b2089 <= 0) m.c4312 = Constraint(expr= - m.x1034 + 5.35639*m.b2090 <= 0) m.c4313 = Constraint(expr= - m.x1035 + 5.36527*m.b2091 <= 0) m.c4314 = Constraint(expr= - m.x1036 + 5.37525*m.b2092 <= 0) m.c4315 = Constraint(expr= - m.x1037 + 5.38413*m.b2093 <= 0) m.c4316 = Constraint(expr= - m.x1038 + 5.39411*m.b2094 <= 0) m.c4317 = Constraint(expr= - m.x1039 + 5.393*m.b2095 <= 0) m.c4318 = Constraint(expr= - m.x1040 + 5.39411*m.b2096 <= 0) m.c4319 = Constraint(expr= - m.x1041 + 5.40742*m.b2097 <= 0) m.c4320 = Constraint(expr= - m.x1042 + 5.41297*m.b2098 <= 0) m.c4321 = Constraint(expr= - m.x1043 + 5.43516*m.b2099 <= 0) m.c4322 = Constraint(expr= - m.x1044 + 5.44181*m.b2100 <= 0) m.c4323 = Constraint(expr= - m.x1045 + 5.45069*m.b2101 <= 0) m.c4324 = Constraint(expr= - m.x1046 + 5.47398*m.b2102 <= 0) m.c4325 = Constraint(expr= - m.x1047 + 5.49063*m.b2103 <= 0) m.c4326 = Constraint(expr= - m.x1048 + 5.48508*m.b2104 <= 0) m.c4327 = Constraint(expr= - m.x1049 + 5.46955*m.b2105 <= 0) m.c4328 = Constraint(expr= - m.x1050 + 5.46067*m.b2106 <= 0) m.c4329 = Constraint(expr= - m.x1051 + 5.43516*m.b2107 <= 0) m.c4330 = Constraint(expr= - m.x1052 + 5.41519*m.b2108 <= 0) m.c4331 = Constraint(expr= - m.x1053 + 5.41075*m.b2109 <= 0) m.c4332 = Constraint(expr= - m.x1054 + 5.39522*m.b2110 <= 0) m.c4333 = Constraint(expr= - m.x1055 + 5.40188*m.b2111 <= 0) m.c4334 = Constraint(expr= - m.x1056 + 5.39855*m.b2112 <= 0) m.c4335 = Constraint(expr= - m.x1057 + 5.33975*m.b2113 <= 0) m.c4336 = Constraint(expr= - m.x1058 + 5.3342*m.b2114 <= 0) m.c4337 = Constraint(expr= - m.x1059 + 5.33199*m.b2115 <= 0) m.c4338 = Constraint(expr= - m.x1060 + 5.33088*m.b2116 <= 0) m.c4339 = Constraint(expr= - m.x1061 + 5.32866*m.b2117 <= 0) m.c4340 = Constraint(expr= - m.x1062 + 5.32755*m.b2118 <= 0) m.c4341 = Constraint(expr= - m.x1063 + 5.32644*m.b2119 <= 0) m.c4342 = Constraint(expr= - m.x1064 + 5.32755*m.b2120 <= 0) m.c4343 = Constraint(expr= - m.x1065 + 5.32977*m.b2121 <= 0) m.c4344 = Constraint(expr= - m.x1066 + 5.33531*m.b2122 <= 0) m.c4345 = Constraint(expr= - m.x1067 + 5.34641*m.b2123 <= 0) m.c4346 = Constraint(expr= - m.x1068 + 5.36416*m.b2124 <= 0) m.c4347 = Constraint(expr= - m.x1069 + 5.38413*m.b2125 <= 0) m.c4348 = Constraint(expr= - m.x1070 + 5.40742*m.b2126 <= 0) m.c4349 = Constraint(expr= - m.x1071 + 5.41297*m.b2127 <= 0) m.c4350 = Constraint(expr= - m.x1072 + 5.39633*m.b2128 <= 0) m.c4351 = Constraint(expr= - m.x1073 + 5.39189*m.b2129 <= 0) m.c4352 = Constraint(expr= - m.x1074 + 5.38302*m.b2130 <= 0) m.c4353 = Constraint(expr= - m.x1075 + 5.36859*m.b2131 <= 0) m.c4354 = Constraint(expr= - m.x1076 + 5.35972*m.b2132 <= 0) m.c4355 = Constraint(expr= - m.x1077 + 5.35528*m.b2133 <= 0) m.c4356 = Constraint(expr= - m.x1078 + 5.35084*m.b2134 <= 0) m.c4357 = Constraint(expr= - m.x1079 + 5.34641*m.b2135 <= 0) m.c4358 = Constraint(expr= - m.x1080 + 5.34308*m.b2136 <= 0) m.c4359 = Constraint(expr= - m.x1081 + 5.33975*m.b2137 <= 0) m.c4360 = Constraint(expr= - m.x1082 + 5.35639*m.b2138 <= 0) m.c4361 = Constraint(expr= - m.x1083 + 5.36527*m.b2139 <= 0) m.c4362 = Constraint(expr= - m.x1084 + 5.37525*m.b2140 <= 0) m.c4363 = Constraint(expr= - m.x1085 + 5.38413*m.b2141 <= 0) m.c4364 = Constraint(expr= - m.x1086 + 5.39411*m.b2142 <= 0) m.c4365 = Constraint(expr= - m.x1087 + 5.393*m.b2143 <= 0) m.c4366 = Constraint(expr= - m.x1088 + 5.39411*m.b2144 <= 0) m.c4367 = Constraint(expr= - m.x1089 + 5.40742*m.b2145 <= 0) m.c4368 = Constraint(expr= - m.x1090 + 5.41297*m.b2146 <= 0) m.c4369 = Constraint(expr= - m.x1091 + 5.43516*m.b2147 <= 0) m.c4370 = Constraint(expr= - m.x1092 + 5.44181*m.b2148 <= 0) m.c4371 = Constraint(expr= - m.x1093 + 5.45069*m.b2149 <= 0) m.c4372 = Constraint(expr= - m.x1094 + 5.47398*m.b2150 <= 0) m.c4373 = Constraint(expr= - m.x1095 + 5.49063*m.b2151 <= 0) m.c4374 = Constraint(expr= - m.x1096 + 5.48508*m.b2152 <= 0) m.c4375 = Constraint(expr= - m.x1097 + 5.46955*m.b2153 <= 0) m.c4376 = Constraint(expr= - m.x1098 + 5.46067*m.b2154 <= 0) m.c4377 = Constraint(expr= - m.x1099 + 5.43516*m.b2155 <= 0) m.c4378 = Constraint(expr= - m.x1100 + 5.41519*m.b2156 <= 0) m.c4379 = Constraint(expr= - m.x1101 + 5.41075*m.b2157 <= 0) m.c4380 = Constraint(expr= - m.x1102 + 5.39522*m.b2158 <= 0) m.c4381 = Constraint(expr= - m.x1103 + 5.40188*m.b2159 <= 0) m.c4382 = Constraint(expr= - m.x1104 + 5.39855*m.b2160 <= 0) m.c4383 = Constraint(expr= - m.x1105 + 5.33975*m.b2161 <= 0) m.c4384 = Constraint(expr= - m.x1106 + 5.3342*m.b2162 <= 0) m.c4385 = Constraint(expr= - m.x1107 + 5.33199*m.b2163 <= 0) m.c4386 = Constraint(expr= - m.x1108 + 5.33088*m.b2164 <= 0) m.c4387 = Constraint(expr= - m.x1109 + 5.32866*m.b2165 <= 0) m.c4388 = Constraint(expr= - m.x1110 + 5.32755*m.b2166 <= 0) m.c4389 = Constraint(expr= - m.x1111 + 5.32644*m.b2167 <= 0) m.c4390 = Constraint(expr= - m.x1112 + 5.32755*m.b2168 <= 0) m.c4391 = Constraint(expr= - m.x1113 + 5.32977*m.b2169 <= 0) m.c4392 = Constraint(expr= - m.x1114 + 5.33531*m.b2170 <= 0) m.c4393 = Constraint(expr= - m.x1115 + 5.34641*m.b2171 <= 0) m.c4394 = Constraint(expr= - m.x1116 + 5.36416*m.b2172 <= 0) m.c4395 = Constraint(expr= - m.x1117 + 5.38413*m.b2173 <= 0) m.c4396 = Constraint(expr= - m.x1118 + 5.40742*m.b2174 <= 0) m.c4397 = Constraint(expr= - m.x1119 + 5.41297*m.b2175 <= 0) m.c4398 = Constraint(expr= - m.x1120 + 5.39633*m.b2176 <= 0) m.c4399 = Constraint(expr= - m.x1121 + 5.39189*m.b2177 <= 0) m.c4400 = Constraint(expr= - m.x1122 + 5.38302*m.b2178 <= 0) m.c4401 = Constraint(expr= - m.x1123 + 5.36859*m.b2179 <= 0) m.c4402 = Constraint(expr= - m.x1124 + 5.35972*m.b2180 <= 0) m.c4403 = Constraint(expr= - m.x1125 + 5.35528*m.b2181 <= 0) m.c4404 = Constraint(expr= - m.x1126 + 5.35084*m.b2182 <= 0) m.c4405 = Constraint(expr= - m.x1127 + 5.34641*m.b2183 <= 0) m.c4406 = Constraint(expr= - m.x1128 + 5.34308*m.b2184 <= 0) m.c4407 = Constraint(expr= - m.x1129 + 5.33975*m.b2185 <= 0) m.c4408 = Constraint(expr= - m.x1130 + 5.35639*m.b2186 <= 0) m.c4409 = Constraint(expr= - m.x1131 + 5.36527*m.b2187 <= 0) m.c4410 = Constraint(expr= - m.x1132 + 5.37525*m.b2188 <= 0) m.c4411 = Constraint(expr= - m.x1133 + 5.38413*m.b2189 <= 0) m.c4412 = Constraint(expr= - m.x1134 + 5.39411*m.b2190 <= 0) m.c4413 = Constraint(expr= - m.x1135 + 5.393*m.b2191 <= 0) m.c4414 = Constraint(expr= - m.x1136 + 5.39411*m.b2192 <= 0) m.c4415 = Constraint(expr= - m.x1137 + 5.40742*m.b2193 <= 0) m.c4416 = Constraint(expr= - m.x1138 + 5.41297*m.b2194 <= 0) m.c4417 = Constraint(expr= - m.x1139 + 5.43516*m.b2195 <= 0) m.c4418 = Constraint(expr= - m.x1140 + 5.44181*m.b2196 <= 0) m.c4419 = Constraint(expr= - m.x1141 + 5.45069*m.b2197 <= 0) m.c4420 = Constraint(expr= - m.x1142 + 5.47398*m.b2198 <= 0) m.c4421 = Constraint(expr= - m.x1143 + 5.49063*m.b2199 <= 0) m.c4422 = Constraint(expr= - m.x1144 + 5.48508*m.b2200 <= 0) m.c4423 = Constraint(expr= - m.x1145 + 5.46955*m.b2201 <= 0) m.c4424 = Constraint(expr= - m.x1146 + 5.46067*m.b2202 <= 0) m.c4425 = Constraint(expr= - m.x1147 + 5.43516*m.b2203 <= 0) m.c4426 = Constraint(expr= - m.x1148 + 5.41519*m.b2204 <= 0) m.c4427 = Constraint(expr= - m.x1149 + 5.41075*m.b2205 <= 0) m.c4428 = Constraint(expr= - m.x1150 + 5.39522*m.b2206 <= 0) m.c4429 = Constraint(expr= - m.x1151 + 5.40188*m.b2207 <= 0) m.c4430 = Constraint(expr= - m.x1152 + 5.39855*m.b2208 <= 0) m.c4431 = Constraint(expr= - m.x1153 + 5.33975*m.b2209 <= 0) m.c4432 = Constraint(expr= m.x770 - 27.932*m.b2306 <= 0) m.c4433 = Constraint(expr= m.x771 - 27.932*m.b2307 <= 0) m.c4434 = Constraint(expr= m.x772 - 27.932*m.b2308 <= 0) m.c4435 = Constraint(expr= m.x773 - 27.932*m.b2309 <= 0) m.c4436 = Constraint(expr= m.x774 - 27.932*m.b2310 <= 0) m.c4437 = Constraint(expr= m.x775 - 27.932*m.b2311 <= 0) m.c4438 = Constraint(expr= m.x776 - 27.932*m.b2312 <= 0) m.c4439 = Constraint(expr= m.x777 - 27.932*m.b2313 <= 0) m.c4440 = Constraint(expr= m.x778 - 27.932*m.b2314 <= 0) m.c4441 = Constraint(expr= m.x779 - 27.932*m.b2315 <= 0) m.c4442 = Constraint(expr= m.x780 - 27.932*m.b2316 <= 0) m.c4443 = Constraint(expr= m.x781 - 27.932*m.b2317 <= 0) m.c4444 = Constraint(expr= m.x782 - 27.932*m.b2318 <= 0) m.c4445 = Constraint(expr= m.x783 - 27.932*m.b2319 <= 0) m.c4446 = Constraint(expr= m.x784 - 27.932*m.b2320 <= 0) m.c4447 = Constraint(expr= m.x785 - 27.932*m.b2321 <= 0) m.c4448 = Constraint(expr= m.x786 - 27.932*m.b2322 <= 0) m.c4449 = Constraint(expr= m.x787 - 27.932*m.b2323 <= 0) m.c4450 = Constraint(expr= m.x788 - 27.932*m.b2324 <= 0) m.c4451 = Constraint(expr= m.x789 - 27.932*m.b2325 <= 0) m.c4452 = Constraint(expr= m.x790 - 27.932*m.b2326 <= 0) m.c4453 = Constraint(expr= m.x791 - 27.932*m.b2327 <= 0) m.c4454 = Constraint(expr= m.x792 - 27.932*m.b2328 <= 0) m.c4455 = Constraint(expr= m.x793 - 27.932*m.b2329 <= 0) m.c4456 = Constraint(expr= m.x794 - 27.932*m.b2330 <= 0) m.c4457 = Constraint(expr= m.x795 - 27.932*m.b2331 <= 0) m.c4458 = Constraint(expr= m.x796 - 27.932*m.b2332 <= 0) m.c4459 = Constraint(expr= m.x797 - 27.932*m.b2333 <= 0) m.c4460 = Constraint(expr= m.x798 - 27.932*m.b2334 <= 0) m.c4461 = Constraint(expr= m.x799 - 27.932*m.b2335 <= 0) m.c4462 = Constraint(expr= m.x800 - 27.932*m.b2336 <= 0) m.c4463 = Constraint(expr= m.x801 - 27.932*m.b2337 <= 0) m.c4464 = Constraint(expr= m.x802 - 27.932*m.b2338 <= 0) m.c4465 = Constraint(expr= m.x803 - 27.932*m.b2339 <= 0) m.c4466 = Constraint(expr= m.x804 - 27.932*m.b2340 <= 0) m.c4467 = Constraint(expr= m.x805 - 27.932*m.b2341 <= 0) m.c4468 = Constraint(expr= m.x806 - 27.932*m.b2342 <= 0) m.c4469 = Constraint(expr= m.x807 - 27.932*m.b2343 <= 0) m.c4470 = Constraint(expr= m.x808 - 27.932*m.b2344 <= 0) m.c4471 = Constraint(expr= m.x809 - 27.932*m.b2345 <= 0) m.c4472 = Constraint(expr= m.x810 - 27.932*m.b2346 <= 0) m.c4473 = Constraint(expr= m.x811 - 27.932*m.b2347 <= 0) m.c4474 = Constraint(expr= m.x812 - 27.932*m.b2348 <= 0) m.c4475 = Constraint(expr= m.x813 - 27.932*m.b2349 <= 0) m.c4476 = Constraint(expr= m.x814 - 27.932*m.b2350 <= 0) m.c4477 = Constraint(expr= m.x815 - 27.932*m.b2351 <= 0) m.c4478 = Constraint(expr= m.x816 - 27.932*m.b2352 <= 0) m.c4479 = Constraint(expr= m.x817 - 27.932*m.b2353 <= 0) m.c4480 = Constraint(expr= m.x818 - 27.932*m.b2354 <= 0) m.c4481 = Constraint(expr= m.x819 - 27.932*m.b2355 <= 0) m.c4482 = Constraint(expr= m.x820 - 27.932*m.b2356 <= 0) m.c4483 = Constraint(expr= m.x821 - 27.932*m.b2357 <= 0) m.c4484 = Constraint(expr= m.x822 - 27.932*m.b2358 <= 0) m.c4485 = Constraint(expr= m.x823 - 27.932*m.b2359 <= 0) m.c4486 = Constraint(expr= m.x824 - 27.932*m.b2360 <= 0) m.c4487 = Constraint(expr= m.x825 - 27.932*m.b2361 <= 0) m.c4488 = Constraint(expr= m.x826 - 27.932*m.b2362 <= 0) m.c4489 = Constraint(expr= m.x827 - 27.932*m.b2363 <= 0) m.c4490 = Constraint(expr= m.x828 - 27.932*m.b2364 <= 0) m.c4491 = Constraint(expr= m.x829 - 27.932*m.b2365 <= 0) m.c4492 = Constraint(expr= m.x830 - 27.932*m.b2366 <= 0) m.c4493 = Constraint(expr= m.x831 - 27.932*m.b2367 <= 0) m.c4494 = Constraint(expr= m.x832 - 27.932*m.b2368 <= 0) m.c4495 = Constraint(expr= m.x833 - 27.932*m.b2369 <= 0) m.c4496 = Constraint(expr= m.x834 - 27.932*m.b2370 <= 0) m.c4497 = Constraint(expr= m.x835 - 27.932*m.b2371 <= 0) m.c4498 = Constraint(expr= m.x836 - 27.932*m.b2372 <= 0) m.c4499 = Constraint(expr= m.x837 - 27.932*m.b2373 <= 0) m.c4500 = Constraint(expr= m.x838 - 27.932*m.b2374 <= 0) m.c4501 = Constraint(expr= m.x839 - 27.932*m.b2375 <= 0) m.c4502 = Constraint(expr= m.x840 - 27.932*m.b2376 <= 0) m.c4503 = Constraint(expr= m.x841 - 27.932*m.b2377 <= 0) m.c4504 = Constraint(expr= m.x842 - 27.932*m.b2378 <= 0) m.c4505 = Constraint(expr= m.x843 - 27.932*m.b2379 <= 0) m.c4506 = Constraint(expr= m.x844 - 27.932*m.b2380 <= 0) m.c4507 = Constraint(expr= m.x845 - 27.932*m.b2381 <= 0) m.c4508 = Constraint(expr= m.x846 - 27.932*m.b2382 <= 0) m.c4509 = Constraint(expr= m.x847 - 27.932*m.b2383 <= 0) m.c4510 = Constraint(expr= m.x848 - 27.932*m.b2384 <= 0) m.c4511 = Constraint(expr= m.x849 - 27.932*m.b2385 <= 0) m.c4512 = Constraint(expr= m.x850 - 27.932*m.b2386 <= 0) m.c4513 = Constraint(expr= m.x851 - 27.932*m.b2387 <= 0) m.c4514 = Constraint(expr= m.x852 - 27.932*m.b2388 <= 0) m.c4515 = Constraint(expr= m.x853 - 27.932*m.b2389 <= 0) m.c4516 = Constraint(expr= m.x854 - 27.932*m.b2390 <= 0) m.c4517 = Constraint(expr= m.x855 - 27.932*m.b2391 <= 0) m.c4518 = Constraint(expr= m.x856 - 27.932*m.b2392 <= 0) m.c4519 = Constraint(expr= m.x857 - 27.932*m.b2393 <= 0) m.c4520 = Constraint(expr= m.x858 - 27.932*m.b2394 <= 0) m.c4521 = Constraint(expr= m.x859 - 27.932*m.b2395 <= 0) m.c4522 = Constraint(expr= m.x860 - 27.932*m.b2396 <= 0) m.c4523 = Constraint(expr= m.x861 - 27.932*m.b2397 <= 0) m.c4524 = Constraint(expr= m.x862 - 27.932*m.b2398 <= 0) m.c4525 = Constraint(expr= m.x863 - 27.932*m.b2399 <= 0) m.c4526 = Constraint(expr= m.x864 - 27.932*m.b2400 <= 0) m.c4527 = Constraint(expr= m.x865 - 27.932*m.b2401 <= 0) m.c4528 = Constraint(expr= m.x866 - 20.4748*m.b2210 <= 0) m.c4529 = Constraint(expr= m.x867 - 20.4596*m.b2211 <= 0) m.c4530 = Constraint(expr= m.x868 - 20.4521*m.b2212 <= 0) m.c4531 = Constraint(expr= m.x869 - 20.4369*m.b2213 <= 0) m.c4532 = Constraint(expr= m.x870 - 20.4293*m.b2214 <= 0) m.c4533 = Constraint(expr= m.x871 - 20.4217*m.b2215 <= 0) m.c4534 = Constraint(expr= m.x872 - 20.4293*m.b2216 <= 0) m.c4535 = Constraint(expr= m.x873 - 20.4445*m.b2217 <= 0) m.c4536 = Constraint(expr= m.x874 - 20.4824*m.b2218 <= 0) m.c4537 = Constraint(expr= m.x875 - 20.5581*m.b2219 <= 0) m.c4538 = Constraint(expr= m.x876 - 20.6794*m.b2220 <= 0) m.c4539 = Constraint(expr= m.x877 - 20.8158*m.b2221 <= 0) m.c4540 = Constraint(expr= m.x878 - 20.975*m.b2222 <= 0) m.c4541 = Constraint(expr= m.x879 - 21.0128*m.b2223 <= 0) m.c4542 = Constraint(expr= m.x880 - 20.8992*m.b2224 <= 0) m.c4543 = Constraint(expr= m.x881 - 20.8689*m.b2225 <= 0) m.c4544 = Constraint(expr= m.x882 - 20.8082*m.b2226 <= 0) m.c4545 = Constraint(expr= m.x883 - 20.7097*m.b2227 <= 0) m.c4546 = Constraint(expr= m.x884 - 20.6491*m.b2228 <= 0) m.c4547 = Constraint(expr= m.x885 - 20.6188*m.b2229 <= 0) m.c4548 = Constraint(expr= m.x886 - 20.5885*m.b2230 <= 0) m.c4549 = Constraint(expr= m.x887 - 20.5581*m.b2231 <= 0) m.c4550 = Constraint(expr= m.x888 - 20.5354*m.b2232 <= 0) m.c4551 = Constraint(expr= m.x889 - 20.5127*m.b2233 <= 0) m.c4552 = Constraint(expr= m.x890 - 20.6264*m.b2234 <= 0) m.c4553 = Constraint(expr= m.x891 - 20.687*m.b2235 <= 0) m.c4554 = Constraint(expr= m.x892 - 20.7552*m.b2236 <= 0) m.c4555 = Constraint(expr= m.x893 - 20.8158*m.b2237 <= 0) m.c4556 = Constraint(expr= m.x894 - 20.884*m.b2238 <= 0) m.c4557 = Constraint(expr= m.x895 - 20.8764*m.b2239 <= 0) m.c4558 = Constraint(expr= m.x896 - 20.884*m.b2240 <= 0) m.c4559 = Constraint(expr= m.x897 - 20.975*m.b2241 <= 0) m.c4560 = Constraint(expr= m.x898 - 21.0128*m.b2242 <= 0) m.c4561 = Constraint(expr= m.x899 - 21.1644*m.b2243 <= 0) m.c4562 = Constraint(expr= m.x900 - 21.2099*m.b2244 <= 0) m.c4563 = Constraint(expr= m.x901 - 21.2705*m.b2245 <= 0) m.c4564 = Constraint(expr= m.x902 - 21.4297*m.b2246 <= 0) m.c4565 = Constraint(expr= m.x903 - 21.5433*m.b2247 <= 0) m.c4566 = Constraint(expr= m.x904 - 21.5054*m.b2248 <= 0) m.c4567 = Constraint(expr= m.x905 - 21.3993*m.b2249 <= 0) m.c4568 = Constraint(expr= m.x906 - 21.3387*m.b2250 <= 0) m.c4569 = Constraint(expr= m.x907 - 21.1644*m.b2251 <= 0) m.c4570 = Constraint(expr= m.x908 - 21.028*m.b2252 <= 0) m.c4571 = Constraint(expr= m.x909 - 20.9977*m.b2253 <= 0) m.c4572 = Constraint(expr= m.x910 - 20.8916*m.b2254 <= 0) m.c4573 = Constraint(expr= m.x911 - 20.9371*m.b2255 <= 0) m.c4574 = Constraint(expr= m.x912 - 20.9143*m.b2256 <= 0) m.c4575 = Constraint(expr= m.x913 - 20.5127*m.b2257 <= 0) m.c4576 = Constraint(expr= m.x914 - 20.4748*m.b2258 <= 0) m.c4577 = Constraint(expr= m.x915 - 20.4596*m.b2259 <= 0) m.c4578 = Constraint(expr= m.x916 - 20.4521*m.b2260 <= 0) m.c4579 = Constraint(expr= m.x917 - 20.4369*m.b2261 <= 0) m.c4580 = Constraint(expr= m.x918 - 20.4293*m.b2262 <= 0) m.c4581 = Constraint(expr= m.x919 - 20.4217*m.b2263 <= 0) m.c4582 = Constraint(expr= m.x920 - 20.4293*m.b2264 <= 0) m.c4583 = Constraint(expr= m.x921 - 20.4445*m.b2265 <= 0) m.c4584 = Constraint(expr= m.x922 - 20.4824*m.b2266 <= 0) m.c4585 = Constraint(expr= m.x923 - 20.5581*m.b2267 <= 0) m.c4586 = Constraint(expr= m.x924 - 20.6794*m.b2268 <= 0) m.c4587 = Constraint(expr= m.x925 - 20.8158*m.b2269 <= 0) m.c4588 = Constraint(expr= m.x926 - 20.975*m.b2270 <= 0) m.c4589 = Constraint(expr= m.x927 - 21.0128*m.b2271 <= 0) m.c4590 = Constraint(expr= m.x928 - 20.8992*m.b2272 <= 0) m.c4591 = Constraint(expr= m.x929 - 20.8689*m.b2273 <= 0) m.c4592 = Constraint(expr= m.x930 - 20.8082*m.b2274 <= 0) m.c4593 = Constraint(expr= m.x931 - 20.7097*m.b2275 <= 0) m.c4594 = Constraint(expr= m.x932 - 20.6491*m.b2276 <= 0) m.c4595 = Constraint(expr= m.x933 - 20.6188*m.b2277 <= 0) m.c4596 = Constraint(expr= m.x934 - 20.5885*m.b2278 <= 0) m.c4597 = Constraint(expr= m.x935 - 20.5581*m.b2279 <= 0) m.c4598 = Constraint(expr= m.x936 - 20.5354*m.b2280 <= 0) m.c4599 = Constraint(expr= m.x937 - 20.5127*m.b2281 <= 0) m.c4600 = Constraint(expr= m.x938 - 20.6264*m.b2282 <= 0) m.c4601 = Constraint(expr= m.x939 - 20.687*m.b2283 <= 0) m.c4602 = Constraint(expr= m.x940 - 20.7552*m.b2284 <= 0) m.c4603 = Constraint(expr= m.x941 - 20.8158*m.b2285 <= 0) m.c4604 = Constraint(expr= m.x942 - 20.884*m.b2286 <= 0) m.c4605 = Constraint(expr= m.x943 - 20.8764*m.b2287 <= 0) m.c4606 = Constraint(expr= m.x944 - 20.884*m.b2288 <= 0) m.c4607 = Constraint(expr= m.x945 - 20.975*m.b2289 <= 0) m.c4608 = Constraint(expr= m.x946 - 21.0128*m.b2290 <= 0) m.c4609 = Constraint(expr= m.x947 - 21.1644*m.b2291 <= 0) m.c4610 = Constraint(expr= m.x948 - 21.2099*m.b2292 <= 0) m.c4611 = Constraint(expr= m.x949 - 21.2705*m.b2293 <= 0) m.c4612 = Constraint(expr= m.x950 - 21.4297*m.b2294 <= 0) m.c4613 = Constraint(expr= m.x951 - 21.5433*m.b2295 <= 0) m.c4614 = Constraint(expr= m.x952 - 21.5054*m.b2296 <= 0) m.c4615 = Constraint(expr= m.x953 - 21.3993*m.b2297 <= 0) m.c4616 = Constraint(expr= m.x954 - 21.3387*m.b2298 <= 0) m.c4617 = Constraint(expr= m.x955 - 21.1644*m.b2299 <= 0) m.c4618 = Constraint(expr= m.x956 - 21.028*m.b2300 <= 0) m.c4619 = Constraint(expr= m.x957 - 20.9977*m.b2301 <= 0) m.c4620 = Constraint(expr= m.x958 - 20.8916*m.b2302 <= 0) m.c4621 = Constraint(expr= m.x959 - 20.9371*m.b2303 <= 0) m.c4622 = Constraint(expr= m.x960 - 20.9143*m.b2304 <= 0) m.c4623 = Constraint(expr= m.x961 - 20.5127*m.b2305 <= 0) m.c4624 = Constraint(expr= m.x962 - 9.12861*m.b2018 <= 0) m.c4625 = Constraint(expr= m.x963 - 9.12706*m.b2019 <= 0) m.c4626 = Constraint(expr= m.x964 - 9.12628*m.b2020 <= 0) m.c4627 = Constraint(expr= m.x965 - 9.12473*m.b2021 <= 0) m.c4628 = Constraint(expr= m.x966 - 9.12396*m.b2022 <= 0) m.c4629 = Constraint(expr= m.x967 - 9.12318*m.b2023 <= 0) m.c4630 = Constraint(expr= m.x968 - 9.12396*m.b2024 <= 0) m.c4631 = Constraint(expr= m.x969 - 9.12551*m.b2025 <= 0) m.c4632 = Constraint(expr= m.x970 - 9.12938*m.b2026 <= 0) m.c4633 = Constraint(expr= m.x971 - 9.13713*m.b2027 <= 0) m.c4634 = Constraint(expr= m.x972 - 9.14954*m.b2028 <= 0) m.c4635 = Constraint(expr= m.x973 - 9.16349*m.b2029 <= 0) m.c4636 = Constraint(expr= m.x974 - 9.17976*m.b2030 <= 0) m.c4637 = Constraint(expr= m.x975 - 9.18364*m.b2031 <= 0) m.c4638 = Constraint(expr= m.x976 - 9.17201*m.b2032 <= 0) m.c4639 = Constraint(expr= m.x977 - 9.16891*m.b2033 <= 0) m.c4640 = Constraint(expr= m.x978 - 9.16271*m.b2034 <= 0) m.c4641 = Constraint(expr= m.x979 - 9.15264*m.b2035 <= 0) m.c4642 = Constraint(expr= m.x980 - 9.14644*m.b2036 <= 0) m.c4643 = Constraint(expr= m.x981 - 9.14334*m.b2037 <= 0) m.c4644 = Constraint(expr= m.x982 - 9.14024*m.b2038 <= 0) m.c4645 = Constraint(expr= m.x983 - 9.13713*m.b2039 <= 0) m.c4646 = Constraint(expr= m.x984 - 9.13481*m.b2040 <= 0) m.c4647 = Constraint(expr= m.x985 - 9.13248*m.b2041 <= 0) m.c4648 = Constraint(expr= m.x986 - 9.14411*m.b2042 <= 0) m.c4649 = Constraint(expr= m.x987 - 9.15031*m.b2043 <= 0) m.c4650 = Constraint(expr= m.x988 - 9.15729*m.b2044 <= 0) m.c4651 = Constraint(expr= m.x989 - 9.16349*m.b2045 <= 0) m.c4652 = Constraint(expr= m.x990 - 9.17046*m.b2046 <= 0) m.c4653 = Constraint(expr= m.x991 - 9.16969*m.b2047 <= 0) m.c4654 = Constraint(expr= m.x992 - 9.17046*m.b2048 <= 0) m.c4655 = Constraint(expr= m.x993 - 9.17976*m.b2049 <= 0) m.c4656 = Constraint(expr= m.x994 - 9.18364*m.b2050 <= 0) m.c4657 = Constraint(expr= m.x995 - 9.19914*m.b2051 <= 0) m.c4658 = Constraint(expr= m.x996 - 9.20379*m.b2052 <= 0) m.c4659 = Constraint(expr= m.x997 - 9.20999*m.b2053 <= 0) m.c4660 = Constraint(expr= m.x998 - 9.22627*m.b2054 <= 0) m.c4661 = Constraint(expr= m.x999 - 9.2379*m.b2055 <= 0) m.c4662 = Constraint(expr= m.x1000 - 9.23402*m.b2056 <= 0) m.c4663 = Constraint(expr= m.x1001 - 9.22317*m.b2057 <= 0) m.c4664 = Constraint(expr= m.x1002 - 9.21697*m.b2058 <= 0) m.c4665 = Constraint(expr= m.x1003 - 9.19914*m.b2059 <= 0) m.c4666 = Constraint(expr= m.x1004 - 9.18519*m.b2060 <= 0) m.c4667 = Constraint(expr= m.x1005 - 9.18209*m.b2061 <= 0) m.c4668 = Constraint(expr= m.x1006 - 9.17124*m.b2062 <= 0) m.c4669 = Constraint(expr= m.x1007 - 9.17589*m.b2063 <= 0) m.c4670 = Constraint(expr= m.x1008 - 9.17356*m.b2064 <= 0) m.c4671 = Constraint(expr= m.x1009 - 9.13248*m.b2065 <= 0) m.c4672 = Constraint(expr= m.x1010 - 9.12861*m.b2066 <= 0) m.c4673 = Constraint(expr= m.x1011 - 9.12706*m.b2067 <= 0) m.c4674 = Constraint(expr= m.x1012 - 9.12628*m.b2068 <= 0) m.c4675 = Constraint(expr= m.x1013 - 9.12473*m.b2069 <= 0) m.c4676 = Constraint(expr= m.x1014 - 9.12396*m.b2070 <= 0) m.c4677 = Constraint(expr= m.x1015 - 9.12318*m.b2071 <= 0) m.c4678 = Constraint(expr= m.x1016 - 9.12396*m.b2072 <= 0) m.c4679 = Constraint(expr= m.x1017 - 9.12551*m.b2073 <= 0) m.c4680 = Constraint(expr= m.x1018 - 9.12938*m.b2074 <= 0) m.c4681 = Constraint(expr= m.x1019 - 9.13713*m.b2075 <= 0) m.c4682 = Constraint(expr= m.x1020 - 9.14954*m.b2076 <= 0) m.c4683 = Constraint(expr= m.x1021 - 9.16349*m.b2077 <= 0) m.c4684 = Constraint(expr= m.x1022 - 9.17976*m.b2078 <= 0) m.c4685 = Constraint(expr= m.x1023 - 9.18364*m.b2079 <= 0) m.c4686 = Constraint(expr= m.x1024 - 9.17201*m.b2080 <= 0) m.c4687 = Constraint(expr= m.x1025 - 9.16891*m.b2081 <= 0) m.c4688 = Constraint(expr= m.x1026 - 9.16271*m.b2082 <= 0) m.c4689 = Constraint(expr= m.x1027 - 9.15264*m.b2083 <= 0) m.c4690 = Constraint(expr= m.x1028 - 9.14644*m.b2084 <= 0) m.c4691 = Constraint(expr= m.x1029 - 9.14334*m.b2085 <= 0) m.c4692 = Constraint(expr= m.x1030 - 9.14024*m.b2086 <= 0) m.c4693 = Constraint(expr= m.x1031 - 9.13713*m.b2087 <= 0) m.c4694 = Constraint(expr= m.x1032 - 9.13481*m.b2088 <= 0) m.c4695 = Constraint(expr= m.x1033 - 9.13248*m.b2089 <= 0) m.c4696 = Constraint(expr= m.x1034 - 9.14411*m.b2090 <= 0) m.c4697 = Constraint(expr= m.x1035 - 9.15031*m.b2091 <= 0) m.c4698 = Constraint(expr= m.x1036 - 9.15729*m.b2092 <= 0) m.c4699 = Constraint(expr= m.x1037 - 9.16349*m.b2093 <= 0) m.c4700 = Constraint(expr= m.x1038 - 9.17046*m.b2094 <= 0) m.c4701 = Constraint(expr= m.x1039 - 9.16969*m.b2095 <= 0) m.c4702 = Constraint(expr= m.x1040 - 9.17046*m.b2096 <= 0) m.c4703 = Constraint(expr= m.x1041 - 9.17976*m.b2097 <= 0) m.c4704 = Constraint(expr= m.x1042 - 9.18364*m.b2098 <= 0) m.c4705 = Constraint(expr= m.x1043 - 9.19914*m.b2099 <= 0) m.c4706 = Constraint(expr= m.x1044 - 9.20379*m.b2100 <= 0) m.c4707 = Constraint(expr= m.x1045 - 9.20999*m.b2101 <= 0) m.c4708 = Constraint(expr= m.x1046 - 9.22627*m.b2102 <= 0) m.c4709 = Constraint(expr= m.x1047 - 9.2379*m.b2103 <= 0) m.c4710 = Constraint(expr= m.x1048 - 9.23402*m.b2104 <= 0) m.c4711 = Constraint(expr= m.x1049 - 9.22317*m.b2105 <= 0) m.c4712 = Constraint(expr= m.x1050 - 9.21697*m.b2106 <= 0) m.c4713 = Constraint(expr= m.x1051 - 9.19914*m.b2107 <= 0) m.c4714 = Constraint(expr= m.x1052 - 9.18519*m.b2108 <= 0) m.c4715 = Constraint(expr= m.x1053 - 9.18209*m.b2109 <= 0) m.c4716 = Constraint(expr= m.x1054 - 9.17124*m.b2110 <= 0) m.c4717 = Constraint(expr= m.x1055 - 9.17589*m.b2111 <= 0) m.c4718 = Constraint(expr= m.x1056 - 9.17356*m.b2112 <= 0) m.c4719 = Constraint(expr= m.x1057 - 9.13248*m.b2113 <= 0) m.c4720 = Constraint(expr= m.x1058 - 9.12861*m.b2114 <= 0) m.c4721 = Constraint(expr= m.x1059 - 9.12706*m.b2115 <= 0) m.c4722 = Constraint(expr= m.x1060 - 9.12628*m.b2116 <= 0) m.c4723 = Constraint(expr= m.x1061 - 9.12473*m.b2117 <= 0) m.c4724 = Constraint(expr= m.x1062 - 9.12396*m.b2118 <= 0) m.c4725 = Constraint(expr= m.x1063 - 9.12318*m.b2119 <= 0) m.c4726 = Constraint(expr= m.x1064 - 9.12396*m.b2120 <= 0) m.c4727 = Constraint(expr= m.x1065 - 9.12551*m.b2121 <= 0) m.c4728 = Constraint(expr= m.x1066 - 9.12938*m.b2122 <= 0) m.c4729 = Constraint(expr= m.x1067 - 9.13713*m.b2123 <= 0) m.c4730 = Constraint(expr= m.x1068 - 9.14954*m.b2124 <= 0) m.c4731 = Constraint(expr= m.x1069 - 9.16349*m.b2125 <= 0) m.c4732 = Constraint(expr= m.x1070 - 9.17976*m.b2126 <= 0) m.c4733 = Constraint(expr= m.x1071 - 9.18364*m.b2127 <= 0) m.c4734 = Constraint(expr= m.x1072 - 9.17201*m.b2128 <= 0) m.c4735 = Constraint(expr= m.x1073 - 9.16891*m.b2129 <= 0) m.c4736 = Constraint(expr= m.x1074 - 9.16271*m.b2130 <= 0) m.c4737 = Constraint(expr= m.x1075 - 9.15264*m.b2131 <= 0) m.c4738 = Constraint(expr= m.x1076 - 9.14644*m.b2132 <= 0) m.c4739 = Constraint(expr= m.x1077 - 9.14334*m.b2133 <= 0) m.c4740 = Constraint(expr= m.x1078 - 9.14024*m.b2134 <= 0) m.c4741 = Constraint(expr= m.x1079 - 9.13713*m.b2135 <= 0) m.c4742 = Constraint(expr= m.x1080 - 9.13481*m.b2136 <= 0) m.c4743 = Constraint(expr= m.x1081 - 9.13248*m.b2137 <= 0) m.c4744 = Constraint(expr= m.x1082 - 9.14411*m.b2138 <= 0) m.c4745 = Constraint(expr= m.x1083 - 9.15031*m.b2139 <= 0) m.c4746 = Constraint(expr= m.x1084 - 9.15729*m.b2140 <= 0) m.c4747 = Constraint(expr= m.x1085 - 9.16349*m.b2141 <= 0) m.c4748 = Constraint(expr= m.x1086 - 9.17046*m.b2142 <= 0) m.c4749 = Constraint(expr= m.x1087 - 9.16969*m.b2143 <= 0) m.c4750 = Constraint(expr= m.x1088 - 9.17046*m.b2144 <= 0) m.c4751 = Constraint(expr= m.x1089 - 9.17976*m.b2145 <= 0) m.c4752 = Constraint(expr= m.x1090 - 9.18364*m.b2146 <= 0) m.c4753 = Constraint(expr= m.x1091 - 9.19914*m.b2147 <= 0) m.c4754 = Constraint(expr= m.x1092 - 9.20379*m.b2148 <= 0) m.c4755 = Constraint(expr= m.x1093 - 9.20999*m.b2149 <= 0) m.c4756 = Constraint(expr= m.x1094 - 9.22627*m.b2150 <= 0) m.c4757 = Constraint(expr= m.x1095 - 9.2379*m.b2151 <= 0) m.c4758 = Constraint(expr= m.x1096 - 9.23402*m.b2152 <= 0) m.c4759 = Constraint(expr= m.x1097 - 9.22317*m.b2153 <= 0) m.c4760 = Constraint(expr= m.x1098 - 9.21697*m.b2154 <= 0) m.c4761 = Constraint(expr= m.x1099 - 9.19914*m.b2155 <= 0) m.c4762 = Constraint(expr= m.x1100 - 9.18519*m.b2156 <= 0) m.c4763 = Constraint(expr= m.x1101 - 9.18209*m.b2157 <= 0) m.c4764 = Constraint(expr= m.x1102 - 9.17124*m.b2158 <= 0) m.c4765 = Constraint(expr= m.x1103 - 9.17589*m.b2159 <= 0) m.c4766 = Constraint(expr= m.x1104 - 9.17356*m.b2160 <= 0) m.c4767 = Constraint(expr= m.x1105 - 9.13248*m.b2161 <= 0) m.c4768 = Constraint(expr= m.x1106 - 9.12861*m.b2162 <= 0) m.c4769 = Constraint(expr= m.x1107 - 9.12706*m.b2163 <= 0) m.c4770 = Constraint(expr= m.x1108 - 9.12628*m.b2164 <= 0) m.c4771 = Constraint(expr= m.x1109 - 9.12473*m.b2165 <= 0) m.c4772 = Constraint(expr= m.x1110 - 9.12396*m.b2166 <= 0) m.c4773 = Constraint(expr= m.x1111 - 9.12318*m.b2167 <= 0) m.c4774 = Constraint(expr= m.x1112 - 9.12396*m.b2168 <= 0) m.c4775 = Constraint(expr= m.x1113 - 9.12551*m.b2169 <= 0) m.c4776 = Constraint(expr= m.x1114 - 9.12938*m.b2170 <= 0) m.c4777 = Constraint(expr= m.x1115 - 9.13713*m.b2171 <= 0) m.c4778 = Constraint(expr= m.x1116 - 9.14954*m.b2172 <= 0) m.c4779 = Constraint(expr= m.x1117 - 9.16349*m.b2173 <= 0) m.c4780 = Constraint(expr= m.x1118 - 9.17976*m.b2174 <= 0) m.c4781 = Constraint(expr= m.x1119 - 9.18364*m.b2175 <= 0) m.c4782 = Constraint(expr= m.x1120 - 9.17201*m.b2176 <= 0) m.c4783 = Constraint(expr= m.x1121 - 9.16891*m.b2177 <= 0) m.c4784 = Constraint(expr= m.x1122 - 9.16271*m.b2178 <= 0) m.c4785 = Constraint(expr= m.x1123 - 9.15264*m.b2179 <= 0) m.c4786 = Constraint(expr= m.x1124 - 9.14644*m.b2180 <= 0) m.c4787 = Constraint(expr= m.x1125 - 9.14334*m.b2181 <= 0) m.c4788 = Constraint(expr= m.x1126 - 9.14024*m.b2182 <= 0) m.c4789 = Constraint(expr= m.x1127 - 9.13713*m.b2183 <= 0) m.c4790 = Constraint(expr= m.x1128 - 9.13481*m.b2184 <= 0) m.c4791 = Constraint(expr= m.x1129 - 9.13248*m.b2185 <= 0) m.c4792 = Constraint(expr= m.x1130 - 9.14411*m.b2186 <= 0) m.c4793 = Constraint(expr= m.x1131 - 9.15031*m.b2187 <= 0) m.c4794 = Constraint(expr= m.x1132 - 9.15729*m.b2188 <= 0) m.c4795 = Constraint(expr= m.x1133 - 9.16349*m.b2189 <= 0) m.c4796 = Constraint(expr= m.x1134 - 9.17046*m.b2190 <= 0) m.c4797 = Constraint(expr= m.x1135 - 9.16969*m.b2191 <= 0) m.c4798 = Constraint(expr= m.x1136 - 9.17046*m.b2192 <= 0) m.c4799 = Constraint(expr= m.x1137 - 9.17976*m.b2193 <= 0) m.c4800 = Constraint(expr= m.x1138 - 9.18364*m.b2194 <= 0) m.c4801 = Constraint(expr= m.x1139 - 9.19914*m.b2195 <= 0) m.c4802 = Constraint(expr= m.x1140 - 9.20379*m.b2196 <= 0) m.c4803 = Constraint(expr= m.x1141 - 9.20999*m.b2197 <= 0) m.c4804 = Constraint(expr= m.x1142 - 9.22627*m.b2198 <= 0) m.c4805 = Constraint(expr= m.x1143 - 9.2379*m.b2199 <= 0) m.c4806 = Constraint(expr= m.x1144 - 9.23402*m.b2200 <= 0) m.c4807 = Constraint(expr= m.x1145 - 9.22317*m.b2201 <= 0) m.c4808 = Constraint(expr= m.x1146 - 9.21697*m.b2202 <= 0) m.c4809 = Constraint(expr= m.x1147 - 9.19914*m.b2203 <= 0) m.c4810 = Constraint(expr= m.x1148 - 9.18519*m.b2204 <= 0) m.c4811 = Constraint(expr= m.x1149 - 9.18209*m.b2205 <= 0) m.c4812 = Constraint(expr= m.x1150 - 9.17124*m.b2206 <= 0) m.c4813 = Constraint(expr= m.x1151 - 9.17589*m.b2207 <= 0) m.c4814 = Constraint(expr= m.x1152 - 9.17356*m.b2208 <= 0) m.c4815 = Constraint(expr= m.x1153 - 9.13248*m.b2209 <= 0) m.c4816 = Constraint(expr= m.x1250 <= 0) m.c4817 = Constraint(expr= m.x1251 <= 0) m.c4818 = Constraint(expr= m.x1252 <= 0) m.c4819 = Constraint(expr= m.x1253 <= 0) m.c4820 = Constraint(expr= m.x1254 <= 0) m.c4821 = Constraint(expr= m.x1255 <= 0) m.c4822 = Constraint(expr= m.x1256 <= 0) m.c4823 = Constraint(expr= m.x1257 <= 0) m.c4824 = Constraint(expr= m.x1258 <= 0) m.c4825 = Constraint(expr= m.x1259 <= 0) m.c4826 = Constraint(expr= m.x1260 <= 0) m.c4827 = Constraint(expr= m.x1261 <= 0) m.c4828 = Constraint(expr= m.x1262 <= 0) m.c4829 = Constraint(expr= m.x1263 <= 0) m.c4830 = Constraint(expr= m.x1264 <= 0) m.c4831 = Constraint(expr= m.x1265 <= 0) m.c4832 = Constraint(expr= m.x1266 <= 0) m.c4833 = Constraint(expr= m.x1267 <= 0) m.c4834 = Constraint(expr= m.x1268 <= 0) m.c4835 = Constraint(expr= m.x1269 <= 0) m.c4836 = Constraint(expr= m.x1270 <= 0) m.c4837 = Constraint(expr= m.x1271 <= 0) m.c4838 = Constraint(expr= m.x1272 <= 0) m.c4839 = Constraint(expr= m.x1273 <= 0) m.c4840 = Constraint(expr= m.x1274 <= 0) m.c4841 = Constraint(expr= m.x1275 <= 0) m.c4842 = Constraint(expr= m.x1276 <= 0) m.c4843 = Constraint(expr= m.x1277 <= 0) m.c4844 = Constraint(expr= m.x1278 <= 0) m.c4845 = Constraint(expr= m.x1279 <= 0) m.c4846 = Constraint(expr= m.x1280 <= 0) m.c4847 = Constraint(expr= m.x1281 <= 0) m.c4848 = Constraint(expr= m.x1282 <= 0) m.c4849 = Constraint(expr= m.x1283 <= 0) m.c4850 = Constraint(expr= m.x1284 <= 0) m.c4851 = Constraint(expr= m.x1285 <= 0) m.c4852 = Constraint(expr= m.x1286 <= 0) m.c4853 = Constraint(expr= m.x1287 <= 0) m.c4854 = Constraint(expr= m.x1288 <= 0) m.c4855 = Constraint(expr= m.x1289 <= 0) m.c4856 = Constraint(expr= m.x1290 <= 0) m.c4857 = Constraint(expr= m.x1291 <= 0) m.c4858 = Constraint(expr= m.x1292 <= 0) m.c4859 = Constraint(expr= m.x1293 <= 0) m.c4860 = Constraint(expr= m.x1294 <= 0) m.c4861 = Constraint(expr= m.x1295 <= 0) m.c4862 = Constraint(expr= m.x1296 <= 0) m.c4863 = Constraint(expr= m.x1297 <= 0) m.c4864 = Constraint(expr= m.x1298 <= 0) m.c4865 = Constraint(expr= m.x1299 <= 0) m.c4866 = Constraint(expr= m.x1300 <= 0) m.c4867 = Constraint(expr= m.x1301 <= 0) m.c4868 = Constraint(expr= m.x1302 <= 0) m.c4869 = Constraint(expr= m.x1303 <= 0) m.c4870 = Constraint(expr= m.x1304 <= 0) m.c4871 = Constraint(expr= m.x1305 <= 0) m.c4872 = Constraint(expr= m.x1306 <= 0) m.c4873 = Constraint(expr= m.x1307 <= 0) m.c4874 = Constraint(expr= m.x1308 <= 0) m.c4875 = Constraint(expr= m.x1309 <= 0) m.c4876 = Constraint(expr= m.x1310 <= 0) m.c4877 = Constraint(expr= m.x1311 <= 0) m.c4878 = Constraint(expr= m.x1312 <= 0) m.c4879 = Constraint(expr= m.x1313 <= 0) m.c4880 = Constraint(expr= m.x1314 <= 0) m.c4881 = Constraint(expr= m.x1315 <= 0) m.c4882 = Constraint(expr= m.x1316 <= 0) m.c4883 = Constraint(expr= m.x1317 <= 0) m.c4884 = Constraint(expr= m.x1318 <= 0) m.c4885 = Constraint(expr= m.x1319 <= 0) m.c4886 = Constraint(expr= m.x1320 <= 0) m.c4887 = Constraint(expr= m.x1321 <= 0) m.c4888 = Constraint(expr= m.x1322 <= 0) m.c4889 = Constraint(expr= m.x1323 <= 0) m.c4890 = Constraint(expr= m.x1324 <= 0) m.c4891 = Constraint(expr= m.x1325 <= 0) m.c4892 = Constraint(expr= m.x1326 <= 0) m.c4893 = Constraint(expr= m.x1327 <= 0) m.c4894 = Constraint(expr= m.x1328 <= 0) m.c4895 = Constraint(expr= m.x1329 <= 0) m.c4896 = Constraint(expr= m.x1330 <= 0) m.c4897 = Constraint(expr= m.x1331 <= 0) m.c4898 = Constraint(expr= m.x1332 <= 0) m.c4899 = Constraint(expr= m.x1333 <= 0) m.c4900 = Constraint(expr= m.x1334 <= 0) m.c4901 = Constraint(expr= m.x1335 <= 0) m.c4902 = Constraint(expr= m.x1336 <= 0) m.c4903 = Constraint(expr= m.x1337 <= 0) m.c4904 = Constraint(expr= m.x1338 <= 0) m.c4905 = Constraint(expr= m.x1339 <= 0) m.c4906 = Constraint(expr= m.x1340 <= 0) m.c4907 = Constraint(expr= m.x1341 <= 0) m.c4908 = Constraint(expr= m.x1342 <= 0) m.c4909 = Constraint(expr= m.x1343 <= 0) m.c4910 = Constraint(expr= m.x1344 <= 0) m.c4911 = Constraint(expr= m.x1345 <= 0) m.c4912 = Constraint(expr= m.x1346 <= 0) m.c4913 = Constraint(expr= m.x1347 <= 0) m.c4914 = Constraint(expr= m.x1348 <= 0) m.c4915 = Constraint(expr= m.x1349 <= 0) m.c4916 = Constraint(expr= m.x1350 <= 0) m.c4917 = Constraint(expr= m.x1351 <= 0) m.c4918 = Constraint(expr= m.x1352 <= 0) m.c4919 = Constraint(expr= m.x1353 <= 0) m.c4920 = Constraint(expr= m.x1354 <= 0) m.c4921 = Constraint(expr= m.x1355 <= 0) m.c4922 = Constraint(expr= m.x1356 <= 0) m.c4923 = Constraint(expr= m.x1357 <= 0) m.c4924 = Constraint(expr= m.x1358 <= 0) m.c4925 = Constraint(expr= m.x1359 <= 0) m.c4926 = Constraint(expr= m.x1360 <= 0) m.c4927 = Constraint(expr= m.x1361 <= 0) m.c4928 = Constraint(expr= m.x1362 <= 0) m.c4929 = Constraint(expr= m.x1363 <= 0) m.c4930 = Constraint(expr= m.x1364 <= 0) m.c4931 = Constraint(expr= m.x1365 <= 0) m.c4932 = Constraint(expr= m.x1366 <= 0) m.c4933 = Constraint(expr= m.x1367 <= 0) m.c4934 = Constraint(expr= m.x1368 <= 0) m.c4935 = Constraint(expr= m.x1369 <= 0) m.c4936 = Constraint(expr= m.x1370 <= 0) m.c4937 = Constraint(expr= m.x1371 <= 0) m.c4938 = Constraint(expr= m.x1372 <= 0) m.c4939 = Constraint(expr= m.x1373 <= 0) m.c4940 = Constraint(expr= m.x1374 <= 0) m.c4941 = Constraint(expr= m.x1375 <= 0) m.c4942 = Constraint(expr= m.x1376 <= 0) m.c4943 = Constraint(expr= m.x1377 <= 0) m.c4944 = Constraint(expr= m.x1378 <= 0) m.c4945 = Constraint(expr= m.x1379 <= 0) m.c4946 = Constraint(expr= m.x1380 <= 0) m.c4947 = Constraint(expr= m.x1381 <= 0) m.c4948 = Constraint(expr= m.x1382 <= 0) m.c4949 = Constraint(expr= m.x1383 <= 0) m.c4950 = Constraint(expr= m.x1384 <= 0) m.c4951 = Constraint(expr= m.x1385 <= 0) m.c4952 = Constraint(expr= m.x1386 <= 0) m.c4953 = Constraint(expr= m.x1387 <= 0) m.c4954 = Constraint(expr= m.x1388 <= 0) m.c4955 = Constraint(expr= m.x1389 <= 0) m.c4956 = Constraint(expr= m.x1390 <= 0) m.c4957 = Constraint(expr= m.x1391 <= 0) m.c4958 = Constraint(expr= m.x1392 <= 0) m.c4959 = Constraint(expr= m.x1393 <= 0) m.c4960 = Constraint(expr= m.x1394 <= 0) m.c4961 = Constraint(expr= m.x1395 <= 0) m.c4962 = Constraint(expr= m.x1396 <= 0) m.c4963 = Constraint(expr= m.x1397 <= 0) m.c4964 = Constraint(expr= m.x1398 <= 0) m.c4965 = Constraint(expr= m.x1399 <= 0) m.c4966 = Constraint(expr= m.x1400 <= 0) m.c4967 = Constraint(expr= m.x1401 <= 0) m.c4968 = Constraint(expr= m.x1402 <= 0) m.c4969 = Constraint(expr= m.x1403 <= 0) m.c4970 = Constraint(expr= m.x1404 <= 0) m.c4971 = Constraint(expr= m.x1405 <= 0) m.c4972 = Constraint(expr= m.x1406 <= 0) m.c4973 = Constraint(expr= m.x1407 <= 0) m.c4974 = Constraint(expr= m.x1408 <= 0) m.c4975 = Constraint(expr= m.x1409 <= 0) m.c4976 = Constraint(expr= m.x1410 <= 0) m.c4977 = Constraint(expr= m.x1411 <= 0) m.c4978 = Constraint(expr= m.x1412 <= 0) m.c4979 = Constraint(expr= m.x1413 <= 0) m.c4980 = Constraint(expr= m.x1414 <= 0) m.c4981 = Constraint(expr= m.x1415 <= 0) m.c4982 = Constraint(expr= m.x1416 <= 0) m.c4983 = Constraint(expr= m.x1417 <= 0) m.c4984 = Constraint(expr= m.x1418 <= 0) m.c4985 = Constraint(expr= m.x1419 <= 0) m.c4986 = Constraint(expr= m.x1420 <= 0) m.c4987 = Constraint(expr= m.x1421 <= 0) m.c4988 = Constraint(expr= m.x1422 <= 0) m.c4989 = Constraint(expr= m.x1423 <= 0) m.c4990 = Constraint(expr= m.x1424 <= 0) m.c4991 = Constraint(expr= m.x1425 <= 0) m.c4992 = Constraint(expr= m.x1426 <= 0) m.c4993 = Constraint(expr= m.x1427 <= 0) m.c4994 = Constraint(expr= m.x1428 <= 0) m.c4995 = Constraint(expr= m.x1429 <= 0) m.c4996 = Constraint(expr= m.x1430 <= 0) m.c4997 = Constraint(expr= m.x1431 <= 0) m.c4998 = Constraint(expr= m.x1432 <= 0) m.c4999 = Constraint(expr= m.x1433 <= 0) m.c5000 = Constraint(expr= m.x1434 <= 0) m.c5001 = Constraint(expr= m.x1435 <= 0) m.c5002 = Constraint(expr= m.x1436 <= 0) m.c5003 = Constraint(expr= m.x1437 <= 0) m.c5004 = Constraint(expr= m.x1438 <= 0) m.c5005 = Constraint(expr= m.x1439 <= 0) m.c5006 = Constraint(expr= m.x1440 <= 0) m.c5007 = Constraint(expr= m.x1441 <= 0) m.c5008 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x194 - 0.00191656795755345*m.x194*m.x194)*m.b2018 + 0.0992753*m.x962 <= 0) m.c5009 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x195 - 0.00191656795755345*m.x195*m.x195)*m.b2019 + 0.0992753*m.x963 <= 0) m.c5010 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x196 - 0.00191656795755345*m.x196*m.x196)*m.b2020 + 0.0992753*m.x964 <= 0) m.c5011 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x197 - 0.00191656795755345*m.x197*m.x197)*m.b2021 + 0.0992753*m.x965 <= 0) m.c5012 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x198 - 0.00191656795755345*m.x198*m.x198)*m.b2022 + 0.0992753*m.x966 <= 0) m.c5013 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x199 - 0.00191656795755345*m.x199*m.x199)*m.b2023 + 0.0992753*m.x967 <= 0) m.c5014 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x200 - 0.00191656795755345*m.x200*m.x200)*m.b2024 + 0.0992753*m.x968 <= 0) m.c5015 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x201 - 0.00191656795755345*m.x201*m.x201)*m.b2025 + 0.0992753*m.x969 <= 0) m.c5016 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x202 - 0.00191656795755345*m.x202*m.x202)*m.b2026 + 0.0992753*m.x970 <= 0) m.c5017 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x203 - 0.00191656795755345*m.x203*m.x203)*m.b2027 + 0.0992753*m.x971 <= 0) m.c5018 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x204 - 0.00191656795755345*m.x204*m.x204)*m.b2028 + 0.0992753*m.x972 <= 0) m.c5019 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x205 - 0.00191656795755345*m.x205*m.x205)*m.b2029 + 0.0992753*m.x973 <= 0) m.c5020 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x206 - 0.00191656795755345*m.x206*m.x206)*m.b2030 + 0.0992753*m.x974 <= 0) m.c5021 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x207 - 0.00191656795755345*m.x207*m.x207)*m.b2031 + 0.0992753*m.x975 <= 0) m.c5022 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x208 - 0.00191656795755345*m.x208*m.x208)*m.b2032 + 0.0992753*m.x976 <= 0) m.c5023 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x209 - 0.00191656795755345*m.x209*m.x209)*m.b2033 + 0.0992753*m.x977 <= 0) m.c5024 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x210 - 0.00191656795755345*m.x210*m.x210)*m.b2034 + 0.0992753*m.x978 <= 0) m.c5025 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x211 - 0.00191656795755345*m.x211*m.x211)*m.b2035 + 0.0992753*m.x979 <= 0) m.c5026 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x212 - 0.00191656795755345*m.x212*m.x212)*m.b2036 + 0.0992753*m.x980 <= 0) m.c5027 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x213 - 0.00191656795755345*m.x213*m.x213)*m.b2037 + 0.0992753*m.x981 <= 0) m.c5028 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x214 - 0.00191656795755345*m.x214*m.x214)*m.b2038 + 0.0992753*m.x982 <= 0) m.c5029 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x215 - 0.00191656795755345*m.x215*m.x215)*m.b2039 + 0.0992753*m.x983 <= 0) m.c5030 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x216 - 0.00191656795755345*m.x216*m.x216)*m.b2040 + 0.0992753*m.x984 <= 0) m.c5031 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x217 - 0.00191656795755345*m.x217*m.x217)*m.b2041 + 0.0992753*m.x985 <= 0) m.c5032 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x218 - 0.00191656795755345*m.x218*m.x218)*m.b2042 + 0.0992753*m.x986 <= 0) m.c5033 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x219 - 0.00191656795755345*m.x219*m.x219)*m.b2043 + 0.0992753*m.x987 <= 0) m.c5034 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x220 - 0.00191656795755345*m.x220*m.x220)*m.b2044 + 0.0992753*m.x988 <= 0) m.c5035 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x221 - 0.00191656795755345*m.x221*m.x221)*m.b2045 + 0.0992753*m.x989 <= 0) m.c5036 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x222 - 0.00191656795755345*m.x222*m.x222)*m.b2046 + 0.0992753*m.x990 <= 0) m.c5037 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x223 - 0.00191656795755345*m.x223*m.x223)*m.b2047 + 0.0992753*m.x991 <= 0) m.c5038 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x224 - 0.00191656795755345*m.x224*m.x224)*m.b2048 + 0.0992753*m.x992 <= 0) m.c5039 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x225 - 0.00191656795755345*m.x225*m.x225)*m.b2049 + 0.0992753*m.x993 <= 0) m.c5040 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x226 - 0.00191656795755345*m.x226*m.x226)*m.b2050 + 0.0992753*m.x994 <= 0) m.c5041 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x227 - 0.00191656795755345*m.x227*m.x227)*m.b2051 + 0.0992753*m.x995 <= 0) m.c5042 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x228 - 0.00191656795755345*m.x228*m.x228)*m.b2052 + 0.0992753*m.x996 <= 0) m.c5043 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x229 - 0.00191656795755345*m.x229*m.x229)*m.b2053 + 0.0992753*m.x997 <= 0) m.c5044 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x230 - 0.00191656795755345*m.x230*m.x230)*m.b2054 + 0.0992753*m.x998 <= 0) m.c5045 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x231 - 0.00191656795755345*m.x231*m.x231)*m.b2055 + 0.0992753*m.x999 <= 0) m.c5046 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x232 - 0.00191656795755345*m.x232*m.x232)*m.b2056 + 0.0992753*m.x1000 <= 0) m.c5047 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x233 - 0.00191656795755345*m.x233*m.x233)*m.b2057 + 0.0992753*m.x1001 <= 0) m.c5048 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x234 - 0.00191656795755345*m.x234*m.x234)*m.b2058 + 0.0992753*m.x1002 <= 0) m.c5049 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x235 - 0.00191656795755345*m.x235*m.x235)*m.b2059 + 0.0992753*m.x1003 <= 0) m.c5050 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x236 - 0.00191656795755345*m.x236*m.x236)*m.b2060 + 0.0992753*m.x1004 <= 0) m.c5051 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x237 - 0.00191656795755345*m.x237*m.x237)*m.b2061 + 0.0992753*m.x1005 <= 0) m.c5052 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x238 - 0.00191656795755345*m.x238*m.x238)*m.b2062 + 0.0992753*m.x1006 <= 0) m.c5053 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x239 - 0.00191656795755345*m.x239*m.x239)*m.b2063 + 0.0992753*m.x1007 <= 0) m.c5054 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x240 - 0.00191656795755345*m.x240*m.x240)*m.b2064 + 0.0992753*m.x1008 <= 0) m.c5055 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x241 - 0.00191656795755345*m.x241*m.x241)*m.b2065 + 0.0992753*m.x1009 <= 0) m.c5056 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x242 - 0.00191656795755345*m.x242*m.x242)*m.b2066 + 0.0992753*m.x1010 <= 0) m.c5057 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x243 - 0.00191656795755345*m.x243*m.x243)*m.b2067 + 0.0992753*m.x1011 <= 0) m.c5058 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x244 - 0.00191656795755345*m.x244*m.x244)*m.b2068 + 0.0992753*m.x1012 <= 0) m.c5059 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x245 - 0.00191656795755345*m.x245*m.x245)*m.b2069 + 0.0992753*m.x1013 <= 0) m.c5060 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x246 - 0.00191656795755345*m.x246*m.x246)*m.b2070 + 0.0992753*m.x1014 <= 0) m.c5061 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x247 - 0.00191656795755345*m.x247*m.x247)*m.b2071 + 0.0992753*m.x1015 <= 0) m.c5062 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x248 - 0.00191656795755345*m.x248*m.x248)*m.b2072 + 0.0992753*m.x1016 <= 0) m.c5063 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x249 - 0.00191656795755345*m.x249*m.x249)*m.b2073 + 0.0992753*m.x1017 <= 0) m.c5064 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x250 - 0.00191656795755345*m.x250*m.x250)*m.b2074 + 0.0992753*m.x1018 <= 0) m.c5065 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x251 - 0.00191656795755345*m.x251*m.x251)*m.b2075 + 0.0992753*m.x1019 <= 0) m.c5066 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x252 - 0.00191656795755345*m.x252*m.x252)*m.b2076 + 0.0992753*m.x1020 <= 0) m.c5067 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x253 - 0.00191656795755345*m.x253*m.x253)*m.b2077 + 0.0992753*m.x1021 <= 0) m.c5068 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x254 - 0.00191656795755345*m.x254*m.x254)*m.b2078 + 0.0992753*m.x1022 <= 0) m.c5069 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x255 - 0.00191656795755345*m.x255*m.x255)*m.b2079 + 0.0992753*m.x1023 <= 0) m.c5070 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x256 - 0.00191656795755345*m.x256*m.x256)*m.b2080 + 0.0992753*m.x1024 <= 0) m.c5071 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x257 - 0.00191656795755345*m.x257*m.x257)*m.b2081 + 0.0992753*m.x1025 <= 0) m.c5072 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x258 - 0.00191656795755345*m.x258*m.x258)*m.b2082 + 0.0992753*m.x1026 <= 0) m.c5073 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x259 - 0.00191656795755345*m.x259*m.x259)*m.b2083 + 0.0992753*m.x1027 <= 0) m.c5074 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x260 - 0.00191656795755345*m.x260*m.x260)*m.b2084 + 0.0992753*m.x1028 <= 0) m.c5075 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x261 - 0.00191656795755345*m.x261*m.x261)*m.b2085 + 0.0992753*m.x1029 <= 0) m.c5076 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x262 - 0.00191656795755345*m.x262*m.x262)*m.b2086 + 0.0992753*m.x1030 <= 0) m.c5077 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x263 - 0.00191656795755345*m.x263*m.x263)*m.b2087 + 0.0992753*m.x1031 <= 0) m.c5078 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x264 - 0.00191656795755345*m.x264*m.x264)*m.b2088 + 0.0992753*m.x1032 <= 0) m.c5079 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x265 - 0.00191656795755345*m.x265*m.x265)*m.b2089 + 0.0992753*m.x1033 <= 0) m.c5080 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x266 - 0.00191656795755345*m.x266*m.x266)*m.b2090 + 0.0992753*m.x1034 <= 0) m.c5081 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x267 - 0.00191656795755345*m.x267*m.x267)*m.b2091 + 0.0992753*m.x1035 <= 0) m.c5082 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x268 - 0.00191656795755345*m.x268*m.x268)*m.b2092 + 0.0992753*m.x1036 <= 0) m.c5083 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x269 - 0.00191656795755345*m.x269*m.x269)*m.b2093 + 0.0992753*m.x1037 <= 0) m.c5084 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x270 - 0.00191656795755345*m.x270*m.x270)*m.b2094 + 0.0992753*m.x1038 <= 0) m.c5085 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x271 - 0.00191656795755345*m.x271*m.x271)*m.b2095 + 0.0992753*m.x1039 <= 0) m.c5086 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x272 - 0.00191656795755345*m.x272*m.x272)*m.b2096 + 0.0992753*m.x1040 <= 0) m.c5087 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x273 - 0.00191656795755345*m.x273*m.x273)*m.b2097 + 0.0992753*m.x1041 <= 0) m.c5088 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x274 - 0.00191656795755345*m.x274*m.x274)*m.b2098 + 0.0992753*m.x1042 <= 0) m.c5089 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x275 - 0.00191656795755345*m.x275*m.x275)*m.b2099 + 0.0992753*m.x1043 <= 0) m.c5090 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x276 - 0.00191656795755345*m.x276*m.x276)*m.b2100 + 0.0992753*m.x1044 <= 0) m.c5091 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x277 - 0.00191656795755345*m.x277*m.x277)*m.b2101 + 0.0992753*m.x1045 <= 0) m.c5092 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x278 - 0.00191656795755345*m.x278*m.x278)*m.b2102 + 0.0992753*m.x1046 <= 0) m.c5093 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x279 - 0.00191656795755345*m.x279*m.x279)*m.b2103 + 0.0992753*m.x1047 <= 0) m.c5094 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x280 - 0.00191656795755345*m.x280*m.x280)*m.b2104 + 0.0992753*m.x1048 <= 0) m.c5095 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x281 - 0.00191656795755345*m.x281*m.x281)*m.b2105 + 0.0992753*m.x1049 <= 0) m.c5096 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x282 - 0.00191656795755345*m.x282*m.x282)*m.b2106 + 0.0992753*m.x1050 <= 0) m.c5097 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x283 - 0.00191656795755345*m.x283*m.x283)*m.b2107 + 0.0992753*m.x1051 <= 0) m.c5098 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x284 - 0.00191656795755345*m.x284*m.x284)*m.b2108 + 0.0992753*m.x1052 <= 0) m.c5099 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x285 - 0.00191656795755345*m.x285*m.x285)*m.b2109 + 0.0992753*m.x1053 <= 0) m.c5100 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x286 - 0.00191656795755345*m.x286*m.x286)*m.b2110 + 0.0992753*m.x1054 <= 0) m.c5101 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x287 - 0.00191656795755345*m.x287*m.x287)*m.b2111 + 0.0992753*m.x1055 <= 0) m.c5102 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x288 - 0.00191656795755345*m.x288*m.x288)*m.b2112 + 0.0992753*m.x1056 <= 0) m.c5103 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x289 - 0.00191656795755345*m.x289*m.x289)*m.b2113 + 0.0992753*m.x1057 <= 0) m.c5104 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x290 - 0.00191656795755345*m.x290*m.x290)*m.b2114 + 0.0992753*m.x1058 <= 0) m.c5105 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x291 - 0.00191656795755345*m.x291*m.x291)*m.b2115 + 0.0992753*m.x1059 <= 0) m.c5106 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x292 - 0.00191656795755345*m.x292*m.x292)*m.b2116 + 0.0992753*m.x1060 <= 0) m.c5107 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x293 - 0.00191656795755345*m.x293*m.x293)*m.b2117 + 0.0992753*m.x1061 <= 0) m.c5108 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x294 - 0.00191656795755345*m.x294*m.x294)*m.b2118 + 0.0992753*m.x1062 <= 0) m.c5109 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x295 - 0.00191656795755345*m.x295*m.x295)*m.b2119 + 0.0992753*m.x1063 <= 0) m.c5110 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x296 - 0.00191656795755345*m.x296*m.x296)*m.b2120 + 0.0992753*m.x1064 <= 0) m.c5111 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x297 - 0.00191656795755345*m.x297*m.x297)*m.b2121 + 0.0992753*m.x1065 <= 0) m.c5112 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x298 - 0.00191656795755345*m.x298*m.x298)*m.b2122 + 0.0992753*m.x1066 <= 0) m.c5113 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x299 - 0.00191656795755345*m.x299*m.x299)*m.b2123 + 0.0992753*m.x1067 <= 0) m.c5114 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x300 - 0.00191656795755345*m.x300*m.x300)*m.b2124 + 0.0992753*m.x1068 <= 0) m.c5115 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x301 - 0.00191656795755345*m.x301*m.x301)*m.b2125 + 0.0992753*m.x1069 <= 0) m.c5116 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x302 - 0.00191656795755345*m.x302*m.x302)*m.b2126 + 0.0992753*m.x1070 <= 0) m.c5117 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x303 - 0.00191656795755345*m.x303*m.x303)*m.b2127 + 0.0992753*m.x1071 <= 0) m.c5118 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x304 - 0.00191656795755345*m.x304*m.x304)*m.b2128 + 0.0992753*m.x1072 <= 0) m.c5119 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x305 - 0.00191656795755345*m.x305*m.x305)*m.b2129 + 0.0992753*m.x1073 <= 0) m.c5120 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x306 - 0.00191656795755345*m.x306*m.x306)*m.b2130 + 0.0992753*m.x1074 <= 0) m.c5121 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x307 - 0.00191656795755345*m.x307*m.x307)*m.b2131 + 0.0992753*m.x1075 <= 0) m.c5122 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x308 - 0.00191656795755345*m.x308*m.x308)*m.b2132 + 0.0992753*m.x1076 <= 0) m.c5123 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x309 - 0.00191656795755345*m.x309*m.x309)*m.b2133 + 0.0992753*m.x1077 <= 0) m.c5124 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x310 - 0.00191656795755345*m.x310*m.x310)*m.b2134 + 0.0992753*m.x1078 <= 0) m.c5125 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x311 - 0.00191656795755345*m.x311*m.x311)*m.b2135 + 0.0992753*m.x1079 <= 0) m.c5126 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x312 - 0.00191656795755345*m.x312*m.x312)*m.b2136 + 0.0992753*m.x1080 <= 0) m.c5127 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x313 - 0.00191656795755345*m.x313*m.x313)*m.b2137 + 0.0992753*m.x1081 <= 0) m.c5128 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x314 - 0.00191656795755345*m.x314*m.x314)*m.b2138 + 0.0992753*m.x1082 <= 0) m.c5129 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x315 - 0.00191656795755345*m.x315*m.x315)*m.b2139 + 0.0992753*m.x1083 <= 0) m.c5130 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x316 - 0.00191656795755345*m.x316*m.x316)*m.b2140 + 0.0992753*m.x1084 <= 0) m.c5131 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x317 - 0.00191656795755345*m.x317*m.x317)*m.b2141 + 0.0992753*m.x1085 <= 0) m.c5132 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x318 - 0.00191656795755345*m.x318*m.x318)*m.b2142 + 0.0992753*m.x1086 <= 0) m.c5133 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x319 - 0.00191656795755345*m.x319*m.x319)*m.b2143 + 0.0992753*m.x1087 <= 0) m.c5134 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x320 - 0.00191656795755345*m.x320*m.x320)*m.b2144 + 0.0992753*m.x1088 <= 0) m.c5135 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x321 - 0.00191656795755345*m.x321*m.x321)*m.b2145 + 0.0992753*m.x1089 <= 0) m.c5136 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x322 - 0.00191656795755345*m.x322*m.x322)*m.b2146 + 0.0992753*m.x1090 <= 0) m.c5137 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x323 - 0.00191656795755345*m.x323*m.x323)*m.b2147 + 0.0992753*m.x1091 <= 0) m.c5138 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x324 - 0.00191656795755345*m.x324*m.x324)*m.b2148 + 0.0992753*m.x1092 <= 0) m.c5139 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x325 - 0.00191656795755345*m.x325*m.x325)*m.b2149 + 0.0992753*m.x1093 <= 0) m.c5140 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x326 - 0.00191656795755345*m.x326*m.x326)*m.b2150 + 0.0992753*m.x1094 <= 0) m.c5141 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x327 - 0.00191656795755345*m.x327*m.x327)*m.b2151 + 0.0992753*m.x1095 <= 0) m.c5142 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x328 - 0.00191656795755345*m.x328*m.x328)*m.b2152 + 0.0992753*m.x1096 <= 0) m.c5143 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x329 - 0.00191656795755345*m.x329*m.x329)*m.b2153 + 0.0992753*m.x1097 <= 0) m.c5144 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x330 - 0.00191656795755345*m.x330*m.x330)*m.b2154 + 0.0992753*m.x1098 <= 0) m.c5145 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x331 - 0.00191656795755345*m.x331*m.x331)*m.b2155 + 0.0992753*m.x1099 <= 0) m.c5146 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x332 - 0.00191656795755345*m.x332*m.x332)*m.b2156 + 0.0992753*m.x1100 <= 0) m.c5147 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x333 - 0.00191656795755345*m.x333*m.x333)*m.b2157 + 0.0992753*m.x1101 <= 0) m.c5148 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x334 - 0.00191656795755345*m.x334*m.x334)*m.b2158 + 0.0992753*m.x1102 <= 0) m.c5149 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x335 - 0.00191656795755345*m.x335*m.x335)*m.b2159 + 0.0992753*m.x1103 <= 0) m.c5150 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x336 - 0.00191656795755345*m.x336*m.x336)*m.b2160 + 0.0992753*m.x1104 <= 0) m.c5151 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x337 - 0.00191656795755345*m.x337*m.x337)*m.b2161 + 0.0992753*m.x1105 <= 0) m.c5152 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x338 - 0.00191656795755345*m.x338*m.x338)*m.b2162 + 0.0992753*m.x1106 <= 0) m.c5153 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x339 - 0.00191656795755345*m.x339*m.x339)*m.b2163 + 0.0992753*m.x1107 <= 0) m.c5154 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x340 - 0.00191656795755345*m.x340*m.x340)*m.b2164 + 0.0992753*m.x1108 <= 0) m.c5155 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x341 - 0.00191656795755345*m.x341*m.x341)*m.b2165 + 0.0992753*m.x1109 <= 0) m.c5156 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x342 - 0.00191656795755345*m.x342*m.x342)*m.b2166 + 0.0992753*m.x1110 <= 0) m.c5157 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x343 - 0.00191656795755345*m.x343*m.x343)*m.b2167 + 0.0992753*m.x1111 <= 0) m.c5158 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x344 - 0.00191656795755345*m.x344*m.x344)*m.b2168 + 0.0992753*m.x1112 <= 0) m.c5159 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x345 - 0.00191656795755345*m.x345*m.x345)*m.b2169 + 0.0992753*m.x1113 <= 0) m.c5160 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x346 - 0.00191656795755345*m.x346*m.x346)*m.b2170 + 0.0992753*m.x1114 <= 0) m.c5161 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x347 - 0.00191656795755345*m.x347*m.x347)*m.b2171 + 0.0992753*m.x1115 <= 0) m.c5162 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x348 - 0.00191656795755345*m.x348*m.x348)*m.b2172 + 0.0992753*m.x1116 <= 0) m.c5163 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x349 - 0.00191656795755345*m.x349*m.x349)*m.b2173 + 0.0992753*m.x1117 <= 0) m.c5164 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x350 - 0.00191656795755345*m.x350*m.x350)*m.b2174 + 0.0992753*m.x1118 <= 0) m.c5165 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x351 - 0.00191656795755345*m.x351*m.x351)*m.b2175 + 0.0992753*m.x1119 <= 0) m.c5166 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x352 - 0.00191656795755345*m.x352*m.x352)*m.b2176 + 0.0992753*m.x1120 <= 0) m.c5167 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x353 - 0.00191656795755345*m.x353*m.x353)*m.b2177 + 0.0992753*m.x1121 <= 0) m.c5168 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x354 - 0.00191656795755345*m.x354*m.x354)*m.b2178 + 0.0992753*m.x1122 <= 0) m.c5169 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x355 - 0.00191656795755345*m.x355*m.x355)*m.b2179 + 0.0992753*m.x1123 <= 0) m.c5170 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x356 - 0.00191656795755345*m.x356*m.x356)*m.b2180 + 0.0992753*m.x1124 <= 0) m.c5171 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x357 - 0.00191656795755345*m.x357*m.x357)*m.b2181 + 0.0992753*m.x1125 <= 0) m.c5172 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x358 - 0.00191656795755345*m.x358*m.x358)*m.b2182 + 0.0992753*m.x1126 <= 0) m.c5173 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x359 - 0.00191656795755345*m.x359*m.x359)*m.b2183 + 0.0992753*m.x1127 <= 0) m.c5174 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x360 - 0.00191656795755345*m.x360*m.x360)*m.b2184 + 0.0992753*m.x1128 <= 0) m.c5175 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x361 - 0.00191656795755345*m.x361*m.x361)*m.b2185 + 0.0992753*m.x1129 <= 0) m.c5176 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x362 - 0.00191656795755345*m.x362*m.x362)*m.b2186 + 0.0992753*m.x1130 <= 0) m.c5177 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x363 - 0.00191656795755345*m.x363*m.x363)*m.b2187 + 0.0992753*m.x1131 <= 0) m.c5178 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x364 - 0.00191656795755345*m.x364*m.x364)*m.b2188 + 0.0992753*m.x1132 <= 0) m.c5179 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x365 - 0.00191656795755345*m.x365*m.x365)*m.b2189 + 0.0992753*m.x1133 <= 0) m.c5180 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x366 - 0.00191656795755345*m.x366*m.x366)*m.b2190 + 0.0992753*m.x1134 <= 0) m.c5181 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x367 - 0.00191656795755345*m.x367*m.x367)*m.b2191 + 0.0992753*m.x1135 <= 0) m.c5182 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x368 - 0.00191656795755345*m.x368*m.x368)*m.b2192 + 0.0992753*m.x1136 <= 0) m.c5183 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x369 - 0.00191656795755345*m.x369*m.x369)*m.b2193 + 0.0992753*m.x1137 <= 0) m.c5184 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x370 - 0.00191656795755345*m.x370*m.x370)*m.b2194 + 0.0992753*m.x1138 <= 0) m.c5185 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x371 - 0.00191656795755345*m.x371*m.x371)*m.b2195 + 0.0992753*m.x1139 <= 0) m.c5186 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x372 - 0.00191656795755345*m.x372*m.x372)*m.b2196 + 0.0992753*m.x1140 <= 0) m.c5187 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x373 - 0.00191656795755345*m.x373*m.x373)*m.b2197 + 0.0992753*m.x1141 <= 0) m.c5188 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x374 - 0.00191656795755345*m.x374*m.x374)*m.b2198 + 0.0992753*m.x1142 <= 0) m.c5189 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x375 - 0.00191656795755345*m.x375*m.x375)*m.b2199 + 0.0992753*m.x1143 <= 0) m.c5190 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x376 - 0.00191656795755345*m.x376*m.x376)*m.b2200 + 0.0992753*m.x1144 <= 0) m.c5191 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x377 - 0.00191656795755345*m.x377*m.x377)*m.b2201 + 0.0992753*m.x1145 <= 0) m.c5192 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x378 - 0.00191656795755345*m.x378*m.x378)*m.b2202 + 0.0992753*m.x1146 <= 0) m.c5193 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x379 - 0.00191656795755345*m.x379*m.x379)*m.b2203 + 0.0992753*m.x1147 <= 0) m.c5194 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x380 - 0.00191656795755345*m.x380*m.x380)*m.b2204 + 0.0992753*m.x1148 <= 0) m.c5195 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x381 - 0.00191656795755345*m.x381*m.x381)*m.b2205 + 0.0992753*m.x1149 <= 0) m.c5196 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x382 - 0.00191656795755345*m.x382*m.x382)*m.b2206 + 0.0992753*m.x1150 <= 0) m.c5197 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x383 - 0.00191656795755345*m.x383*m.x383)*m.b2207 + 0.0992753*m.x1151 <= 0) m.c5198 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x384 - 0.00191656795755345*m.x384*m.x384)*m.b2208 + 0.0992753*m.x1152 <= 0) m.c5199 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x385 - 0.00191656795755345*m.x385*m.x385)*m.b2209 + 0.0992753*m.x1153 <= 0) m.c5200 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x194*m.x194 + 0.0405088495575221*m.x194)*m.b2018 + 0.183453*m.x578 <= 0) m.c5201 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x195*m.x195 + 0.0404933628318584*m.x195)*m.b2019 + 0.183453*m.x579 <= 0) m.c5202 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x196*m.x196 + 0.0404856194690265*m.x196)*m.b2020 + 0.183453*m.x580 <= 0) m.c5203 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x197*m.x197 + 0.0404701327433628*m.x197)*m.b2021 + 0.183453*m.x581 <= 0) m.c5204 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x198*m.x198 + 0.040462389380531*m.x198)*m.b2022 + 0.183453*m.x582 <= 0) m.c5205 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x199*m.x199 + 0.0404546460176991*m.x199)*m.b2023 + 0.183453*m.x583 <= 0) m.c5206 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x200*m.x200 + 0.040462389380531*m.x200)*m.b2024 + 0.183453*m.x584 <= 0) m.c5207 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x201*m.x201 + 0.0404778761061947*m.x201)*m.b2025 + 0.183453*m.x585 <= 0) m.c5208 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x202*m.x202 + 0.040516592920354*m.x202)*m.b2026 + 0.183453*m.x586 <= 0) m.c5209 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x203*m.x203 + 0.0405940265486726*m.x203)*m.b2027 + 0.183453*m.x587 <= 0) m.c5210 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x204*m.x204 + 0.0407179203539823*m.x204)*m.b2028 + 0.183453*m.x588 <= 0) m.c5211 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x205*m.x205 + 0.0408573008849558*m.x205)*m.b2029 + 0.183453*m.x589 <= 0) m.c5212 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x206*m.x206 + 0.0410199115044248*m.x206)*m.b2030 + 0.183453*m.x590 <= 0) m.c5213 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x207*m.x207 + 0.0410586283185841*m.x207)*m.b2031 + 0.183453*m.x591 <= 0) m.c5214 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x208*m.x208 + 0.0409424778761062*m.x208)*m.b2032 + 0.183453*m.x592 <= 0) m.c5215 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x209*m.x209 + 0.0409115044247788*m.x209)*m.b2033 + 0.183453*m.x593 <= 0) m.c5216 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x210*m.x210 + 0.0408495575221239*m.x210)*m.b2034 + 0.183453*m.x594 <= 0) m.c5217 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x211*m.x211 + 0.0407488938053097*m.x211)*m.b2035 + 0.183453*m.x595 <= 0) m.c5218 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x212*m.x212 + 0.0406869469026549*m.x212)*m.b2036 + 0.183453*m.x596 <= 0) m.c5219 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x213*m.x213 + 0.0406559734513274*m.x213)*m.b2037 + 0.183453*m.x597 <= 0) m.c5220 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x214*m.x214 + 0.040625*m.x214)*m.b2038 + 0.183453*m.x598 <= 0) m.c5221 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x215*m.x215 + 0.0405940265486726*m.x215)*m.b2039 + 0.183453*m.x599 <= 0) m.c5222 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x216*m.x216 + 0.040570796460177*m.x216)*m.b2040 + 0.183453*m.x600 <= 0) m.c5223 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x217*m.x217 + 0.0405475663716814*m.x217)*m.b2041 + 0.183453*m.x601 <= 0) m.c5224 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x218*m.x218 + 0.0406637168141593*m.x218)*m.b2042 + 0.183453*m.x602 <= 0) m.c5225 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x219*m.x219 + 0.0407256637168142*m.x219)*m.b2043 + 0.183453*m.x603 <= 0) m.c5226 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x220*m.x220 + 0.0407953539823009*m.x220)*m.b2044 + 0.183453*m.x604 <= 0) m.c5227 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x221*m.x221 + 0.0408573008849558*m.x221)*m.b2045 + 0.183453*m.x605 <= 0) m.c5228 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x222*m.x222 + 0.0409269911504425*m.x222)*m.b2046 + 0.183453*m.x606 <= 0) m.c5229 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x223*m.x223 + 0.0409192477876106*m.x223)*m.b2047 + 0.183453*m.x607 <= 0) m.c5230 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x224*m.x224 + 0.0409269911504425*m.x224)*m.b2048 + 0.183453*m.x608 <= 0) m.c5231 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x225*m.x225 + 0.0410199115044248*m.x225)*m.b2049 + 0.183453*m.x609 <= 0) m.c5232 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x226*m.x226 + 0.0410586283185841*m.x226)*m.b2050 + 0.183453*m.x610 <= 0) m.c5233 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x227*m.x227 + 0.0412134955752212*m.x227)*m.b2051 + 0.183453*m.x611 <= 0) m.c5234 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x228*m.x228 + 0.0412599557522124*m.x228)*m.b2052 + 0.183453*m.x612 <= 0) m.c5235 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x229*m.x229 + 0.0413219026548673*m.x229)*m.b2053 + 0.183453*m.x613 <= 0) m.c5236 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x230*m.x230 + 0.0414845132743363*m.x230)*m.b2054 + 0.183453*m.x614 <= 0) m.c5237 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x231*m.x231 + 0.0416006637168142*m.x231)*m.b2055 + 0.183453*m.x615 <= 0) m.c5238 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x232*m.x232 + 0.0415619469026549*m.x232)*m.b2056 + 0.183453*m.x616 <= 0) m.c5239 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x233*m.x233 + 0.0414535398230089*m.x233)*m.b2057 + 0.183453*m.x617 <= 0) m.c5240 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x234*m.x234 + 0.041391592920354*m.x234)*m.b2058 + 0.183453*m.x618 <= 0) m.c5241 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x235*m.x235 + 0.0412134955752212*m.x235)*m.b2059 + 0.183453*m.x619 <= 0) m.c5242 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x236*m.x236 + 0.0410741150442478*m.x236)*m.b2060 + 0.183453*m.x620 <= 0) m.c5243 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x237*m.x237 + 0.0410431415929204*m.x237)*m.b2061 + 0.183453*m.x621 <= 0) m.c5244 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x238*m.x238 + 0.0409347345132743*m.x238)*m.b2062 + 0.183453*m.x622 <= 0) m.c5245 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x239*m.x239 + 0.0409811946902655*m.x239)*m.b2063 + 0.183453*m.x623 <= 0) m.c5246 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x240*m.x240 + 0.0409579646017699*m.x240)*m.b2064 + 0.183453*m.x624 <= 0) m.c5247 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x241*m.x241 + 0.0405475663716814*m.x241)*m.b2065 + 0.183453*m.x625 <= 0) m.c5248 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x242*m.x242 + 0.0405088495575221*m.x242)*m.b2066 + 0.183453*m.x626 <= 0) m.c5249 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x243*m.x243 + 0.0404933628318584*m.x243)*m.b2067 + 0.183453*m.x627 <= 0) m.c5250 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x244*m.x244 + 0.0404856194690265*m.x244)*m.b2068 + 0.183453*m.x628 <= 0) m.c5251 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x245*m.x245 + 0.0404701327433628*m.x245)*m.b2069 + 0.183453*m.x629 <= 0) m.c5252 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x246*m.x246 + 0.040462389380531*m.x246)*m.b2070 + 0.183453*m.x630 <= 0) m.c5253 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x247*m.x247 + 0.0404546460176991*m.x247)*m.b2071 + 0.183453*m.x631 <= 0) m.c5254 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x248*m.x248 + 0.040462389380531*m.x248)*m.b2072 + 0.183453*m.x632 <= 0) m.c5255 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x249*m.x249 + 0.0404778761061947*m.x249)*m.b2073 + 0.183453*m.x633 <= 0) m.c5256 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x250*m.x250 + 0.040516592920354*m.x250)*m.b2074 + 0.183453*m.x634 <= 0) m.c5257 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x251*m.x251 + 0.0405940265486726*m.x251)*m.b2075 + 0.183453*m.x635 <= 0) m.c5258 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x252*m.x252 + 0.0407179203539823*m.x252)*m.b2076 + 0.183453*m.x636 <= 0) m.c5259 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x253*m.x253 + 0.0408573008849558*m.x253)*m.b2077 + 0.183453*m.x637 <= 0) m.c5260 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x254*m.x254 + 0.0410199115044248*m.x254)*m.b2078 + 0.183453*m.x638 <= 0) m.c5261 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x255*m.x255 + 0.0410586283185841*m.x255)*m.b2079 + 0.183453*m.x639 <= 0) m.c5262 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x256*m.x256 + 0.0409424778761062*m.x256)*m.b2080 + 0.183453*m.x640 <= 0) m.c5263 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x257*m.x257 + 0.0409115044247788*m.x257)*m.b2081 + 0.183453*m.x641 <= 0) m.c5264 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x258*m.x258 + 0.0408495575221239*m.x258)*m.b2082 + 0.183453*m.x642 <= 0) m.c5265 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x259*m.x259 + 0.0407488938053097*m.x259)*m.b2083 + 0.183453*m.x643 <= 0) m.c5266 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x260*m.x260 + 0.0406869469026549*m.x260)*m.b2084 + 0.183453*m.x644 <= 0) m.c5267 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x261*m.x261 + 0.0406559734513274*m.x261)*m.b2085 + 0.183453*m.x645 <= 0) m.c5268 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x262*m.x262 + 0.040625*m.x262)*m.b2086 + 0.183453*m.x646 <= 0) m.c5269 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x263*m.x263 + 0.0405940265486726*m.x263)*m.b2087 + 0.183453*m.x647 <= 0) m.c5270 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x264*m.x264 + 0.040570796460177*m.x264)*m.b2088 + 0.183453*m.x648 <= 0) m.c5271 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x265*m.x265 + 0.0405475663716814*m.x265)*m.b2089 + 0.183453*m.x649 <= 0) m.c5272 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x266*m.x266 + 0.0406637168141593*m.x266)*m.b2090 + 0.183453*m.x650 <= 0) m.c5273 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x267*m.x267 + 0.0407256637168142*m.x267)*m.b2091 + 0.183453*m.x651 <= 0) m.c5274 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x268*m.x268 + 0.0407953539823009*m.x268)*m.b2092 + 0.183453*m.x652 <= 0) m.c5275 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x269*m.x269 + 0.0408573008849558*m.x269)*m.b2093 + 0.183453*m.x653 <= 0) m.c5276 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x270*m.x270 + 0.0409269911504425*m.x270)*m.b2094 + 0.183453*m.x654 <= 0) m.c5277 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x271*m.x271 + 0.0409192477876106*m.x271)*m.b2095 + 0.183453*m.x655 <= 0) m.c5278 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x272*m.x272 + 0.0409269911504425*m.x272)*m.b2096 + 0.183453*m.x656 <= 0) m.c5279 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x273*m.x273 + 0.0410199115044248*m.x273)*m.b2097 + 0.183453*m.x657 <= 0) m.c5280 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x274*m.x274 + 0.0410586283185841*m.x274)*m.b2098 + 0.183453*m.x658 <= 0) m.c5281 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x275*m.x275 + 0.0412134955752212*m.x275)*m.b2099 + 0.183453*m.x659 <= 0) m.c5282 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x276*m.x276 + 0.0412599557522124*m.x276)*m.b2100 + 0.183453*m.x660 <= 0) m.c5283 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x277*m.x277 + 0.0413219026548673*m.x277)*m.b2101 + 0.183453*m.x661 <= 0) m.c5284 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x278*m.x278 + 0.0414845132743363*m.x278)*m.b2102 + 0.183453*m.x662 <= 0) m.c5285 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x279*m.x279 + 0.0416006637168142*m.x279)*m.b2103 + 0.183453*m.x663 <= 0) m.c5286 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x280*m.x280 + 0.0415619469026549*m.x280)*m.b2104 + 0.183453*m.x664 <= 0) m.c5287 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x281*m.x281 + 0.0414535398230089*m.x281)*m.b2105 + 0.183453*m.x665 <= 0) m.c5288 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x282*m.x282 + 0.041391592920354*m.x282)*m.b2106 + 0.183453*m.x666 <= 0) m.c5289 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x283*m.x283 + 0.0412134955752212*m.x283)*m.b2107 + 0.183453*m.x667 <= 0) m.c5290 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x284*m.x284 + 0.0410741150442478*m.x284)*m.b2108 + 0.183453*m.x668 <= 0) m.c5291 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x285*m.x285 + 0.0410431415929204*m.x285)*m.b2109 + 0.183453*m.x669 <= 0) m.c5292 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x286*m.x286 + 0.0409347345132743*m.x286)*m.b2110 + 0.183453*m.x670 <= 0) m.c5293 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x287*m.x287 + 0.0409811946902655*m.x287)*m.b2111 + 0.183453*m.x671 <= 0) m.c5294 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x288*m.x288 + 0.0409579646017699*m.x288)*m.b2112 + 0.183453*m.x672 <= 0) m.c5295 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x289*m.x289 + 0.0405475663716814*m.x289)*m.b2113 + 0.183453*m.x673 <= 0) m.c5296 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x290*m.x290 + 0.0405088495575221*m.x290)*m.b2114 + 0.183453*m.x674 <= 0) m.c5297 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x291*m.x291 + 0.0404933628318584*m.x291)*m.b2115 + 0.183453*m.x675 <= 0) m.c5298 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x292*m.x292 + 0.0404856194690265*m.x292)*m.b2116 + 0.183453*m.x676 <= 0) m.c5299 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x293*m.x293 + 0.0404701327433628*m.x293)*m.b2117 + 0.183453*m.x677 <= 0) m.c5300 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x294*m.x294 + 0.040462389380531*m.x294)*m.b2118 + 0.183453*m.x678 <= 0) m.c5301 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x295*m.x295 + 0.0404546460176991*m.x295)*m.b2119 + 0.183453*m.x679 <= 0) m.c5302 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x296*m.x296 + 0.040462389380531*m.x296)*m.b2120 + 0.183453*m.x680 <= 0) m.c5303 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x297*m.x297 + 0.0404778761061947*m.x297)*m.b2121 + 0.183453*m.x681 <= 0) m.c5304 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x298*m.x298 + 0.040516592920354*m.x298)*m.b2122 + 0.183453*m.x682 <= 0) m.c5305 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x299*m.x299 + 0.0405940265486726*m.x299)*m.b2123 + 0.183453*m.x683 <= 0) m.c5306 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x300*m.x300 + 0.0407179203539823*m.x300)*m.b2124 + 0.183453*m.x684 <= 0) m.c5307 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x301*m.x301 + 0.0408573008849558*m.x301)*m.b2125 + 0.183453*m.x685 <= 0) m.c5308 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x302*m.x302 + 0.0410199115044248*m.x302)*m.b2126 + 0.183453*m.x686 <= 0) m.c5309 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x303*m.x303 + 0.0410586283185841*m.x303)*m.b2127 + 0.183453*m.x687 <= 0) m.c5310 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x304*m.x304 + 0.0409424778761062*m.x304)*m.b2128 + 0.183453*m.x688 <= 0) m.c5311 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x305*m.x305 + 0.0409115044247788*m.x305)*m.b2129 + 0.183453*m.x689 <= 0) m.c5312 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x306*m.x306 + 0.0408495575221239*m.x306)*m.b2130 + 0.183453*m.x690 <= 0) m.c5313 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x307*m.x307 + 0.0407488938053097*m.x307)*m.b2131 + 0.183453*m.x691 <= 0) m.c5314 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x308*m.x308 + 0.0406869469026549*m.x308)*m.b2132 + 0.183453*m.x692 <= 0) m.c5315 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x309*m.x309 + 0.0406559734513274*m.x309)*m.b2133 + 0.183453*m.x693 <= 0) m.c5316 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x310*m.x310 + 0.040625*m.x310)*m.b2134 + 0.183453*m.x694 <= 0) m.c5317 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x311*m.x311 + 0.0405940265486726*m.x311)*m.b2135 + 0.183453*m.x695 <= 0) m.c5318 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x312*m.x312 + 0.040570796460177*m.x312)*m.b2136 + 0.183453*m.x696 <= 0) m.c5319 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x313*m.x313 + 0.0405475663716814*m.x313)*m.b2137 + 0.183453*m.x697 <= 0) m.c5320 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x314*m.x314 + 0.0406637168141593*m.x314)*m.b2138 + 0.183453*m.x698 <= 0) m.c5321 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x315*m.x315 + 0.0407256637168142*m.x315)*m.b2139 + 0.183453*m.x699 <= 0) m.c5322 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x316*m.x316 + 0.0407953539823009*m.x316)*m.b2140 + 0.183453*m.x700 <= 0) m.c5323 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x317*m.x317 + 0.0408573008849558*m.x317)*m.b2141 + 0.183453*m.x701 <= 0) m.c5324 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x318*m.x318 + 0.0409269911504425*m.x318)*m.b2142 + 0.183453*m.x702 <= 0) m.c5325 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x319*m.x319 + 0.0409192477876106*m.x319)*m.b2143 + 0.183453*m.x703 <= 0) m.c5326 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x320*m.x320 + 0.0409269911504425*m.x320)*m.b2144 + 0.183453*m.x704 <= 0) m.c5327 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x321*m.x321 + 0.0410199115044248*m.x321)*m.b2145 + 0.183453*m.x705 <= 0) m.c5328 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x322*m.x322 + 0.0410586283185841*m.x322)*m.b2146 + 0.183453*m.x706 <= 0) m.c5329 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x323*m.x323 + 0.0412134955752212*m.x323)*m.b2147 + 0.183453*m.x707 <= 0) m.c5330 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x324*m.x324 + 0.0412599557522124*m.x324)*m.b2148 + 0.183453*m.x708 <= 0) m.c5331 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x325*m.x325 + 0.0413219026548673*m.x325)*m.b2149 + 0.183453*m.x709 <= 0) m.c5332 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x326*m.x326 + 0.0414845132743363*m.x326)*m.b2150 + 0.183453*m.x710 <= 0) m.c5333 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x327*m.x327 + 0.0416006637168142*m.x327)*m.b2151 + 0.183453*m.x711 <= 0) m.c5334 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x328*m.x328 + 0.0415619469026549*m.x328)*m.b2152 + 0.183453*m.x712 <= 0) m.c5335 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x329*m.x329 + 0.0414535398230089*m.x329)*m.b2153 + 0.183453*m.x713 <= 0) m.c5336 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x330*m.x330 + 0.041391592920354*m.x330)*m.b2154 + 0.183453*m.x714 <= 0) m.c5337 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x331*m.x331 + 0.0412134955752212*m.x331)*m.b2155 + 0.183453*m.x715 <= 0) m.c5338 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x332*m.x332 + 0.0410741150442478*m.x332)*m.b2156 + 0.183453*m.x716 <= 0) m.c5339 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x333*m.x333 + 0.0410431415929204*m.x333)*m.b2157 + 0.183453*m.x717 <= 0) m.c5340 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x334*m.x334 + 0.0409347345132743*m.x334)*m.b2158 + 0.183453*m.x718 <= 0) m.c5341 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x335*m.x335 + 0.0409811946902655*m.x335)*m.b2159 + 0.183453*m.x719 <= 0) m.c5342 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x336*m.x336 + 0.0409579646017699*m.x336)*m.b2160 + 0.183453*m.x720 <= 0) m.c5343 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x337*m.x337 + 0.0405475663716814*m.x337)*m.b2161 + 0.183453*m.x721 <= 0) m.c5344 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x338*m.x338 + 0.0405088495575221*m.x338)*m.b2162 + 0.183453*m.x722 <= 0) m.c5345 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x339*m.x339 + 0.0404933628318584*m.x339)*m.b2163 + 0.183453*m.x723 <= 0) m.c5346 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x340*m.x340 + 0.0404856194690265*m.x340)*m.b2164 + 0.183453*m.x724 <= 0) m.c5347 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x341*m.x341 + 0.0404701327433628*m.x341)*m.b2165 + 0.183453*m.x725 <= 0) m.c5348 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x342*m.x342 + 0.040462389380531*m.x342)*m.b2166 + 0.183453*m.x726 <= 0) m.c5349 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x343*m.x343 + 0.0404546460176991*m.x343)*m.b2167 + 0.183453*m.x727 <= 0) m.c5350 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x344*m.x344 + 0.040462389380531*m.x344)*m.b2168 + 0.183453*m.x728 <= 0) m.c5351 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x345*m.x345 + 0.0404778761061947*m.x345)*m.b2169 + 0.183453*m.x729 <= 0) m.c5352 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x346*m.x346 + 0.040516592920354*m.x346)*m.b2170 + 0.183453*m.x730 <= 0) m.c5353 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x347*m.x347 + 0.0405940265486726*m.x347)*m.b2171 + 0.183453*m.x731 <= 0) m.c5354 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x348*m.x348 + 0.0407179203539823*m.x348)*m.b2172 + 0.183453*m.x732 <= 0) m.c5355 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x349*m.x349 + 0.0408573008849558*m.x349)*m.b2173 + 0.183453*m.x733 <= 0) m.c5356 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x350*m.x350 + 0.0410199115044248*m.x350)*m.b2174 + 0.183453*m.x734 <= 0) m.c5357 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x351*m.x351 + 0.0410586283185841*m.x351)*m.b2175 + 0.183453*m.x735 <= 0) m.c5358 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x352*m.x352 + 0.0409424778761062*m.x352)*m.b2176 + 0.183453*m.x736 <= 0) m.c5359 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x353*m.x353 + 0.0409115044247788*m.x353)*m.b2177 + 0.183453*m.x737 <= 0) m.c5360 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x354*m.x354 + 0.0408495575221239*m.x354)*m.b2178 + 0.183453*m.x738 <= 0) m.c5361 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x355*m.x355 + 0.0407488938053097*m.x355)*m.b2179 + 0.183453*m.x739 <= 0) m.c5362 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x356*m.x356 + 0.0406869469026549*m.x356)*m.b2180 + 0.183453*m.x740 <= 0) m.c5363 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x357*m.x357 + 0.0406559734513274*m.x357)*m.b2181 + 0.183453*m.x741 <= 0) m.c5364 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x358*m.x358 + 0.040625*m.x358)*m.b2182 + 0.183453*m.x742 <= 0) m.c5365 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x359*m.x359 + 0.0405940265486726*m.x359)*m.b2183 + 0.183453*m.x743 <= 0) m.c5366 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x360*m.x360 + 0.040570796460177*m.x360)*m.b2184 + 0.183453*m.x744 <= 0) m.c5367 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x361*m.x361 + 0.0405475663716814*m.x361)*m.b2185 + 0.183453*m.x745 <= 0) m.c5368 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x362*m.x362 + 0.0406637168141593*m.x362)*m.b2186 + 0.183453*m.x746 <= 0) m.c5369 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x363*m.x363 + 0.0407256637168142*m.x363)*m.b2187 + 0.183453*m.x747 <= 0) m.c5370 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x364*m.x364 + 0.0407953539823009*m.x364)*m.b2188 + 0.183453*m.x748 <= 0) m.c5371 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x365*m.x365 + 0.0408573008849558*m.x365)*m.b2189 + 0.183453*m.x749 <= 0) m.c5372 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x366*m.x366 + 0.0409269911504425*m.x366)*m.b2190 + 0.183453*m.x750 <= 0) m.c5373 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x367*m.x367 + 0.0409192477876106*m.x367)*m.b2191 + 0.183453*m.x751 <= 0) m.c5374 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x368*m.x368 + 0.0409269911504425*m.x368)*m.b2192 + 0.183453*m.x752 <= 0) m.c5375 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x369*m.x369 + 0.0410199115044248*m.x369)*m.b2193 + 0.183453*m.x753 <= 0) m.c5376 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x370*m.x370 + 0.0410586283185841*m.x370)*m.b2194 + 0.183453*m.x754 <= 0) m.c5377 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x371*m.x371 + 0.0412134955752212*m.x371)*m.b2195 + 0.183453*m.x755 <= 0) m.c5378 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x372*m.x372 + 0.0412599557522124*m.x372)*m.b2196 + 0.183453*m.x756 <= 0) m.c5379 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x373*m.x373 + 0.0413219026548673*m.x373)*m.b2197 + 0.183453*m.x757 <= 0) m.c5380 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x374*m.x374 + 0.0414845132743363*m.x374)*m.b2198 + 0.183453*m.x758 <= 0) m.c5381 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x375*m.x375 + 0.0416006637168142*m.x375)*m.b2199 + 0.183453*m.x759 <= 0) m.c5382 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x376*m.x376 + 0.0415619469026549*m.x376)*m.b2200 + 0.183453*m.x760 <= 0) m.c5383 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x377*m.x377 + 0.0414535398230089*m.x377)*m.b2201 + 0.183453*m.x761 <= 0) m.c5384 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x378*m.x378 + 0.041391592920354*m.x378)*m.b2202 + 0.183453*m.x762 <= 0) m.c5385 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x379*m.x379 + 0.0412134955752212*m.x379)*m.b2203 + 0.183453*m.x763 <= 0) m.c5386 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x380*m.x380 + 0.0410741150442478*m.x380)*m.b2204 + 0.183453*m.x764 <= 0) m.c5387 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x381*m.x381 + 0.0410431415929204*m.x381)*m.b2205 + 0.183453*m.x765 <= 0) m.c5388 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x382*m.x382 + 0.0409347345132743*m.x382)*m.b2206 + 0.183453*m.x766 <= 0) m.c5389 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x383*m.x383 + 0.0409811946902655*m.x383)*m.b2207 + 0.183453*m.x767 <= 0) m.c5390 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x384*m.x384 + 0.0409579646017699*m.x384)*m.b2208 + 0.183453*m.x768 <= 0) m.c5391 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x385*m.x385 + 0.0405475663716814*m.x385)*m.b2209 + 0.183453*m.x769 <= 0) m.c5392 = Constraint(expr= m.x1154 <= 0) m.c5393 = Constraint(expr= m.x1155 <= 0) m.c5394 = Constraint(expr= m.x1156 <= 0) m.c5395 = Constraint(expr= m.x1157 <= 0) m.c5396 = Constraint(expr= m.x1158 <= 0) m.c5397 = Constraint(expr= m.x1159 <= 0) m.c5398 = Constraint(expr= m.x1160 <= 0) m.c5399 = Constraint(expr= m.x1161 <= 0) m.c5400 = Constraint(expr= m.x1162 <= 0) m.c5401 = Constraint(expr= m.x1163 <= 0) m.c5402 = Constraint(expr= m.x1164 <= 0) m.c5403 = Constraint(expr= m.x1165 <= 0) m.c5404 = Constraint(expr= m.x1166 <= 0) m.c5405 = Constraint(expr= m.x1167 <= 0) m.c5406 = Constraint(expr= m.x1168 <= 0) m.c5407 = Constraint(expr= m.x1169 <= 0) m.c5408 = Constraint(expr= m.x1170 <= 0) m.c5409 = Constraint(expr= m.x1171 <= 0) m.c5410 = Constraint(expr= m.x1172 <= 0) m.c5411 = Constraint(expr= m.x1173 <= 0) m.c5412 = Constraint(expr= m.x1174 <= 0) m.c5413 = Constraint(expr= m.x1175 <= 0) m.c5414 = Constraint(expr= m.x1176 <= 0) m.c5415 = Constraint(expr= m.x1177 <= 0) m.c5416 = Constraint(expr= m.x1178 <= 0) m.c5417 = Constraint(expr= m.x1179 <= 0) m.c5418 = Constraint(expr= m.x1180 <= 0) m.c5419 = Constraint(expr= m.x1181 <= 0) m.c5420 = Constraint(expr= m.x1182 <= 0) m.c5421 = Constraint(expr= m.x1183 <= 0) m.c5422 = Constraint(expr= m.x1184 <= 0) m.c5423 = Constraint(expr= m.x1185 <= 0) m.c5424 = Constraint(expr= m.x1186 <= 0) m.c5425 = Constraint(expr= m.x1187 <= 0) m.c5426 = Constraint(expr= m.x1188 <= 0) m.c5427 = Constraint(expr= m.x1189 <= 0) m.c5428 = Constraint(expr= m.x1190 <= 0) m.c5429 = Constraint(expr= m.x1191 <= 0) m.c5430 = Constraint(expr= m.x1192 <= 0) m.c5431 = Constraint(expr= m.x1193 <= 0) m.c5432 = Constraint(expr= m.x1194 <= 0) m.c5433 = Constraint(expr= m.x1195 <= 0) m.c5434 = Constraint(expr= m.x1196 <= 0) m.c5435 = Constraint(expr= m.x1197 <= 0) m.c5436 = Constraint(expr= m.x1198 <= 0) m.c5437 = Constraint(expr= m.x1199 <= 0) m.c5438 = Constraint(expr= m.x1200 <= 0) m.c5439 = Constraint(expr= m.x1201 <= 0) m.c5440 = Constraint(expr= m.x1202 <= 0) m.c5441 = Constraint(expr= m.x1203 <= 0) m.c5442 = Constraint(expr= m.x1204 <= 0) m.c5443 = Constraint(expr= m.x1205 <= 0) m.c5444 = Constraint(expr= m.x1206 <= 0) m.c5445 = Constraint(expr= m.x1207 <= 0) m.c5446 = Constraint(expr= m.x1208 <= 0) m.c5447 = Constraint(expr= m.x1209 <= 0) m.c5448 = Constraint(expr= m.x1210 <= 0) m.c5449 = Constraint(expr= m.x1211 <= 0) m.c5450 = Constraint(expr= m.x1212 <= 0) m.c5451 = Constraint(expr= m.x1213 <= 0) m.c5452 = Constraint(expr= m.x1214 <= 0) m.c5453 = Constraint(expr= m.x1215 <= 0) m.c5454 = Constraint(expr= m.x1216 <= 0) m.c5455 = Constraint(expr= m.x1217 <= 0) m.c5456 = Constraint(expr= m.x1218 <= 0) m.c5457 = Constraint(expr= m.x1219 <= 0) m.c5458 = Constraint(expr= m.x1220 <= 0) m.c5459 = Constraint(expr= m.x1221 <= 0) m.c5460 = Constraint(expr= m.x1222 <= 0) m.c5461 = Constraint(expr= m.x1223 <= 0) m.c5462 = Constraint(expr= m.x1224 <= 0) m.c5463 = Constraint(expr= m.x1225 <= 0) m.c5464 = Constraint(expr= m.x1226 <= 0) m.c5465 = Constraint(expr= m.x1227 <= 0) m.c5466 = Constraint(expr= m.x1228 <= 0) m.c5467 = Constraint(expr= m.x1229 <= 0) m.c5468 = Constraint(expr= m.x1230 <= 0) m.c5469 = Constraint(expr= m.x1231 <= 0) m.c5470 = Constraint(expr= m.x1232 <= 0) m.c5471 = Constraint(expr= m.x1233 <= 0) m.c5472 = Constraint(expr= m.x1234 <= 0) m.c5473 = Constraint(expr= m.x1235 <= 0) m.c5474 = Constraint(expr= m.x1236 <= 0) m.c5475 = Constraint(expr= m.x1237 <= 0) m.c5476 = Constraint(expr= m.x1238 <= 0) m.c5477 = Constraint(expr= m.x1239 <= 0) m.c5478 = Constraint(expr= m.x1240 <= 0) m.c5479 = Constraint(expr= m.x1241 <= 0) m.c5480 = Constraint(expr= m.x1242 <= 0) m.c5481 = Constraint(expr= m.x1243 <= 0) m.c5482 = Constraint(expr= m.x1244 <= 0) m.c5483 = Constraint(expr= m.x1245 <= 0) m.c5484 = Constraint(expr= m.x1246 <= 0) m.c5485 = Constraint(expr= m.x1247 <= 0) m.c5486 = Constraint(expr= m.x1248 <= 0) m.c5487 = Constraint(expr= m.x1249 <= 0) m.c5488 = Constraint(expr=-(-0.66175 + 0.0286774761764095*m.x98 - 0.000152475248549441*m.x98*m.x98)*m.b2210 + 0.0334717*m.x866 <= 0) m.c5489 = Constraint(expr=-(-0.66317 + 0.0286868852638374*m.x99 - 0.000152475248549441*m.x99*m.x99)*m.b2211 + 0.0334717*m.x867 <= 0) m.c5490 = Constraint(expr=-(-0.66388 + 0.0286915898075513*m.x100 - 0.000152475248549441*m.x100*m.x100)*m.b2212 + 0.0334717*m.x868 <= 0) m.c5491 = Constraint(expr=-(-0.6653 + 0.0287009988949793*m.x101 - 0.000152475248549441*m.x101*m.x101)*m.b2213 + 0.0334717*m.x869 <= 0) m.c5492 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x102 - 0.000152475248549441*m.x102*m.x102)*m.b2214 + 0.0334717*m.x870 <= 0) m.c5493 = Constraint(expr=-(-0.66672 + 0.0287104079824072*m.x103 - 0.000152475248549441*m.x103*m.x103)*m.b2215 + 0.0334717*m.x871 <= 0) m.c5494 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x104 - 0.000152475248549441*m.x104*m.x104)*m.b2216 + 0.0334717*m.x872 <= 0) m.c5495 = Constraint(expr=-(-0.66459 + 0.0286962943512653*m.x105 - 0.000152475248549441*m.x105*m.x105)*m.b2217 + 0.0334717*m.x873 <= 0) m.c5496 = Constraint(expr=-(-0.66104 + 0.0286727716326955*m.x106 - 0.000152475248549441*m.x106*m.x106)*m.b2218 + 0.0334717*m.x874 <= 0) m.c5497 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x107 - 0.000152475248549441*m.x107*m.x107)*m.b2219 + 0.0334717*m.x875 <= 0) m.c5498 = Constraint(expr=-(-0.64258 + 0.0285504534961324*m.x108 - 0.000152475248549441*m.x108*m.x108)*m.b2220 + 0.0334717*m.x876 <= 0) m.c5499 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x109 - 0.000152475248549441*m.x109*m.x109)*m.b2221 + 0.0334717*m.x877 <= 0) m.c5500 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x110 - 0.000152475248549441*m.x110*m.x110)*m.b2222 + 0.0334717*m.x878 <= 0) m.c5501 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x111 - 0.000152475248549441*m.x111*m.x111)*m.b2223 + 0.0334717*m.x879 <= 0) m.c5502 = Constraint(expr=-(-0.62199 + 0.0284140217284275*m.x112 - 0.000152475248549441*m.x112*m.x112)*m.b2224 + 0.0334717*m.x880 <= 0) m.c5503 = Constraint(expr=-(-0.62483 + 0.0284328399032833*m.x113 - 0.000152475248549441*m.x113*m.x113)*m.b2225 + 0.0334717*m.x881 <= 0) m.c5504 = Constraint(expr=-(-0.63051 + 0.0284704762529951*m.x114 - 0.000152475248549441*m.x114*m.x114)*m.b2226 + 0.0334717*m.x882 <= 0) m.c5505 = Constraint(expr=-(-0.63974 + 0.0285316353212766*m.x115 - 0.000152475248549441*m.x115*m.x115)*m.b2227 + 0.0334717*m.x883 <= 0) m.c5506 = Constraint(expr=-(-0.64542 + 0.0285692716709883*m.x116 - 0.000152475248549441*m.x116*m.x116)*m.b2228 + 0.0334717*m.x884 <= 0) m.c5507 = Constraint(expr=-(-0.64826 + 0.0285880898458441*m.x117 - 0.000152475248549441*m.x117*m.x117)*m.b2229 + 0.0334717*m.x885 <= 0) m.c5508 = Constraint(expr=-(-0.6511 + 0.0286069080207*m.x118 - 0.000152475248549441*m.x118*m.x118)*m.b2230 + 0.0334717*m.x886 <= 0) m.c5509 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x119 - 0.000152475248549441*m.x119*m.x119)*m.b2231 + 0.0334717*m.x887 <= 0) m.c5510 = Constraint(expr=-(-0.65607 + 0.0286398398266977*m.x120 - 0.000152475248549441*m.x120*m.x120)*m.b2232 + 0.0334717*m.x888 <= 0) m.c5511 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x121 - 0.000152475248549441*m.x121*m.x121)*m.b2233 + 0.0334717*m.x889 <= 0) m.c5512 = Constraint(expr=-(-0.64755 + 0.0285833853021302*m.x122 - 0.000152475248549441*m.x122*m.x122)*m.b2234 + 0.0334717*m.x890 <= 0) m.c5513 = Constraint(expr=-(-0.64187 + 0.0285457489524185*m.x123 - 0.000152475248549441*m.x123*m.x123)*m.b2235 + 0.0334717*m.x891 <= 0) m.c5514 = Constraint(expr=-(-0.63548 + 0.0285034080589928*m.x124 - 0.000152475248549441*m.x124*m.x124)*m.b2236 + 0.0334717*m.x892 <= 0) m.c5515 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x125 - 0.000152475248549441*m.x125*m.x125)*m.b2237 + 0.0334717*m.x893 <= 0) m.c5516 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x126 - 0.000152475248549441*m.x126*m.x126)*m.b2238 + 0.0334717*m.x894 <= 0) m.c5517 = Constraint(expr=-(-0.62412 + 0.0284281353595694*m.x127 - 0.000152475248549441*m.x127*m.x127)*m.b2239 + 0.0334717*m.x895 <= 0) m.c5518 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x128 - 0.000152475248549441*m.x128*m.x128)*m.b2240 + 0.0334717*m.x896 <= 0) m.c5519 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x129 - 0.000152475248549441*m.x129*m.x129)*m.b2241 + 0.0334717*m.x897 <= 0) m.c5520 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x130 - 0.000152475248549441*m.x130*m.x130)*m.b2242 + 0.0334717*m.x898 <= 0) m.c5521 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x131 - 0.000152475248549441*m.x131*m.x131)*m.b2243 + 0.0334717*m.x899 <= 0) m.c5522 = Constraint(expr=-(-0.59288 + 0.028221135436155*m.x132 - 0.000152475248549441*m.x132*m.x132)*m.b2244 + 0.0334717*m.x900 <= 0) m.c5523 = Constraint(expr=-(-0.5872 + 0.0281834990864433*m.x133 - 0.000152475248549441*m.x133*m.x133)*m.b2245 + 0.0334717*m.x901 <= 0) m.c5524 = Constraint(expr=-(-0.57229 + 0.02808470366845*m.x134 - 0.000152475248549441*m.x134*m.x134)*m.b2246 + 0.0334717*m.x902 <= 0) m.c5525 = Constraint(expr=-(-0.56164 + 0.0280141355127406*m.x135 - 0.000152475248549441*m.x135*m.x135)*m.b2247 + 0.0334717*m.x903 <= 0) m.c5526 = Constraint(expr=-(-0.56519 + 0.0280376582313104*m.x136 - 0.000152475248549441*m.x136*m.x136)*m.b2248 + 0.0334717*m.x904 <= 0) m.c5527 = Constraint(expr=-(-0.57513 + 0.0281035218433059*m.x137 - 0.000152475248549441*m.x137*m.x137)*m.b2249 + 0.0334717*m.x905 <= 0) m.c5528 = Constraint(expr=-(-0.58081 + 0.0281411581930176*m.x138 - 0.000152475248549441*m.x138*m.x138)*m.b2250 + 0.0334717*m.x906 <= 0) m.c5529 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x139 - 0.000152475248549441*m.x139*m.x139)*m.b2251 + 0.0334717*m.x907 <= 0) m.c5530 = Constraint(expr=-(-0.60992 + 0.0283340444852901*m.x140 - 0.000152475248549441*m.x140*m.x140)*m.b2252 + 0.0334717*m.x908 <= 0) m.c5531 = Constraint(expr=-(-0.61276 + 0.028352862660146*m.x141 - 0.000152475248549441*m.x141*m.x141)*m.b2253 + 0.0334717*m.x909 <= 0) m.c5532 = Constraint(expr=-(-0.6227 + 0.0284187262721414*m.x142 - 0.000152475248549441*m.x142*m.x142)*m.b2254 + 0.0334717*m.x910 <= 0) m.c5533 = Constraint(expr=-(-0.61844 + 0.0283904990098577*m.x143 - 0.000152475248549441*m.x143*m.x143)*m.b2255 + 0.0334717*m.x911 <= 0) m.c5534 = Constraint(expr=-(-0.62057 + 0.0284046126409996*m.x144 - 0.000152475248549441*m.x144*m.x144)*m.b2256 + 0.0334717*m.x912 <= 0) m.c5535 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x145 - 0.000152475248549441*m.x145*m.x145)*m.b2257 + 0.0334717*m.x913 <= 0) m.c5536 = Constraint(expr=-(-0.66175 + 0.0286774761764095*m.x146 - 0.000152475248549441*m.x146*m.x146)*m.b2258 + 0.0334717*m.x914 <= 0) m.c5537 = Constraint(expr=-(-0.66317 + 0.0286868852638374*m.x147 - 0.000152475248549441*m.x147*m.x147)*m.b2259 + 0.0334717*m.x915 <= 0) m.c5538 = Constraint(expr=-(-0.66388 + 0.0286915898075513*m.x148 - 0.000152475248549441*m.x148*m.x148)*m.b2260 + 0.0334717*m.x916 <= 0) m.c5539 = Constraint(expr=-(-0.6653 + 0.0287009988949793*m.x149 - 0.000152475248549441*m.x149*m.x149)*m.b2261 + 0.0334717*m.x917 <= 0) m.c5540 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x150 - 0.000152475248549441*m.x150*m.x150)*m.b2262 + 0.0334717*m.x918 <= 0) m.c5541 = Constraint(expr=-(-0.66672 + 0.0287104079824072*m.x151 - 0.000152475248549441*m.x151*m.x151)*m.b2263 + 0.0334717*m.x919 <= 0) m.c5542 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x152 - 0.000152475248549441*m.x152*m.x152)*m.b2264 + 0.0334717*m.x920 <= 0) m.c5543 = Constraint(expr=-(-0.66459 + 0.0286962943512653*m.x153 - 0.000152475248549441*m.x153*m.x153)*m.b2265 + 0.0334717*m.x921 <= 0) m.c5544 = Constraint(expr=-(-0.66104 + 0.0286727716326955*m.x154 - 0.000152475248549441*m.x154*m.x154)*m.b2266 + 0.0334717*m.x922 <= 0) m.c5545 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x155 - 0.000152475248549441*m.x155*m.x155)*m.b2267 + 0.0334717*m.x923 <= 0) m.c5546 = Constraint(expr=-(-0.64258 + 0.0285504534961324*m.x156 - 0.000152475248549441*m.x156*m.x156)*m.b2268 + 0.0334717*m.x924 <= 0) m.c5547 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x157 - 0.000152475248549441*m.x157*m.x157)*m.b2269 + 0.0334717*m.x925 <= 0) m.c5548 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x158 - 0.000152475248549441*m.x158*m.x158)*m.b2270 + 0.0334717*m.x926 <= 0) m.c5549 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x159 - 0.000152475248549441*m.x159*m.x159)*m.b2271 + 0.0334717*m.x927 <= 0) m.c5550 = Constraint(expr=-(-0.62199 + 0.0284140217284275*m.x160 - 0.000152475248549441*m.x160*m.x160)*m.b2272 + 0.0334717*m.x928 <= 0) m.c5551 = Constraint(expr=-(-0.62483 + 0.0284328399032833*m.x161 - 0.000152475248549441*m.x161*m.x161)*m.b2273 + 0.0334717*m.x929 <= 0) m.c5552 = Constraint(expr=-(-0.63051 + 0.0284704762529951*m.x162 - 0.000152475248549441*m.x162*m.x162)*m.b2274 + 0.0334717*m.x930 <= 0) m.c5553 = Constraint(expr=-(-0.63974 + 0.0285316353212766*m.x163 - 0.000152475248549441*m.x163*m.x163)*m.b2275 + 0.0334717*m.x931 <= 0) m.c5554 = Constraint(expr=-(-0.64542 + 0.0285692716709883*m.x164 - 0.000152475248549441*m.x164*m.x164)*m.b2276 + 0.0334717*m.x932 <= 0) m.c5555 = Constraint(expr=-(-0.64826 + 0.0285880898458441*m.x165 - 0.000152475248549441*m.x165*m.x165)*m.b2277 + 0.0334717*m.x933 <= 0) m.c5556 = Constraint(expr=-(-0.6511 + 0.0286069080207*m.x166 - 0.000152475248549441*m.x166*m.x166)*m.b2278 + 0.0334717*m.x934 <= 0) m.c5557 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x167 - 0.000152475248549441*m.x167*m.x167)*m.b2279 + 0.0334717*m.x935 <= 0) m.c5558 = Constraint(expr=-(-0.65607 + 0.0286398398266977*m.x168 - 0.000152475248549441*m.x168*m.x168)*m.b2280 + 0.0334717*m.x936 <= 0) m.c5559 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x169 - 0.000152475248549441*m.x169*m.x169)*m.b2281 + 0.0334717*m.x937 <= 0) m.c5560 = Constraint(expr=-(-0.64755 + 0.0285833853021302*m.x170 - 0.000152475248549441*m.x170*m.x170)*m.b2282 + 0.0334717*m.x938 <= 0) m.c5561 = Constraint(expr=-(-0.64187 + 0.0285457489524185*m.x171 - 0.000152475248549441*m.x171*m.x171)*m.b2283 + 0.0334717*m.x939 <= 0) m.c5562 = Constraint(expr=-(-0.63548 + 0.0285034080589928*m.x172 - 0.000152475248549441*m.x172*m.x172)*m.b2284 + 0.0334717*m.x940 <= 0) m.c5563 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x173 - 0.000152475248549441*m.x173*m.x173)*m.b2285 + 0.0334717*m.x941 <= 0) m.c5564 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x174 - 0.000152475248549441*m.x174*m.x174)*m.b2286 + 0.0334717*m.x942 <= 0) m.c5565 = Constraint(expr=-(-0.62412 + 0.0284281353595694*m.x175 - 0.000152475248549441*m.x175*m.x175)*m.b2287 + 0.0334717*m.x943 <= 0) m.c5566 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x176 - 0.000152475248549441*m.x176*m.x176)*m.b2288 + 0.0334717*m.x944 <= 0) m.c5567 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x177 - 0.000152475248549441*m.x177*m.x177)*m.b2289 + 0.0334717*m.x945 <= 0) m.c5568 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x178 - 0.000152475248549441*m.x178*m.x178)*m.b2290 + 0.0334717*m.x946 <= 0) m.c5569 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x179 - 0.000152475248549441*m.x179*m.x179)*m.b2291 + 0.0334717*m.x947 <= 0) m.c5570 = Constraint(expr=-(-0.59288 + 0.028221135436155*m.x180 - 0.000152475248549441*m.x180*m.x180)*m.b2292 + 0.0334717*m.x948 <= 0) m.c5571 = Constraint(expr=-(-0.5872 + 0.0281834990864433*m.x181 - 0.000152475248549441*m.x181*m.x181)*m.b2293 + 0.0334717*m.x949 <= 0) m.c5572 = Constraint(expr=-(-0.57229 + 0.02808470366845*m.x182 - 0.000152475248549441*m.x182*m.x182)*m.b2294 + 0.0334717*m.x950 <= 0) m.c5573 = Constraint(expr=-(-0.56164 + 0.0280141355127406*m.x183 - 0.000152475248549441*m.x183*m.x183)*m.b2295 + 0.0334717*m.x951 <= 0) m.c5574 = Constraint(expr=-(-0.56519 + 0.0280376582313104*m.x184 - 0.000152475248549441*m.x184*m.x184)*m.b2296 + 0.0334717*m.x952 <= 0) m.c5575 = Constraint(expr=-(-0.57513 + 0.0281035218433059*m.x185 - 0.000152475248549441*m.x185*m.x185)*m.b2297 + 0.0334717*m.x953 <= 0) m.c5576 = Constraint(expr=-(-0.58081 + 0.0281411581930176*m.x186 - 0.000152475248549441*m.x186*m.x186)*m.b2298 + 0.0334717*m.x954 <= 0) m.c5577 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x187 - 0.000152475248549441*m.x187*m.x187)*m.b2299 + 0.0334717*m.x955 <= 0) m.c5578 = Constraint(expr=-(-0.60992 + 0.0283340444852901*m.x188 - 0.000152475248549441*m.x188*m.x188)*m.b2300 + 0.0334717*m.x956 <= 0) m.c5579 = Constraint(expr=-(-0.61276 + 0.028352862660146*m.x189 - 0.000152475248549441*m.x189*m.x189)*m.b2301 + 0.0334717*m.x957 <= 0) m.c5580 = Constraint(expr=-(-0.6227 + 0.0284187262721414*m.x190 - 0.000152475248549441*m.x190*m.x190)*m.b2302 + 0.0334717*m.x958 <= 0) m.c5581 = Constraint(expr=-(-0.61844 + 0.0283904990098577*m.x191 - 0.000152475248549441*m.x191*m.x191)*m.b2303 + 0.0334717*m.x959 <= 0) m.c5582 = Constraint(expr=-(-0.62057 + 0.0284046126409996*m.x192 - 0.000152475248549441*m.x192*m.x192)*m.b2304 + 0.0334717*m.x960 <= 0) m.c5583 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x193 - 0.000152475248549441*m.x193*m.x193)*m.b2305 + 0.0334717*m.x961 <= 0) m.c5584 = Constraint(expr=-(-0.52165 + 0.0198575507926609*m.x98 - 9.55693503233427e-5*m.x98*m.x98)*m.b2210 + 0.0291954*m.x482 <= 0) m.c5585 = Constraint(expr=-(-0.52227 + 0.0198623647443682*m.x99 - 9.55693503233427e-5*m.x99*m.x99)*m.b2211 + 0.0291954*m.x483 <= 0) m.c5586 = Constraint(expr=-(-0.52258 + 0.0198647717202219*m.x100 - 9.55693503233427e-5*m.x100*m.x100)*m.b2212 + 0.0291954*m.x484 <= 0) m.c5587 = Constraint(expr=-(-0.5232 + 0.0198695856719292*m.x101 - 9.55693503233427e-5*m.x101*m.x101)*m.b2213 + 0.0291954*m.x485 <= 0) m.c5588 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x102 - 9.55693503233427e-5*m.x102*m.x102)*m.b2214 + 0.0291954*m.x486 <= 0) m.c5589 = Constraint(expr=-(-0.52382 + 0.0198743996236365*m.x103 - 9.55693503233427e-5*m.x103*m.x103)*m.b2215 + 0.0291954*m.x487 <= 0) m.c5590 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x104 - 9.55693503233427e-5*m.x104*m.x104)*m.b2216 + 0.0291954*m.x488 <= 0) m.c5591 = Constraint(expr=-(-0.52289 + 0.0198671786960755*m.x105 - 9.55693503233427e-5*m.x105*m.x105)*m.b2217 + 0.0291954*m.x489 <= 0) m.c5592 = Constraint(expr=-(-0.52134 + 0.0198551438168073*m.x106 - 9.55693503233427e-5*m.x106*m.x106)*m.b2218 + 0.0291954*m.x490 <= 0) m.c5593 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x107 - 9.55693503233427e-5*m.x107*m.x107)*m.b2219 + 0.0291954*m.x491 <= 0) m.c5594 = Constraint(expr=-(-0.51328 + 0.0197925624446122*m.x108 - 9.55693503233427e-5*m.x108*m.x108)*m.b2220 + 0.0291954*m.x492 <= 0) m.c5595 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x109 - 9.55693503233427e-5*m.x109*m.x109)*m.b2221 + 0.0291954*m.x493 <= 0) m.c5596 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x110 - 9.55693503233427e-5*m.x110*m.x110)*m.b2222 + 0.0291954*m.x494 <= 0) m.c5597 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x111 - 9.55693503233427e-5*m.x111*m.x111)*m.b2223 + 0.0291954*m.x495 <= 0) m.c5598 = Constraint(expr=-(-0.50429 + 0.0197227601448562*m.x112 - 9.55693503233427e-5*m.x112*m.x112)*m.b2224 + 0.0291954*m.x496 <= 0) m.c5599 = Constraint(expr=-(-0.50553 + 0.0197323880482708*m.x113 - 9.55693503233427e-5*m.x113*m.x113)*m.b2225 + 0.0291954*m.x497 <= 0) m.c5600 = Constraint(expr=-(-0.50801 + 0.0197516438551001*m.x114 - 9.55693503233427e-5*m.x114*m.x114)*m.b2226 + 0.0291954*m.x498 <= 0) m.c5601 = Constraint(expr=-(-0.51204 + 0.0197829345411976*m.x115 - 9.55693503233427e-5*m.x115*m.x115)*m.b2227 + 0.0291954*m.x499 <= 0) m.c5602 = Constraint(expr=-(-0.51452 + 0.0198021903480268*m.x116 - 9.55693503233427e-5*m.x116*m.x116)*m.b2228 + 0.0291954*m.x500 <= 0) m.c5603 = Constraint(expr=-(-0.51576 + 0.0198118182514414*m.x117 - 9.55693503233427e-5*m.x117*m.x117)*m.b2229 + 0.0291954*m.x501 <= 0) m.c5604 = Constraint(expr=-(-0.517 + 0.0198214461548561*m.x118 - 9.55693503233427e-5*m.x118*m.x118)*m.b2230 + 0.0291954*m.x502 <= 0) m.c5605 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x119 - 9.55693503233427e-5*m.x119*m.x119)*m.b2231 + 0.0291954*m.x503 <= 0) m.c5606 = Constraint(expr=-(-0.51917 + 0.0198382949858317*m.x120 - 9.55693503233427e-5*m.x120*m.x120)*m.b2232 + 0.0291954*m.x504 <= 0) m.c5607 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x121 - 9.55693503233427e-5*m.x121*m.x121)*m.b2233 + 0.0291954*m.x505 <= 0) m.c5608 = Constraint(expr=-(-0.51545 + 0.0198094112755878*m.x122 - 9.55693503233427e-5*m.x122*m.x122)*m.b2234 + 0.0291954*m.x506 <= 0) m.c5609 = Constraint(expr=-(-0.51297 + 0.0197901554687585*m.x123 - 9.55693503233427e-5*m.x123*m.x123)*m.b2235 + 0.0291954*m.x507 <= 0) m.c5610 = Constraint(expr=-(-0.51018 + 0.0197684926860756*m.x124 - 9.55693503233427e-5*m.x124*m.x124)*m.b2236 + 0.0291954*m.x508 <= 0) m.c5611 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x125 - 9.55693503233427e-5*m.x125*m.x125)*m.b2237 + 0.0291954*m.x509 <= 0) m.c5612 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x126 - 9.55693503233427e-5*m.x126*m.x126)*m.b2238 + 0.0291954*m.x510 <= 0) m.c5613 = Constraint(expr=-(-0.50522 + 0.0197299810724171*m.x127 - 9.55693503233427e-5*m.x127*m.x127)*m.b2239 + 0.0291954*m.x511 <= 0) m.c5614 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x128 - 9.55693503233427e-5*m.x128*m.x128)*m.b2240 + 0.0291954*m.x512 <= 0) m.c5615 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x129 - 9.55693503233427e-5*m.x129*m.x129)*m.b2241 + 0.0291954*m.x513 <= 0) m.c5616 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x130 - 9.55693503233427e-5*m.x130*m.x130)*m.b2242 + 0.0291954*m.x514 <= 0) m.c5617 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x131 - 9.55693503233427e-5*m.x131*m.x131)*m.b2243 + 0.0291954*m.x515 <= 0) m.c5618 = Constraint(expr=-(-0.49158 + 0.0196240741348563*m.x132 - 9.55693503233427e-5*m.x132*m.x132)*m.b2244 + 0.0291954*m.x516 <= 0) m.c5619 = Constraint(expr=-(-0.4891 + 0.019604818328027*m.x133 - 9.55693503233427e-5*m.x133*m.x133)*m.b2245 + 0.0291954*m.x517 <= 0) m.c5620 = Constraint(expr=-(-0.48259 + 0.0195542718351003*m.x134 - 9.55693503233427e-5*m.x134*m.x134)*m.b2246 + 0.0291954*m.x518 <= 0) m.c5621 = Constraint(expr=-(-0.47794 + 0.0195181671972954*m.x135 - 9.55693503233427e-5*m.x135*m.x135)*m.b2247 + 0.0291954*m.x519 <= 0) m.c5622 = Constraint(expr=-(-0.47949 + 0.0195302020765637*m.x136 - 9.55693503233427e-5*m.x136*m.x136)*m.b2248 + 0.0291954*m.x520 <= 0) m.c5623 = Constraint(expr=-(-0.48383 + 0.0195638997385149*m.x137 - 9.55693503233427e-5*m.x137*m.x137)*m.b2249 + 0.0291954*m.x521 <= 0) m.c5624 = Constraint(expr=-(-0.48631 + 0.0195831555453441*m.x138 - 9.55693503233427e-5*m.x138*m.x138)*m.b2250 + 0.0291954*m.x522 <= 0) m.c5625 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x139 - 9.55693503233427e-5*m.x139*m.x139)*m.b2251 + 0.0291954*m.x523 <= 0) m.c5626 = Constraint(expr=-(-0.49902 + 0.019681841555344*m.x140 - 9.55693503233427e-5*m.x140*m.x140)*m.b2252 + 0.0291954*m.x524 <= 0) m.c5627 = Constraint(expr=-(-0.50026 + 0.0196914694587587*m.x141 - 9.55693503233427e-5*m.x141*m.x141)*m.b2253 + 0.0291954*m.x525 <= 0) m.c5628 = Constraint(expr=-(-0.5046 + 0.0197251671207098*m.x142 - 9.55693503233427e-5*m.x142*m.x142)*m.b2254 + 0.0291954*m.x526 <= 0) m.c5629 = Constraint(expr=-(-0.50274 + 0.0197107252655879*m.x143 - 9.55693503233427e-5*m.x143*m.x143)*m.b2255 + 0.0291954*m.x527 <= 0) m.c5630 = Constraint(expr=-(-0.50367 + 0.0197179461931489*m.x144 - 9.55693503233427e-5*m.x144*m.x144)*m.b2256 + 0.0291954*m.x528 <= 0) m.c5631 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x145 - 9.55693503233427e-5*m.x145*m.x145)*m.b2257 + 0.0291954*m.x529 <= 0) m.c5632 = Constraint(expr=-(-0.52165 + 0.0198575507926609*m.x146 - 9.55693503233427e-5*m.x146*m.x146)*m.b2258 + 0.0291954*m.x530 <= 0) m.c5633 = Constraint(expr=-(-0.52227 + 0.0198623647443682*m.x147 - 9.55693503233427e-5*m.x147*m.x147)*m.b2259 + 0.0291954*m.x531 <= 0) m.c5634 = Constraint(expr=-(-0.52258 + 0.0198647717202219*m.x148 - 9.55693503233427e-5*m.x148*m.x148)*m.b2260 + 0.0291954*m.x532 <= 0) m.c5635 = Constraint(expr=-(-0.5232 + 0.0198695856719292*m.x149 - 9.55693503233427e-5*m.x149*m.x149)*m.b2261 + 0.0291954*m.x533 <= 0) m.c5636 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x150 - 9.55693503233427e-5*m.x150*m.x150)*m.b2262 + 0.0291954*m.x534 <= 0) m.c5637 = Constraint(expr=-(-0.52382 + 0.0198743996236365*m.x151 - 9.55693503233427e-5*m.x151*m.x151)*m.b2263 + 0.0291954*m.x535 <= 0) m.c5638 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x152 - 9.55693503233427e-5*m.x152*m.x152)*m.b2264 + 0.0291954*m.x536 <= 0) m.c5639 = Constraint(expr=-(-0.52289 + 0.0198671786960755*m.x153 - 9.55693503233427e-5*m.x153*m.x153)*m.b2265 + 0.0291954*m.x537 <= 0) m.c5640 = Constraint(expr=-(-0.52134 + 0.0198551438168073*m.x154 - 9.55693503233427e-5*m.x154*m.x154)*m.b2266 + 0.0291954*m.x538 <= 0) m.c5641 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x155 - 9.55693503233427e-5*m.x155*m.x155)*m.b2267 + 0.0291954*m.x539 <= 0) m.c5642 = Constraint(expr=-(-0.51328 + 0.0197925624446122*m.x156 - 9.55693503233427e-5*m.x156*m.x156)*m.b2268 + 0.0291954*m.x540 <= 0) m.c5643 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x157 - 9.55693503233427e-5*m.x157*m.x157)*m.b2269 + 0.0291954*m.x541 <= 0) m.c5644 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x158 - 9.55693503233427e-5*m.x158*m.x158)*m.b2270 + 0.0291954*m.x542 <= 0) m.c5645 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x159 - 9.55693503233427e-5*m.x159*m.x159)*m.b2271 + 0.0291954*m.x543 <= 0) m.c5646 = Constraint(expr=-(-0.50429 + 0.0197227601448562*m.x160 - 9.55693503233427e-5*m.x160*m.x160)*m.b2272 + 0.0291954*m.x544 <= 0) m.c5647 = Constraint(expr=-(-0.50553 + 0.0197323880482708*m.x161 - 9.55693503233427e-5*m.x161*m.x161)*m.b2273 + 0.0291954*m.x545 <= 0) m.c5648 = Constraint(expr=-(-0.50801 + 0.0197516438551001*m.x162 - 9.55693503233427e-5*m.x162*m.x162)*m.b2274 + 0.0291954*m.x546 <= 0) m.c5649 = Constraint(expr=-(-0.51204 + 0.0197829345411976*m.x163 - 9.55693503233427e-5*m.x163*m.x163)*m.b2275 + 0.0291954*m.x547 <= 0) m.c5650 = Constraint(expr=-(-0.51452 + 0.0198021903480268*m.x164 - 9.55693503233427e-5*m.x164*m.x164)*m.b2276 + 0.0291954*m.x548 <= 0) m.c5651 = Constraint(expr=-(-0.51576 + 0.0198118182514414*m.x165 - 9.55693503233427e-5*m.x165*m.x165)*m.b2277 + 0.0291954*m.x549 <= 0) m.c5652 = Constraint(expr=-(-0.517 + 0.0198214461548561*m.x166 - 9.55693503233427e-5*m.x166*m.x166)*m.b2278 + 0.0291954*m.x550 <= 0) m.c5653 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x167 - 9.55693503233427e-5*m.x167*m.x167)*m.b2279 + 0.0291954*m.x551 <= 0) m.c5654 = Constraint(expr=-(-0.51917 + 0.0198382949858317*m.x168 - 9.55693503233427e-5*m.x168*m.x168)*m.b2280 + 0.0291954*m.x552 <= 0) m.c5655 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x169 - 9.55693503233427e-5*m.x169*m.x169)*m.b2281 + 0.0291954*m.x553 <= 0) m.c5656 = Constraint(expr=-(-0.51545 + 0.0198094112755878*m.x170 - 9.55693503233427e-5*m.x170*m.x170)*m.b2282 + 0.0291954*m.x554 <= 0) m.c5657 = Constraint(expr=-(-0.51297 + 0.0197901554687585*m.x171 - 9.55693503233427e-5*m.x171*m.x171)*m.b2283 + 0.0291954*m.x555 <= 0) m.c5658 = Constraint(expr=-(-0.51018 + 0.0197684926860756*m.x172 - 9.55693503233427e-5*m.x172*m.x172)*m.b2284 + 0.0291954*m.x556 <= 0) m.c5659 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x173 - 9.55693503233427e-5*m.x173*m.x173)*m.b2285 + 0.0291954*m.x557 <= 0) m.c5660 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x174 - 9.55693503233427e-5*m.x174*m.x174)*m.b2286 + 0.0291954*m.x558 <= 0) m.c5661 = Constraint(expr=-(-0.50522 + 0.0197299810724171*m.x175 - 9.55693503233427e-5*m.x175*m.x175)*m.b2287 + 0.0291954*m.x559 <= 0) m.c5662 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x176 - 9.55693503233427e-5*m.x176*m.x176)*m.b2288 + 0.0291954*m.x560 <= 0) m.c5663 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x177 - 9.55693503233427e-5*m.x177*m.x177)*m.b2289 + 0.0291954*m.x561 <= 0) m.c5664 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x178 - 9.55693503233427e-5*m.x178*m.x178)*m.b2290 + 0.0291954*m.x562 <= 0) m.c5665 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x179 - 9.55693503233427e-5*m.x179*m.x179)*m.b2291 + 0.0291954*m.x563 <= 0) m.c5666 = Constraint(expr=-(-0.49158 + 0.0196240741348563*m.x180 - 9.55693503233427e-5*m.x180*m.x180)*m.b2292 + 0.0291954*m.x564 <= 0) m.c5667 = Constraint(expr=-(-0.4891 + 0.019604818328027*m.x181 - 9.55693503233427e-5*m.x181*m.x181)*m.b2293 + 0.0291954*m.x565 <= 0) m.c5668 = Constraint(expr=-(-0.48259 + 0.0195542718351003*m.x182 - 9.55693503233427e-5*m.x182*m.x182)*m.b2294 + 0.0291954*m.x566 <= 0) m.c5669 = Constraint(expr=-(-0.47794 + 0.0195181671972954*m.x183 - 9.55693503233427e-5*m.x183*m.x183)*m.b2295 + 0.0291954*m.x567 <= 0) m.c5670 = Constraint(expr=-(-0.47949 + 0.0195302020765637*m.x184 - 9.55693503233427e-5*m.x184*m.x184)*m.b2296 + 0.0291954*m.x568 <= 0) m.c5671 = Constraint(expr=-(-0.48383 + 0.0195638997385149*m.x185 - 9.55693503233427e-5*m.x185*m.x185)*m.b2297 + 0.0291954*m.x569 <= 0) m.c5672 = Constraint(expr=-(-0.48631 + 0.0195831555453441*m.x186 - 9.55693503233427e-5*m.x186*m.x186)*m.b2298 + 0.0291954*m.x570 <= 0) m.c5673 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x187 - 9.55693503233427e-5*m.x187*m.x187)*m.b2299 + 0.0291954*m.x571 <= 0) m.c5674 = Constraint(expr=-(-0.49902 + 0.019681841555344*m.x188 - 9.55693503233427e-5*m.x188*m.x188)*m.b2300 + 0.0291954*m.x572 <= 0) m.c5675 = Constraint(expr=-(-0.50026 + 0.0196914694587587*m.x189 - 9.55693503233427e-5*m.x189*m.x189)*m.b2301 + 0.0291954*m.x573 <= 0) m.c5676 = Constraint(expr=-(-0.5046 + 0.0197251671207098*m.x190 - 9.55693503233427e-5*m.x190*m.x190)*m.b2302 + 0.0291954*m.x574 <= 0) m.c5677 = Constraint(expr=-(-0.50274 + 0.0197107252655879*m.x191 - 9.55693503233427e-5*m.x191*m.x191)*m.b2303 + 0.0291954*m.x575 <= 0) m.c5678 = Constraint(expr=-(-0.50367 + 0.0197179461931489*m.x192 - 9.55693503233427e-5*m.x192*m.x192)*m.b2304 + 0.0291954*m.x576 <= 0) m.c5679 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x193 - 9.55693503233427e-5*m.x193*m.x193)*m.b2305 + 0.0291954*m.x577 <= 0) m.c5680 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x2 - 0.000204938271604938*m.x2*m.x2)*m.b2306 + 0.025*m.x770 <= 0) m.c5681 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x3 - 0.000204938271604938*m.x3*m.x3)*m.b2307 + 0.025*m.x771 <= 0) m.c5682 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x4 - 0.000204938271604938*m.x4*m.x4)*m.b2308 + 0.025*m.x772 <= 0) m.c5683 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x5 - 0.000204938271604938*m.x5*m.x5)*m.b2309 + 0.025*m.x773 <= 0) m.c5684 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x6 - 0.000204938271604938*m.x6*m.x6)*m.b2310 + 0.025*m.x774 <= 0) m.c5685 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x7 - 0.000204938271604938*m.x7*m.x7)*m.b2311 + 0.025*m.x775 <= 0) m.c5686 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x8 - 0.000204938271604938*m.x8*m.x8)*m.b2312 + 0.025*m.x776 <= 0) m.c5687 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x9 - 0.000204938271604938*m.x9*m.x9)*m.b2313 + 0.025*m.x777 <= 0) m.c5688 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x10 - 0.000204938271604938*m.x10*m.x10)*m.b2314 + 0.025*m.x778 <= 0) m.c5689 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x11 - 0.000204938271604938*m.x11*m.x11)*m.b2315 + 0.025*m.x779 <= 0) m.c5690 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x12 - 0.000204938271604938*m.x12*m.x12)*m.b2316 + 0.025*m.x780 <= 0) m.c5691 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x13 - 0.000204938271604938*m.x13*m.x13)*m.b2317 + 0.025*m.x781 <= 0) m.c5692 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x14 - 0.000204938271604938*m.x14*m.x14)*m.b2318 + 0.025*m.x782 <= 0) m.c5693 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x15 - 0.000204938271604938*m.x15*m.x15)*m.b2319 + 0.025*m.x783 <= 0) m.c5694 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x16 - 0.000204938271604938*m.x16*m.x16)*m.b2320 + 0.025*m.x784 <= 0) m.c5695 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x17 - 0.000204938271604938*m.x17*m.x17)*m.b2321 + 0.025*m.x785 <= 0) m.c5696 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x18 - 0.000204938271604938*m.x18*m.x18)*m.b2322 + 0.025*m.x786 <= 0) m.c5697 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x19 - 0.000204938271604938*m.x19*m.x19)*m.b2323 + 0.025*m.x787 <= 0) m.c5698 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x20 - 0.000204938271604938*m.x20*m.x20)*m.b2324 + 0.025*m.x788 <= 0) m.c5699 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x21 - 0.000204938271604938*m.x21*m.x21)*m.b2325 + 0.025*m.x789 <= 0) m.c5700 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x22 - 0.000204938271604938*m.x22*m.x22)*m.b2326 + 0.025*m.x790 <= 0) m.c5701 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x23 - 0.000204938271604938*m.x23*m.x23)*m.b2327 + 0.025*m.x791 <= 0) m.c5702 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x24 - 0.000204938271604938*m.x24*m.x24)*m.b2328 + 0.025*m.x792 <= 0) m.c5703 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x25 - 0.000204938271604938*m.x25*m.x25)*m.b2329 + 0.025*m.x793 <= 0) m.c5704 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x26 - 0.000204938271604938*m.x26*m.x26)*m.b2330 + 0.025*m.x794 <= 0) m.c5705 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x27 - 0.000204938271604938*m.x27*m.x27)*m.b2331 + 0.025*m.x795 <= 0) m.c5706 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x28 - 0.000204938271604938*m.x28*m.x28)*m.b2332 + 0.025*m.x796 <= 0) m.c5707 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x29 - 0.000204938271604938*m.x29*m.x29)*m.b2333 + 0.025*m.x797 <= 0) m.c5708 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x30 - 0.000204938271604938*m.x30*m.x30)*m.b2334 + 0.025*m.x798 <= 0) m.c5709 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x31 - 0.000204938271604938*m.x31*m.x31)*m.b2335 + 0.025*m.x799 <= 0) m.c5710 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x32 - 0.000204938271604938*m.x32*m.x32)*m.b2336 + 0.025*m.x800 <= 0) m.c5711 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x33 - 0.000204938271604938*m.x33*m.x33)*m.b2337 + 0.025*m.x801 <= 0) m.c5712 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x34 - 0.000204938271604938*m.x34*m.x34)*m.b2338 + 0.025*m.x802 <= 0) m.c5713 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x35 - 0.000204938271604938*m.x35*m.x35)*m.b2339 + 0.025*m.x803 <= 0) m.c5714 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x36 - 0.000204938271604938*m.x36*m.x36)*m.b2340 + 0.025*m.x804 <= 0) m.c5715 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x37 - 0.000204938271604938*m.x37*m.x37)*m.b2341 + 0.025*m.x805 <= 0) m.c5716 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x38 - 0.000204938271604938*m.x38*m.x38)*m.b2342 + 0.025*m.x806 <= 0) m.c5717 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x39 - 0.000204938271604938*m.x39*m.x39)*m.b2343 + 0.025*m.x807 <= 0) m.c5718 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x40 - 0.000204938271604938*m.x40*m.x40)*m.b2344 + 0.025*m.x808 <= 0) m.c5719 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x41 - 0.000204938271604938*m.x41*m.x41)*m.b2345 + 0.025*m.x809 <= 0) m.c5720 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x42 - 0.000204938271604938*m.x42*m.x42)*m.b2346 + 0.025*m.x810 <= 0) m.c5721 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x43 - 0.000204938271604938*m.x43*m.x43)*m.b2347 + 0.025*m.x811 <= 0) m.c5722 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x44 - 0.000204938271604938*m.x44*m.x44)*m.b2348 + 0.025*m.x812 <= 0) m.c5723 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x45 - 0.000204938271604938*m.x45*m.x45)*m.b2349 + 0.025*m.x813 <= 0) m.c5724 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x46 - 0.000204938271604938*m.x46*m.x46)*m.b2350 + 0.025*m.x814 <= 0) m.c5725 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x47 - 0.000204938271604938*m.x47*m.x47)*m.b2351 + 0.025*m.x815 <= 0) m.c5726 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x48 - 0.000204938271604938*m.x48*m.x48)*m.b2352 + 0.025*m.x816 <= 0) m.c5727 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x49 - 0.000204938271604938*m.x49*m.x49)*m.b2353 + 0.025*m.x817 <= 0) m.c5728 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x50 - 0.000204938271604938*m.x50*m.x50)*m.b2354 + 0.025*m.x818 <= 0) m.c5729 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x51 - 0.000204938271604938*m.x51*m.x51)*m.b2355 + 0.025*m.x819 <= 0) m.c5730 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x52 - 0.000204938271604938*m.x52*m.x52)*m.b2356 + 0.025*m.x820 <= 0) m.c5731 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x53 - 0.000204938271604938*m.x53*m.x53)*m.b2357 + 0.025*m.x821 <= 0) m.c5732 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x54 - 0.000204938271604938*m.x54*m.x54)*m.b2358 + 0.025*m.x822 <= 0) m.c5733 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x55 - 0.000204938271604938*m.x55*m.x55)*m.b2359 + 0.025*m.x823 <= 0) m.c5734 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x56 - 0.000204938271604938*m.x56*m.x56)*m.b2360 + 0.025*m.x824 <= 0) m.c5735 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x57 - 0.000204938271604938*m.x57*m.x57)*m.b2361 + 0.025*m.x825 <= 0) m.c5736 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x58 - 0.000204938271604938*m.x58*m.x58)*m.b2362 + 0.025*m.x826 <= 0) m.c5737 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x59 - 0.000204938271604938*m.x59*m.x59)*m.b2363 + 0.025*m.x827 <= 0) m.c5738 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x60 - 0.000204938271604938*m.x60*m.x60)*m.b2364 + 0.025*m.x828 <= 0) m.c5739 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x61 - 0.000204938271604938*m.x61*m.x61)*m.b2365 + 0.025*m.x829 <= 0) m.c5740 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x62 - 0.000204938271604938*m.x62*m.x62)*m.b2366 + 0.025*m.x830 <= 0) m.c5741 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x63 - 0.000204938271604938*m.x63*m.x63)*m.b2367 + 0.025*m.x831 <= 0) m.c5742 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x64 - 0.000204938271604938*m.x64*m.x64)*m.b2368 + 0.025*m.x832 <= 0) m.c5743 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x65 - 0.000204938271604938*m.x65*m.x65)*m.b2369 + 0.025*m.x833 <= 0) m.c5744 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x66 - 0.000204938271604938*m.x66*m.x66)*m.b2370 + 0.025*m.x834 <= 0) m.c5745 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x67 - 0.000204938271604938*m.x67*m.x67)*m.b2371 + 0.025*m.x835 <= 0) m.c5746 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x68 - 0.000204938271604938*m.x68*m.x68)*m.b2372 + 0.025*m.x836 <= 0) m.c5747 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x69 - 0.000204938271604938*m.x69*m.x69)*m.b2373 + 0.025*m.x837 <= 0) m.c5748 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x70 - 0.000204938271604938*m.x70*m.x70)*m.b2374 + 0.025*m.x838 <= 0) m.c5749 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x71 - 0.000204938271604938*m.x71*m.x71)*m.b2375 + 0.025*m.x839 <= 0) m.c5750 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x72 - 0.000204938271604938*m.x72*m.x72)*m.b2376 + 0.025*m.x840 <= 0) m.c5751 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x73 - 0.000204938271604938*m.x73*m.x73)*m.b2377 + 0.025*m.x841 <= 0) m.c5752 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x74 - 0.000204938271604938*m.x74*m.x74)*m.b2378 + 0.025*m.x842 <= 0) m.c5753 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x75 - 0.000204938271604938*m.x75*m.x75)*m.b2379 + 0.025*m.x843 <= 0) m.c5754 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x76 - 0.000204938271604938*m.x76*m.x76)*m.b2380 + 0.025*m.x844 <= 0) m.c5755 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x77 - 0.000204938271604938*m.x77*m.x77)*m.b2381 + 0.025*m.x845 <= 0) m.c5756 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x78 - 0.000204938271604938*m.x78*m.x78)*m.b2382 + 0.025*m.x846 <= 0) m.c5757 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x79 - 0.000204938271604938*m.x79*m.x79)*m.b2383 + 0.025*m.x847 <= 0) m.c5758 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x80 - 0.000204938271604938*m.x80*m.x80)*m.b2384 + 0.025*m.x848 <= 0) m.c5759 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x81 - 0.000204938271604938*m.x81*m.x81)*m.b2385 + 0.025*m.x849 <= 0) m.c5760 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x82 - 0.000204938271604938*m.x82*m.x82)*m.b2386 + 0.025*m.x850 <= 0) m.c5761 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x83 - 0.000204938271604938*m.x83*m.x83)*m.b2387 + 0.025*m.x851 <= 0) m.c5762 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x84 - 0.000204938271604938*m.x84*m.x84)*m.b2388 + 0.025*m.x852 <= 0) m.c5763 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x85 - 0.000204938271604938*m.x85*m.x85)*m.b2389 + 0.025*m.x853 <= 0) m.c5764 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x86 - 0.000204938271604938*m.x86*m.x86)*m.b2390 + 0.025*m.x854 <= 0) m.c5765 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x87 - 0.000204938271604938*m.x87*m.x87)*m.b2391 + 0.025*m.x855 <= 0) m.c5766 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x88 - 0.000204938271604938*m.x88*m.x88)*m.b2392 + 0.025*m.x856 <= 0) m.c5767 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x89 - 0.000204938271604938*m.x89*m.x89)*m.b2393 + 0.025*m.x857 <= 0) m.c5768 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x90 - 0.000204938271604938*m.x90*m.x90)*m.b2394 + 0.025*m.x858 <= 0) m.c5769 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x91 - 0.000204938271604938*m.x91*m.x91)*m.b2395 + 0.025*m.x859 <= 0) m.c5770 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x92 - 0.000204938271604938*m.x92*m.x92)*m.b2396 + 0.025*m.x860 <= 0) m.c5771 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x93 - 0.000204938271604938*m.x93*m.x93)*m.b2397 + 0.025*m.x861 <= 0) m.c5772 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x94 - 0.000204938271604938*m.x94*m.x94)*m.b2398 + 0.025*m.x862 <= 0) m.c5773 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x95 - 0.000204938271604938*m.x95*m.x95)*m.b2399 + 0.025*m.x863 <= 0) m.c5774 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x96 - 0.000204938271604938*m.x96*m.x96)*m.b2400 + 0.025*m.x864 <= 0) m.c5775 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x97 - 0.000204938271604938*m.x97*m.x97)*m.b2401 + 0.025*m.x865 <= 0) m.c5776 = Constraint(expr= m.x1250 <= 0) m.c5777 = Constraint(expr= m.x1251 <= 0) m.c5778 = Constraint(expr= m.x1252 <= 0) m.c5779 = Constraint(expr= m.x1253 <= 0) m.c5780 = Constraint(expr= m.x1254 <= 0) m.c5781 = Constraint(expr= m.x1255 <= 0) m.c5782 = Constraint(expr= m.x1256 <= 0) m.c5783 = Constraint(expr= m.x1257 <= 0) m.c5784 = Constraint(expr= m.x1258 <= 0) m.c5785 = Constraint(expr= m.x1259 <= 0) m.c5786 = Constraint(expr= m.x1260 <= 0) m.c5787 = Constraint(expr= m.x1261 <= 0) m.c5788 = Constraint(expr= m.x1262 <= 0) m.c5789 = Constraint(expr= m.x1263 <= 0) m.c5790 = Constraint(expr= m.x1264 <= 0) m.c5791 = Constraint(expr= m.x1265 <= 0) m.c5792 = Constraint(expr= m.x1266 <= 0) m.c5793 = Constraint(expr= m.x1267 <= 0) m.c5794 = Constraint(expr= m.x1268 <= 0) m.c5795 = Constraint(expr= m.x1269 <= 0) m.c5796 = Constraint(expr= m.x1270 <= 0) m.c5797 = Constraint(expr= m.x1271 <= 0) m.c5798 = Constraint(expr= m.x1272 <= 0) m.c5799 = Constraint(expr= m.x1273 <= 0) m.c5800 = Constraint(expr= m.x1274 <= 0) m.c5801 = Constraint(expr= m.x1275 <= 0) m.c5802 = Constraint(expr= m.x1276 <= 0) m.c5803 = Constraint(expr= m.x1277 <= 0) m.c5804 = Constraint(expr= m.x1278 <= 0) m.c5805 = Constraint(expr= m.x1279 <= 0) m.c5806 = Constraint(expr= m.x1280 <= 0) m.c5807 = Constraint(expr= m.x1281 <= 0) m.c5808 = Constraint(expr= m.x1282 <= 0) m.c5809 = Constraint(expr= m.x1283 <= 0) m.c5810 = Constraint(expr= m.x1284 <= 0) m.c5811 = Constraint(expr= m.x1285 <= 0) m.c5812 = Constraint(expr= m.x1286 <= 0) m.c5813 = Constraint(expr= m.x1287 <= 0) m.c5814 = Constraint(expr= m.x1288 <= 0) m.c5815 = Constraint(expr= m.x1289 <= 0) m.c5816 = Constraint(expr= m.x1290 <= 0) m.c5817 = Constraint(expr= m.x1291 <= 0) m.c5818 = Constraint(expr= m.x1292 <= 0) m.c5819 = Constraint(expr= m.x1293 <= 0) m.c5820 = Constraint(expr= m.x1294 <= 0) m.c5821 = Constraint(expr= m.x1295 <= 0) m.c5822 = Constraint(expr= m.x1296 <= 0) m.c5823 = Constraint(expr= m.x1297 <= 0) m.c5824 = Constraint(expr= m.x1298 <= 0) m.c5825 = Constraint(expr= m.x1299 <= 0) m.c5826 = Constraint(expr= m.x1300 <= 0) m.c5827 = Constraint(expr= m.x1301 <= 0) m.c5828 = Constraint(expr= m.x1302 <= 0) m.c5829 = Constraint(expr= m.x1303 <= 0) m.c5830 = Constraint(expr= m.x1304 <= 0) m.c5831 = Constraint(expr= m.x1305 <= 0) m.c5832 = Constraint(expr= m.x1306 <= 0) m.c5833 = Constraint(expr= m.x1307 <= 0) m.c5834 = Constraint(expr= m.x1308 <= 0) m.c5835 = Constraint(expr= m.x1309 <= 0) m.c5836 = Constraint(expr= m.x1310 <= 0) m.c5837 = Constraint(expr= m.x1311 <= 0) m.c5838 = Constraint(expr= m.x1312 <= 0) m.c5839 = Constraint(expr= m.x1313 <= 0) m.c5840 = Constraint(expr= m.x1314 <= 0) m.c5841 = Constraint(expr= m.x1315 <= 0) m.c5842 = Constraint(expr= m.x1316 <= 0) m.c5843 = Constraint(expr= m.x1317 <= 0) m.c5844 = Constraint(expr= m.x1318 <= 0) m.c5845 = Constraint(expr= m.x1319 <= 0) m.c5846 = Constraint(expr= m.x1320 <= 0) m.c5847 = Constraint(expr= m.x1321 <= 0) m.c5848 = Constraint(expr= m.x1322 <= 0) m.c5849 = Constraint(expr= m.x1323 <= 0) m.c5850 = Constraint(expr= m.x1324 <= 0) m.c5851 = Constraint(expr= m.x1325 <= 0) m.c5852 = Constraint(expr= m.x1326 <= 0) m.c5853 = Constraint(expr= m.x1327 <= 0) m.c5854 = Constraint(expr= m.x1328 <= 0) m.c5855 = Constraint(expr= m.x1329 <= 0) m.c5856 = Constraint(expr= m.x1330 <= 0) m.c5857 = Constraint(expr= m.x1331 <= 0) m.c5858 = Constraint(expr= m.x1332 <= 0) m.c5859 = Constraint(expr= m.x1333 <= 0) m.c5860 = Constraint(expr= m.x1334 <= 0) m.c5861 = Constraint(expr= m.x1335 <= 0) m.c5862 = Constraint(expr= m.x1336 <= 0) m.c5863 = Constraint(expr= m.x1337 <= 0) m.c5864 = Constraint(expr= m.x1338 <= 0) m.c5865 = Constraint(expr= m.x1339 <= 0) m.c5866 = Constraint(expr= m.x1340 <= 0) m.c5867 = Constraint(expr= m.x1341 <= 0) m.c5868 = Constraint(expr= m.x1342 <= 0) m.c5869 = Constraint(expr= m.x1343 <= 0) m.c5870 = Constraint(expr= m.x1344 <= 0) m.c5871 = Constraint(expr= m.x1345 <= 0) m.c5872 = Constraint(expr= m.x1346 <= 0) m.c5873 = Constraint(expr= m.x1347 <= 0) m.c5874 = Constraint(expr= m.x1348 <= 0) m.c5875 = Constraint(expr= m.x1349 <= 0) m.c5876 = Constraint(expr= m.x1350 <= 0) m.c5877 = Constraint(expr= m.x1351 <= 0) m.c5878 = Constraint(expr= m.x1352 <= 0) m.c5879 = Constraint(expr= m.x1353 <= 0) m.c5880 = Constraint(expr= m.x1354 <= 0) m.c5881 = Constraint(expr= m.x1355 <= 0) m.c5882 = Constraint(expr= m.x1356 <= 0) m.c5883 = Constraint(expr= m.x1357 <= 0) m.c5884 = Constraint(expr= m.x1358 <= 0) m.c5885 = Constraint(expr= m.x1359 <= 0) m.c5886 = Constraint(expr= m.x1360 <= 0) m.c5887 = Constraint(expr= m.x1361 <= 0) m.c5888 = Constraint(expr= m.x1362 <= 0) m.c5889 = Constraint(expr= m.x1363 <= 0) m.c5890 = Constraint(expr= m.x1364 <= 0) m.c5891 = Constraint(expr= m.x1365 <= 0) m.c5892 = Constraint(expr= m.x1366 <= 0) m.c5893 = Constraint(expr= m.x1367 <= 0) m.c5894 = Constraint(expr= m.x1368 <= 0) m.c5895 = Constraint(expr= m.x1369 <= 0) m.c5896 = Constraint(expr= m.x1370 <= 0) m.c5897 = Constraint(expr= m.x1371 <= 0) m.c5898 = Constraint(expr= m.x1372 <= 0) m.c5899 = Constraint(expr= m.x1373 <= 0) m.c5900 = Constraint(expr= m.x1374 <= 0) m.c5901 = Constraint(expr= m.x1375 <= 0) m.c5902 = Constraint(expr= m.x1376 <= 0) m.c5903 = Constraint(expr= m.x1377 <= 0) m.c5904 = Constraint(expr= m.x1378 <= 0) m.c5905 = Constraint(expr= m.x1379 <= 0) m.c5906 = Constraint(expr= m.x1380 <= 0) m.c5907 = Constraint(expr= m.x1381 <= 0) m.c5908 = Constraint(expr= m.x1382 <= 0) m.c5909 = Constraint(expr= m.x1383 <= 0) m.c5910 = Constraint(expr= m.x1384 <= 0) m.c5911 = Constraint(expr= m.x1385 <= 0) m.c5912 = Constraint(expr= m.x1386 <= 0) m.c5913 = Constraint(expr= m.x1387 <= 0) m.c5914 = Constraint(expr= m.x1388 <= 0) m.c5915 = Constraint(expr= m.x1389 <= 0) m.c5916 = Constraint(expr= m.x1390 <= 0) m.c5917 = Constraint(expr= m.x1391 <= 0) m.c5918 = Constraint(expr= m.x1392 <= 0) m.c5919 = Constraint(expr= m.x1393 <= 0) m.c5920 = Constraint(expr= m.x1394 <= 0) m.c5921 = Constraint(expr= m.x1395 <= 0) m.c5922 = Constraint(expr= m.x1396 <= 0) m.c5923 = Constraint(expr= m.x1397 <= 0) m.c5924 = Constraint(expr= m.x1398 <= 0) m.c5925 = Constraint(expr= m.x1399 <= 0) m.c5926 = Constraint(expr= m.x1400 <= 0) m.c5927 = Constraint(expr= m.x1401 <= 0) m.c5928 = Constraint(expr= m.x1402 <= 0) m.c5929 = Constraint(expr= m.x1403 <= 0) m.c5930 = Constraint(expr= m.x1404 <= 0) m.c5931 = Constraint(expr= m.x1405 <= 0) m.c5932 = Constraint(expr= m.x1406 <= 0) m.c5933 = Constraint(expr= m.x1407 <= 0) m.c5934 = Constraint(expr= m.x1408 <= 0) m.c5935 = Constraint(expr= m.x1409 <= 0) m.c5936 = Constraint(expr= m.x1410 <= 0) m.c5937 = Constraint(expr= m.x1411 <= 0) m.c5938 = Constraint(expr= m.x1412 <= 0) m.c5939 = Constraint(expr= m.x1413 <= 0) m.c5940 = Constraint(expr= m.x1414 <= 0) m.c5941 = Constraint(expr= m.x1415 <= 0) m.c5942 = Constraint(expr= m.x1416 <= 0) m.c5943 = Constraint(expr= m.x1417 <= 0) m.c5944 = Constraint(expr= m.x1418 <= 0) m.c5945 = Constraint(expr= m.x1419 <= 0) m.c5946 = Constraint(expr= m.x1420 <= 0) m.c5947 = Constraint(expr= m.x1421 <= 0) m.c5948 = Constraint(expr= m.x1422 <= 0) m.c5949 = Constraint(expr= m.x1423 <= 0) m.c5950 = Constraint(expr= m.x1424 <= 0) m.c5951 = Constraint(expr= m.x1425 <= 0) m.c5952 = Constraint(expr= m.x1426 <= 0) m.c5953 = Constraint(expr= m.x1427 <= 0) m.c5954 = Constraint(expr= m.x1428 <= 0) m.c5955 = Constraint(expr= m.x1429 <= 0) m.c5956 = Constraint(expr= m.x1430 <= 0) m.c5957 = Constraint(expr= m.x1431 <= 0) m.c5958 = Constraint(expr= m.x1432 <= 0) m.c5959 = Constraint(expr= m.x1433 <= 0) m.c5960 = Constraint(expr= m.x1434 <= 0) m.c5961 = Constraint(expr= m.x1435 <= 0) m.c5962 = Constraint(expr= m.x1436 <= 0) m.c5963 = Constraint(expr= m.x1437 <= 0) m.c5964 = Constraint(expr= m.x1438 <= 0) m.c5965 = Constraint(expr= m.x1439 <= 0) m.c5966 = Constraint(expr= m.x1440 <= 0) m.c5967 = Constraint(expr= m.x1441 <= 0) m.c5968 = Constraint(expr=0.00191656795755345*m.x194*m.x194 - 0.091333*m.x194 + 0.0992753*m.x962 + 9.12861*m.b2018 <= 8.99141) m.c5969 = Constraint(expr=0.00191656795755345*m.x195*m.x195 - 0.0913396*m.x195 + 0.0992753*m.x963 + 9.12706*m.b2019 <= 8.98958) m.c5970 = Constraint(expr=0.00191656795755345*m.x196*m.x196 - 0.0913429*m.x196 + 0.0992753*m.x964 + 9.12628*m.b2020 <= 8.98866) m.c5971 = Constraint(expr=0.00191656795755345*m.x197*m.x197 - 0.0913496*m.x197 + 0.0992753*m.x965 + 9.12473*m.b2021 <= 8.98683) m.c5972 = Constraint(expr=0.00191656795755345*m.x198*m.x198 - 0.0913529*m.x198 + 0.0992753*m.x966 + 9.12396*m.b2022 <= 8.98592) m.c5973 = Constraint(expr=0.00191656795755345*m.x199*m.x199 - 0.0913562*m.x199 + 0.0992753*m.x967 + 9.12318*m.b2023 <= 8.985) m.c5974 = Constraint(expr=0.00191656795755345*m.x200*m.x200 - 0.0913529*m.x200 + 0.0992753*m.x968 + 9.12396*m.b2024 <= 8.98592) m.c5975 = Constraint(expr=0.00191656795755345*m.x201*m.x201 - 0.0913462*m.x201 + 0.0992753*m.x969 + 9.12551*m.b2025 <= 8.98775) m.c5976 = Constraint(expr=0.00191656795755345*m.x202*m.x202 - 0.0913296*m.x202 + 0.0992753*m.x970 + 9.12938*m.b2026 <= 8.99232) m.c5977 = Constraint(expr=0.00191656795755345*m.x203*m.x203 - 0.0912965*m.x203 + 0.0992753*m.x971 + 9.13713*m.b2027 <= 9.00147) m.c5978 = Constraint(expr=0.00191656795755345*m.x204*m.x204 - 0.0912434*m.x204 + 0.0992753*m.x972 + 9.14954*m.b2028 <= 9.01612) m.c5979 = Constraint(expr=0.00191656795755345*m.x205*m.x205 - 0.0911836*m.x205 + 0.0992753*m.x973 + 9.16349*m.b2029 <= 9.03259) m.c5980 = Constraint(expr=0.00191656795755345*m.x206*m.x206 - 0.0911139*m.x206 + 0.0992753*m.x974 + 9.17976*m.b2030 <= 9.0518) m.c5981 = Constraint(expr=0.00191656795755345*m.x207*m.x207 - 0.0910973*m.x207 + 0.0992753*m.x975 + 9.18364*m.b2031 <= 9.05638) m.c5982 = Constraint(expr=0.00191656795755345*m.x208*m.x208 - 0.0911471*m.x208 + 0.0992753*m.x976 + 9.17201*m.b2032 <= 9.04265) m.c5983 = Constraint(expr=0.00191656795755345*m.x209*m.x209 - 0.0911604*m.x209 + 0.0992753*m.x977 + 9.16891*m.b2033 <= 9.03899) m.c5984 = Constraint(expr=0.00191656795755345*m.x210*m.x210 - 0.0911869*m.x210 + 0.0992753*m.x978 + 9.16271*m.b2034 <= 9.03167) m.c5985 = Constraint(expr=0.00191656795755345*m.x211*m.x211 - 0.0912301*m.x211 + 0.0992753*m.x979 + 9.15264*m.b2035 <= 9.01978) m.c5986 = Constraint(expr=0.00191656795755345*m.x212*m.x212 - 0.0912566*m.x212 + 0.0992753*m.x980 + 9.14644*m.b2036 <= 9.01246) m.c5987 = Constraint(expr=0.00191656795755345*m.x213*m.x213 - 0.0912699*m.x213 + 0.0992753*m.x981 + 9.14334*m.b2037 <= 9.0088) m.c5988 = Constraint(expr=0.00191656795755345*m.x214*m.x214 - 0.0912832*m.x214 + 0.0992753*m.x982 + 9.14024*m.b2038 <= 9.00514) m.c5989 = Constraint(expr=0.00191656795755345*m.x215*m.x215 - 0.0912965*m.x215 + 0.0992753*m.x983 + 9.13713*m.b2039 <= 9.00147) m.c5990 = Constraint(expr=0.00191656795755345*m.x216*m.x216 - 0.0913064*m.x216 + 0.0992753*m.x984 + 9.13481*m.b2040 <= 8.99873) m.c5991 = Constraint(expr=0.00191656795755345*m.x217*m.x217 - 0.0913164*m.x217 + 0.0992753*m.x985 + 9.13248*m.b2041 <= 8.99598) m.c5992 = Constraint(expr=0.00191656795755345*m.x218*m.x218 - 0.0912666*m.x218 + 0.0992753*m.x986 + 9.14411*m.b2042 <= 9.00971) m.c5993 = Constraint(expr=0.00191656795755345*m.x219*m.x219 - 0.09124*m.x219 + 0.0992753*m.x987 + 9.15031*m.b2043 <= 9.01703) m.c5994 = Constraint(expr=0.00191656795755345*m.x220*m.x220 - 0.0912102*m.x220 + 0.0992753*m.x988 + 9.15729*m.b2044 <= 9.02527) m.c5995 = Constraint(expr=0.00191656795755345*m.x221*m.x221 - 0.0911836*m.x221 + 0.0992753*m.x989 + 9.16349*m.b2045 <= 9.03259) m.c5996 = Constraint(expr=0.00191656795755345*m.x222*m.x222 - 0.0911538*m.x222 + 0.0992753*m.x990 + 9.17046*m.b2046 <= 9.04082) m.c5997 = Constraint(expr=0.00191656795755345*m.x223*m.x223 - 0.0911571*m.x223 + 0.0992753*m.x991 + 9.16969*m.b2047 <= 9.03991) m.c5998 = Constraint(expr=0.00191656795755345*m.x224*m.x224 - 0.0911538*m.x224 + 0.0992753*m.x992 + 9.17046*m.b2048 <= 9.04082) m.c5999 = Constraint(expr=0.00191656795755345*m.x225*m.x225 - 0.0911139*m.x225 + 0.0992753*m.x993 + 9.17976*m.b2049 <= 9.0518) m.c6000 = Constraint(expr=0.00191656795755345*m.x226*m.x226 - 0.0910973*m.x226 + 0.0992753*m.x994 + 9.18364*m.b2050 <= 9.05638) m.c6001 = Constraint(expr=0.00191656795755345*m.x227*m.x227 - 0.091031*m.x227 + 0.0992753*m.x995 + 9.19914*m.b2051 <= 9.07468) m.c6002 = Constraint(expr=0.00191656795755345*m.x228*m.x228 - 0.0910111*m.x228 + 0.0992753*m.x996 + 9.20379*m.b2052 <= 9.08017) m.c6003 = Constraint(expr=0.00191656795755345*m.x229*m.x229 - 0.0909845*m.x229 + 0.0992753*m.x997 + 9.20999*m.b2053 <= 9.08749) m.c6004 = Constraint(expr=0.00191656795755345*m.x230*m.x230 - 0.0909148*m.x230 + 0.0992753*m.x998 + 9.22627*m.b2054 <= 9.10671) m.c6005 = Constraint(expr=0.00191656795755345*m.x231*m.x231 - 0.090865*m.x231 + 0.0992753*m.x999 + 9.2379*m.b2055 <= 9.12044) m.c6006 = Constraint(expr=0.00191656795755345*m.x232*m.x232 - 0.0908816*m.x232 + 0.0992753*m.x1000 + 9.23402*m.b2056 <= 9.11586) m.c6007 = Constraint(expr=0.00191656795755345*m.x233*m.x233 - 0.0909281*m.x233 + 0.0992753*m.x1001 + 9.22317*m.b2057 <= 9.10305) m.c6008 = Constraint(expr=0.00191656795755345*m.x234*m.x234 - 0.0909546*m.x234 + 0.0992753*m.x1002 + 9.21697*m.b2058 <= 9.09573) m.c6009 = Constraint(expr=0.00191656795755345*m.x235*m.x235 - 0.091031*m.x235 + 0.0992753*m.x1003 + 9.19914*m.b2059 <= 9.07468) m.c6010 = Constraint(expr=0.00191656795755345*m.x236*m.x236 - 0.0910907*m.x236 + 0.0992753*m.x1004 + 9.18519*m.b2060 <= 9.05821) m.c6011 = Constraint(expr=0.00191656795755345*m.x237*m.x237 - 0.091104*m.x237 + 0.0992753*m.x1005 + 9.18209*m.b2061 <= 9.05455) m.c6012 = Constraint(expr=0.00191656795755345*m.x238*m.x238 - 0.0911504*m.x238 + 0.0992753*m.x1006 + 9.17124*m.b2062 <= 9.04174) m.c6013 = Constraint(expr=0.00191656795755345*m.x239*m.x239 - 0.0911305*m.x239 + 0.0992753*m.x1007 + 9.17589*m.b2063 <= 9.04723) m.c6014 = Constraint(expr=0.00191656795755345*m.x240*m.x240 - 0.0911405*m.x240 + 0.0992753*m.x1008 + 9.17356*m.b2064 <= 9.04448) m.c6015 = Constraint(expr=0.00191656795755345*m.x241*m.x241 - 0.0913164*m.x241 + 0.0992753*m.x1009 + 9.13248*m.b2065 <= 8.99598) m.c6016 = Constraint(expr=0.00191656795755345*m.x242*m.x242 - 0.091333*m.x242 + 0.0992753*m.x1010 + 9.12861*m.b2066 <= 8.99141) m.c6017 = Constraint(expr=0.00191656795755345*m.x243*m.x243 - 0.0913396*m.x243 + 0.0992753*m.x1011 + 9.12706*m.b2067 <= 8.98958) m.c6018 = Constraint(expr=0.00191656795755345*m.x244*m.x244 - 0.0913429*m.x244 + 0.0992753*m.x1012 + 9.12628*m.b2068 <= 8.98866) m.c6019 = Constraint(expr=0.00191656795755345*m.x245*m.x245 - 0.0913496*m.x245 + 0.0992753*m.x1013 + 9.12473*m.b2069 <= 8.98683) m.c6020 = Constraint(expr=0.00191656795755345*m.x246*m.x246 - 0.0913529*m.x246 + 0.0992753*m.x1014 + 9.12396*m.b2070 <= 8.98592) m.c6021 = Constraint(expr=0.00191656795755345*m.x247*m.x247 - 0.0913562*m.x247 + 0.0992753*m.x1015 + 9.12318*m.b2071 <= 8.985) m.c6022 = Constraint(expr=0.00191656795755345*m.x248*m.x248 - 0.0913529*m.x248 + 0.0992753*m.x1016 + 9.12396*m.b2072 <= 8.98592) m.c6023 = Constraint(expr=0.00191656795755345*m.x249*m.x249 - 0.0913462*m.x249 + 0.0992753*m.x1017 + 9.12551*m.b2073 <= 8.98775) m.c6024 = Constraint(expr=0.00191656795755345*m.x250*m.x250 - 0.0913296*m.x250 + 0.0992753*m.x1018 + 9.12938*m.b2074 <= 8.99232) m.c6025 = Constraint(expr=0.00191656795755345*m.x251*m.x251 - 0.0912965*m.x251 + 0.0992753*m.x1019 + 9.13713*m.b2075 <= 9.00147) m.c6026 = Constraint(expr=0.00191656795755345*m.x252*m.x252 - 0.0912434*m.x252 + 0.0992753*m.x1020 + 9.14954*m.b2076 <= 9.01612) m.c6027 = Constraint(expr=0.00191656795755345*m.x253*m.x253 - 0.0911836*m.x253 + 0.0992753*m.x1021 + 9.16349*m.b2077 <= 9.03259) m.c6028 = Constraint(expr=0.00191656795755345*m.x254*m.x254 - 0.0911139*m.x254 + 0.0992753*m.x1022 + 9.17976*m.b2078 <= 9.0518) m.c6029 = Constraint(expr=0.00191656795755345*m.x255*m.x255 - 0.0910973*m.x255 + 0.0992753*m.x1023 + 9.18364*m.b2079 <= 9.05638) m.c6030 = Constraint(expr=0.00191656795755345*m.x256*m.x256 - 0.0911471*m.x256 + 0.0992753*m.x1024 + 9.17201*m.b2080 <= 9.04265) m.c6031 = Constraint(expr=0.00191656795755345*m.x257*m.x257 - 0.0911604*m.x257 + 0.0992753*m.x1025 + 9.16891*m.b2081 <= 9.03899) m.c6032 = Constraint(expr=0.00191656795755345*m.x258*m.x258 - 0.0911869*m.x258 + 0.0992753*m.x1026 + 9.16271*m.b2082 <= 9.03167) m.c6033 = Constraint(expr=0.00191656795755345*m.x259*m.x259 - 0.0912301*m.x259 + 0.0992753*m.x1027 + 9.15264*m.b2083 <= 9.01978) m.c6034 = Constraint(expr=0.00191656795755345*m.x260*m.x260 - 0.0912566*m.x260 + 0.0992753*m.x1028 + 9.14644*m.b2084 <= 9.01246) m.c6035 = Constraint(expr=0.00191656795755345*m.x261*m.x261 - 0.0912699*m.x261 + 0.0992753*m.x1029 + 9.14334*m.b2085 <= 9.0088) m.c6036 = Constraint(expr=0.00191656795755345*m.x262*m.x262 - 0.0912832*m.x262 + 0.0992753*m.x1030 + 9.14024*m.b2086 <= 9.00514) m.c6037 = Constraint(expr=0.00191656795755345*m.x263*m.x263 - 0.0912965*m.x263 + 0.0992753*m.x1031 + 9.13713*m.b2087 <= 9.00147) m.c6038 = Constraint(expr=0.00191656795755345*m.x264*m.x264 - 0.0913064*m.x264 + 0.0992753*m.x1032 + 9.13481*m.b2088 <= 8.99873) m.c6039 = Constraint(expr=0.00191656795755345*m.x265*m.x265 - 0.0913164*m.x265 + 0.0992753*m.x1033 + 9.13248*m.b2089 <= 8.99598) m.c6040 = Constraint(expr=0.00191656795755345*m.x266*m.x266 - 0.0912666*m.x266 + 0.0992753*m.x1034 + 9.14411*m.b2090 <= 9.00971) m.c6041 = Constraint(expr=0.00191656795755345*m.x267*m.x267 - 0.09124*m.x267 + 0.0992753*m.x1035 + 9.15031*m.b2091 <= 9.01703) m.c6042 = Constraint(expr=0.00191656795755345*m.x268*m.x268 - 0.0912102*m.x268 + 0.0992753*m.x1036 + 9.15729*m.b2092 <= 9.02527) m.c6043 = Constraint(expr=0.00191656795755345*m.x269*m.x269 - 0.0911836*m.x269 + 0.0992753*m.x1037 + 9.16349*m.b2093 <= 9.03259) m.c6044 = Constraint(expr=0.00191656795755345*m.x270*m.x270 - 0.0911538*m.x270 + 0.0992753*m.x1038 + 9.17046*m.b2094 <= 9.04082) m.c6045 = Constraint(expr=0.00191656795755345*m.x271*m.x271 - 0.0911571*m.x271 + 0.0992753*m.x1039 + 9.16969*m.b2095 <= 9.03991) m.c6046 = Constraint(expr=0.00191656795755345*m.x272*m.x272 - 0.0911538*m.x272 + 0.0992753*m.x1040 + 9.17046*m.b2096 <= 9.04082) m.c6047 = Constraint(expr=0.00191656795755345*m.x273*m.x273 - 0.0911139*m.x273 + 0.0992753*m.x1041 + 9.17976*m.b2097 <= 9.0518) m.c6048 = Constraint(expr=0.00191656795755345*m.x274*m.x274 - 0.0910973*m.x274 + 0.0992753*m.x1042 + 9.18364*m.b2098 <= 9.05638) m.c6049 = Constraint(expr=0.00191656795755345*m.x275*m.x275 - 0.091031*m.x275 + 0.0992753*m.x1043 + 9.19914*m.b2099 <= 9.07468) m.c6050 = Constraint(expr=0.00191656795755345*m.x276*m.x276 - 0.0910111*m.x276 + 0.0992753*m.x1044 + 9.20379*m.b2100 <= 9.08017) m.c6051 = Constraint(expr=0.00191656795755345*m.x277*m.x277 - 0.0909845*m.x277 + 0.0992753*m.x1045 + 9.20999*m.b2101 <= 9.08749) m.c6052 = Constraint(expr=0.00191656795755345*m.x278*m.x278 - 0.0909148*m.x278 + 0.0992753*m.x1046 + 9.22627*m.b2102 <= 9.10671) m.c6053 = Constraint(expr=0.00191656795755345*m.x279*m.x279 - 0.090865*m.x279 + 0.0992753*m.x1047 + 9.2379*m.b2103 <= 9.12044) m.c6054 = Constraint(expr=0.00191656795755345*m.x280*m.x280 - 0.0908816*m.x280 + 0.0992753*m.x1048 + 9.23402*m.b2104 <= 9.11586) m.c6055 = Constraint(expr=0.00191656795755345*m.x281*m.x281 - 0.0909281*m.x281 + 0.0992753*m.x1049 + 9.22317*m.b2105 <= 9.10305) m.c6056 = Constraint(expr=0.00191656795755345*m.x282*m.x282 - 0.0909546*m.x282 + 0.0992753*m.x1050 + 9.21697*m.b2106 <= 9.09573) m.c6057 = Constraint(expr=0.00191656795755345*m.x283*m.x283 - 0.091031*m.x283 + 0.0992753*m.x1051 + 9.19914*m.b2107 <= 9.07468) m.c6058 = Constraint(expr=0.00191656795755345*m.x284*m.x284 - 0.0910907*m.x284 + 0.0992753*m.x1052 + 9.18519*m.b2108 <= 9.05821) m.c6059 = Constraint(expr=0.00191656795755345*m.x285*m.x285 - 0.091104*m.x285 + 0.0992753*m.x1053 + 9.18209*m.b2109 <= 9.05455) m.c6060 = Constraint(expr=0.00191656795755345*m.x286*m.x286 - 0.0911504*m.x286 + 0.0992753*m.x1054 + 9.17124*m.b2110 <= 9.04174) m.c6061 = Constraint(expr=0.00191656795755345*m.x287*m.x287 - 0.0911305*m.x287 + 0.0992753*m.x1055 + 9.17589*m.b2111 <= 9.04723) m.c6062 = Constraint(expr=0.00191656795755345*m.x288*m.x288 - 0.0911405*m.x288 + 0.0992753*m.x1056 + 9.17356*m.b2112 <= 9.04448) m.c6063 = Constraint(expr=0.00191656795755345*m.x289*m.x289 - 0.0913164*m.x289 + 0.0992753*m.x1057 + 9.13248*m.b2113 <= 8.99598) m.c6064 = Constraint(expr=0.00191656795755345*m.x290*m.x290 - 0.091333*m.x290 + 0.0992753*m.x1058 + 9.12861*m.b2114 <= 8.99141) m.c6065 = Constraint(expr=0.00191656795755345*m.x291*m.x291 - 0.0913396*m.x291 + 0.0992753*m.x1059 + 9.12706*m.b2115 <= 8.98958) m.c6066 = Constraint(expr=0.00191656795755345*m.x292*m.x292 - 0.0913429*m.x292 + 0.0992753*m.x1060 + 9.12628*m.b2116 <= 8.98866) m.c6067 = Constraint(expr=0.00191656795755345*m.x293*m.x293 - 0.0913496*m.x293 + 0.0992753*m.x1061 + 9.12473*m.b2117 <= 8.98683) m.c6068 = Constraint(expr=0.00191656795755345*m.x294*m.x294 - 0.0913529*m.x294 + 0.0992753*m.x1062 + 9.12396*m.b2118 <= 8.98592) m.c6069 = Constraint(expr=0.00191656795755345*m.x295*m.x295 - 0.0913562*m.x295 + 0.0992753*m.x1063 + 9.12318*m.b2119 <= 8.985) m.c6070 = Constraint(expr=0.00191656795755345*m.x296*m.x296 - 0.0913529*m.x296 + 0.0992753*m.x1064 + 9.12396*m.b2120 <= 8.98592) m.c6071 = Constraint(expr=0.00191656795755345*m.x297*m.x297 - 0.0913462*m.x297 + 0.0992753*m.x1065 + 9.12551*m.b2121 <= 8.98775) m.c6072 = Constraint(expr=0.00191656795755345*m.x298*m.x298 - 0.0913296*m.x298 + 0.0992753*m.x1066 + 9.12938*m.b2122 <= 8.99232) m.c6073 = Constraint(expr=0.00191656795755345*m.x299*m.x299 - 0.0912965*m.x299 + 0.0992753*m.x1067 + 9.13713*m.b2123 <= 9.00147) m.c6074 = Constraint(expr=0.00191656795755345*m.x300*m.x300 - 0.0912434*m.x300 + 0.0992753*m.x1068 + 9.14954*m.b2124 <= 9.01612) m.c6075 = Constraint(expr=0.00191656795755345*m.x301*m.x301 - 0.0911836*m.x301 + 0.0992753*m.x1069 + 9.16349*m.b2125 <= 9.03259) m.c6076 = Constraint(expr=0.00191656795755345*m.x302*m.x302 - 0.0911139*m.x302 + 0.0992753*m.x1070 + 9.17976*m.b2126 <= 9.0518) m.c6077 = Constraint(expr=0.00191656795755345*m.x303*m.x303 - 0.0910973*m.x303 + 0.0992753*m.x1071 + 9.18364*m.b2127 <= 9.05638) m.c6078 = Constraint(expr=0.00191656795755345*m.x304*m.x304 - 0.0911471*m.x304 + 0.0992753*m.x1072 + 9.17201*m.b2128 <= 9.04265) m.c6079 = Constraint(expr=0.00191656795755345*m.x305*m.x305 - 0.0911604*m.x305 + 0.0992753*m.x1073 + 9.16891*m.b2129 <= 9.03899) m.c6080 = Constraint(expr=0.00191656795755345*m.x306*m.x306 - 0.0911869*m.x306 + 0.0992753*m.x1074 + 9.16271*m.b2130 <= 9.03167) m.c6081 = Constraint(expr=0.00191656795755345*m.x307*m.x307 - 0.0912301*m.x307 + 0.0992753*m.x1075 + 9.15264*m.b2131 <= 9.01978) m.c6082 = Constraint(expr=0.00191656795755345*m.x308*m.x308 - 0.0912566*m.x308 + 0.0992753*m.x1076 + 9.14644*m.b2132 <= 9.01246) m.c6083 = Constraint(expr=0.00191656795755345*m.x309*m.x309 - 0.0912699*m.x309 + 0.0992753*m.x1077 + 9.14334*m.b2133 <= 9.0088) m.c6084 = Constraint(expr=0.00191656795755345*m.x310*m.x310 - 0.0912832*m.x310 + 0.0992753*m.x1078 + 9.14024*m.b2134 <= 9.00514) m.c6085 = Constraint(expr=0.00191656795755345*m.x311*m.x311 - 0.0912965*m.x311 + 0.0992753*m.x1079 + 9.13713*m.b2135 <= 9.00147) m.c6086 = Constraint(expr=0.00191656795755345*m.x312*m.x312 - 0.0913064*m.x312 + 0.0992753*m.x1080 + 9.13481*m.b2136 <= 8.99873) m.c6087 = Constraint(expr=0.00191656795755345*m.x313*m.x313 - 0.0913164*m.x313 + 0.0992753*m.x1081 + 9.13248*m.b2137 <= 8.99598) m.c6088 = Constraint(expr=0.00191656795755345*m.x314*m.x314 - 0.0912666*m.x314 + 0.0992753*m.x1082 + 9.14411*m.b2138 <= 9.00971) m.c6089 = Constraint(expr=0.00191656795755345*m.x315*m.x315 - 0.09124*m.x315 + 0.0992753*m.x1083 + 9.15031*m.b2139 <= 9.01703) m.c6090 = Constraint(expr=0.00191656795755345*m.x316*m.x316 - 0.0912102*m.x316 + 0.0992753*m.x1084 + 9.15729*m.b2140 <= 9.02527) m.c6091 = Constraint(expr=0.00191656795755345*m.x317*m.x317 - 0.0911836*m.x317 + 0.0992753*m.x1085 + 9.16349*m.b2141 <= 9.03259) m.c6092 = Constraint(expr=0.00191656795755345*m.x318*m.x318 - 0.0911538*m.x318 + 0.0992753*m.x1086 + 9.17046*m.b2142 <= 9.04082) m.c6093 = Constraint(expr=0.00191656795755345*m.x319*m.x319 - 0.0911571*m.x319 + 0.0992753*m.x1087 + 9.16969*m.b2143 <= 9.03991) m.c6094 = Constraint(expr=0.00191656795755345*m.x320*m.x320 - 0.0911538*m.x320 + 0.0992753*m.x1088 + 9.17046*m.b2144 <= 9.04082) m.c6095 = Constraint(expr=0.00191656795755345*m.x321*m.x321 - 0.0911139*m.x321 + 0.0992753*m.x1089 + 9.17976*m.b2145 <= 9.0518) m.c6096 = Constraint(expr=0.00191656795755345*m.x322*m.x322 - 0.0910973*m.x322 + 0.0992753*m.x1090 + 9.18364*m.b2146 <= 9.05638) m.c6097 = Constraint(expr=0.00191656795755345*m.x323*m.x323 - 0.091031*m.x323 + 0.0992753*m.x1091 + 9.19914*m.b2147 <= 9.07468) m.c6098 = Constraint(expr=0.00191656795755345*m.x324*m.x324 - 0.0910111*m.x324 + 0.0992753*m.x1092 + 9.20379*m.b2148 <= 9.08017) m.c6099 = Constraint(expr=0.00191656795755345*m.x325*m.x325 - 0.0909845*m.x325 + 0.0992753*m.x1093 + 9.20999*m.b2149 <= 9.08749) m.c6100 = Constraint(expr=0.00191656795755345*m.x326*m.x326 - 0.0909148*m.x326 + 0.0992753*m.x1094 + 9.22627*m.b2150 <= 9.10671) m.c6101 = Constraint(expr=0.00191656795755345*m.x327*m.x327 - 0.090865*m.x327 + 0.0992753*m.x1095 + 9.2379*m.b2151 <= 9.12044) m.c6102 = Constraint(expr=0.00191656795755345*m.x328*m.x328 - 0.0908816*m.x328 + 0.0992753*m.x1096 + 9.23402*m.b2152 <= 9.11586) m.c6103 = Constraint(expr=0.00191656795755345*m.x329*m.x329 - 0.0909281*m.x329 + 0.0992753*m.x1097 + 9.22317*m.b2153 <= 9.10305) m.c6104 = Constraint(expr=0.00191656795755345*m.x330*m.x330 - 0.0909546*m.x330 + 0.0992753*m.x1098 + 9.21697*m.b2154 <= 9.09573) m.c6105 = Constraint(expr=0.00191656795755345*m.x331*m.x331 - 0.091031*m.x331 + 0.0992753*m.x1099 + 9.19914*m.b2155 <= 9.07468) m.c6106 = Constraint(expr=0.00191656795755345*m.x332*m.x332 - 0.0910907*m.x332 + 0.0992753*m.x1100 + 9.18519*m.b2156 <= 9.05821) m.c6107 = Constraint(expr=0.00191656795755345*m.x333*m.x333 - 0.091104*m.x333 + 0.0992753*m.x1101 + 9.18209*m.b2157 <= 9.05455) m.c6108 = Constraint(expr=0.00191656795755345*m.x334*m.x334 - 0.0911504*m.x334 + 0.0992753*m.x1102 + 9.17124*m.b2158 <= 9.04174) m.c6109 = Constraint(expr=0.00191656795755345*m.x335*m.x335 - 0.0911305*m.x335 + 0.0992753*m.x1103 + 9.17589*m.b2159 <= 9.04723) m.c6110 = Constraint(expr=0.00191656795755345*m.x336*m.x336 - 0.0911405*m.x336 + 0.0992753*m.x1104 + 9.17356*m.b2160 <= 9.04448) m.c6111 = Constraint(expr=0.00191656795755345*m.x337*m.x337 - 0.0913164*m.x337 + 0.0992753*m.x1105 + 9.13248*m.b2161 <= 8.99598) m.c6112 = Constraint(expr=0.00191656795755345*m.x338*m.x338 - 0.091333*m.x338 + 0.0992753*m.x1106 + 9.12861*m.b2162 <= 8.99141) m.c6113 = Constraint(expr=0.00191656795755345*m.x339*m.x339 - 0.0913396*m.x339 + 0.0992753*m.x1107 + 9.12706*m.b2163 <= 8.98958) m.c6114 = Constraint(expr=0.00191656795755345*m.x340*m.x340 - 0.0913429*m.x340 + 0.0992753*m.x1108 + 9.12628*m.b2164 <= 8.98866) m.c6115 = Constraint(expr=0.00191656795755345*m.x341*m.x341 - 0.0913496*m.x341 + 0.0992753*m.x1109 + 9.12473*m.b2165 <= 8.98683) m.c6116 = Constraint(expr=0.00191656795755345*m.x342*m.x342 - 0.0913529*m.x342 + 0.0992753*m.x1110 + 9.12396*m.b2166 <= 8.98592) m.c6117 = Constraint(expr=0.00191656795755345*m.x343*m.x343 - 0.0913562*m.x343 + 0.0992753*m.x1111 + 9.12318*m.b2167 <= 8.985) m.c6118 = Constraint(expr=0.00191656795755345*m.x344*m.x344 - 0.0913529*m.x344 + 0.0992753*m.x1112 + 9.12396*m.b2168 <= 8.98592) m.c6119 = Constraint(expr=0.00191656795755345*m.x345*m.x345 - 0.0913462*m.x345 + 0.0992753*m.x1113 + 9.12551*m.b2169 <= 8.98775) m.c6120 = Constraint(expr=0.00191656795755345*m.x346*m.x346 - 0.0913296*m.x346 + 0.0992753*m.x1114 + 9.12938*m.b2170 <= 8.99232) m.c6121 = Constraint(expr=0.00191656795755345*m.x347*m.x347 - 0.0912965*m.x347 + 0.0992753*m.x1115 + 9.13713*m.b2171 <= 9.00147) m.c6122 = Constraint(expr=0.00191656795755345*m.x348*m.x348 - 0.0912434*m.x348 + 0.0992753*m.x1116 + 9.14954*m.b2172 <= 9.01612) m.c6123 = Constraint(expr=0.00191656795755345*m.x349*m.x349 - 0.0911836*m.x349 + 0.0992753*m.x1117 + 9.16349*m.b2173 <= 9.03259) m.c6124 = Constraint(expr=0.00191656795755345*m.x350*m.x350 - 0.0911139*m.x350 + 0.0992753*m.x1118 + 9.17976*m.b2174 <= 9.0518) m.c6125 = Constraint(expr=0.00191656795755345*m.x351*m.x351 - 0.0910973*m.x351 + 0.0992753*m.x1119 + 9.18364*m.b2175 <= 9.05638) m.c6126 = Constraint(expr=0.00191656795755345*m.x352*m.x352 - 0.0911471*m.x352 + 0.0992753*m.x1120 + 9.17201*m.b2176 <= 9.04265) m.c6127 = Constraint(expr=0.00191656795755345*m.x353*m.x353 - 0.0911604*m.x353 + 0.0992753*m.x1121 + 9.16891*m.b2177 <= 9.03899) m.c6128 = Constraint(expr=0.00191656795755345*m.x354*m.x354 - 0.0911869*m.x354 + 0.0992753*m.x1122 + 9.16271*m.b2178 <= 9.03167) m.c6129 = Constraint(expr=0.00191656795755345*m.x355*m.x355 - 0.0912301*m.x355 + 0.0992753*m.x1123 + 9.15264*m.b2179 <= 9.01978) m.c6130 = Constraint(expr=0.00191656795755345*m.x356*m.x356 - 0.0912566*m.x356 + 0.0992753*m.x1124 + 9.14644*m.b2180 <= 9.01246) m.c6131 = Constraint(expr=0.00191656795755345*m.x357*m.x357 - 0.0912699*m.x357 + 0.0992753*m.x1125 + 9.14334*m.b2181 <= 9.0088) m.c6132 = Constraint(expr=0.00191656795755345*m.x358*m.x358 - 0.0912832*m.x358 + 0.0992753*m.x1126 + 9.14024*m.b2182 <= 9.00514) m.c6133 = Constraint(expr=0.00191656795755345*m.x359*m.x359 - 0.0912965*m.x359 + 0.0992753*m.x1127 + 9.13713*m.b2183 <= 9.00147) m.c6134 = Constraint(expr=0.00191656795755345*m.x360*m.x360 - 0.0913064*m.x360 + 0.0992753*m.x1128 + 9.13481*m.b2184 <= 8.99873) m.c6135 = Constraint(expr=0.00191656795755345*m.x361*m.x361 - 0.0913164*m.x361 + 0.0992753*m.x1129 + 9.13248*m.b2185 <= 8.99598) m.c6136 = Constraint(expr=0.00191656795755345*m.x362*m.x362 - 0.0912666*m.x362 + 0.0992753*m.x1130 + 9.14411*m.b2186 <= 9.00971) m.c6137 = Constraint(expr=0.00191656795755345*m.x363*m.x363 - 0.09124*m.x363 + 0.0992753*m.x1131 + 9.15031*m.b2187 <= 9.01703) m.c6138 = Constraint(expr=0.00191656795755345*m.x364*m.x364 - 0.0912102*m.x364 + 0.0992753*m.x1132 + 9.15729*m.b2188 <= 9.02527) m.c6139 = Constraint(expr=0.00191656795755345*m.x365*m.x365 - 0.0911836*m.x365 + 0.0992753*m.x1133 + 9.16349*m.b2189 <= 9.03259) m.c6140 = Constraint(expr=0.00191656795755345*m.x366*m.x366 - 0.0911538*m.x366 + 0.0992753*m.x1134 + 9.17046*m.b2190 <= 9.04082) m.c6141 = Constraint(expr=0.00191656795755345*m.x367*m.x367 - 0.0911571*m.x367 + 0.0992753*m.x1135 + 9.16969*m.b2191 <= 9.03991) m.c6142 = Constraint(expr=0.00191656795755345*m.x368*m.x368 - 0.0911538*m.x368 + 0.0992753*m.x1136 + 9.17046*m.b2192 <= 9.04082) m.c6143 = Constraint(expr=0.00191656795755345*m.x369*m.x369 - 0.0911139*m.x369 + 0.0992753*m.x1137 + 9.17976*m.b2193 <= 9.0518) m.c6144 = Constraint(expr=0.00191656795755345*m.x370*m.x370 - 0.0910973*m.x370 + 0.0992753*m.x1138 + 9.18364*m.b2194 <= 9.05638) m.c6145 = Constraint(expr=0.00191656795755345*m.x371*m.x371 - 0.091031*m.x371 + 0.0992753*m.x1139 + 9.19914*m.b2195 <= 9.07468) m.c6146 = Constraint(expr=0.00191656795755345*m.x372*m.x372 - 0.0910111*m.x372 + 0.0992753*m.x1140 + 9.20379*m.b2196 <= 9.08017) m.c6147 = Constraint(expr=0.00191656795755345*m.x373*m.x373 - 0.0909845*m.x373 + 0.0992753*m.x1141 + 9.20999*m.b2197 <= 9.08749) m.c6148 = Constraint(expr=0.00191656795755345*m.x374*m.x374 - 0.0909148*m.x374 + 0.0992753*m.x1142 + 9.22627*m.b2198 <= 9.10671) m.c6149 = Constraint(expr=0.00191656795755345*m.x375*m.x375 - 0.090865*m.x375 + 0.0992753*m.x1143 + 9.2379*m.b2199 <= 9.12044) m.c6150 = Constraint(expr=0.00191656795755345*m.x376*m.x376 - 0.0908816*m.x376 + 0.0992753*m.x1144 + 9.23402*m.b2200 <= 9.11586) m.c6151 = Constraint(expr=0.00191656795755345*m.x377*m.x377 - 0.0909281*m.x377 + 0.0992753*m.x1145 + 9.22317*m.b2201 <= 9.10305) m.c6152 = Constraint(expr=0.00191656795755345*m.x378*m.x378 - 0.0909546*m.x378 + 0.0992753*m.x1146 + 9.21697*m.b2202 <= 9.09573) m.c6153 = Constraint(expr=0.00191656795755345*m.x379*m.x379 - 0.091031*m.x379 + 0.0992753*m.x1147 + 9.19914*m.b2203 <= 9.07468) m.c6154 = Constraint(expr=0.00191656795755345*m.x380*m.x380 - 0.0910907*m.x380 + 0.0992753*m.x1148 + 9.18519*m.b2204 <= 9.05821) m.c6155 = Constraint(expr=0.00191656795755345*m.x381*m.x381 - 0.091104*m.x381 + 0.0992753*m.x1149 + 9.18209*m.b2205 <= 9.05455) m.c6156 = Constraint(expr=0.00191656795755345*m.x382*m.x382 - 0.0911504*m.x382 + 0.0992753*m.x1150 + 9.17124*m.b2206 <= 9.04174) m.c6157 = Constraint(expr=0.00191656795755345*m.x383*m.x383 - 0.0911305*m.x383 + 0.0992753*m.x1151 + 9.17589*m.b2207 <= 9.04723) m.c6158 = Constraint(expr=0.00191656795755345*m.x384*m.x384 - 0.0911405*m.x384 + 0.0992753*m.x1152 + 9.17356*m.b2208 <= 9.04448) m.c6159 = Constraint(expr=0.00191656795755345*m.x385*m.x385 - 0.0913164*m.x385 + 0.0992753*m.x1153 + 9.13248*m.b2209 <= 8.99598) m.c6160 = Constraint(expr=(-0.00172169903672958*m.x194*m.x194) - 0.0405088*m.x194 + 0.183453*m.x578 + 7.00999*m.b2018 <= 6.90479) m.c6161 = Constraint(expr=(-0.00172169903672958*m.x195*m.x195) - 0.0404934*m.x195 + 0.183453*m.x579 + 7.00904*m.b2019 <= 6.90396) m.c6162 = Constraint(expr=(-0.00172169903672958*m.x196*m.x196) - 0.0404856*m.x196 + 0.183453*m.x580 + 7.00857*m.b2020 <= 6.90355) m.c6163 = Constraint(expr=(-0.00172169903672958*m.x197*m.x197) - 0.0404701*m.x197 + 0.183453*m.x581 + 7.00762*m.b2021 <= 6.90272) m.c6164 = Constraint(expr=(-0.00172169903672958*m.x198*m.x198) - 0.0404624*m.x198 + 0.183453*m.x582 + 7.00714*m.b2022 <= 6.9023) m.c6165 = Constraint(expr=(-0.00172169903672958*m.x199*m.x199) - 0.0404546*m.x199 + 0.183453*m.x583 + 7.00667*m.b2023 <= 6.90189) m.c6166 = Constraint(expr=(-0.00172169903672958*m.x200*m.x200) - 0.0404624*m.x200 + 0.183453*m.x584 + 7.00714*m.b2024 <= 6.9023) m.c6167 = Constraint(expr=(-0.00172169903672958*m.x201*m.x201) - 0.0404779*m.x201 + 0.183453*m.x585 + 7.00809*m.b2025 <= 6.90313) m.c6168 = Constraint(expr=(-0.00172169903672958*m.x202*m.x202) - 0.0405166*m.x202 + 0.183453*m.x586 + 7.01047*m.b2026 <= 6.90521) m.c6169 = Constraint(expr=(-0.00172169903672958*m.x203*m.x203) - 0.040594*m.x203 + 0.183453*m.x587 + 7.01522*m.b2027 <= 6.90936) m.c6170 = Constraint(expr=(-0.00172169903672958*m.x204*m.x204) - 0.0407179*m.x204 + 0.183453*m.x588 + 7.02282*m.b2028 <= 6.916) m.c6171 = Constraint(expr=(-0.00172169903672958*m.x205*m.x205) - 0.0408573*m.x205 + 0.183453*m.x589 + 7.03137*m.b2029 <= 6.92347) m.c6172 = Constraint(expr=(-0.00172169903672958*m.x206*m.x206) - 0.0410199*m.x206 + 0.183453*m.x590 + 7.04134*m.b2030 <= 6.93218) m.c6173 = Constraint(expr=(-0.00172169903672958*m.x207*m.x207) - 0.0410586*m.x207 + 0.183453*m.x591 + 7.04371*m.b2031 <= 6.93425) m.c6174 = Constraint(expr=(-0.00172169903672958*m.x208*m.x208) - 0.0409425*m.x208 + 0.183453*m.x592 + 7.03659*m.b2032 <= 6.92803) m.c6175 = Constraint(expr=(-0.00172169903672958*m.x209*m.x209) - 0.0409115*m.x209 + 0.183453*m.x593 + 7.03469*m.b2033 <= 6.92637) m.c6176 = Constraint(expr=(-0.00172169903672958*m.x210*m.x210) - 0.0408496*m.x210 + 0.183453*m.x594 + 7.03089*m.b2034 <= 6.92305) m.c6177 = Constraint(expr=(-0.00172169903672958*m.x211*m.x211) - 0.0407489*m.x211 + 0.183453*m.x595 + 7.02472*m.b2035 <= 6.91766) m.c6178 = Constraint(expr=(-0.00172169903672958*m.x212*m.x212) - 0.0406869*m.x212 + 0.183453*m.x596 + 7.02092*m.b2036 <= 6.91434) m.c6179 = Constraint(expr=(-0.00172169903672958*m.x213*m.x213) - 0.040656*m.x213 + 0.183453*m.x597 + 7.01902*m.b2037 <= 6.91268) m.c6180 = Constraint(expr=(-0.00172169903672958*m.x214*m.x214) - 0.040625*m.x214 + 0.183453*m.x598 + 7.01712*m.b2038 <= 6.91102) m.c6181 = Constraint(expr=(-0.00172169903672958*m.x215*m.x215) - 0.040594*m.x215 + 0.183453*m.x599 + 7.01522*m.b2039 <= 6.90936) m.c6182 = Constraint(expr=(-0.00172169903672958*m.x216*m.x216) - 0.0405708*m.x216 + 0.183453*m.x600 + 7.01379*m.b2040 <= 6.90811) m.c6183 = Constraint(expr=(-0.00172169903672958*m.x217*m.x217) - 0.0405476*m.x217 + 0.183453*m.x601 + 7.01237*m.b2041 <= 6.90687) m.c6184 = Constraint(expr=(-0.00172169903672958*m.x218*m.x218) - 0.0406637*m.x218 + 0.183453*m.x602 + 7.01949*m.b2042 <= 6.91309) m.c6185 = Constraint(expr=(-0.00172169903672958*m.x219*m.x219) - 0.0407257*m.x219 + 0.183453*m.x603 + 7.02329*m.b2043 <= 6.91641) m.c6186 = Constraint(expr=(-0.00172169903672958*m.x220*m.x220) - 0.0407954*m.x220 + 0.183453*m.x604 + 7.02757*m.b2044 <= 6.92015) m.c6187 = Constraint(expr=(-0.00172169903672958*m.x221*m.x221) - 0.0408573*m.x221 + 0.183453*m.x605 + 7.03137*m.b2045 <= 6.92347) m.c6188 = Constraint(expr=(-0.00172169903672958*m.x222*m.x222) - 0.040927*m.x222 + 0.183453*m.x606 + 7.03564*m.b2046 <= 6.9272) m.c6189 = Constraint(expr=(-0.00172169903672958*m.x223*m.x223) - 0.0409192*m.x223 + 0.183453*m.x607 + 7.03516*m.b2047 <= 6.92678) m.c6190 = Constraint(expr=(-0.00172169903672958*m.x224*m.x224) - 0.040927*m.x224 + 0.183453*m.x608 + 7.03564*m.b2048 <= 6.9272) m.c6191 = Constraint(expr=(-0.00172169903672958*m.x225*m.x225) - 0.0410199*m.x225 + 0.183453*m.x609 + 7.04134*m.b2049 <= 6.93218) m.c6192 = Constraint(expr=(-0.00172169903672958*m.x226*m.x226) - 0.0410586*m.x226 + 0.183453*m.x610 + 7.04371*m.b2050 <= 6.93425) m.c6193 = Constraint(expr=(-0.00172169903672958*m.x227*m.x227) - 0.0412135*m.x227 + 0.183453*m.x611 + 7.05321*m.b2051 <= 6.94255) m.c6194 = Constraint(expr=(-0.00172169903672958*m.x228*m.x228) - 0.04126*m.x228 + 0.183453*m.x612 + 7.05606*m.b2052 <= 6.94504) m.c6195 = Constraint(expr=(-0.00172169903672958*m.x229*m.x229) - 0.0413219*m.x229 + 0.183453*m.x613 + 7.05986*m.b2053 <= 6.94836) m.c6196 = Constraint(expr=(-0.00172169903672958*m.x230*m.x230) - 0.0414845*m.x230 + 0.183453*m.x614 + 7.06983*m.b2054 <= 6.95707) m.c6197 = Constraint(expr=(-0.00172169903672958*m.x231*m.x231) - 0.0416007*m.x231 + 0.183453*m.x615 + 7.07696*m.b2055 <= 6.9633) m.c6198 = Constraint(expr=(-0.00172169903672958*m.x232*m.x232) - 0.0415619*m.x232 + 0.183453*m.x616 + 7.07458*m.b2056 <= 6.96122) m.c6199 = Constraint(expr=(-0.00172169903672958*m.x233*m.x233) - 0.0414535*m.x233 + 0.183453*m.x617 + 7.06793*m.b2057 <= 6.95541) m.c6200 = Constraint(expr=(-0.00172169903672958*m.x234*m.x234) - 0.0413916*m.x234 + 0.183453*m.x618 + 7.06413*m.b2058 <= 6.95209) m.c6201 = Constraint(expr=(-0.00172169903672958*m.x235*m.x235) - 0.0412135*m.x235 + 0.183453*m.x619 + 7.05321*m.b2059 <= 6.94255) m.c6202 = Constraint(expr=(-0.00172169903672958*m.x236*m.x236) - 0.0410741*m.x236 + 0.183453*m.x620 + 7.04466*m.b2060 <= 6.93508) m.c6203 = Constraint(expr=(-0.00172169903672958*m.x237*m.x237) - 0.0410431*m.x237 + 0.183453*m.x621 + 7.04276*m.b2061 <= 6.93342) m.c6204 = Constraint(expr=(-0.00172169903672958*m.x238*m.x238) - 0.0409347*m.x238 + 0.183453*m.x622 + 7.03611*m.b2062 <= 6.92761) m.c6205 = Constraint(expr=(-0.00172169903672958*m.x239*m.x239) - 0.0409812*m.x239 + 0.183453*m.x623 + 7.03896*m.b2063 <= 6.9301) m.c6206 = Constraint(expr=(-0.00172169903672958*m.x240*m.x240) - 0.040958*m.x240 + 0.183453*m.x624 + 7.03754*m.b2064 <= 6.92886) m.c6207 = Constraint(expr=(-0.00172169903672958*m.x241*m.x241) - 0.0405476*m.x241 + 0.183453*m.x625 + 7.01237*m.b2065 <= 6.90687) m.c6208 = Constraint(expr=(-0.00172169903672958*m.x242*m.x242) - 0.0405088*m.x242 + 0.183453*m.x626 + 7.00999*m.b2066 <= 6.90479) m.c6209 = Constraint(expr=(-0.00172169903672958*m.x243*m.x243) - 0.0404934*m.x243 + 0.183453*m.x627 + 7.00904*m.b2067 <= 6.90396) m.c6210 = Constraint(expr=(-0.00172169903672958*m.x244*m.x244) - 0.0404856*m.x244 + 0.183453*m.x628 + 7.00857*m.b2068 <= 6.90355) m.c6211 = Constraint(expr=(-0.00172169903672958*m.x245*m.x245) - 0.0404701*m.x245 + 0.183453*m.x629 + 7.00762*m.b2069 <= 6.90272) m.c6212 = Constraint(expr=(-0.00172169903672958*m.x246*m.x246) - 0.0404624*m.x246 + 0.183453*m.x630 + 7.00714*m.b2070 <= 6.9023) m.c6213 = Constraint(expr=(-0.00172169903672958*m.x247*m.x247) - 0.0404546*m.x247 + 0.183453*m.x631 + 7.00667*m.b2071 <= 6.90189) m.c6214 = Constraint(expr=(-0.00172169903672958*m.x248*m.x248) - 0.0404624*m.x248 + 0.183453*m.x632 + 7.00714*m.b2072 <= 6.9023) m.c6215 = Constraint(expr=(-0.00172169903672958*m.x249*m.x249) - 0.0404779*m.x249 + 0.183453*m.x633 + 7.00809*m.b2073 <= 6.90313) m.c6216 = Constraint(expr=(-0.00172169903672958*m.x250*m.x250) - 0.0405166*m.x250 + 0.183453*m.x634 + 7.01047*m.b2074 <= 6.90521) m.c6217 = Constraint(expr=(-0.00172169903672958*m.x251*m.x251) - 0.040594*m.x251 + 0.183453*m.x635 + 7.01522*m.b2075 <= 6.90936) m.c6218 = Constraint(expr=(-0.00172169903672958*m.x252*m.x252) - 0.0407179*m.x252 + 0.183453*m.x636 + 7.02282*m.b2076 <= 6.916) m.c6219 = Constraint(expr=(-0.00172169903672958*m.x253*m.x253) - 0.0408573*m.x253 + 0.183453*m.x637 + 7.03137*m.b2077 <= 6.92347) m.c6220 = Constraint(expr=(-0.00172169903672958*m.x254*m.x254) - 0.0410199*m.x254 + 0.183453*m.x638 + 7.04134*m.b2078 <= 6.93218) m.c6221 = Constraint(expr=(-0.00172169903672958*m.x255*m.x255) - 0.0410586*m.x255 + 0.183453*m.x639 + 7.04371*m.b2079 <= 6.93425) m.c6222 = Constraint(expr=(-0.00172169903672958*m.x256*m.x256) - 0.0409425*m.x256 + 0.183453*m.x640 + 7.03659*m.b2080 <= 6.92803) m.c6223 = Constraint(expr=(-0.00172169903672958*m.x257*m.x257) - 0.0409115*m.x257 + 0.183453*m.x641 + 7.03469*m.b2081 <= 6.92637) m.c6224 = Constraint(expr=(-0.00172169903672958*m.x258*m.x258) - 0.0408496*m.x258 + 0.183453*m.x642 + 7.03089*m.b2082 <= 6.92305) m.c6225 = Constraint(expr=(-0.00172169903672958*m.x259*m.x259) - 0.0407489*m.x259 + 0.183453*m.x643 + 7.02472*m.b2083 <= 6.91766) m.c6226 = Constraint(expr=(-0.00172169903672958*m.x260*m.x260) - 0.0406869*m.x260 + 0.183453*m.x644 + 7.02092*m.b2084 <= 6.91434) m.c6227 = Constraint(expr=(-0.00172169903672958*m.x261*m.x261) - 0.040656*m.x261 + 0.183453*m.x645 + 7.01902*m.b2085 <= 6.91268) m.c6228 = Constraint(expr=(-0.00172169903672958*m.x262*m.x262) - 0.040625*m.x262 + 0.183453*m.x646 + 7.01712*m.b2086 <= 6.91102) m.c6229 = Constraint(expr=(-0.00172169903672958*m.x263*m.x263) - 0.040594*m.x263 + 0.183453*m.x647 + 7.01522*m.b2087 <= 6.90936) m.c6230 = Constraint(expr=(-0.00172169903672958*m.x264*m.x264) - 0.0405708*m.x264 + 0.183453*m.x648 + 7.01379*m.b2088 <= 6.90811) m.c6231 = Constraint(expr=(-0.00172169903672958*m.x265*m.x265) - 0.0405476*m.x265 + 0.183453*m.x649 + 7.01237*m.b2089 <= 6.90687) m.c6232 = Constraint(expr=(-0.00172169903672958*m.x266*m.x266) - 0.0406637*m.x266 + 0.183453*m.x650 + 7.01949*m.b2090 <= 6.91309) m.c6233 = Constraint(expr=(-0.00172169903672958*m.x267*m.x267) - 0.0407257*m.x267 + 0.183453*m.x651 + 7.02329*m.b2091 <= 6.91641) m.c6234 = Constraint(expr=(-0.00172169903672958*m.x268*m.x268) - 0.0407954*m.x268 + 0.183453*m.x652 + 7.02757*m.b2092 <= 6.92015) m.c6235 = Constraint(expr=(-0.00172169903672958*m.x269*m.x269) - 0.0408573*m.x269 + 0.183453*m.x653 + 7.03137*m.b2093 <= 6.92347) m.c6236 = Constraint(expr=(-0.00172169903672958*m.x270*m.x270) - 0.040927*m.x270 + 0.183453*m.x654 + 7.03564*m.b2094 <= 6.9272) m.c6237 = Constraint(expr=(-0.00172169903672958*m.x271*m.x271) - 0.0409192*m.x271 + 0.183453*m.x655 + 7.03516*m.b2095 <= 6.92678) m.c6238 = Constraint(expr=(-0.00172169903672958*m.x272*m.x272) - 0.040927*m.x272 + 0.183453*m.x656 + 7.03564*m.b2096 <= 6.9272) m.c6239 = Constraint(expr=(-0.00172169903672958*m.x273*m.x273) - 0.0410199*m.x273 + 0.183453*m.x657 + 7.04134*m.b2097 <= 6.93218) m.c6240 = Constraint(expr=(-0.00172169903672958*m.x274*m.x274) - 0.0410586*m.x274 + 0.183453*m.x658 + 7.04371*m.b2098 <= 6.93425) m.c6241 = Constraint(expr=(-0.00172169903672958*m.x275*m.x275) - 0.0412135*m.x275 + 0.183453*m.x659 + 7.05321*m.b2099 <= 6.94255) m.c6242 = Constraint(expr=(-0.00172169903672958*m.x276*m.x276) - 0.04126*m.x276 + 0.183453*m.x660 + 7.05606*m.b2100 <= 6.94504) m.c6243 = Constraint(expr=(-0.00172169903672958*m.x277*m.x277) - 0.0413219*m.x277 + 0.183453*m.x661 + 7.05986*m.b2101 <= 6.94836) m.c6244 = Constraint(expr=(-0.00172169903672958*m.x278*m.x278) - 0.0414845*m.x278 + 0.183453*m.x662 + 7.06983*m.b2102 <= 6.95707) m.c6245 = Constraint(expr=(-0.00172169903672958*m.x279*m.x279) - 0.0416007*m.x279 + 0.183453*m.x663 + 7.07696*m.b2103 <= 6.9633) m.c6246 = Constraint(expr=(-0.00172169903672958*m.x280*m.x280) - 0.0415619*m.x280 + 0.183453*m.x664 + 7.07458*m.b2104 <= 6.96122) m.c6247 = Constraint(expr=(-0.00172169903672958*m.x281*m.x281) - 0.0414535*m.x281 + 0.183453*m.x665 + 7.06793*m.b2105 <= 6.95541) m.c6248 = Constraint(expr=(-0.00172169903672958*m.x282*m.x282) - 0.0413916*m.x282 + 0.183453*m.x666 + 7.06413*m.b2106 <= 6.95209) m.c6249 = Constraint(expr=(-0.00172169903672958*m.x283*m.x283) - 0.0412135*m.x283 + 0.183453*m.x667 + 7.05321*m.b2107 <= 6.94255) m.c6250 = Constraint(expr=(-0.00172169903672958*m.x284*m.x284) - 0.0410741*m.x284 + 0.183453*m.x668 + 7.04466*m.b2108 <= 6.93508) m.c6251 = Constraint(expr=(-0.00172169903672958*m.x285*m.x285) - 0.0410431*m.x285 + 0.183453*m.x669 + 7.04276*m.b2109 <= 6.93342) m.c6252 = Constraint(expr=(-0.00172169903672958*m.x286*m.x286) - 0.0409347*m.x286 + 0.183453*m.x670 + 7.03611*m.b2110 <= 6.92761) m.c6253 = Constraint(expr=(-0.00172169903672958*m.x287*m.x287) - 0.0409812*m.x287 + 0.183453*m.x671 + 7.03896*m.b2111 <= 6.9301) m.c6254 = Constraint(expr=(-0.00172169903672958*m.x288*m.x288) - 0.040958*m.x288 + 0.183453*m.x672 + 7.03754*m.b2112 <= 6.92886) m.c6255 = Constraint(expr=(-0.00172169903672958*m.x289*m.x289) - 0.0405476*m.x289 + 0.183453*m.x673 + 7.01237*m.b2113 <= 6.90687) m.c6256 = Constraint(expr=(-0.00172169903672958*m.x290*m.x290) - 0.0405088*m.x290 + 0.183453*m.x674 + 7.00999*m.b2114 <= 6.90479) m.c6257 = Constraint(expr=(-0.00172169903672958*m.x291*m.x291) - 0.0404934*m.x291 + 0.183453*m.x675 + 7.00904*m.b2115 <= 6.90396) m.c6258 = Constraint(expr=(-0.00172169903672958*m.x292*m.x292) - 0.0404856*m.x292 + 0.183453*m.x676 + 7.00857*m.b2116 <= 6.90355) m.c6259 = Constraint(expr=(-0.00172169903672958*m.x293*m.x293) - 0.0404701*m.x293 + 0.183453*m.x677 + 7.00762*m.b2117 <= 6.90272) m.c6260 = Constraint(expr=(-0.00172169903672958*m.x294*m.x294) - 0.0404624*m.x294 + 0.183453*m.x678 + 7.00714*m.b2118 <= 6.9023) m.c6261 = Constraint(expr=(-0.00172169903672958*m.x295*m.x295) - 0.0404546*m.x295 + 0.183453*m.x679 + 7.00667*m.b2119 <= 6.90189) m.c6262 = Constraint(expr=(-0.00172169903672958*m.x296*m.x296) - 0.0404624*m.x296 + 0.183453*m.x680 + 7.00714*m.b2120 <= 6.9023) m.c6263 = Constraint(expr=(-0.00172169903672958*m.x297*m.x297) - 0.0404779*m.x297 + 0.183453*m.x681 + 7.00809*m.b2121 <= 6.90313) m.c6264 = Constraint(expr=(-0.00172169903672958*m.x298*m.x298) - 0.0405166*m.x298 + 0.183453*m.x682 + 7.01047*m.b2122 <= 6.90521) m.c6265 = Constraint(expr=(-0.00172169903672958*m.x299*m.x299) - 0.040594*m.x299 + 0.183453*m.x683 + 7.01522*m.b2123 <= 6.90936) m.c6266 = Constraint(expr=(-0.00172169903672958*m.x300*m.x300) - 0.0407179*m.x300 + 0.183453*m.x684 + 7.02282*m.b2124 <= 6.916) m.c6267 = Constraint(expr=(-0.00172169903672958*m.x301*m.x301) - 0.0408573*m.x301 + 0.183453*m.x685 + 7.03137*m.b2125 <= 6.92347) m.c6268 = Constraint(expr=(-0.00172169903672958*m.x302*m.x302) - 0.0410199*m.x302 + 0.183453*m.x686 + 7.04134*m.b2126 <= 6.93218) m.c6269 = Constraint(expr=(-0.00172169903672958*m.x303*m.x303) - 0.0410586*m.x303 + 0.183453*m.x687 + 7.04371*m.b2127 <= 6.93425) m.c6270 = Constraint(expr=(-0.00172169903672958*m.x304*m.x304) - 0.0409425*m.x304 + 0.183453*m.x688 + 7.03659*m.b2128 <= 6.92803) m.c6271 = Constraint(expr=(-0.00172169903672958*m.x305*m.x305) - 0.0409115*m.x305 + 0.183453*m.x689 + 7.03469*m.b2129 <= 6.92637) m.c6272 = Constraint(expr=(-0.00172169903672958*m.x306*m.x306) - 0.0408496*m.x306 + 0.183453*m.x690 + 7.03089*m.b2130 <= 6.92305) m.c6273 = Constraint(expr=(-0.00172169903672958*m.x307*m.x307) - 0.0407489*m.x307 + 0.183453*m.x691 + 7.02472*m.b2131 <= 6.91766) m.c6274 = Constraint(expr=(-0.00172169903672958*m.x308*m.x308) - 0.0406869*m.x308 + 0.183453*m.x692 + 7.02092*m.b2132 <= 6.91434) m.c6275 = Constraint(expr=(-0.00172169903672958*m.x309*m.x309) - 0.040656*m.x309 + 0.183453*m.x693 + 7.01902*m.b2133 <= 6.91268) m.c6276 = Constraint(expr=(-0.00172169903672958*m.x310*m.x310) - 0.040625*m.x310 + 0.183453*m.x694 + 7.01712*m.b2134 <= 6.91102) m.c6277 = Constraint(expr=(-0.00172169903672958*m.x311*m.x311) - 0.040594*m.x311 + 0.183453*m.x695 + 7.01522*m.b2135 <= 6.90936) m.c6278 = Constraint(expr=(-0.00172169903672958*m.x312*m.x312) - 0.0405708*m.x312 + 0.183453*m.x696 + 7.01379*m.b2136 <= 6.90811) m.c6279 = Constraint(expr=(-0.00172169903672958*m.x313*m.x313) - 0.0405476*m.x313 + 0.183453*m.x697 + 7.01237*m.b2137 <= 6.90687) m.c6280 = Constraint(expr=(-0.00172169903672958*m.x314*m.x314) - 0.0406637*m.x314 + 0.183453*m.x698 + 7.01949*m.b2138 <= 6.91309) m.c6281 = Constraint(expr=(-0.00172169903672958*m.x315*m.x315) - 0.0407257*m.x315 + 0.183453*m.x699 + 7.02329*m.b2139 <= 6.91641) m.c6282 = Constraint(expr=(-0.00172169903672958*m.x316*m.x316) - 0.0407954*m.x316 + 0.183453*m.x700 + 7.02757*m.b2140 <= 6.92015) m.c6283 = Constraint(expr=(-0.00172169903672958*m.x317*m.x317) - 0.0408573*m.x317 + 0.183453*m.x701 + 7.03137*m.b2141 <= 6.92347) m.c6284 = Constraint(expr=(-0.00172169903672958*m.x318*m.x318) - 0.040927*m.x318 + 0.183453*m.x702 + 7.03564*m.b2142 <= 6.9272) m.c6285 = Constraint(expr=(-0.00172169903672958*m.x319*m.x319) - 0.0409192*m.x319 + 0.183453*m.x703 + 7.03516*m.b2143 <= 6.92678) m.c6286 = Constraint(expr=(-0.00172169903672958*m.x320*m.x320) - 0.040927*m.x320 + 0.183453*m.x704 + 7.03564*m.b2144 <= 6.9272) m.c6287 = Constraint(expr=(-0.00172169903672958*m.x321*m.x321) - 0.0410199*m.x321 + 0.183453*m.x705 + 7.04134*m.b2145 <= 6.93218) m.c6288 = Constraint(expr=(-0.00172169903672958*m.x322*m.x322) - 0.0410586*m.x322 + 0.183453*m.x706 + 7.04371*m.b2146 <= 6.93425) m.c6289 = Constraint(expr=(-0.00172169903672958*m.x323*m.x323) - 0.0412135*m.x323 + 0.183453*m.x707 + 7.05321*m.b2147 <= 6.94255) m.c6290 = Constraint(expr=(-0.00172169903672958*m.x324*m.x324) - 0.04126*m.x324 + 0.183453*m.x708 + 7.05606*m.b2148 <= 6.94504) m.c6291 = Constraint(expr=(-0.00172169903672958*m.x325*m.x325) - 0.0413219*m.x325 + 0.183453*m.x709 + 7.05986*m.b2149 <= 6.94836) m.c6292 = Constraint(expr=(-0.00172169903672958*m.x326*m.x326) - 0.0414845*m.x326 + 0.183453*m.x710 + 7.06983*m.b2150 <= 6.95707) m.c6293 = Constraint(expr=(-0.00172169903672958*m.x327*m.x327) - 0.0416007*m.x327 + 0.183453*m.x711 + 7.07696*m.b2151 <= 6.9633) m.c6294 = Constraint(expr=(-0.00172169903672958*m.x328*m.x328) - 0.0415619*m.x328 + 0.183453*m.x712 + 7.07458*m.b2152 <= 6.96122) m.c6295 = Constraint(expr=(-0.00172169903672958*m.x329*m.x329) - 0.0414535*m.x329 + 0.183453*m.x713 + 7.06793*m.b2153 <= 6.95541) m.c6296 = Constraint(expr=(-0.00172169903672958*m.x330*m.x330) - 0.0413916*m.x330 + 0.183453*m.x714 + 7.06413*m.b2154 <= 6.95209) m.c6297 = Constraint(expr=(-0.00172169903672958*m.x331*m.x331) - 0.0412135*m.x331 + 0.183453*m.x715 + 7.05321*m.b2155 <= 6.94255) m.c6298 = Constraint(expr=(-0.00172169903672958*m.x332*m.x332) - 0.0410741*m.x332 + 0.183453*m.x716 + 7.04466*m.b2156 <= 6.93508) m.c6299 = Constraint(expr=(-0.00172169903672958*m.x333*m.x333) - 0.0410431*m.x333 + 0.183453*m.x717 + 7.04276*m.b2157 <= 6.93342) m.c6300 = Constraint(expr=(-0.00172169903672958*m.x334*m.x334) - 0.0409347*m.x334 + 0.183453*m.x718 + 7.03611*m.b2158 <= 6.92761) m.c6301 = Constraint(expr=(-0.00172169903672958*m.x335*m.x335) - 0.0409812*m.x335 + 0.183453*m.x719 + 7.03896*m.b2159 <= 6.9301) m.c6302 = Constraint(expr=(-0.00172169903672958*m.x336*m.x336) - 0.040958*m.x336 + 0.183453*m.x720 + 7.03754*m.b2160 <= 6.92886) m.c6303 = Constraint(expr=(-0.00172169903672958*m.x337*m.x337) - 0.0405476*m.x337 + 0.183453*m.x721 + 7.01237*m.b2161 <= 6.90687) m.c6304 = Constraint(expr=(-0.00172169903672958*m.x338*m.x338) - 0.0405088*m.x338 + 0.183453*m.x722 + 7.00999*m.b2162 <= 6.90479) m.c6305 = Constraint(expr=(-0.00172169903672958*m.x339*m.x339) - 0.0404934*m.x339 + 0.183453*m.x723 + 7.00904*m.b2163 <= 6.90396) m.c6306 = Constraint(expr=(-0.00172169903672958*m.x340*m.x340) - 0.0404856*m.x340 + 0.183453*m.x724 + 7.00857*m.b2164 <= 6.90355) m.c6307 = Constraint(expr=(-0.00172169903672958*m.x341*m.x341) - 0.0404701*m.x341 + 0.183453*m.x725 + 7.00762*m.b2165 <= 6.90272) m.c6308 = Constraint(expr=(-0.00172169903672958*m.x342*m.x342) - 0.0404624*m.x342 + 0.183453*m.x726 + 7.00714*m.b2166 <= 6.9023) m.c6309 = Constraint(expr=(-0.00172169903672958*m.x343*m.x343) - 0.0404546*m.x343 + 0.183453*m.x727 + 7.00667*m.b2167 <= 6.90189) m.c6310 = Constraint(expr=(-0.00172169903672958*m.x344*m.x344) - 0.0404624*m.x344 + 0.183453*m.x728 + 7.00714*m.b2168 <= 6.9023) m.c6311 = Constraint(expr=(-0.00172169903672958*m.x345*m.x345) - 0.0404779*m.x345 + 0.183453*m.x729 + 7.00809*m.b2169 <= 6.90313) m.c6312 = Constraint(expr=(-0.00172169903672958*m.x346*m.x346) - 0.0405166*m.x346 + 0.183453*m.x730 + 7.01047*m.b2170 <= 6.90521) m.c6313 = Constraint(expr=(-0.00172169903672958*m.x347*m.x347) - 0.040594*m.x347 + 0.183453*m.x731 + 7.01522*m.b2171 <= 6.90936) m.c6314 = Constraint(expr=(-0.00172169903672958*m.x348*m.x348) - 0.0407179*m.x348 + 0.183453*m.x732 + 7.02282*m.b2172 <= 6.916) m.c6315 = Constraint(expr=(-0.00172169903672958*m.x349*m.x349) - 0.0408573*m.x349 + 0.183453*m.x733 + 7.03137*m.b2173 <= 6.92347) m.c6316 = Constraint(expr=(-0.00172169903672958*m.x350*m.x350) - 0.0410199*m.x350 + 0.183453*m.x734 + 7.04134*m.b2174 <= 6.93218) m.c6317 = Constraint(expr=(-0.00172169903672958*m.x351*m.x351) - 0.0410586*m.x351 + 0.183453*m.x735 + 7.04371*m.b2175 <= 6.93425) m.c6318 = Constraint(expr=(-0.00172169903672958*m.x352*m.x352) - 0.0409425*m.x352 + 0.183453*m.x736 + 7.03659*m.b2176 <= 6.92803) m.c6319 = Constraint(expr=(-0.00172169903672958*m.x353*m.x353) - 0.0409115*m.x353 + 0.183453*m.x737 + 7.03469*m.b2177 <= 6.92637) m.c6320 = Constraint(expr=(-0.00172169903672958*m.x354*m.x354) - 0.0408496*m.x354 + 0.183453*m.x738 + 7.03089*m.b2178 <= 6.92305) m.c6321 = Constraint(expr=(-0.00172169903672958*m.x355*m.x355) - 0.0407489*m.x355 + 0.183453*m.x739 + 7.02472*m.b2179 <= 6.91766) m.c6322 = Constraint(expr=(-0.00172169903672958*m.x356*m.x356) - 0.0406869*m.x356 + 0.183453*m.x740 + 7.02092*m.b2180 <= 6.91434) m.c6323 = Constraint(expr=(-0.00172169903672958*m.x357*m.x357) - 0.040656*m.x357 + 0.183453*m.x741 + 7.01902*m.b2181 <= 6.91268) m.c6324 = Constraint(expr=(-0.00172169903672958*m.x358*m.x358) - 0.040625*m.x358 + 0.183453*m.x742 + 7.01712*m.b2182 <= 6.91102) m.c6325 = Constraint(expr=(-0.00172169903672958*m.x359*m.x359) - 0.040594*m.x359 + 0.183453*m.x743 + 7.01522*m.b2183 <= 6.90936) m.c6326 = Constraint(expr=(-0.00172169903672958*m.x360*m.x360) - 0.0405708*m.x360 + 0.183453*m.x744 + 7.01379*m.b2184 <= 6.90811) m.c6327 = Constraint(expr=(-0.00172169903672958*m.x361*m.x361) - 0.0405476*m.x361 + 0.183453*m.x745 + 7.01237*m.b2185 <= 6.90687) m.c6328 = Constraint(expr=(-0.00172169903672958*m.x362*m.x362) - 0.0406637*m.x362 + 0.183453*m.x746 + 7.01949*m.b2186 <= 6.91309) m.c6329 = Constraint(expr=(-0.00172169903672958*m.x363*m.x363) - 0.0407257*m.x363 + 0.183453*m.x747 + 7.02329*m.b2187 <= 6.91641) m.c6330 = Constraint(expr=(-0.00172169903672958*m.x364*m.x364) - 0.0407954*m.x364 + 0.183453*m.x748 + 7.02757*m.b2188 <= 6.92015) m.c6331 = Constraint(expr=(-0.00172169903672958*m.x365*m.x365) - 0.0408573*m.x365 + 0.183453*m.x749 + 7.03137*m.b2189 <= 6.92347) m.c6332 = Constraint(expr=(-0.00172169903672958*m.x366*m.x366) - 0.040927*m.x366 + 0.183453*m.x750 + 7.03564*m.b2190 <= 6.9272) m.c6333 = Constraint(expr=(-0.00172169903672958*m.x367*m.x367) - 0.0409192*m.x367 + 0.183453*m.x751 + 7.03516*m.b2191 <= 6.92678) m.c6334 = Constraint(expr=(-0.00172169903672958*m.x368*m.x368) - 0.040927*m.x368 + 0.183453*m.x752 + 7.03564*m.b2192 <= 6.9272) m.c6335 = Constraint(expr=(-0.00172169903672958*m.x369*m.x369) - 0.0410199*m.x369 + 0.183453*m.x753 + 7.04134*m.b2193 <= 6.93218) m.c6336 = Constraint(expr=(-0.00172169903672958*m.x370*m.x370) - 0.0410586*m.x370 + 0.183453*m.x754 + 7.04371*m.b2194 <= 6.93425) m.c6337 = Constraint(expr=(-0.00172169903672958*m.x371*m.x371) - 0.0412135*m.x371 + 0.183453*m.x755 + 7.05321*m.b2195 <= 6.94255) m.c6338 = Constraint(expr=(-0.00172169903672958*m.x372*m.x372) - 0.04126*m.x372 + 0.183453*m.x756 + 7.05606*m.b2196 <= 6.94504) m.c6339 = Constraint(expr=(-0.00172169903672958*m.x373*m.x373) - 0.0413219*m.x373 + 0.183453*m.x757 + 7.05986*m.b2197 <= 6.94836) m.c6340 = Constraint(expr=(-0.00172169903672958*m.x374*m.x374) - 0.0414845*m.x374 + 0.183453*m.x758 + 7.06983*m.b2198 <= 6.95707) m.c6341 = Constraint(expr=(-0.00172169903672958*m.x375*m.x375) - 0.0416007*m.x375 + 0.183453*m.x759 + 7.07696*m.b2199 <= 6.9633) m.c6342 = Constraint(expr=(-0.00172169903672958*m.x376*m.x376) - 0.0415619*m.x376 + 0.183453*m.x760 + 7.07458*m.b2200 <= 6.96122) m.c6343 = Constraint(expr=(-0.00172169903672958*m.x377*m.x377) - 0.0414535*m.x377 + 0.183453*m.x761 + 7.06793*m.b2201 <= 6.95541) m.c6344 = Constraint(expr=(-0.00172169903672958*m.x378*m.x378) - 0.0413916*m.x378 + 0.183453*m.x762 + 7.06413*m.b2202 <= 6.95209) m.c6345 = Constraint(expr=(-0.00172169903672958*m.x379*m.x379) - 0.0412135*m.x379 + 0.183453*m.x763 + 7.05321*m.b2203 <= 6.94255) m.c6346 = Constraint(expr=(-0.00172169903672958*m.x380*m.x380) - 0.0410741*m.x380 + 0.183453*m.x764 + 7.04466*m.b2204 <= 6.93508) m.c6347 = Constraint(expr=(-0.00172169903672958*m.x381*m.x381) - 0.0410431*m.x381 + 0.183453*m.x765 + 7.04276*m.b2205 <= 6.93342) m.c6348 = Constraint(expr=(-0.00172169903672958*m.x382*m.x382) - 0.0409347*m.x382 + 0.183453*m.x766 + 7.03611*m.b2206 <= 6.92761) m.c6349 = Constraint(expr=(-0.00172169903672958*m.x383*m.x383) - 0.0409812*m.x383 + 0.183453*m.x767 + 7.03896*m.b2207 <= 6.9301) m.c6350 = Constraint(expr=(-0.00172169903672958*m.x384*m.x384) - 0.040958*m.x384 + 0.183453*m.x768 + 7.03754*m.b2208 <= 6.92886) m.c6351 = Constraint(expr=(-0.00172169903672958*m.x385*m.x385) - 0.0405476*m.x385 + 0.183453*m.x769 + 7.01237*m.b2209 <= 6.90687) m.c6352 = Constraint(expr= m.x1154 <= 0) m.c6353 = Constraint(expr= m.x1155 <= 0) m.c6354 = Constraint(expr= m.x1156 <= 0) m.c6355 = Constraint(expr= m.x1157 <= 0) m.c6356 = Constraint(expr= m.x1158 <= 0) m.c6357 = Constraint(expr= m.x1159 <= 0) m.c6358 = Constraint(expr= m.x1160 <= 0) m.c6359 = Constraint(expr= m.x1161 <= 0) m.c6360 = Constraint(expr= m.x1162 <= 0) m.c6361 = Constraint(expr= m.x1163 <= 0) m.c6362 = Constraint(expr= m.x1164 <= 0) m.c6363 = Constraint(expr= m.x1165 <= 0) m.c6364 = Constraint(expr= m.x1166 <= 0) m.c6365 = Constraint(expr= m.x1167 <= 0) m.c6366 = Constraint(expr= m.x1168 <= 0) m.c6367 = Constraint(expr= m.x1169 <= 0) m.c6368 = Constraint(expr= m.x1170 <= 0) m.c6369 = Constraint(expr= m.x1171 <= 0) m.c6370 = Constraint(expr= m.x1172 <= 0) m.c6371 = Constraint(expr= m.x1173 <= 0) m.c6372 = Constraint(expr= m.x1174 <= 0) m.c6373 = Constraint(expr= m.x1175 <= 0) m.c6374 = Constraint(expr= m.x1176 <= 0) m.c6375 = Constraint(expr= m.x1177 <= 0) m.c6376 = Constraint(expr= m.x1178 <= 0) m.c6377 = Constraint(expr= m.x1179 <= 0) m.c6378 = Constraint(expr= m.x1180 <= 0) m.c6379 = Constraint(expr= m.x1181 <= 0) m.c6380 = Constraint(expr= m.x1182 <= 0) m.c6381 = Constraint(expr= m.x1183 <= 0) m.c6382 = Constraint(expr= m.x1184 <= 0) m.c6383 = Constraint(expr= m.x1185 <= 0) m.c6384 = Constraint(expr= m.x1186 <= 0) m.c6385 = Constraint(expr= m.x1187 <= 0) m.c6386 = Constraint(expr= m.x1188 <= 0) m.c6387 = Constraint(expr= m.x1189 <= 0) m.c6388 = Constraint(expr= m.x1190 <= 0) m.c6389 = Constraint(expr= m.x1191 <= 0) m.c6390 = Constraint(expr= m.x1192 <= 0) m.c6391 = Constraint(expr= m.x1193 <= 0) m.c6392 = Constraint(expr= m.x1194 <= 0) m.c6393 = Constraint(expr= m.x1195 <= 0) m.c6394 = Constraint(expr= m.x1196 <= 0) m.c6395 = Constraint(expr= m.x1197 <= 0) m.c6396 = Constraint(expr= m.x1198 <= 0) m.c6397 = Constraint(expr= m.x1199 <= 0) m.c6398 = Constraint(expr= m.x1200 <= 0) m.c6399 = Constraint(expr= m.x1201 <= 0) m.c6400 = Constraint(expr= m.x1202 <= 0) m.c6401 = Constraint(expr= m.x1203 <= 0) m.c6402 = Constraint(expr= m.x1204 <= 0) m.c6403 = Constraint(expr= m.x1205 <= 0) m.c6404 = Constraint(expr= m.x1206 <= 0) m.c6405 = Constraint(expr= m.x1207 <= 0) m.c6406 = Constraint(expr= m.x1208 <= 0) m.c6407 = Constraint(expr= m.x1209 <= 0) m.c6408 = Constraint(expr= m.x1210 <= 0) m.c6409 = Constraint(expr= m.x1211 <= 0) m.c6410 = Constraint(expr= m.x1212 <= 0) m.c6411 = Constraint(expr= m.x1213 <= 0) m.c6412 = Constraint(expr= m.x1214 <= 0) m.c6413 = Constraint(expr= m.x1215 <= 0) m.c6414 = Constraint(expr= m.x1216 <= 0) m.c6415 = Constraint(expr= m.x1217 <= 0) m.c6416 = Constraint(expr= m.x1218 <= 0) m.c6417 = Constraint(expr= m.x1219 <= 0) m.c6418 = Constraint(expr= m.x1220 <= 0) m.c6419 = Constraint(expr= m.x1221 <= 0) m.c6420 = Constraint(expr= m.x1222 <= 0) m.c6421 = Constraint(expr= m.x1223 <= 0) m.c6422 = Constraint(expr= m.x1224 <= 0) m.c6423 = Constraint(expr= m.x1225 <= 0) m.c6424 = Constraint(expr= m.x1226 <= 0) m.c6425 = Constraint(expr= m.x1227 <= 0) m.c6426 = Constraint(expr= m.x1228 <= 0) m.c6427 = Constraint(expr= m.x1229 <= 0) m.c6428 = Constraint(expr= m.x1230 <= 0) m.c6429 = Constraint(expr= m.x1231 <= 0) m.c6430 = Constraint(expr= m.x1232 <= 0) m.c6431 = Constraint(expr= m.x1233 <= 0) m.c6432 = Constraint(expr= m.x1234 <= 0) m.c6433 = Constraint(expr= m.x1235 <= 0) m.c6434 = Constraint(expr= m.x1236 <= 0) m.c6435 = Constraint(expr= m.x1237 <= 0) m.c6436 = Constraint(expr= m.x1238 <= 0) m.c6437 = Constraint(expr= m.x1239 <= 0) m.c6438 = Constraint(expr= m.x1240 <= 0) m.c6439 = Constraint(expr= m.x1241 <= 0) m.c6440 = Constraint(expr= m.x1242 <= 0) m.c6441 = Constraint(expr= m.x1243 <= 0) m.c6442 = Constraint(expr= m.x1244 <= 0) m.c6443 = Constraint(expr= m.x1245 <= 0) m.c6444 = Constraint(expr= m.x1246 <= 0) m.c6445 = Constraint(expr= m.x1247 <= 0) m.c6446 = Constraint(expr= m.x1248 <= 0) m.c6447 = Constraint(expr= m.x1249 <= 0) m.c6448 = Constraint(expr=0.000152475248549441*m.x98*m.x98 - 0.0286775*m.x98 + 0.0334717*m.x866 + 20.4748*m.b2210 <= 19.813) m.c6449 = Constraint(expr=0.000152475248549441*m.x99*m.x99 - 0.0286869*m.x99 + 0.0334717*m.x867 + 20.4596*m.b2211 <= 19.7965) m.c6450 = Constraint(expr=0.000152475248549441*m.x100*m.x100 - 0.0286916*m.x100 + 0.0334717*m.x868 + 20.4521*m.b2212 <= 19.7882) m.c6451 = Constraint(expr=0.000152475248549441*m.x101*m.x101 - 0.028701*m.x101 + 0.0334717*m.x869 + 20.4369*m.b2213 <= 19.7716) m.c6452 = Constraint(expr=0.000152475248549441*m.x102*m.x102 - 0.0287057*m.x102 + 0.0334717*m.x870 + 20.4293*m.b2214 <= 19.7633) m.c6453 = Constraint(expr=0.000152475248549441*m.x103*m.x103 - 0.0287104*m.x103 + 0.0334717*m.x871 + 20.4217*m.b2215 <= 19.755) m.c6454 = Constraint(expr=0.000152475248549441*m.x104*m.x104 - 0.0287057*m.x104 + 0.0334717*m.x872 + 20.4293*m.b2216 <= 19.7633) m.c6455 = Constraint(expr=0.000152475248549441*m.x105*m.x105 - 0.0286963*m.x105 + 0.0334717*m.x873 + 20.4445*m.b2217 <= 19.7799) m.c6456 = Constraint(expr=0.000152475248549441*m.x106*m.x106 - 0.0286728*m.x106 + 0.0334717*m.x874 + 20.4824*m.b2218 <= 19.8213) m.c6457 = Constraint(expr=0.000152475248549441*m.x107*m.x107 - 0.0286257*m.x107 + 0.0334717*m.x875 + 20.5581*m.b2219 <= 19.9042) m.c6458 = Constraint(expr=0.000152475248549441*m.x108*m.x108 - 0.0285505*m.x108 + 0.0334717*m.x876 + 20.6794*m.b2220 <= 20.0368) m.c6459 = Constraint(expr=0.000152475248549441*m.x109*m.x109 - 0.0284658*m.x109 + 0.0334717*m.x877 + 20.8158*m.b2221 <= 20.186) m.c6460 = Constraint(expr=0.000152475248549441*m.x110*m.x110 - 0.028367*m.x110 + 0.0334717*m.x878 + 20.975*m.b2222 <= 20.3601) m.c6461 = Constraint(expr=0.000152475248549441*m.x111*m.x111 - 0.0283435*m.x111 + 0.0334717*m.x879 + 21.0128*m.b2223 <= 20.4015) m.c6462 = Constraint(expr=0.000152475248549441*m.x112*m.x112 - 0.028414*m.x112 + 0.0334717*m.x880 + 20.8992*m.b2224 <= 20.2772) m.c6463 = Constraint(expr=0.000152475248549441*m.x113*m.x113 - 0.0284328*m.x113 + 0.0334717*m.x881 + 20.8689*m.b2225 <= 20.244) m.c6464 = Constraint(expr=0.000152475248549441*m.x114*m.x114 - 0.0284705*m.x114 + 0.0334717*m.x882 + 20.8082*m.b2226 <= 20.1777) m.c6465 = Constraint(expr=0.000152475248549441*m.x115*m.x115 - 0.0285316*m.x115 + 0.0334717*m.x883 + 20.7097*m.b2227 <= 20.07) m.c6466 = Constraint(expr=0.000152475248549441*m.x116*m.x116 - 0.0285693*m.x116 + 0.0334717*m.x884 + 20.6491*m.b2228 <= 20.0037) m.c6467 = Constraint(expr=0.000152475248549441*m.x117*m.x117 - 0.0285881*m.x117 + 0.0334717*m.x885 + 20.6188*m.b2229 <= 19.9705) m.c6468 = Constraint(expr=0.000152475248549441*m.x118*m.x118 - 0.0286069*m.x118 + 0.0334717*m.x886 + 20.5885*m.b2230 <= 19.9374) m.c6469 = Constraint(expr=0.000152475248549441*m.x119*m.x119 - 0.0286257*m.x119 + 0.0334717*m.x887 + 20.5581*m.b2231 <= 19.9042) m.c6470 = Constraint(expr=0.000152475248549441*m.x120*m.x120 - 0.0286398*m.x120 + 0.0334717*m.x888 + 20.5354*m.b2232 <= 19.8793) m.c6471 = Constraint(expr=0.000152475248549441*m.x121*m.x121 - 0.028654*m.x121 + 0.0334717*m.x889 + 20.5127*m.b2233 <= 19.8545) m.c6472 = Constraint(expr=0.000152475248549441*m.x122*m.x122 - 0.0285834*m.x122 + 0.0334717*m.x890 + 20.6264*m.b2234 <= 19.9788) m.c6473 = Constraint(expr=0.000152475248549441*m.x123*m.x123 - 0.0285457*m.x123 + 0.0334717*m.x891 + 20.687*m.b2235 <= 20.0451) m.c6474 = Constraint(expr=0.000152475248549441*m.x124*m.x124 - 0.0285034*m.x124 + 0.0334717*m.x892 + 20.7552*m.b2236 <= 20.1197) m.c6475 = Constraint(expr=0.000152475248549441*m.x125*m.x125 - 0.0284658*m.x125 + 0.0334717*m.x893 + 20.8158*m.b2237 <= 20.186) m.c6476 = Constraint(expr=0.000152475248549441*m.x126*m.x126 - 0.0284234*m.x126 + 0.0334717*m.x894 + 20.884*m.b2238 <= 20.2606) m.c6477 = Constraint(expr=0.000152475248549441*m.x127*m.x127 - 0.0284281*m.x127 + 0.0334717*m.x895 + 20.8764*m.b2239 <= 20.2523) m.c6478 = Constraint(expr=0.000152475248549441*m.x128*m.x128 - 0.0284234*m.x128 + 0.0334717*m.x896 + 20.884*m.b2240 <= 20.2606) m.c6479 = Constraint(expr=0.000152475248549441*m.x129*m.x129 - 0.028367*m.x129 + 0.0334717*m.x897 + 20.975*m.b2241 <= 20.3601) m.c6480 = Constraint(expr=0.000152475248549441*m.x130*m.x130 - 0.0283435*m.x130 + 0.0334717*m.x898 + 21.0128*m.b2242 <= 20.4015) m.c6481 = Constraint(expr=0.000152475248549441*m.x131*m.x131 - 0.0282494*m.x131 + 0.0334717*m.x899 + 21.1644*m.b2243 <= 20.5673) m.c6482 = Constraint(expr=0.000152475248549441*m.x132*m.x132 - 0.0282211*m.x132 + 0.0334717*m.x900 + 21.2099*m.b2244 <= 20.617) m.c6483 = Constraint(expr=0.000152475248549441*m.x133*m.x133 - 0.0281835*m.x133 + 0.0334717*m.x901 + 21.2705*m.b2245 <= 20.6833) m.c6484 = Constraint(expr=0.000152475248549441*m.x134*m.x134 - 0.0280847*m.x134 + 0.0334717*m.x902 + 21.4297*m.b2246 <= 20.8574) m.c6485 = Constraint(expr=0.000152475248549441*m.x135*m.x135 - 0.0280141*m.x135 + 0.0334717*m.x903 + 21.5433*m.b2247 <= 20.9817) m.c6486 = Constraint(expr=0.000152475248549441*m.x136*m.x136 - 0.0280377*m.x136 + 0.0334717*m.x904 + 21.5054*m.b2248 <= 20.9402) m.c6487 = Constraint(expr=0.000152475248549441*m.x137*m.x137 - 0.0281035*m.x137 + 0.0334717*m.x905 + 21.3993*m.b2249 <= 20.8242) m.c6488 = Constraint(expr=0.000152475248549441*m.x138*m.x138 - 0.0281412*m.x138 + 0.0334717*m.x906 + 21.3387*m.b2250 <= 20.7579) m.c6489 = Constraint(expr=0.000152475248549441*m.x139*m.x139 - 0.0282494*m.x139 + 0.0334717*m.x907 + 21.1644*m.b2251 <= 20.5673) m.c6490 = Constraint(expr=0.000152475248549441*m.x140*m.x140 - 0.028334*m.x140 + 0.0334717*m.x908 + 21.028*m.b2252 <= 20.4181) m.c6491 = Constraint(expr=0.000152475248549441*m.x141*m.x141 - 0.0283529*m.x141 + 0.0334717*m.x909 + 20.9977*m.b2253 <= 20.3849) m.c6492 = Constraint(expr=0.000152475248549441*m.x142*m.x142 - 0.0284187*m.x142 + 0.0334717*m.x910 + 20.8916*m.b2254 <= 20.2689) m.c6493 = Constraint(expr=0.000152475248549441*m.x143*m.x143 - 0.0283905*m.x143 + 0.0334717*m.x911 + 20.9371*m.b2255 <= 20.3186) m.c6494 = Constraint(expr=0.000152475248549441*m.x144*m.x144 - 0.0284046*m.x144 + 0.0334717*m.x912 + 20.9143*m.b2256 <= 20.2938) m.c6495 = Constraint(expr=0.000152475248549441*m.x145*m.x145 - 0.028654*m.x145 + 0.0334717*m.x913 + 20.5127*m.b2257 <= 19.8545) m.c6496 = Constraint(expr=0.000152475248549441*m.x146*m.x146 - 0.0286775*m.x146 + 0.0334717*m.x914 + 20.4748*m.b2258 <= 19.813) m.c6497 = Constraint(expr=0.000152475248549441*m.x147*m.x147 - 0.0286869*m.x147 + 0.0334717*m.x915 + 20.4596*m.b2259 <= 19.7965) m.c6498 = Constraint(expr=0.000152475248549441*m.x148*m.x148 - 0.0286916*m.x148 + 0.0334717*m.x916 + 20.4521*m.b2260 <= 19.7882) m.c6499 = Constraint(expr=0.000152475248549441*m.x149*m.x149 - 0.028701*m.x149 + 0.0334717*m.x917 + 20.4369*m.b2261 <= 19.7716) m.c6500 = Constraint(expr=0.000152475248549441*m.x150*m.x150 - 0.0287057*m.x150 + 0.0334717*m.x918 + 20.4293*m.b2262 <= 19.7633) m.c6501 = Constraint(expr=0.000152475248549441*m.x151*m.x151 - 0.0287104*m.x151 + 0.0334717*m.x919 + 20.4217*m.b2263 <= 19.755) m.c6502 = Constraint(expr=0.000152475248549441*m.x152*m.x152 - 0.0287057*m.x152 + 0.0334717*m.x920 + 20.4293*m.b2264 <= 19.7633) m.c6503 = Constraint(expr=0.000152475248549441*m.x153*m.x153 - 0.0286963*m.x153 + 0.0334717*m.x921 + 20.4445*m.b2265 <= 19.7799) m.c6504 = Constraint(expr=0.000152475248549441*m.x154*m.x154 - 0.0286728*m.x154 + 0.0334717*m.x922 + 20.4824*m.b2266 <= 19.8213) m.c6505 = Constraint(expr=0.000152475248549441*m.x155*m.x155 - 0.0286257*m.x155 + 0.0334717*m.x923 + 20.5581*m.b2267 <= 19.9042) m.c6506 = Constraint(expr=0.000152475248549441*m.x156*m.x156 - 0.0285505*m.x156 + 0.0334717*m.x924 + 20.6794*m.b2268 <= 20.0368) m.c6507 = Constraint(expr=0.000152475248549441*m.x157*m.x157 - 0.0284658*m.x157 + 0.0334717*m.x925 + 20.8158*m.b2269 <= 20.186) m.c6508 = Constraint(expr=0.000152475248549441*m.x158*m.x158 - 0.028367*m.x158 + 0.0334717*m.x926 + 20.975*m.b2270 <= 20.3601) m.c6509 = Constraint(expr=0.000152475248549441*m.x159*m.x159 - 0.0283435*m.x159 + 0.0334717*m.x927 + 21.0128*m.b2271 <= 20.4015) m.c6510 = Constraint(expr=0.000152475248549441*m.x160*m.x160 - 0.028414*m.x160 + 0.0334717*m.x928 + 20.8992*m.b2272 <= 20.2772) m.c6511 = Constraint(expr=0.000152475248549441*m.x161*m.x161 - 0.0284328*m.x161 + 0.0334717*m.x929 + 20.8689*m.b2273 <= 20.244) m.c6512 = Constraint(expr=0.000152475248549441*m.x162*m.x162 - 0.0284705*m.x162 + 0.0334717*m.x930 + 20.8082*m.b2274 <= 20.1777) m.c6513 = Constraint(expr=0.000152475248549441*m.x163*m.x163 - 0.0285316*m.x163 + 0.0334717*m.x931 + 20.7097*m.b2275 <= 20.07) m.c6514 = Constraint(expr=0.000152475248549441*m.x164*m.x164 - 0.0285693*m.x164 + 0.0334717*m.x932 + 20.6491*m.b2276 <= 20.0037) m.c6515 = Constraint(expr=0.000152475248549441*m.x165*m.x165 - 0.0285881*m.x165 + 0.0334717*m.x933 + 20.6188*m.b2277 <= 19.9705) m.c6516 = Constraint(expr=0.000152475248549441*m.x166*m.x166 - 0.0286069*m.x166 + 0.0334717*m.x934 + 20.5885*m.b2278 <= 19.9374) m.c6517 = Constraint(expr=0.000152475248549441*m.x167*m.x167 - 0.0286257*m.x167 + 0.0334717*m.x935 + 20.5581*m.b2279 <= 19.9042) m.c6518 = Constraint(expr=0.000152475248549441*m.x168*m.x168 - 0.0286398*m.x168 + 0.0334717*m.x936 + 20.5354*m.b2280 <= 19.8793) m.c6519 = Constraint(expr=0.000152475248549441*m.x169*m.x169 - 0.028654*m.x169 + 0.0334717*m.x937 + 20.5127*m.b2281 <= 19.8545) m.c6520 = Constraint(expr=0.000152475248549441*m.x170*m.x170 - 0.0285834*m.x170 + 0.0334717*m.x938 + 20.6264*m.b2282 <= 19.9788) m.c6521 = Constraint(expr=0.000152475248549441*m.x171*m.x171 - 0.0285457*m.x171 + 0.0334717*m.x939 + 20.687*m.b2283 <= 20.0451) m.c6522 = Constraint(expr=0.000152475248549441*m.x172*m.x172 - 0.0285034*m.x172 + 0.0334717*m.x940 + 20.7552*m.b2284 <= 20.1197) m.c6523 = Constraint(expr=0.000152475248549441*m.x173*m.x173 - 0.0284658*m.x173 + 0.0334717*m.x941 + 20.8158*m.b2285 <= 20.186) m.c6524 = Constraint(expr=0.000152475248549441*m.x174*m.x174 - 0.0284234*m.x174 + 0.0334717*m.x942 + 20.884*m.b2286 <= 20.2606) m.c6525 = Constraint(expr=0.000152475248549441*m.x175*m.x175 - 0.0284281*m.x175 + 0.0334717*m.x943 + 20.8764*m.b2287 <= 20.2523) m.c6526 = Constraint(expr=0.000152475248549441*m.x176*m.x176 - 0.0284234*m.x176 + 0.0334717*m.x944 + 20.884*m.b2288 <= 20.2606) m.c6527 = Constraint(expr=0.000152475248549441*m.x177*m.x177 - 0.028367*m.x177 + 0.0334717*m.x945 + 20.975*m.b2289 <= 20.3601) m.c6528 = Constraint(expr=0.000152475248549441*m.x178*m.x178 - 0.0283435*m.x178 + 0.0334717*m.x946 + 21.0128*m.b2290 <= 20.4015) m.c6529 = Constraint(expr=0.000152475248549441*m.x179*m.x179 - 0.0282494*m.x179 + 0.0334717*m.x947 + 21.1644*m.b2291 <= 20.5673) m.c6530 = Constraint(expr=0.000152475248549441*m.x180*m.x180 - 0.0282211*m.x180 + 0.0334717*m.x948 + 21.2099*m.b2292 <= 20.617) m.c6531 = Constraint(expr=0.000152475248549441*m.x181*m.x181 - 0.0281835*m.x181 + 0.0334717*m.x949 + 21.2705*m.b2293 <= 20.6833) m.c6532 = Constraint(expr=0.000152475248549441*m.x182*m.x182 - 0.0280847*m.x182 + 0.0334717*m.x950 + 21.4297*m.b2294 <= 20.8574) m.c6533 = Constraint(expr=0.000152475248549441*m.x183*m.x183 - 0.0280141*m.x183 + 0.0334717*m.x951 + 21.5433*m.b2295 <= 20.9817) m.c6534 = Constraint(expr=0.000152475248549441*m.x184*m.x184 - 0.0280377*m.x184 + 0.0334717*m.x952 + 21.5054*m.b2296 <= 20.9402) m.c6535 = Constraint(expr=0.000152475248549441*m.x185*m.x185 - 0.0281035*m.x185 + 0.0334717*m.x953 + 21.3993*m.b2297 <= 20.8242) m.c6536 = Constraint(expr=0.000152475248549441*m.x186*m.x186 - 0.0281412*m.x186 + 0.0334717*m.x954 + 21.3387*m.b2298 <= 20.7579) m.c6537 = Constraint(expr=0.000152475248549441*m.x187*m.x187 - 0.0282494*m.x187 + 0.0334717*m.x955 + 21.1644*m.b2299 <= 20.5673) m.c6538 = Constraint(expr=0.000152475248549441*m.x188*m.x188 - 0.028334*m.x188 + 0.0334717*m.x956 + 21.028*m.b2300 <= 20.4181) m.c6539 = Constraint(expr=0.000152475248549441*m.x189*m.x189 - 0.0283529*m.x189 + 0.0334717*m.x957 + 20.9977*m.b2301 <= 20.3849) m.c6540 = Constraint(expr=0.000152475248549441*m.x190*m.x190 - 0.0284187*m.x190 + 0.0334717*m.x958 + 20.8916*m.b2302 <= 20.2689) m.c6541 = Constraint(expr=0.000152475248549441*m.x191*m.x191 - 0.0283905*m.x191 + 0.0334717*m.x959 + 20.9371*m.b2303 <= 20.3186) m.c6542 = Constraint(expr=0.000152475248549441*m.x192*m.x192 - 0.0284046*m.x192 + 0.0334717*m.x960 + 20.9143*m.b2304 <= 20.2938) m.c6543 = Constraint(expr=0.000152475248549441*m.x193*m.x193 - 0.028654*m.x193 + 0.0334717*m.x961 + 20.5127*m.b2305 <= 19.8545) m.c6544 = Constraint(expr=9.55693503233427e-5*m.x98*m.x98 - 0.0198576*m.x98 + 0.0291954*m.x482 + 17.3082*m.b2210 <= 16.7866) m.c6545 = Constraint(expr=9.55693503233427e-5*m.x99*m.x99 - 0.0198624*m.x99 + 0.0291954*m.x483 + 17.303*m.b2211 <= 16.7807) m.c6546 = Constraint(expr=9.55693503233427e-5*m.x100*m.x100 - 0.0198648*m.x100 + 0.0291954*m.x484 + 17.3004*m.b2212 <= 16.7778) m.c6547 = Constraint(expr=9.55693503233427e-5*m.x101*m.x101 - 0.0198696*m.x101 + 0.0291954*m.x485 + 17.2951*m.b2213 <= 16.7719) m.c6548 = Constraint(expr=9.55693503233427e-5*m.x102*m.x102 - 0.019872*m.x102 + 0.0291954*m.x486 + 17.2925*m.b2214 <= 16.769) m.c6549 = Constraint(expr=9.55693503233427e-5*m.x103*m.x103 - 0.0198744*m.x103 + 0.0291954*m.x487 + 17.2899*m.b2215 <= 16.7661) m.c6550 = Constraint(expr=9.55693503233427e-5*m.x104*m.x104 - 0.019872*m.x104 + 0.0291954*m.x488 + 17.2925*m.b2216 <= 16.769) m.c6551 = Constraint(expr=9.55693503233427e-5*m.x105*m.x105 - 0.0198672*m.x105 + 0.0291954*m.x489 + 17.2978*m.b2217 <= 16.7749) m.c6552 = Constraint(expr=9.55693503233427e-5*m.x106*m.x106 - 0.0198551*m.x106 + 0.0291954*m.x490 + 17.3109*m.b2218 <= 16.7895) m.c6553 = Constraint(expr=9.55693503233427e-5*m.x107*m.x107 - 0.0198311*m.x107 + 0.0291954*m.x491 + 17.3371*m.b2219 <= 16.8188) m.c6554 = Constraint(expr=9.55693503233427e-5*m.x108*m.x108 - 0.0197926*m.x108 + 0.0291954*m.x492 + 17.379*m.b2220 <= 16.8657) m.c6555 = Constraint(expr=9.55693503233427e-5*m.x109*m.x109 - 0.0197492*m.x109 + 0.0291954*m.x493 + 17.4262*m.b2221 <= 16.9185) m.c6556 = Constraint(expr=9.55693503233427e-5*m.x110*m.x110 - 0.0196987*m.x110 + 0.0291954*m.x494 + 17.4812*m.b2222 <= 16.98) m.c6557 = Constraint(expr=9.55693503233427e-5*m.x111*m.x111 - 0.0196867*m.x111 + 0.0291954*m.x495 + 17.4943*m.b2223 <= 16.9947) m.c6558 = Constraint(expr=9.55693503233427e-5*m.x112*m.x112 - 0.0197228*m.x112 + 0.0291954*m.x496 + 17.455*m.b2224 <= 16.9507) m.c6559 = Constraint(expr=9.55693503233427e-5*m.x113*m.x113 - 0.0197324*m.x113 + 0.0291954*m.x497 + 17.4445*m.b2225 <= 16.939) m.c6560 = Constraint(expr=9.55693503233427e-5*m.x114*m.x114 - 0.0197516*m.x114 + 0.0291954*m.x498 + 17.4236*m.b2226 <= 16.9156) m.c6561 = Constraint(expr=9.55693503233427e-5*m.x115*m.x115 - 0.0197829*m.x115 + 0.0291954*m.x499 + 17.3895*m.b2227 <= 16.8774) m.c6562 = Constraint(expr=9.55693503233427e-5*m.x116*m.x116 - 0.0198022*m.x116 + 0.0291954*m.x500 + 17.3685*m.b2228 <= 16.854) m.c6563 = Constraint(expr=9.55693503233427e-5*m.x117*m.x117 - 0.0198118*m.x117 + 0.0291954*m.x501 + 17.358*m.b2229 <= 16.8423) m.c6564 = Constraint(expr=9.55693503233427e-5*m.x118*m.x118 - 0.0198214*m.x118 + 0.0291954*m.x502 + 17.3476*m.b2230 <= 16.8306) m.c6565 = Constraint(expr=9.55693503233427e-5*m.x119*m.x119 - 0.0198311*m.x119 + 0.0291954*m.x503 + 17.3371*m.b2231 <= 16.8188) m.c6566 = Constraint(expr=9.55693503233427e-5*m.x120*m.x120 - 0.0198383*m.x120 + 0.0291954*m.x504 + 17.3292*m.b2232 <= 16.81) m.c6567 = Constraint(expr=9.55693503233427e-5*m.x121*m.x121 - 0.0198455*m.x121 + 0.0291954*m.x505 + 17.3213*m.b2233 <= 16.8012) m.c6568 = Constraint(expr=9.55693503233427e-5*m.x122*m.x122 - 0.0198094*m.x122 + 0.0291954*m.x506 + 17.3607*m.b2234 <= 16.8452) m.c6569 = Constraint(expr=9.55693503233427e-5*m.x123*m.x123 - 0.0197902*m.x123 + 0.0291954*m.x507 + 17.3816*m.b2235 <= 16.8687) m.c6570 = Constraint(expr=9.55693503233427e-5*m.x124*m.x124 - 0.0197685*m.x124 + 0.0291954*m.x508 + 17.4052*m.b2236 <= 16.895) m.c6571 = Constraint(expr=9.55693503233427e-5*m.x125*m.x125 - 0.0197492*m.x125 + 0.0291954*m.x509 + 17.4262*m.b2237 <= 16.9185) m.c6572 = Constraint(expr=9.55693503233427e-5*m.x126*m.x126 - 0.0197276*m.x126 + 0.0291954*m.x510 + 17.4498*m.b2238 <= 16.9449) m.c6573 = Constraint(expr=9.55693503233427e-5*m.x127*m.x127 - 0.01973*m.x127 + 0.0291954*m.x511 + 17.4472*m.b2239 <= 16.9419) m.c6574 = Constraint(expr=9.55693503233427e-5*m.x128*m.x128 - 0.0197276*m.x128 + 0.0291954*m.x512 + 17.4498*m.b2240 <= 16.9449) m.c6575 = Constraint(expr=9.55693503233427e-5*m.x129*m.x129 - 0.0196987*m.x129 + 0.0291954*m.x513 + 17.4812*m.b2241 <= 16.98) m.c6576 = Constraint(expr=9.55693503233427e-5*m.x130*m.x130 - 0.0196867*m.x130 + 0.0291954*m.x514 + 17.4943*m.b2242 <= 16.9947) m.c6577 = Constraint(expr=9.55693503233427e-5*m.x131*m.x131 - 0.0196385*m.x131 + 0.0291954*m.x515 + 17.5468*m.b2243 <= 17.0533) m.c6578 = Constraint(expr=9.55693503233427e-5*m.x132*m.x132 - 0.0196241*m.x132 + 0.0291954*m.x516 + 17.5625*m.b2244 <= 17.0709) m.c6579 = Constraint(expr=9.55693503233427e-5*m.x133*m.x133 - 0.0196048*m.x133 + 0.0291954*m.x517 + 17.5834*m.b2245 <= 17.0943) m.c6580 = Constraint(expr=9.55693503233427e-5*m.x134*m.x134 - 0.0195543*m.x134 + 0.0291954*m.x518 + 17.6385*m.b2246 <= 17.1559) m.c6581 = Constraint(expr=9.55693503233427e-5*m.x135*m.x135 - 0.0195182*m.x135 + 0.0291954*m.x519 + 17.6778*m.b2247 <= 17.1999) m.c6582 = Constraint(expr=9.55693503233427e-5*m.x136*m.x136 - 0.0195302*m.x136 + 0.0291954*m.x520 + 17.6647*m.b2248 <= 17.1852) m.c6583 = Constraint(expr=9.55693503233427e-5*m.x137*m.x137 - 0.0195639*m.x137 + 0.0291954*m.x521 + 17.628*m.b2249 <= 17.1442) m.c6584 = Constraint(expr=9.55693503233427e-5*m.x138*m.x138 - 0.0195832*m.x138 + 0.0291954*m.x522 + 17.607*m.b2250 <= 17.1207) m.c6585 = Constraint(expr=9.55693503233427e-5*m.x139*m.x139 - 0.0196385*m.x139 + 0.0291954*m.x523 + 17.5468*m.b2251 <= 17.0533) m.c6586 = Constraint(expr=9.55693503233427e-5*m.x140*m.x140 - 0.0196818*m.x140 + 0.0291954*m.x524 + 17.4996*m.b2252 <= 17.0006) m.c6587 = Constraint(expr=9.55693503233427e-5*m.x141*m.x141 - 0.0196915*m.x141 + 0.0291954*m.x525 + 17.4891*m.b2253 <= 16.9888) m.c6588 = Constraint(expr=9.55693503233427e-5*m.x142*m.x142 - 0.0197252*m.x142 + 0.0291954*m.x526 + 17.4524*m.b2254 <= 16.9478) m.c6589 = Constraint(expr=9.55693503233427e-5*m.x143*m.x143 - 0.0197107*m.x143 + 0.0291954*m.x527 + 17.4681*m.b2255 <= 16.9654) m.c6590 = Constraint(expr=9.55693503233427e-5*m.x144*m.x144 - 0.0197179*m.x144 + 0.0291954*m.x528 + 17.4603*m.b2256 <= 16.9566) m.c6591 = Constraint(expr=9.55693503233427e-5*m.x145*m.x145 - 0.0198455*m.x145 + 0.0291954*m.x529 + 17.3213*m.b2257 <= 16.8012) m.c6592 = Constraint(expr=9.55693503233427e-5*m.x146*m.x146 - 0.0198576*m.x146 + 0.0291954*m.x530 + 17.3082*m.b2258 <= 16.7866) m.c6593 = Constraint(expr=9.55693503233427e-5*m.x147*m.x147 - 0.0198624*m.x147 + 0.0291954*m.x531 + 17.303*m.b2259 <= 16.7807) m.c6594 = Constraint(expr=9.55693503233427e-5*m.x148*m.x148 - 0.0198648*m.x148 + 0.0291954*m.x532 + 17.3004*m.b2260 <= 16.7778) m.c6595 = Constraint(expr=9.55693503233427e-5*m.x149*m.x149 - 0.0198696*m.x149 + 0.0291954*m.x533 + 17.2951*m.b2261 <= 16.7719) m.c6596 = Constraint(expr=9.55693503233427e-5*m.x150*m.x150 - 0.019872*m.x150 + 0.0291954*m.x534 + 17.2925*m.b2262 <= 16.769) m.c6597 = Constraint(expr=9.55693503233427e-5*m.x151*m.x151 - 0.0198744*m.x151 + 0.0291954*m.x535 + 17.2899*m.b2263 <= 16.7661) m.c6598 = Constraint(expr=9.55693503233427e-5*m.x152*m.x152 - 0.019872*m.x152 + 0.0291954*m.x536 + 17.2925*m.b2264 <= 16.769) m.c6599 = Constraint(expr=9.55693503233427e-5*m.x153*m.x153 - 0.0198672*m.x153 + 0.0291954*m.x537 + 17.2978*m.b2265 <= 16.7749) m.c6600 = Constraint(expr=9.55693503233427e-5*m.x154*m.x154 - 0.0198551*m.x154 + 0.0291954*m.x538 + 17.3109*m.b2266 <= 16.7895) m.c6601 = Constraint(expr=9.55693503233427e-5*m.x155*m.x155 - 0.0198311*m.x155 + 0.0291954*m.x539 + 17.3371*m.b2267 <= 16.8188) m.c6602 = Constraint(expr=9.55693503233427e-5*m.x156*m.x156 - 0.0197926*m.x156 + 0.0291954*m.x540 + 17.379*m.b2268 <= 16.8657) m.c6603 = Constraint(expr=9.55693503233427e-5*m.x157*m.x157 - 0.0197492*m.x157 + 0.0291954*m.x541 + 17.4262*m.b2269 <= 16.9185) m.c6604 = Constraint(expr=9.55693503233427e-5*m.x158*m.x158 - 0.0196987*m.x158 + 0.0291954*m.x542 + 17.4812*m.b2270 <= 16.98) m.c6605 = Constraint(expr=9.55693503233427e-5*m.x159*m.x159 - 0.0196867*m.x159 + 0.0291954*m.x543 + 17.4943*m.b2271 <= 16.9947) m.c6606 = Constraint(expr=9.55693503233427e-5*m.x160*m.x160 - 0.0197228*m.x160 + 0.0291954*m.x544 + 17.455*m.b2272 <= 16.9507) m.c6607 = Constraint(expr=9.55693503233427e-5*m.x161*m.x161 - 0.0197324*m.x161 + 0.0291954*m.x545 + 17.4445*m.b2273 <= 16.939) m.c6608 = Constraint(expr=9.55693503233427e-5*m.x162*m.x162 - 0.0197516*m.x162 + 0.0291954*m.x546 + 17.4236*m.b2274 <= 16.9156) m.c6609 = Constraint(expr=9.55693503233427e-5*m.x163*m.x163 - 0.0197829*m.x163 + 0.0291954*m.x547 + 17.3895*m.b2275 <= 16.8774) m.c6610 = Constraint(expr=9.55693503233427e-5*m.x164*m.x164 - 0.0198022*m.x164 + 0.0291954*m.x548 + 17.3685*m.b2276 <= 16.854) m.c6611 = Constraint(expr=9.55693503233427e-5*m.x165*m.x165 - 0.0198118*m.x165 + 0.0291954*m.x549 + 17.358*m.b2277 <= 16.8423) m.c6612 = Constraint(expr=9.55693503233427e-5*m.x166*m.x166 - 0.0198214*m.x166 + 0.0291954*m.x550 + 17.3476*m.b2278 <= 16.8306) m.c6613 = Constraint(expr=9.55693503233427e-5*m.x167*m.x167 - 0.0198311*m.x167 + 0.0291954*m.x551 + 17.3371*m.b2279 <= 16.8188) m.c6614 = Constraint(expr=9.55693503233427e-5*m.x168*m.x168 - 0.0198383*m.x168 + 0.0291954*m.x552 + 17.3292*m.b2280 <= 16.81) m.c6615 = Constraint(expr=9.55693503233427e-5*m.x169*m.x169 - 0.0198455*m.x169 + 0.0291954*m.x553 + 17.3213*m.b2281 <= 16.8012) m.c6616 = Constraint(expr=9.55693503233427e-5*m.x170*m.x170 - 0.0198094*m.x170 + 0.0291954*m.x554 + 17.3607*m.b2282 <= 16.8452) m.c6617 = Constraint(expr=9.55693503233427e-5*m.x171*m.x171 - 0.0197902*m.x171 + 0.0291954*m.x555 + 17.3816*m.b2283 <= 16.8687) m.c6618 = Constraint(expr=9.55693503233427e-5*m.x172*m.x172 - 0.0197685*m.x172 + 0.0291954*m.x556 + 17.4052*m.b2284 <= 16.895) m.c6619 = Constraint(expr=9.55693503233427e-5*m.x173*m.x173 - 0.0197492*m.x173 + 0.0291954*m.x557 + 17.4262*m.b2285 <= 16.9185) m.c6620 = Constraint(expr=9.55693503233427e-5*m.x174*m.x174 - 0.0197276*m.x174 + 0.0291954*m.x558 + 17.4498*m.b2286 <= 16.9449) m.c6621 = Constraint(expr=9.55693503233427e-5*m.x175*m.x175 - 0.01973*m.x175 + 0.0291954*m.x559 + 17.4472*m.b2287 <= 16.9419) m.c6622 = Constraint(expr=9.55693503233427e-5*m.x176*m.x176 - 0.0197276*m.x176 + 0.0291954*m.x560 + 17.4498*m.b2288 <= 16.9449) m.c6623 = Constraint(expr=9.55693503233427e-5*m.x177*m.x177 - 0.0196987*m.x177 + 0.0291954*m.x561 + 17.4812*m.b2289 <= 16.98) m.c6624 = Constraint(expr=9.55693503233427e-5*m.x178*m.x178 - 0.0196867*m.x178 + 0.0291954*m.x562 + 17.4943*m.b2290 <= 16.9947) m.c6625 = Constraint(expr=9.55693503233427e-5*m.x179*m.x179 - 0.0196385*m.x179 + 0.0291954*m.x563 + 17.5468*m.b2291 <= 17.0533) m.c6626 = Constraint(expr=9.55693503233427e-5*m.x180*m.x180 - 0.0196241*m.x180 + 0.0291954*m.x564 + 17.5625*m.b2292 <= 17.0709) m.c6627 = Constraint(expr=9.55693503233427e-5*m.x181*m.x181 - 0.0196048*m.x181 + 0.0291954*m.x565 + 17.5834*m.b2293 <= 17.0943) m.c6628 = Constraint(expr=9.55693503233427e-5*m.x182*m.x182 - 0.0195543*m.x182 + 0.0291954*m.x566 + 17.6385*m.b2294 <= 17.1559) m.c6629 = Constraint(expr=9.55693503233427e-5*m.x183*m.x183 - 0.0195182*m.x183 + 0.0291954*m.x567 + 17.6778*m.b2295 <= 17.1999) m.c6630 = Constraint(expr=9.55693503233427e-5*m.x184*m.x184 - 0.0195302*m.x184 + 0.0291954*m.x568 + 17.6647*m.b2296 <= 17.1852) m.c6631 = Constraint(expr=9.55693503233427e-5*m.x185*m.x185 - 0.0195639*m.x185 + 0.0291954*m.x569 + 17.628*m.b2297 <= 17.1442) m.c6632 = Constraint(expr=9.55693503233427e-5*m.x186*m.x186 - 0.0195832*m.x186 + 0.0291954*m.x570 + 17.607*m.b2298 <= 17.1207) m.c6633 = Constraint(expr=9.55693503233427e-5*m.x187*m.x187 - 0.0196385*m.x187 + 0.0291954*m.x571 + 17.5468*m.b2299 <= 17.0533) m.c6634 = Constraint(expr=9.55693503233427e-5*m.x188*m.x188 - 0.0196818*m.x188 + 0.0291954*m.x572 + 17.4996*m.b2300 <= 17.0006) m.c6635 = Constraint(expr=9.55693503233427e-5*m.x189*m.x189 - 0.0196915*m.x189 + 0.0291954*m.x573 + 17.4891*m.b2301 <= 16.9888) m.c6636 = Constraint(expr=9.55693503233427e-5*m.x190*m.x190 - 0.0197252*m.x190 + 0.0291954*m.x574 + 17.4524*m.b2302 <= 16.9478) m.c6637 = Constraint(expr=9.55693503233427e-5*m.x191*m.x191 - 0.0197107*m.x191 + 0.0291954*m.x575 + 17.4681*m.b2303 <= 16.9654) m.c6638 = Constraint(expr=9.55693503233427e-5*m.x192*m.x192 - 0.0197179*m.x192 + 0.0291954*m.x576 + 17.4603*m.b2304 <= 16.9566) m.c6639 = Constraint(expr=9.55693503233427e-5*m.x193*m.x193 - 0.0198455*m.x193 + 0.0291954*m.x577 + 17.3213*m.b2305 <= 16.8012) m.c6640 = Constraint(expr=0.000204938271604938*m.x2*m.x2 - 0.0252844*m.x2 + 0.025*m.x770 + 27.932*m.b2306 <= 27.9075) m.c6641 = Constraint(expr=0.000204938271604938*m.x3*m.x3 - 0.0252844*m.x3 + 0.025*m.x771 + 27.932*m.b2307 <= 27.9075) m.c6642 = Constraint(expr=0.000204938271604938*m.x4*m.x4 - 0.0252844*m.x4 + 0.025*m.x772 + 27.932*m.b2308 <= 27.9075) m.c6643 = Constraint(expr=0.000204938271604938*m.x5*m.x5 - 0.0252844*m.x5 + 0.025*m.x773 + 27.932*m.b2309 <= 27.9075) m.c6644 = Constraint(expr=0.000204938271604938*m.x6*m.x6 - 0.0252844*m.x6 + 0.025*m.x774 + 27.932*m.b2310 <= 27.9075) m.c6645 = Constraint(expr=0.000204938271604938*m.x7*m.x7 - 0.0252844*m.x7 + 0.025*m.x775 + 27.932*m.b2311 <= 27.9075) m.c6646 = Constraint(expr=0.000204938271604938*m.x8*m.x8 - 0.0252844*m.x8 + 0.025*m.x776 + 27.932*m.b2312 <= 27.9075) m.c6647 = Constraint(expr=0.000204938271604938*m.x9*m.x9 - 0.0252844*m.x9 + 0.025*m.x777 + 27.932*m.b2313 <= 27.9075) m.c6648 = Constraint(expr=0.000204938271604938*m.x10*m.x10 - 0.0252844*m.x10 + 0.025*m.x778 + 27.932*m.b2314 <= 27.9075) m.c6649 = Constraint(expr=0.000204938271604938*m.x11*m.x11 - 0.0252844*m.x11 + 0.025*m.x779 + 27.932*m.b2315 <= 27.9075) m.c6650 = Constraint(expr=0.000204938271604938*m.x12*m.x12 - 0.0252844*m.x12 + 0.025*m.x780 + 27.932*m.b2316 <= 27.9075) m.c6651 = Constraint(expr=0.000204938271604938*m.x13*m.x13 - 0.0252844*m.x13 + 0.025*m.x781 + 27.932*m.b2317 <= 27.9075) m.c6652 = Constraint(expr=0.000204938271604938*m.x14*m.x14 - 0.0252844*m.x14 + 0.025*m.x782 + 27.932*m.b2318 <= 27.9075) m.c6653 = Constraint(expr=0.000204938271604938*m.x15*m.x15 - 0.0252844*m.x15 + 0.025*m.x783 + 27.932*m.b2319 <= 27.9075) m.c6654 = Constraint(expr=0.000204938271604938*m.x16*m.x16 - 0.0252844*m.x16 + 0.025*m.x784 + 27.932*m.b2320 <= 27.9075) m.c6655 = Constraint(expr=0.000204938271604938*m.x17*m.x17 - 0.0252844*m.x17 + 0.025*m.x785 + 27.932*m.b2321 <= 27.9075) m.c6656 = Constraint(expr=0.000204938271604938*m.x18*m.x18 - 0.0252844*m.x18 + 0.025*m.x786 + 27.932*m.b2322 <= 27.9075) m.c6657 = Constraint(expr=0.000204938271604938*m.x19*m.x19 - 0.0252844*m.x19 + 0.025*m.x787 + 27.932*m.b2323 <= 27.9075) m.c6658 = Constraint(expr=0.000204938271604938*m.x20*m.x20 - 0.0252844*m.x20 + 0.025*m.x788 + 27.932*m.b2324 <= 27.9075) m.c6659 = Constraint(expr=0.000204938271604938*m.x21*m.x21 - 0.0252844*m.x21 + 0.025*m.x789 + 27.932*m.b2325 <= 27.9075) m.c6660 = Constraint(expr=0.000204938271604938*m.x22*m.x22 - 0.0252844*m.x22 + 0.025*m.x790 + 27.932*m.b2326 <= 27.9075) m.c6661 = Constraint(expr=0.000204938271604938*m.x23*m.x23 - 0.0252844*m.x23 + 0.025*m.x791 + 27.932*m.b2327 <= 27.9075) m.c6662 = Constraint(expr=0.000204938271604938*m.x24*m.x24 - 0.0252844*m.x24 + 0.025*m.x792 + 27.932*m.b2328 <= 27.9075) m.c6663 = Constraint(expr=0.000204938271604938*m.x25*m.x25 - 0.0252844*m.x25 + 0.025*m.x793 + 27.932*m.b2329 <= 27.9075) m.c6664 = Constraint(expr=0.000204938271604938*m.x26*m.x26 - 0.0252844*m.x26 + 0.025*m.x794 + 27.932*m.b2330 <= 27.9075) m.c6665 = Constraint(expr=0.000204938271604938*m.x27*m.x27 - 0.0252844*m.x27 + 0.025*m.x795 + 27.932*m.b2331 <= 27.9075) m.c6666 = Constraint(expr=0.000204938271604938*m.x28*m.x28 - 0.0252844*m.x28 + 0.025*m.x796 + 27.932*m.b2332 <= 27.9075) m.c6667 = Constraint(expr=0.000204938271604938*m.x29*m.x29 - 0.0252844*m.x29 + 0.025*m.x797 + 27.932*m.b2333 <= 27.9075) m.c6668 = Constraint(expr=0.000204938271604938*m.x30*m.x30 - 0.0252844*m.x30 + 0.025*m.x798 + 27.932*m.b2334 <= 27.9075) m.c6669 = Constraint(expr=0.000204938271604938*m.x31*m.x31 - 0.0252844*m.x31 + 0.025*m.x799 + 27.932*m.b2335 <= 27.9075) m.c6670 = Constraint(expr=0.000204938271604938*m.x32*m.x32 - 0.0252844*m.x32 + 0.025*m.x800 + 27.932*m.b2336 <= 27.9075) m.c6671 = Constraint(expr=0.000204938271604938*m.x33*m.x33 - 0.0252844*m.x33 + 0.025*m.x801 + 27.932*m.b2337 <= 27.9075) m.c6672 = Constraint(expr=0.000204938271604938*m.x34*m.x34 - 0.0252844*m.x34 + 0.025*m.x802 + 27.932*m.b2338 <= 27.9075) m.c6673 = Constraint(expr=0.000204938271604938*m.x35*m.x35 - 0.0252844*m.x35 + 0.025*m.x803 + 27.932*m.b2339 <= 27.9075) m.c6674 = Constraint(expr=0.000204938271604938*m.x36*m.x36 - 0.0252844*m.x36 + 0.025*m.x804 + 27.932*m.b2340 <= 27.9075) m.c6675 = Constraint(expr=0.000204938271604938*m.x37*m.x37 - 0.0252844*m.x37 + 0.025*m.x805 + 27.932*m.b2341 <= 27.9075) m.c6676 = Constraint(expr=0.000204938271604938*m.x38*m.x38 - 0.0252844*m.x38 + 0.025*m.x806 + 27.932*m.b2342 <= 27.9075) m.c6677 = Constraint(expr=0.000204938271604938*m.x39*m.x39 - 0.0252844*m.x39 + 0.025*m.x807 + 27.932*m.b2343 <= 27.9075) m.c6678 = Constraint(expr=0.000204938271604938*m.x40*m.x40 - 0.0252844*m.x40 + 0.025*m.x808 + 27.932*m.b2344 <= 27.9075) m.c6679 = Constraint(expr=0.000204938271604938*m.x41*m.x41 - 0.0252844*m.x41 + 0.025*m.x809 + 27.932*m.b2345 <= 27.9075) m.c6680 = Constraint(expr=0.000204938271604938*m.x42*m.x42 - 0.0252844*m.x42 + 0.025*m.x810 + 27.932*m.b2346 <= 27.9075) m.c6681 = Constraint(expr=0.000204938271604938*m.x43*m.x43 - 0.0252844*m.x43 + 0.025*m.x811 + 27.932*m.b2347 <= 27.9075) m.c6682 = Constraint(expr=0.000204938271604938*m.x44*m.x44 - 0.0252844*m.x44 + 0.025*m.x812 + 27.932*m.b2348 <= 27.9075) m.c6683 = Constraint(expr=0.000204938271604938*m.x45*m.x45 - 0.0252844*m.x45 + 0.025*m.x813 + 27.932*m.b2349 <= 27.9075) m.c6684 = Constraint(expr=0.000204938271604938*m.x46*m.x46 - 0.0252844*m.x46 + 0.025*m.x814 + 27.932*m.b2350 <= 27.9075) m.c6685 = Constraint(expr=0.000204938271604938*m.x47*m.x47 - 0.0252844*m.x47 + 0.025*m.x815 + 27.932*m.b2351 <= 27.9075) m.c6686 = Constraint(expr=0.000204938271604938*m.x48*m.x48 - 0.0252844*m.x48 + 0.025*m.x816 + 27.932*m.b2352 <= 27.9075) m.c6687 = Constraint(expr=0.000204938271604938*m.x49*m.x49 - 0.0252844*m.x49 + 0.025*m.x817 + 27.932*m.b2353 <= 27.9075) m.c6688 = Constraint(expr=0.000204938271604938*m.x50*m.x50 - 0.0252844*m.x50 + 0.025*m.x818 + 27.932*m.b2354 <= 27.9075) m.c6689 = Constraint(expr=0.000204938271604938*m.x51*m.x51 - 0.0252844*m.x51 + 0.025*m.x819 + 27.932*m.b2355 <= 27.9075) m.c6690 = Constraint(expr=0.000204938271604938*m.x52*m.x52 - 0.0252844*m.x52 + 0.025*m.x820 + 27.932*m.b2356 <= 27.9075) m.c6691 = Constraint(expr=0.000204938271604938*m.x53*m.x53 - 0.0252844*m.x53 + 0.025*m.x821 + 27.932*m.b2357 <= 27.9075) m.c6692 = Constraint(expr=0.000204938271604938*m.x54*m.x54 - 0.0252844*m.x54 + 0.025*m.x822 + 27.932*m.b2358 <= 27.9075) m.c6693 = Constraint(expr=0.000204938271604938*m.x55*m.x55 - 0.0252844*m.x55 + 0.025*m.x823 + 27.932*m.b2359 <= 27.9075) m.c6694 = Constraint(expr=0.000204938271604938*m.x56*m.x56 - 0.0252844*m.x56 + 0.025*m.x824 + 27.932*m.b2360 <= 27.9075) m.c6695 = Constraint(expr=0.000204938271604938*m.x57*m.x57 - 0.0252844*m.x57 + 0.025*m.x825 + 27.932*m.b2361 <= 27.9075) m.c6696 = Constraint(expr=0.000204938271604938*m.x58*m.x58 - 0.0252844*m.x58 + 0.025*m.x826 + 27.932*m.b2362 <= 27.9075) m.c6697 = Constraint(expr=0.000204938271604938*m.x59*m.x59 - 0.0252844*m.x59 + 0.025*m.x827 + 27.932*m.b2363 <= 27.9075) m.c6698 = Constraint(expr=0.000204938271604938*m.x60*m.x60 - 0.0252844*m.x60 + 0.025*m.x828 + 27.932*m.b2364 <= 27.9075) m.c6699 = Constraint(expr=0.000204938271604938*m.x61*m.x61 - 0.0252844*m.x61 + 0.025*m.x829 + 27.932*m.b2365 <= 27.9075) m.c6700 = Constraint(expr=0.000204938271604938*m.x62*m.x62 - 0.0252844*m.x62 + 0.025*m.x830 + 27.932*m.b2366 <= 27.9075) m.c6701 = Constraint(expr=0.000204938271604938*m.x63*m.x63 - 0.0252844*m.x63 + 0.025*m.x831 + 27.932*m.b2367 <= 27.9075) m.c6702 = Constraint(expr=0.000204938271604938*m.x64*m.x64 - 0.0252844*m.x64 + 0.025*m.x832 + 27.932*m.b2368 <= 27.9075) m.c6703 = Constraint(expr=0.000204938271604938*m.x65*m.x65 - 0.0252844*m.x65 + 0.025*m.x833 + 27.932*m.b2369 <= 27.9075) m.c6704 = Constraint(expr=0.000204938271604938*m.x66*m.x66 - 0.0252844*m.x66 + 0.025*m.x834 + 27.932*m.b2370 <= 27.9075) m.c6705 = Constraint(expr=0.000204938271604938*m.x67*m.x67 - 0.0252844*m.x67 + 0.025*m.x835 + 27.932*m.b2371 <= 27.9075) m.c6706 = Constraint(expr=0.000204938271604938*m.x68*m.x68 - 0.0252844*m.x68 + 0.025*m.x836 + 27.932*m.b2372 <= 27.9075) m.c6707 = Constraint(expr=0.000204938271604938*m.x69*m.x69 - 0.0252844*m.x69 + 0.025*m.x837 + 27.932*m.b2373 <= 27.9075) m.c6708 = Constraint(expr=0.000204938271604938*m.x70*m.x70 - 0.0252844*m.x70 + 0.025*m.x838 + 27.932*m.b2374 <= 27.9075) m.c6709 = Constraint(expr=0.000204938271604938*m.x71*m.x71 - 0.0252844*m.x71 + 0.025*m.x839 + 27.932*m.b2375 <= 27.9075) m.c6710 = Constraint(expr=0.000204938271604938*m.x72*m.x72 - 0.0252844*m.x72 + 0.025*m.x840 + 27.932*m.b2376 <= 27.9075) m.c6711 = Constraint(expr=0.000204938271604938*m.x73*m.x73 - 0.0252844*m.x73 + 0.025*m.x841 + 27.932*m.b2377 <= 27.9075) m.c6712 = Constraint(expr=0.000204938271604938*m.x74*m.x74 - 0.0252844*m.x74 + 0.025*m.x842 + 27.932*m.b2378 <= 27.9075) m.c6713 = Constraint(expr=0.000204938271604938*m.x75*m.x75 - 0.0252844*m.x75 + 0.025*m.x843 + 27.932*m.b2379 <= 27.9075) m.c6714 = Constraint(expr=0.000204938271604938*m.x76*m.x76 - 0.0252844*m.x76 + 0.025*m.x844 + 27.932*m.b2380 <= 27.9075) m.c6715 = Constraint(expr=0.000204938271604938*m.x77*m.x77 - 0.0252844*m.x77 + 0.025*m.x845 + 27.932*m.b2381 <= 27.9075) m.c6716 = Constraint(expr=0.000204938271604938*m.x78*m.x78 - 0.0252844*m.x78 + 0.025*m.x846 + 27.932*m.b2382 <= 27.9075) m.c6717 = Constraint(expr=0.000204938271604938*m.x79*m.x79 - 0.0252844*m.x79 + 0.025*m.x847 + 27.932*m.b2383 <= 27.9075) m.c6718 = Constraint(expr=0.000204938271604938*m.x80*m.x80 - 0.0252844*m.x80 + 0.025*m.x848 + 27.932*m.b2384 <= 27.9075) m.c6719 = Constraint(expr=0.000204938271604938*m.x81*m.x81 - 0.0252844*m.x81 + 0.025*m.x849 + 27.932*m.b2385 <= 27.9075) m.c6720 = Constraint(expr=0.000204938271604938*m.x82*m.x82 - 0.0252844*m.x82 + 0.025*m.x850 + 27.932*m.b2386 <= 27.9075) m.c6721 = Constraint(expr=0.000204938271604938*m.x83*m.x83 - 0.0252844*m.x83 + 0.025*m.x851 + 27.932*m.b2387 <= 27.9075) m.c6722 = Constraint(expr=0.000204938271604938*m.x84*m.x84 - 0.0252844*m.x84 + 0.025*m.x852 + 27.932*m.b2388 <= 27.9075) m.c6723 = Constraint(expr=0.000204938271604938*m.x85*m.x85 - 0.0252844*m.x85 + 0.025*m.x853 + 27.932*m.b2389 <= 27.9075) m.c6724 = Constraint(expr=0.000204938271604938*m.x86*m.x86 - 0.0252844*m.x86 + 0.025*m.x854 + 27.932*m.b2390 <= 27.9075) m.c6725 = Constraint(expr=0.000204938271604938*m.x87*m.x87 - 0.0252844*m.x87 + 0.025*m.x855 + 27.932*m.b2391 <= 27.9075) m.c6726 = Constraint(expr=0.000204938271604938*m.x88*m.x88 - 0.0252844*m.x88 + 0.025*m.x856 + 27.932*m.b2392 <= 27.9075) m.c6727 = Constraint(expr=0.000204938271604938*m.x89*m.x89 - 0.0252844*m.x89 + 0.025*m.x857 + 27.932*m.b2393 <= 27.9075) m.c6728 = Constraint(expr=0.000204938271604938*m.x90*m.x90 - 0.0252844*m.x90 + 0.025*m.x858 + 27.932*m.b2394 <= 27.9075) m.c6729 = Constraint(expr=0.000204938271604938*m.x91*m.x91 - 0.0252844*m.x91 + 0.025*m.x859 + 27.932*m.b2395 <= 27.9075) m.c6730 = Constraint(expr=0.000204938271604938*m.x92*m.x92 - 0.0252844*m.x92 + 0.025*m.x860 + 27.932*m.b2396 <= 27.9075) m.c6731 = Constraint(expr=0.000204938271604938*m.x93*m.x93 - 0.0252844*m.x93 + 0.025*m.x861 + 27.932*m.b2397 <= 27.9075) m.c6732 = Constraint(expr=0.000204938271604938*m.x94*m.x94 - 0.0252844*m.x94 + 0.025*m.x862 + 27.932*m.b2398 <= 27.9075) m.c6733 = Constraint(expr=0.000204938271604938*m.x95*m.x95 - 0.0252844*m.x95 + 0.025*m.x863 + 27.932*m.b2399 <= 27.9075) m.c6734 = Constraint(expr=0.000204938271604938*m.x96*m.x96 - 0.0252844*m.x96 + 0.025*m.x864 + 27.932*m.b2400 <= 27.9075) m.c6735 = Constraint(expr=0.000204938271604938*m.x97*m.x97 - 0.0252844*m.x97 + 0.025*m.x865 + 27.932*m.b2401 <= 27.9075)
40.120532
120
0.623965
from pyomo.environ import * model = m = ConcreteModel() m.x2 = Var(within=Reals,bounds=(0,45),initialize=0) m.x3 = Var(within=Reals,bounds=(0,45),initialize=0) m.x4 = Var(within=Reals,bounds=(0,45),initialize=0) m.x5 = Var(within=Reals,bounds=(0,45),initialize=0) m.x6 = Var(within=Reals,bounds=(0,45),initialize=0) m.x7 = Var(within=Reals,bounds=(0,45),initialize=0) m.x8 = Var(within=Reals,bounds=(0,45),initialize=0) m.x9 = Var(within=Reals,bounds=(0,45),initialize=0) m.x10 = Var(within=Reals,bounds=(0,45),initialize=0) m.x11 = Var(within=Reals,bounds=(0,45),initialize=0) m.x12 = Var(within=Reals,bounds=(0,45),initialize=0) m.x13 = Var(within=Reals,bounds=(0,45),initialize=0) m.x14 = Var(within=Reals,bounds=(0,45),initialize=0) m.x15 = Var(within=Reals,bounds=(0,45),initialize=0) m.x16 = Var(within=Reals,bounds=(0,45),initialize=0) m.x17 = Var(within=Reals,bounds=(0,45),initialize=0) m.x18 = Var(within=Reals,bounds=(0,45),initialize=0) m.x19 = Var(within=Reals,bounds=(0,45),initialize=0) m.x20 = Var(within=Reals,bounds=(0,45),initialize=0) m.x21 = Var(within=Reals,bounds=(0,45),initialize=0) m.x22 = Var(within=Reals,bounds=(0,45),initialize=0) m.x23 = Var(within=Reals,bounds=(0,45),initialize=0) m.x24 = Var(within=Reals,bounds=(0,45),initialize=0) m.x25 = Var(within=Reals,bounds=(0,45),initialize=0) m.x26 = Var(within=Reals,bounds=(0,45),initialize=0) m.x27 = Var(within=Reals,bounds=(0,45),initialize=0) m.x28 = Var(within=Reals,bounds=(0,45),initialize=0) m.x29 = Var(within=Reals,bounds=(0,45),initialize=0) m.x30 = Var(within=Reals,bounds=(0,45),initialize=0) m.x31 = Var(within=Reals,bounds=(0,45),initialize=0) m.x32 = Var(within=Reals,bounds=(0,45),initialize=0) m.x33 = Var(within=Reals,bounds=(0,45),initialize=0) m.x34 = Var(within=Reals,bounds=(0,45),initialize=0) m.x35 = Var(within=Reals,bounds=(0,45),initialize=0) m.x36 = Var(within=Reals,bounds=(0,45),initialize=0) m.x37 = Var(within=Reals,bounds=(0,45),initialize=0) m.x38 = Var(within=Reals,bounds=(0,45),initialize=0) m.x39 = Var(within=Reals,bounds=(0,45),initialize=0) m.x40 = Var(within=Reals,bounds=(0,45),initialize=0) m.x41 = Var(within=Reals,bounds=(0,45),initialize=0) m.x42 = Var(within=Reals,bounds=(0,45),initialize=0) m.x43 = Var(within=Reals,bounds=(0,45),initialize=0) m.x44 = Var(within=Reals,bounds=(0,45),initialize=0) m.x45 = Var(within=Reals,bounds=(0,45),initialize=0) m.x46 = Var(within=Reals,bounds=(0,45),initialize=0) m.x47 = Var(within=Reals,bounds=(0,45),initialize=0) m.x48 = Var(within=Reals,bounds=(0,45),initialize=0) m.x49 = Var(within=Reals,bounds=(0,45),initialize=0) m.x50 = Var(within=Reals,bounds=(0,45),initialize=0) m.x51 = Var(within=Reals,bounds=(0,45),initialize=0) m.x52 = Var(within=Reals,bounds=(0,45),initialize=0) m.x53 = Var(within=Reals,bounds=(0,45),initialize=0) m.x54 = Var(within=Reals,bounds=(0,45),initialize=0) m.x55 = Var(within=Reals,bounds=(0,45),initialize=0) m.x56 = Var(within=Reals,bounds=(0,45),initialize=0) m.x57 = Var(within=Reals,bounds=(0,45),initialize=0) m.x58 = Var(within=Reals,bounds=(0,45),initialize=0) m.x59 = Var(within=Reals,bounds=(0,45),initialize=0) m.x60 = Var(within=Reals,bounds=(0,45),initialize=0) m.x61 = Var(within=Reals,bounds=(0,45),initialize=0) m.x62 = Var(within=Reals,bounds=(0,45),initialize=0) m.x63 = Var(within=Reals,bounds=(0,45),initialize=0) m.x64 = Var(within=Reals,bounds=(0,45),initialize=0) m.x65 = Var(within=Reals,bounds=(0,45),initialize=0) m.x66 = Var(within=Reals,bounds=(0,45),initialize=0) m.x67 = Var(within=Reals,bounds=(0,45),initialize=0) m.x68 = Var(within=Reals,bounds=(0,45),initialize=0) m.x69 = Var(within=Reals,bounds=(0,45),initialize=0) m.x70 = Var(within=Reals,bounds=(0,45),initialize=0) m.x71 = Var(within=Reals,bounds=(0,45),initialize=0) m.x72 = Var(within=Reals,bounds=(0,45),initialize=0) m.x73 = Var(within=Reals,bounds=(0,45),initialize=0) m.x74 = Var(within=Reals,bounds=(0,45),initialize=0) m.x75 = Var(within=Reals,bounds=(0,45),initialize=0) m.x76 = Var(within=Reals,bounds=(0,45),initialize=0) m.x77 = Var(within=Reals,bounds=(0,45),initialize=0) m.x78 = Var(within=Reals,bounds=(0,45),initialize=0) m.x79 = Var(within=Reals,bounds=(0,45),initialize=0) m.x80 = Var(within=Reals,bounds=(0,45),initialize=0) m.x81 = Var(within=Reals,bounds=(0,45),initialize=0) m.x82 = Var(within=Reals,bounds=(0,45),initialize=0) m.x83 = Var(within=Reals,bounds=(0,45),initialize=0) m.x84 = Var(within=Reals,bounds=(0,45),initialize=0) m.x85 = Var(within=Reals,bounds=(0,45),initialize=0) m.x86 = Var(within=Reals,bounds=(0,45),initialize=0) m.x87 = Var(within=Reals,bounds=(0,45),initialize=0) m.x88 = Var(within=Reals,bounds=(0,45),initialize=0) m.x89 = Var(within=Reals,bounds=(0,45),initialize=0) m.x90 = Var(within=Reals,bounds=(0,45),initialize=0) m.x91 = Var(within=Reals,bounds=(0,45),initialize=0) m.x92 = Var(within=Reals,bounds=(0,45),initialize=0) m.x93 = Var(within=Reals,bounds=(0,45),initialize=0) m.x94 = Var(within=Reals,bounds=(0,45),initialize=0) m.x95 = Var(within=Reals,bounds=(0,45),initialize=0) m.x96 = Var(within=Reals,bounds=(0,45),initialize=0) m.x97 = Var(within=Reals,bounds=(0,45),initialize=0) m.x98 = Var(within=Reals,bounds=(0,97),initialize=0) m.x99 = Var(within=Reals,bounds=(0,97),initialize=0) m.x100 = Var(within=Reals,bounds=(0,97),initialize=0) m.x101 = Var(within=Reals,bounds=(0,97),initialize=0) m.x102 = Var(within=Reals,bounds=(0,97),initialize=0) m.x103 = Var(within=Reals,bounds=(0,97),initialize=0) m.x104 = Var(within=Reals,bounds=(0,97),initialize=0) m.x105 = Var(within=Reals,bounds=(0,97),initialize=0) m.x106 = Var(within=Reals,bounds=(0,97),initialize=0) m.x107 = Var(within=Reals,bounds=(0,97),initialize=0) m.x108 = Var(within=Reals,bounds=(0,97),initialize=0) m.x109 = Var(within=Reals,bounds=(0,97),initialize=0) m.x110 = Var(within=Reals,bounds=(0,97),initialize=0) m.x111 = Var(within=Reals,bounds=(0,97),initialize=0) m.x112 = Var(within=Reals,bounds=(0,97),initialize=0) m.x113 = Var(within=Reals,bounds=(0,97),initialize=0) m.x114 = Var(within=Reals,bounds=(0,97),initialize=0) m.x115 = Var(within=Reals,bounds=(0,97),initialize=0) m.x116 = Var(within=Reals,bounds=(0,97),initialize=0) m.x117 = Var(within=Reals,bounds=(0,97),initialize=0) m.x118 = Var(within=Reals,bounds=(0,97),initialize=0) m.x119 = Var(within=Reals,bounds=(0,97),initialize=0) m.x120 = Var(within=Reals,bounds=(0,97),initialize=0) m.x121 = Var(within=Reals,bounds=(0,97),initialize=0) m.x122 = Var(within=Reals,bounds=(0,97),initialize=0) m.x123 = Var(within=Reals,bounds=(0,97),initialize=0) m.x124 = Var(within=Reals,bounds=(0,97),initialize=0) m.x125 = Var(within=Reals,bounds=(0,97),initialize=0) m.x126 = Var(within=Reals,bounds=(0,97),initialize=0) m.x127 = Var(within=Reals,bounds=(0,97),initialize=0) m.x128 = Var(within=Reals,bounds=(0,97),initialize=0) m.x129 = Var(within=Reals,bounds=(0,97),initialize=0) m.x130 = Var(within=Reals,bounds=(0,97),initialize=0) m.x131 = Var(within=Reals,bounds=(0,97),initialize=0) m.x132 = Var(within=Reals,bounds=(0,97),initialize=0) m.x133 = Var(within=Reals,bounds=(0,97),initialize=0) m.x134 = Var(within=Reals,bounds=(0,97),initialize=0) m.x135 = Var(within=Reals,bounds=(0,97),initialize=0) m.x136 = Var(within=Reals,bounds=(0,97),initialize=0) m.x137 = Var(within=Reals,bounds=(0,97),initialize=0) m.x138 = Var(within=Reals,bounds=(0,97),initialize=0) m.x139 = Var(within=Reals,bounds=(0,97),initialize=0) m.x140 = Var(within=Reals,bounds=(0,97),initialize=0) m.x141 = Var(within=Reals,bounds=(0,97),initialize=0) m.x142 = Var(within=Reals,bounds=(0,97),initialize=0) m.x143 = Var(within=Reals,bounds=(0,97),initialize=0) m.x144 = Var(within=Reals,bounds=(0,97),initialize=0) m.x145 = Var(within=Reals,bounds=(0,97),initialize=0) m.x146 = Var(within=Reals,bounds=(0,97),initialize=0) m.x147 = Var(within=Reals,bounds=(0,97),initialize=0) m.x148 = Var(within=Reals,bounds=(0,97),initialize=0) m.x149 = Var(within=Reals,bounds=(0,97),initialize=0) m.x150 = Var(within=Reals,bounds=(0,97),initialize=0) m.x151 = Var(within=Reals,bounds=(0,97),initialize=0) m.x152 = Var(within=Reals,bounds=(0,97),initialize=0) m.x153 = Var(within=Reals,bounds=(0,97),initialize=0) m.x154 = Var(within=Reals,bounds=(0,97),initialize=0) m.x155 = Var(within=Reals,bounds=(0,97),initialize=0) m.x156 = Var(within=Reals,bounds=(0,97),initialize=0) m.x157 = Var(within=Reals,bounds=(0,97),initialize=0) m.x158 = Var(within=Reals,bounds=(0,97),initialize=0) m.x159 = Var(within=Reals,bounds=(0,97),initialize=0) m.x160 = Var(within=Reals,bounds=(0,97),initialize=0) m.x161 = Var(within=Reals,bounds=(0,97),initialize=0) m.x162 = Var(within=Reals,bounds=(0,97),initialize=0) m.x163 = Var(within=Reals,bounds=(0,97),initialize=0) m.x164 = Var(within=Reals,bounds=(0,97),initialize=0) m.x165 = Var(within=Reals,bounds=(0,97),initialize=0) m.x166 = Var(within=Reals,bounds=(0,97),initialize=0) m.x167 = Var(within=Reals,bounds=(0,97),initialize=0) m.x168 = Var(within=Reals,bounds=(0,97),initialize=0) m.x169 = Var(within=Reals,bounds=(0,97),initialize=0) m.x170 = Var(within=Reals,bounds=(0,97),initialize=0) m.x171 = Var(within=Reals,bounds=(0,97),initialize=0) m.x172 = Var(within=Reals,bounds=(0,97),initialize=0) m.x173 = Var(within=Reals,bounds=(0,97),initialize=0) m.x174 = Var(within=Reals,bounds=(0,97),initialize=0) m.x175 = Var(within=Reals,bounds=(0,97),initialize=0) m.x176 = Var(within=Reals,bounds=(0,97),initialize=0) m.x177 = Var(within=Reals,bounds=(0,97),initialize=0) m.x178 = Var(within=Reals,bounds=(0,97),initialize=0) m.x179 = Var(within=Reals,bounds=(0,97),initialize=0) m.x180 = Var(within=Reals,bounds=(0,97),initialize=0) m.x181 = Var(within=Reals,bounds=(0,97),initialize=0) m.x182 = Var(within=Reals,bounds=(0,97),initialize=0) m.x183 = Var(within=Reals,bounds=(0,97),initialize=0) m.x184 = Var(within=Reals,bounds=(0,97),initialize=0) m.x185 = Var(within=Reals,bounds=(0,97),initialize=0) m.x186 = Var(within=Reals,bounds=(0,97),initialize=0) m.x187 = Var(within=Reals,bounds=(0,97),initialize=0) m.x188 = Var(within=Reals,bounds=(0,97),initialize=0) m.x189 = Var(within=Reals,bounds=(0,97),initialize=0) m.x190 = Var(within=Reals,bounds=(0,97),initialize=0) m.x191 = Var(within=Reals,bounds=(0,97),initialize=0) m.x192 = Var(within=Reals,bounds=(0,97),initialize=0) m.x193 = Var(within=Reals,bounds=(0,97),initialize=0) m.x194 = Var(within=Reals,bounds=(0,19),initialize=0) m.x195 = Var(within=Reals,bounds=(0,19),initialize=0) m.x196 = Var(within=Reals,bounds=(0,19),initialize=0) m.x197 = Var(within=Reals,bounds=(0,19),initialize=0) m.x198 = Var(within=Reals,bounds=(0,19),initialize=0) m.x199 = Var(within=Reals,bounds=(0,19),initialize=0) m.x200 = Var(within=Reals,bounds=(0,19),initialize=0) m.x201 = Var(within=Reals,bounds=(0,19),initialize=0) m.x202 = Var(within=Reals,bounds=(0,19),initialize=0) m.x203 = Var(within=Reals,bounds=(0,19),initialize=0) m.x204 = Var(within=Reals,bounds=(0,19),initialize=0) m.x205 = Var(within=Reals,bounds=(0,19),initialize=0) m.x206 = Var(within=Reals,bounds=(0,19),initialize=0) m.x207 = Var(within=Reals,bounds=(0,19),initialize=0) m.x208 = Var(within=Reals,bounds=(0,19),initialize=0) m.x209 = Var(within=Reals,bounds=(0,19),initialize=0) m.x210 = Var(within=Reals,bounds=(0,19),initialize=0) m.x211 = Var(within=Reals,bounds=(0,19),initialize=0) m.x212 = Var(within=Reals,bounds=(0,19),initialize=0) m.x213 = Var(within=Reals,bounds=(0,19),initialize=0) m.x214 = Var(within=Reals,bounds=(0,19),initialize=0) m.x215 = Var(within=Reals,bounds=(0,19),initialize=0) m.x216 = Var(within=Reals,bounds=(0,19),initialize=0) m.x217 = Var(within=Reals,bounds=(0,19),initialize=0) m.x218 = Var(within=Reals,bounds=(0,19),initialize=0) m.x219 = Var(within=Reals,bounds=(0,19),initialize=0) m.x220 = Var(within=Reals,bounds=(0,19),initialize=0) m.x221 = Var(within=Reals,bounds=(0,19),initialize=0) m.x222 = Var(within=Reals,bounds=(0,19),initialize=0) m.x223 = Var(within=Reals,bounds=(0,19),initialize=0) m.x224 = Var(within=Reals,bounds=(0,19),initialize=0) m.x225 = Var(within=Reals,bounds=(0,19),initialize=0) m.x226 = Var(within=Reals,bounds=(0,19),initialize=0) m.x227 = Var(within=Reals,bounds=(0,19),initialize=0) m.x228 = Var(within=Reals,bounds=(0,19),initialize=0) m.x229 = Var(within=Reals,bounds=(0,19),initialize=0) m.x230 = Var(within=Reals,bounds=(0,19),initialize=0) m.x231 = Var(within=Reals,bounds=(0,19),initialize=0) m.x232 = Var(within=Reals,bounds=(0,19),initialize=0) m.x233 = Var(within=Reals,bounds=(0,19),initialize=0) m.x234 = Var(within=Reals,bounds=(0,19),initialize=0) m.x235 = Var(within=Reals,bounds=(0,19),initialize=0) m.x236 = Var(within=Reals,bounds=(0,19),initialize=0) m.x237 = Var(within=Reals,bounds=(0,19),initialize=0) m.x238 = Var(within=Reals,bounds=(0,19),initialize=0) m.x239 = Var(within=Reals,bounds=(0,19),initialize=0) m.x240 = Var(within=Reals,bounds=(0,19),initialize=0) m.x241 = Var(within=Reals,bounds=(0,19),initialize=0) m.x242 = Var(within=Reals,bounds=(0,19),initialize=0) m.x243 = Var(within=Reals,bounds=(0,19),initialize=0) m.x244 = Var(within=Reals,bounds=(0,19),initialize=0) m.x245 = Var(within=Reals,bounds=(0,19),initialize=0) m.x246 = Var(within=Reals,bounds=(0,19),initialize=0) m.x247 = Var(within=Reals,bounds=(0,19),initialize=0) m.x248 = Var(within=Reals,bounds=(0,19),initialize=0) m.x249 = Var(within=Reals,bounds=(0,19),initialize=0) m.x250 = Var(within=Reals,bounds=(0,19),initialize=0) m.x251 = Var(within=Reals,bounds=(0,19),initialize=0) m.x252 = Var(within=Reals,bounds=(0,19),initialize=0) m.x253 = Var(within=Reals,bounds=(0,19),initialize=0) m.x254 = Var(within=Reals,bounds=(0,19),initialize=0) m.x255 = Var(within=Reals,bounds=(0,19),initialize=0) m.x256 = Var(within=Reals,bounds=(0,19),initialize=0) m.x257 = Var(within=Reals,bounds=(0,19),initialize=0) m.x258 = Var(within=Reals,bounds=(0,19),initialize=0) m.x259 = Var(within=Reals,bounds=(0,19),initialize=0) m.x260 = Var(within=Reals,bounds=(0,19),initialize=0) m.x261 = Var(within=Reals,bounds=(0,19),initialize=0) m.x262 = Var(within=Reals,bounds=(0,19),initialize=0) m.x263 = Var(within=Reals,bounds=(0,19),initialize=0) m.x264 = Var(within=Reals,bounds=(0,19),initialize=0) m.x265 = Var(within=Reals,bounds=(0,19),initialize=0) m.x266 = Var(within=Reals,bounds=(0,19),initialize=0) m.x267 = Var(within=Reals,bounds=(0,19),initialize=0) m.x268 = Var(within=Reals,bounds=(0,19),initialize=0) m.x269 = Var(within=Reals,bounds=(0,19),initialize=0) m.x270 = Var(within=Reals,bounds=(0,19),initialize=0) m.x271 = Var(within=Reals,bounds=(0,19),initialize=0) m.x272 = Var(within=Reals,bounds=(0,19),initialize=0) m.x273 = Var(within=Reals,bounds=(0,19),initialize=0) m.x274 = Var(within=Reals,bounds=(0,19),initialize=0) m.x275 = Var(within=Reals,bounds=(0,19),initialize=0) m.x276 = Var(within=Reals,bounds=(0,19),initialize=0) m.x277 = Var(within=Reals,bounds=(0,19),initialize=0) m.x278 = Var(within=Reals,bounds=(0,19),initialize=0) m.x279 = Var(within=Reals,bounds=(0,19),initialize=0) m.x280 = Var(within=Reals,bounds=(0,19),initialize=0) m.x281 = Var(within=Reals,bounds=(0,19),initialize=0) m.x282 = Var(within=Reals,bounds=(0,19),initialize=0) m.x283 = Var(within=Reals,bounds=(0,19),initialize=0) m.x284 = Var(within=Reals,bounds=(0,19),initialize=0) m.x285 = Var(within=Reals,bounds=(0,19),initialize=0) m.x286 = Var(within=Reals,bounds=(0,19),initialize=0) m.x287 = Var(within=Reals,bounds=(0,19),initialize=0) m.x288 = Var(within=Reals,bounds=(0,19),initialize=0) m.x289 = Var(within=Reals,bounds=(0,19),initialize=0) m.x290 = Var(within=Reals,bounds=(0,19),initialize=0) m.x291 = Var(within=Reals,bounds=(0,19),initialize=0) m.x292 = Var(within=Reals,bounds=(0,19),initialize=0) m.x293 = Var(within=Reals,bounds=(0,19),initialize=0) m.x294 = Var(within=Reals,bounds=(0,19),initialize=0) m.x295 = Var(within=Reals,bounds=(0,19),initialize=0) m.x296 = Var(within=Reals,bounds=(0,19),initialize=0) m.x297 = Var(within=Reals,bounds=(0,19),initialize=0) m.x298 = Var(within=Reals,bounds=(0,19),initialize=0) m.x299 = Var(within=Reals,bounds=(0,19),initialize=0) m.x300 = Var(within=Reals,bounds=(0,19),initialize=0) m.x301 = Var(within=Reals,bounds=(0,19),initialize=0) m.x302 = Var(within=Reals,bounds=(0,19),initialize=0) m.x303 = Var(within=Reals,bounds=(0,19),initialize=0) m.x304 = Var(within=Reals,bounds=(0,19),initialize=0) m.x305 = Var(within=Reals,bounds=(0,19),initialize=0) m.x306 = Var(within=Reals,bounds=(0,19),initialize=0) m.x307 = Var(within=Reals,bounds=(0,19),initialize=0) m.x308 = Var(within=Reals,bounds=(0,19),initialize=0) m.x309 = Var(within=Reals,bounds=(0,19),initialize=0) m.x310 = Var(within=Reals,bounds=(0,19),initialize=0) m.x311 = Var(within=Reals,bounds=(0,19),initialize=0) m.x312 = Var(within=Reals,bounds=(0,19),initialize=0) m.x313 = Var(within=Reals,bounds=(0,19),initialize=0) m.x314 = Var(within=Reals,bounds=(0,19),initialize=0) m.x315 = Var(within=Reals,bounds=(0,19),initialize=0) m.x316 = Var(within=Reals,bounds=(0,19),initialize=0) m.x317 = Var(within=Reals,bounds=(0,19),initialize=0) m.x318 = Var(within=Reals,bounds=(0,19),initialize=0) m.x319 = Var(within=Reals,bounds=(0,19),initialize=0) m.x320 = Var(within=Reals,bounds=(0,19),initialize=0) m.x321 = Var(within=Reals,bounds=(0,19),initialize=0) m.x322 = Var(within=Reals,bounds=(0,19),initialize=0) m.x323 = Var(within=Reals,bounds=(0,19),initialize=0) m.x324 = Var(within=Reals,bounds=(0,19),initialize=0) m.x325 = Var(within=Reals,bounds=(0,19),initialize=0) m.x326 = Var(within=Reals,bounds=(0,19),initialize=0) m.x327 = Var(within=Reals,bounds=(0,19),initialize=0) m.x328 = Var(within=Reals,bounds=(0,19),initialize=0) m.x329 = Var(within=Reals,bounds=(0,19),initialize=0) m.x330 = Var(within=Reals,bounds=(0,19),initialize=0) m.x331 = Var(within=Reals,bounds=(0,19),initialize=0) m.x332 = Var(within=Reals,bounds=(0,19),initialize=0) m.x333 = Var(within=Reals,bounds=(0,19),initialize=0) m.x334 = Var(within=Reals,bounds=(0,19),initialize=0) m.x335 = Var(within=Reals,bounds=(0,19),initialize=0) m.x336 = Var(within=Reals,bounds=(0,19),initialize=0) m.x337 = Var(within=Reals,bounds=(0,19),initialize=0) m.x338 = Var(within=Reals,bounds=(0,19),initialize=0) m.x339 = Var(within=Reals,bounds=(0,19),initialize=0) m.x340 = Var(within=Reals,bounds=(0,19),initialize=0) m.x341 = Var(within=Reals,bounds=(0,19),initialize=0) m.x342 = Var(within=Reals,bounds=(0,19),initialize=0) m.x343 = Var(within=Reals,bounds=(0,19),initialize=0) m.x344 = Var(within=Reals,bounds=(0,19),initialize=0) m.x345 = Var(within=Reals,bounds=(0,19),initialize=0) m.x346 = Var(within=Reals,bounds=(0,19),initialize=0) m.x347 = Var(within=Reals,bounds=(0,19),initialize=0) m.x348 = Var(within=Reals,bounds=(0,19),initialize=0) m.x349 = Var(within=Reals,bounds=(0,19),initialize=0) m.x350 = Var(within=Reals,bounds=(0,19),initialize=0) m.x351 = Var(within=Reals,bounds=(0,19),initialize=0) m.x352 = Var(within=Reals,bounds=(0,19),initialize=0) m.x353 = Var(within=Reals,bounds=(0,19),initialize=0) m.x354 = Var(within=Reals,bounds=(0,19),initialize=0) m.x355 = Var(within=Reals,bounds=(0,19),initialize=0) m.x356 = Var(within=Reals,bounds=(0,19),initialize=0) m.x357 = Var(within=Reals,bounds=(0,19),initialize=0) m.x358 = Var(within=Reals,bounds=(0,19),initialize=0) m.x359 = Var(within=Reals,bounds=(0,19),initialize=0) m.x360 = Var(within=Reals,bounds=(0,19),initialize=0) m.x361 = Var(within=Reals,bounds=(0,19),initialize=0) m.x362 = Var(within=Reals,bounds=(0,19),initialize=0) m.x363 = Var(within=Reals,bounds=(0,19),initialize=0) m.x364 = Var(within=Reals,bounds=(0,19),initialize=0) m.x365 = Var(within=Reals,bounds=(0,19),initialize=0) m.x366 = Var(within=Reals,bounds=(0,19),initialize=0) m.x367 = Var(within=Reals,bounds=(0,19),initialize=0) m.x368 = Var(within=Reals,bounds=(0,19),initialize=0) m.x369 = Var(within=Reals,bounds=(0,19),initialize=0) m.x370 = Var(within=Reals,bounds=(0,19),initialize=0) m.x371 = Var(within=Reals,bounds=(0,19),initialize=0) m.x372 = Var(within=Reals,bounds=(0,19),initialize=0) m.x373 = Var(within=Reals,bounds=(0,19),initialize=0) m.x374 = Var(within=Reals,bounds=(0,19),initialize=0) m.x375 = Var(within=Reals,bounds=(0,19),initialize=0) m.x376 = Var(within=Reals,bounds=(0,19),initialize=0) m.x377 = Var(within=Reals,bounds=(0,19),initialize=0) m.x378 = Var(within=Reals,bounds=(0,19),initialize=0) m.x379 = Var(within=Reals,bounds=(0,19),initialize=0) m.x380 = Var(within=Reals,bounds=(0,19),initialize=0) m.x381 = Var(within=Reals,bounds=(0,19),initialize=0) m.x382 = Var(within=Reals,bounds=(0,19),initialize=0) m.x383 = Var(within=Reals,bounds=(0,19),initialize=0) m.x384 = Var(within=Reals,bounds=(0,19),initialize=0) m.x385 = Var(within=Reals,bounds=(0,19),initialize=0) m.x386 = Var(within=Reals,bounds=(0,62.6564459177551),initialize=0) m.x387 = Var(within=Reals,bounds=(0,62.6421623089265),initialize=0) m.x388 = Var(within=Reals,bounds=(0,62.6350205045122),initialize=0) m.x389 = Var(within=Reals,bounds=(0,62.6207368956836),initialize=0) m.x390 = Var(within=Reals,bounds=(0,62.6135950912694),initialize=0) m.x391 = Var(within=Reals,bounds=(0,62.6064532868551),initialize=0) m.x392 = Var(within=Reals,bounds=(0,62.6135950912694),initialize=0) m.x393 = Var(within=Reals,bounds=(0,62.6278787000979),initialize=0) m.x394 = Var(within=Reals,bounds=(0,62.6635877221694),initialize=0) m.x395 = Var(within=Reals,bounds=(0,62.7350057663122),initialize=0) m.x396 = Var(within=Reals,bounds=(0,62.8492746369407),initialize=0) m.x397 = Var(within=Reals,bounds=(0,62.9778271163978),initialize=0) m.x398 = Var(within=Reals,bounds=(0,63.1278050090978),initialize=0) m.x399 = Var(within=Reals,bounds=(0,63.1635140311692),initialize=0) m.x400 = Var(within=Reals,bounds=(0,63.0563869649549),initialize=0) m.x401 = Var(within=Reals,bounds=(0,63.0278197472978),initialize=0) m.x402 = Var(within=Reals,bounds=(0,62.9706853119835),initialize=0) m.x403 = Var(within=Reals,bounds=(0,62.8778418545979),initialize=0) m.x404 = Var(within=Reals,bounds=(0,62.8207074192836),initialize=0) m.x405 = Var(within=Reals,bounds=(0,62.7921402016264),initialize=0) m.x406 = Var(within=Reals,bounds=(0,62.7635729839693),initialize=0) m.x407 = Var(within=Reals,bounds=(0,62.7350057663122),initialize=0) m.x408 = Var(within=Reals,bounds=(0,62.7135803530693),initialize=0) m.x409 = Var(within=Reals,bounds=(0,62.6921549398265),initialize=0) m.x410 = Var(within=Reals,bounds=(0,62.7992820060407),initialize=0) m.x411 = Var(within=Reals,bounds=(0,62.856416441355),initialize=0) m.x412 = Var(within=Reals,bounds=(0,62.9206926810835),initialize=0) m.x413 = Var(within=Reals,bounds=(0,62.9778271163978),initialize=0) m.x414 = Var(within=Reals,bounds=(0,63.0421033561264),initialize=0) m.x415 = Var(within=Reals,bounds=(0,63.0349615517121),initialize=0) m.x416 = Var(within=Reals,bounds=(0,63.0421033561264),initialize=0) m.x417 = Var(within=Reals,bounds=(0,63.1278050090978),initialize=0) m.x418 = Var(within=Reals,bounds=(0,63.1635140311692),initialize=0) m.x419 = Var(within=Reals,bounds=(0,63.3063501194548),initialize=0) m.x420 = Var(within=Reals,bounds=(0,63.3492009459406),initialize=0) m.x421 = Var(within=Reals,bounds=(0,63.4063353812548),initialize=0) m.x422 = Var(within=Reals,bounds=(0,63.5563132739548),initialize=0) m.x423 = Var(within=Reals,bounds=(0,63.663440340169),initialize=0) m.x424 = Var(within=Reals,bounds=(0,63.6277313180976),initialize=0) m.x425 = Var(within=Reals,bounds=(0,63.5277460562976),initialize=0) m.x426 = Var(within=Reals,bounds=(0,63.4706116209834),initialize=0) m.x427 = Var(within=Reals,bounds=(0,63.3063501194548),initialize=0) m.x428 = Var(within=Reals,bounds=(0,63.1777976399977),initialize=0) m.x429 = Var(within=Reals,bounds=(0,63.1492304223406),initialize=0) m.x430 = Var(within=Reals,bounds=(0,63.0492451605407),initialize=0) m.x431 = Var(within=Reals,bounds=(0,63.0920959870264),initialize=0) m.x432 = Var(within=Reals,bounds=(0,63.0706705737835),initialize=0) m.x433 = Var(within=Reals,bounds=(0,62.6921549398265),initialize=0) m.x434 = Var(within=Reals,bounds=(0,0),initialize=0) m.x435 = Var(within=Reals,bounds=(0,0),initialize=0) m.x436 = Var(within=Reals,bounds=(0,0),initialize=0) m.x437 = Var(within=Reals,bounds=(0,0),initialize=0) m.x438 = Var(within=Reals,bounds=(0,0),initialize=0) m.x439 = Var(within=Reals,bounds=(0,0),initialize=0) m.x440 = Var(within=Reals,bounds=(0,0),initialize=0) m.x441 = Var(within=Reals,bounds=(0,0),initialize=0) m.x442 = Var(within=Reals,bounds=(0,0),initialize=0) m.x443 = Var(within=Reals,bounds=(0,0),initialize=0) m.x444 = Var(within=Reals,bounds=(0,0),initialize=0) m.x445 = Var(within=Reals,bounds=(0,0),initialize=0) m.x446 = Var(within=Reals,bounds=(0,0),initialize=0) m.x447 = Var(within=Reals,bounds=(0,0),initialize=0) m.x448 = Var(within=Reals,bounds=(0,0),initialize=0) m.x449 = Var(within=Reals,bounds=(0,0),initialize=0) m.x450 = Var(within=Reals,bounds=(0,0),initialize=0) m.x451 = Var(within=Reals,bounds=(0,0),initialize=0) m.x452 = Var(within=Reals,bounds=(0,0),initialize=0) m.x453 = Var(within=Reals,bounds=(0,0),initialize=0) m.x454 = Var(within=Reals,bounds=(0,0),initialize=0) m.x455 = Var(within=Reals,bounds=(0,0),initialize=0) m.x456 = Var(within=Reals,bounds=(0,0),initialize=0) m.x457 = Var(within=Reals,bounds=(0,0),initialize=0) m.x458 = Var(within=Reals,bounds=(0,0),initialize=0) m.x459 = Var(within=Reals,bounds=(0,0),initialize=0) m.x460 = Var(within=Reals,bounds=(0,0),initialize=0) m.x461 = Var(within=Reals,bounds=(0,0),initialize=0) m.x462 = Var(within=Reals,bounds=(0,0),initialize=0) m.x463 = Var(within=Reals,bounds=(0,0),initialize=0) m.x464 = Var(within=Reals,bounds=(0,0),initialize=0) m.x465 = Var(within=Reals,bounds=(0,0),initialize=0) m.x466 = Var(within=Reals,bounds=(0,0),initialize=0) m.x467 = Var(within=Reals,bounds=(0,0),initialize=0) m.x468 = Var(within=Reals,bounds=(0,0),initialize=0) m.x469 = Var(within=Reals,bounds=(0,0),initialize=0) m.x470 = Var(within=Reals,bounds=(0,0),initialize=0) m.x471 = Var(within=Reals,bounds=(0,0),initialize=0) m.x472 = Var(within=Reals,bounds=(0,0),initialize=0) m.x473 = Var(within=Reals,bounds=(0,0),initialize=0) m.x474 = Var(within=Reals,bounds=(0,0),initialize=0) m.x475 = Var(within=Reals,bounds=(0,0),initialize=0) m.x476 = Var(within=Reals,bounds=(0,0),initialize=0) m.x477 = Var(within=Reals,bounds=(0,0),initialize=0) m.x478 = Var(within=Reals,bounds=(0,0),initialize=0) m.x479 = Var(within=Reals,bounds=(0,0),initialize=0) m.x480 = Var(within=Reals,bounds=(0,0),initialize=0) m.x481 = Var(within=Reals,bounds=(0,0),initialize=0) m.x482 = Var(within=Reals,bounds=(0,17.3082346728998),initialize=0) m.x483 = Var(within=Reals,bounds=(0,17.302992517866),initialize=0) m.x484 = Var(within=Reals,bounds=(0,17.3003714403491),initialize=0) m.x485 = Var(within=Reals,bounds=(0,17.2951292853154),initialize=0) m.x486 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x487 = Var(within=Reals,bounds=(0,17.2898871302816),initialize=0) m.x488 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x489 = Var(within=Reals,bounds=(0,17.2977503628323),initialize=0) m.x490 = Var(within=Reals,bounds=(0,17.3108557504167),initialize=0) m.x491 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x492 = Var(within=Reals,bounds=(0,17.3790037658554),initialize=0) m.x493 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x494 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x495 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x496 = Var(within=Reals,bounds=(0,17.4550150138448),initialize=0) m.x497 = Var(within=Reals,bounds=(0,17.4445307037773),initialize=0) m.x498 = Var(within=Reals,bounds=(0,17.4235620836423),initialize=0) m.x499 = Var(within=Reals,bounds=(0,17.3894880759229),initialize=0) m.x500 = Var(within=Reals,bounds=(0,17.3685194557879),initialize=0) m.x501 = Var(within=Reals,bounds=(0,17.3580351457204),initialize=0) m.x502 = Var(within=Reals,bounds=(0,17.3475508356529),initialize=0) m.x503 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x504 = Var(within=Reals,bounds=(0,17.3292032930348),initialize=0) m.x505 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x506 = Var(within=Reals,bounds=(0,17.3606562232373),initialize=0) m.x507 = Var(within=Reals,bounds=(0,17.3816248433723),initialize=0) m.x508 = Var(within=Reals,bounds=(0,17.4052145410242),initialize=0) m.x509 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x510 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x511 = Var(within=Reals,bounds=(0,17.4471517812942),initialize=0) m.x512 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x513 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x514 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x515 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x516 = Var(within=Reals,bounds=(0,17.5624791920368),initialize=0) m.x517 = Var(within=Reals,bounds=(0,17.5834478121718),initialize=0) m.x518 = Var(within=Reals,bounds=(0,17.6384904400262),initialize=0) m.x519 = Var(within=Reals,bounds=(0,17.6778066027793),initialize=0) m.x520 = Var(within=Reals,bounds=(0,17.6647012151949),initialize=0) m.x521 = Var(within=Reals,bounds=(0,17.6280061299587),initialize=0) m.x522 = Var(within=Reals,bounds=(0,17.6070375098237),initialize=0) m.x523 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x524 = Var(within=Reals,bounds=(0,17.4995733316317),initialize=0) m.x525 = Var(within=Reals,bounds=(0,17.4890890215642),initialize=0) m.x526 = Var(within=Reals,bounds=(0,17.452393936328),initialize=0) m.x527 = Var(within=Reals,bounds=(0,17.4681204014292),initialize=0) m.x528 = Var(within=Reals,bounds=(0,17.4602571688786),initialize=0) m.x529 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x530 = Var(within=Reals,bounds=(0,17.3082346728998),initialize=0) m.x531 = Var(within=Reals,bounds=(0,17.302992517866),initialize=0) m.x532 = Var(within=Reals,bounds=(0,17.3003714403491),initialize=0) m.x533 = Var(within=Reals,bounds=(0,17.2951292853154),initialize=0) m.x534 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x535 = Var(within=Reals,bounds=(0,17.2898871302816),initialize=0) m.x536 = Var(within=Reals,bounds=(0,17.2925082077985),initialize=0) m.x537 = Var(within=Reals,bounds=(0,17.2977503628323),initialize=0) m.x538 = Var(within=Reals,bounds=(0,17.3108557504167),initialize=0) m.x539 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x540 = Var(within=Reals,bounds=(0,17.3790037658554),initialize=0) m.x541 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x542 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x543 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x544 = Var(within=Reals,bounds=(0,17.4550150138448),initialize=0) m.x545 = Var(within=Reals,bounds=(0,17.4445307037773),initialize=0) m.x546 = Var(within=Reals,bounds=(0,17.4235620836423),initialize=0) m.x547 = Var(within=Reals,bounds=(0,17.3894880759229),initialize=0) m.x548 = Var(within=Reals,bounds=(0,17.3685194557879),initialize=0) m.x549 = Var(within=Reals,bounds=(0,17.3580351457204),initialize=0) m.x550 = Var(within=Reals,bounds=(0,17.3475508356529),initialize=0) m.x551 = Var(within=Reals,bounds=(0,17.3370665255854),initialize=0) m.x552 = Var(within=Reals,bounds=(0,17.3292032930348),initialize=0) m.x553 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x554 = Var(within=Reals,bounds=(0,17.3606562232373),initialize=0) m.x555 = Var(within=Reals,bounds=(0,17.3816248433723),initialize=0) m.x556 = Var(within=Reals,bounds=(0,17.4052145410242),initialize=0) m.x557 = Var(within=Reals,bounds=(0,17.4261831611592),initialize=0) m.x558 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x559 = Var(within=Reals,bounds=(0,17.4471517812942),initialize=0) m.x560 = Var(within=Reals,bounds=(0,17.4497728588111),initialize=0) m.x561 = Var(within=Reals,bounds=(0,17.4812257890136),initialize=0) m.x562 = Var(within=Reals,bounds=(0,17.494331176598),initialize=0) m.x563 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x564 = Var(within=Reals,bounds=(0,17.5624791920368),initialize=0) m.x565 = Var(within=Reals,bounds=(0,17.5834478121718),initialize=0) m.x566 = Var(within=Reals,bounds=(0,17.6384904400262),initialize=0) m.x567 = Var(within=Reals,bounds=(0,17.6778066027793),initialize=0) m.x568 = Var(within=Reals,bounds=(0,17.6647012151949),initialize=0) m.x569 = Var(within=Reals,bounds=(0,17.6280061299587),initialize=0) m.x570 = Var(within=Reals,bounds=(0,17.6070375098237),initialize=0) m.x571 = Var(within=Reals,bounds=(0,17.5467527269355),initialize=0) m.x572 = Var(within=Reals,bounds=(0,17.4995733316317),initialize=0) m.x573 = Var(within=Reals,bounds=(0,17.4890890215642),initialize=0) m.x574 = Var(within=Reals,bounds=(0,17.452393936328),initialize=0) m.x575 = Var(within=Reals,bounds=(0,17.4681204014292),initialize=0) m.x576 = Var(within=Reals,bounds=(0,17.4602571688786),initialize=0) m.x577 = Var(within=Reals,bounds=(0,17.3213400604842),initialize=0) m.x578 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x579 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x580 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x581 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x582 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x583 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x584 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x585 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x586 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x587 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x588 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x589 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x590 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x591 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x592 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x593 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x594 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x595 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x596 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x597 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x598 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x599 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x600 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x601 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x602 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x603 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x604 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x605 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x606 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x607 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x608 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x609 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x610 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x611 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x612 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x613 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x614 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x615 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x616 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x617 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x618 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x619 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x620 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x621 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x622 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x623 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x624 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x625 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x626 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x627 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x628 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x629 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x630 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x631 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x632 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x633 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x634 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x635 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x636 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x637 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x638 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x639 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x640 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x641 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x642 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x643 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x644 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x645 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x646 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x647 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x648 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x649 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x650 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x651 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x652 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x653 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x654 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x655 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x656 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x657 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x658 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x659 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x660 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x661 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x662 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x663 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x664 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x665 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x666 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x667 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x668 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x669 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x670 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x671 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x672 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x673 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x674 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x675 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x676 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x677 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x678 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x679 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x680 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x681 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x682 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x683 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x684 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x685 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x686 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x687 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x688 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x689 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x690 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x691 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x692 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x693 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x694 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x695 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x696 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x697 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x698 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x699 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x700 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x701 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x702 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x703 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x704 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x705 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x706 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x707 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x708 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x709 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x710 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x711 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x712 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x713 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x714 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x715 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x716 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x717 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x718 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x719 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x720 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x721 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x722 = Var(within=Reals,bounds=(0,7.00999414298888),initialize=0) m.x723 = Var(within=Reals,bounds=(0,7.00904431829861),initialize=0) m.x724 = Var(within=Reals,bounds=(0,7.00856940595348),initialize=0) m.x725 = Var(within=Reals,bounds=(0,7.00761958126322),initialize=0) m.x726 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x727 = Var(within=Reals,bounds=(0,7.00666975657295),initialize=0) m.x728 = Var(within=Reals,bounds=(0,7.00714466891808),initialize=0) m.x729 = Var(within=Reals,bounds=(0,7.00809449360835),initialize=0) m.x730 = Var(within=Reals,bounds=(0,7.01046905533401),initialize=0) m.x731 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x732 = Var(within=Reals,bounds=(0,7.02281677630746),initialize=0) m.x733 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x734 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x735 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x736 = Var(within=Reals,bounds=(0,7.03658923431631),initialize=0) m.x737 = Var(within=Reals,bounds=(0,7.03468958493578),initialize=0) m.x738 = Var(within=Reals,bounds=(0,7.03089028617472),initialize=0) m.x739 = Var(within=Reals,bounds=(0,7.02471642568799),initialize=0) m.x740 = Var(within=Reals,bounds=(0,7.02091712692693),initialize=0) m.x741 = Var(within=Reals,bounds=(0,7.0190174775464),initialize=0) m.x742 = Var(within=Reals,bounds=(0,7.01711782816587),initialize=0) m.x743 = Var(within=Reals,bounds=(0,7.01521817878534),initialize=0) m.x744 = Var(within=Reals,bounds=(0,7.01379344174994),initialize=0) m.x745 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x746 = Var(within=Reals,bounds=(0,7.01949238989153),initialize=0) m.x747 = Var(within=Reals,bounds=(0,7.02329168865259),initialize=0) m.x748 = Var(within=Reals,bounds=(0,7.02756589975879),initialize=0) m.x749 = Var(within=Reals,bounds=(0,7.03136519851985),initialize=0) m.x750 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x751 = Var(within=Reals,bounds=(0,7.03516449728091),initialize=0) m.x752 = Var(within=Reals,bounds=(0,7.03563940962605),initialize=0) m.x753 = Var(within=Reals,bounds=(0,7.04133835776764),initialize=0) m.x754 = Var(within=Reals,bounds=(0,7.0437129194933),initialize=0) m.x755 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x756 = Var(within=Reals,bounds=(0,7.05606064046675),initialize=0) m.x757 = Var(within=Reals,bounds=(0,7.05985993922782),initialize=0) m.x758 = Var(within=Reals,bounds=(0,7.0698330984756),initialize=0) m.x759 = Var(within=Reals,bounds=(0,7.0769567836526),initialize=0) m.x760 = Var(within=Reals,bounds=(0,7.07458222192693),initialize=0) m.x761 = Var(within=Reals,bounds=(0,7.06793344909507),initialize=0) m.x762 = Var(within=Reals,bounds=(0,7.06413415033401),initialize=0) m.x763 = Var(within=Reals,bounds=(0,7.05321116639596),initialize=0) m.x764 = Var(within=Reals,bounds=(0,7.04466274418357),initialize=0) m.x765 = Var(within=Reals,bounds=(0,7.04276309480304),initialize=0) m.x766 = Var(within=Reals,bounds=(0,7.03611432197118),initialize=0) m.x767 = Var(within=Reals,bounds=(0,7.03896379604198),initialize=0) m.x768 = Var(within=Reals,bounds=(0,7.03753905900658),initialize=0) m.x769 = Var(within=Reals,bounds=(0,7.01236870471454),initialize=0) m.x770 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x771 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x772 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x773 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x774 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x775 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x776 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x777 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x778 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x779 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x780 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x781 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x782 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x783 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x784 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x785 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x786 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x787 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x788 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x789 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x790 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x791 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x792 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x793 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x794 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x795 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x796 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x797 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x798 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x799 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x800 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x801 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x802 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x803 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x804 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x805 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x806 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x807 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x808 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x809 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x810 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x811 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x812 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x813 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x814 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x815 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x816 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x817 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x818 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x819 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x820 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x821 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x822 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x823 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x824 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x825 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x826 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x827 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x828 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x829 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x830 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x831 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x832 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x833 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x834 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x835 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x836 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x837 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x838 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x839 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x840 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x841 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x842 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x843 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x844 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x845 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x846 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x847 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x848 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x849 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x850 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x851 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x852 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x853 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x854 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x855 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x856 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x857 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x858 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x859 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x860 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x861 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x862 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x863 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x864 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x865 = Var(within=Reals,bounds=(0,27.932),initialize=0) m.x866 = Var(within=Reals,bounds=(0,20.4747868939375),initialize=0) m.x867 = Var(within=Reals,bounds=(0,20.4596302458492),initialize=0) m.x868 = Var(within=Reals,bounds=(0,20.452051921805),initialize=0) m.x869 = Var(within=Reals,bounds=(0,20.4368952737167),initialize=0) m.x870 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x871 = Var(within=Reals,bounds=(0,20.4217386256284),initialize=0) m.x872 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x873 = Var(within=Reals,bounds=(0,20.4444735977609),initialize=0) m.x874 = Var(within=Reals,bounds=(0,20.4823652179816),initialize=0) m.x875 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x876 = Var(within=Reals,bounds=(0,20.6794016431297),initialize=0) m.x877 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x878 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x879 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x880 = Var(within=Reals,bounds=(0,20.8991730404103),initialize=0) m.x881 = Var(within=Reals,bounds=(0,20.8688597442337),initialize=0) m.x882 = Var(within=Reals,bounds=(0,20.8082331518804),initialize=0) m.x883 = Var(within=Reals,bounds=(0,20.7097149393064),initialize=0) m.x884 = Var(within=Reals,bounds=(0,20.6490883469531),initialize=0) m.x885 = Var(within=Reals,bounds=(0,20.6187750507765),initialize=0) m.x886 = Var(within=Reals,bounds=(0,20.5884617545998),initialize=0) m.x887 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x888 = Var(within=Reals,bounds=(0,20.5354134862907),initialize=0) m.x889 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x890 = Var(within=Reals,bounds=(0,20.6263533748206),initialize=0) m.x891 = Var(within=Reals,bounds=(0,20.6869799671739),initialize=0) m.x892 = Var(within=Reals,bounds=(0,20.7551848835713),initialize=0) m.x893 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x894 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x895 = Var(within=Reals,bounds=(0,20.8764380682778),initialize=0) m.x896 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x897 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x898 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x899 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x900 = Var(within=Reals,bounds=(0,21.2098843262207),initialize=0) m.x901 = Var(within=Reals,bounds=(0,21.270510918574),initialize=0) m.x902 = Var(within=Reals,bounds=(0,21.4296557235013),initialize=0) m.x903 = Var(within=Reals,bounds=(0,21.5433305841636),initialize=0) m.x904 = Var(within=Reals,bounds=(0,21.5054389639429),initialize=0) m.x905 = Var(within=Reals,bounds=(0,21.3993424273246),initialize=0) m.x906 = Var(within=Reals,bounds=(0,21.3387158349714),initialize=0) m.x907 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x908 = Var(within=Reals,bounds=(0,21.028004549161),initialize=0) m.x909 = Var(within=Reals,bounds=(0,20.9976912529843),initialize=0) m.x910 = Var(within=Reals,bounds=(0,20.8915947163661),initialize=0) m.x911 = Var(within=Reals,bounds=(0,20.9370646606311),initialize=0) m.x912 = Var(within=Reals,bounds=(0,20.9143296884986),initialize=0) m.x913 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x914 = Var(within=Reals,bounds=(0,20.4747868939375),initialize=0) m.x915 = Var(within=Reals,bounds=(0,20.4596302458492),initialize=0) m.x916 = Var(within=Reals,bounds=(0,20.452051921805),initialize=0) m.x917 = Var(within=Reals,bounds=(0,20.4368952737167),initialize=0) m.x918 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x919 = Var(within=Reals,bounds=(0,20.4217386256284),initialize=0) m.x920 = Var(within=Reals,bounds=(0,20.4293169496726),initialize=0) m.x921 = Var(within=Reals,bounds=(0,20.4444735977609),initialize=0) m.x922 = Var(within=Reals,bounds=(0,20.4823652179816),initialize=0) m.x923 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x924 = Var(within=Reals,bounds=(0,20.6794016431297),initialize=0) m.x925 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x926 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x927 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x928 = Var(within=Reals,bounds=(0,20.8991730404103),initialize=0) m.x929 = Var(within=Reals,bounds=(0,20.8688597442337),initialize=0) m.x930 = Var(within=Reals,bounds=(0,20.8082331518804),initialize=0) m.x931 = Var(within=Reals,bounds=(0,20.7097149393064),initialize=0) m.x932 = Var(within=Reals,bounds=(0,20.6490883469531),initialize=0) m.x933 = Var(within=Reals,bounds=(0,20.6187750507765),initialize=0) m.x934 = Var(within=Reals,bounds=(0,20.5884617545998),initialize=0) m.x935 = Var(within=Reals,bounds=(0,20.5581484584232),initialize=0) m.x936 = Var(within=Reals,bounds=(0,20.5354134862907),initialize=0) m.x937 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x938 = Var(within=Reals,bounds=(0,20.6263533748206),initialize=0) m.x939 = Var(within=Reals,bounds=(0,20.6869799671739),initialize=0) m.x940 = Var(within=Reals,bounds=(0,20.7551848835713),initialize=0) m.x941 = Var(within=Reals,bounds=(0,20.8158114759246),initialize=0) m.x942 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x943 = Var(within=Reals,bounds=(0,20.8764380682778),initialize=0) m.x944 = Var(within=Reals,bounds=(0,20.884016392322),initialize=0) m.x945 = Var(within=Reals,bounds=(0,20.9749562808519),initialize=0) m.x946 = Var(within=Reals,bounds=(0,21.0128479010727),initialize=0) m.x947 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x948 = Var(within=Reals,bounds=(0,21.2098843262207),initialize=0) m.x949 = Var(within=Reals,bounds=(0,21.270510918574),initialize=0) m.x950 = Var(within=Reals,bounds=(0,21.4296557235013),initialize=0) m.x951 = Var(within=Reals,bounds=(0,21.5433305841636),initialize=0) m.x952 = Var(within=Reals,bounds=(0,21.5054389639429),initialize=0) m.x953 = Var(within=Reals,bounds=(0,21.3993424273246),initialize=0) m.x954 = Var(within=Reals,bounds=(0,21.3387158349714),initialize=0) m.x955 = Var(within=Reals,bounds=(0,21.1644143819558),initialize=0) m.x956 = Var(within=Reals,bounds=(0,21.028004549161),initialize=0) m.x957 = Var(within=Reals,bounds=(0,20.9976912529843),initialize=0) m.x958 = Var(within=Reals,bounds=(0,20.8915947163661),initialize=0) m.x959 = Var(within=Reals,bounds=(0,20.9370646606311),initialize=0) m.x960 = Var(within=Reals,bounds=(0,20.9143296884986),initialize=0) m.x961 = Var(within=Reals,bounds=(0,20.5126785141583),initialize=0) m.x962 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x963 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x964 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x965 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x966 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x967 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x968 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x969 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x970 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x971 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x972 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x973 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x974 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x975 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x976 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x977 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x978 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x979 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x980 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x981 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x982 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x983 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x984 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x985 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x986 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x987 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x988 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x989 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x990 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x991 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x992 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x993 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x994 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x995 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x996 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x997 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x998 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x999 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1000 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1001 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1002 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1003 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1004 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1005 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1006 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1007 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1008 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1009 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1010 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x1011 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x1012 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x1013 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x1014 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1015 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x1016 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1017 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x1018 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x1019 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1020 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x1021 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1022 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1023 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1024 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x1025 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x1026 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x1027 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x1028 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x1029 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x1030 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x1031 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1032 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x1033 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1034 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x1035 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x1036 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x1037 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1038 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1039 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x1040 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1041 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1042 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1043 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1044 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x1045 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x1046 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x1047 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1048 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1049 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1050 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1051 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1052 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1053 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1054 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1055 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1056 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1057 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1058 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x1059 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x1060 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x1061 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x1062 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1063 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x1064 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1065 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x1066 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x1067 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1068 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x1069 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1070 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1071 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1072 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x1073 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x1074 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x1075 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x1076 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x1077 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x1078 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x1079 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1080 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x1081 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1082 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x1083 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x1084 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x1085 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1086 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1087 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x1088 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1089 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1090 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1091 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1092 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x1093 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x1094 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x1095 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1096 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1097 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1098 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1099 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1100 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1101 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1102 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1103 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1104 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1105 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1106 = Var(within=Reals,bounds=(0,9.12860885408558),initialize=0) m.x1107 = Var(within=Reals,bounds=(0,9.12705868178469),initialize=0) m.x1108 = Var(within=Reals,bounds=(0,9.12628359563425),initialize=0) m.x1109 = Var(within=Reals,bounds=(0,9.12473342333337),initialize=0) m.x1110 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1111 = Var(within=Reals,bounds=(0,9.12318325103248),initialize=0) m.x1112 = Var(within=Reals,bounds=(0,9.12395833718292),initialize=0) m.x1113 = Var(within=Reals,bounds=(0,9.12550850948381),initialize=0) m.x1114 = Var(within=Reals,bounds=(0,9.12938394023602),initialize=0) m.x1115 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1116 = Var(within=Reals,bounds=(0,9.14953618014752),initialize=0) m.x1117 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1118 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1119 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1120 = Var(within=Reals,bounds=(0,9.17201367851036),initialize=0) m.x1121 = Var(within=Reals,bounds=(0,9.16891333390859),initialize=0) m.x1122 = Var(within=Reals,bounds=(0,9.16271264470505),initialize=0) m.x1123 = Var(within=Reals,bounds=(0,9.1526365247493),initialize=0) m.x1124 = Var(within=Reals,bounds=(0,9.14643583554575),initialize=0) m.x1125 = Var(within=Reals,bounds=(0,9.14333549094398),initialize=0) m.x1126 = Var(within=Reals,bounds=(0,9.14023514634222),initialize=0) m.x1127 = Var(within=Reals,bounds=(0,9.13713480174045),initialize=0) m.x1128 = Var(within=Reals,bounds=(0,9.13480954328912),initialize=0) m.x1129 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1130 = Var(within=Reals,bounds=(0,9.14411057709443),initialize=0) m.x1131 = Var(within=Reals,bounds=(0,9.15031126629797),initialize=0) m.x1132 = Var(within=Reals,bounds=(0,9.15728704165195),initialize=0) m.x1133 = Var(within=Reals,bounds=(0,9.16348773085549),initialize=0) m.x1134 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1135 = Var(within=Reals,bounds=(0,9.16968842005903),initialize=0) m.x1136 = Var(within=Reals,bounds=(0,9.17046350620947),initialize=0) m.x1137 = Var(within=Reals,bounds=(0,9.17976454001478),initialize=0) m.x1138 = Var(within=Reals,bounds=(0,9.183639970767),initialize=0) m.x1139 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1140 = Var(within=Reals,bounds=(0,9.2037922106785),initialize=0) m.x1141 = Var(within=Reals,bounds=(0,9.20999289988204),initialize=0) m.x1142 = Var(within=Reals,bounds=(0,9.22626970904133),initialize=0) m.x1143 = Var(within=Reals,bounds=(0,9.23789600129796),initialize=0) m.x1144 = Var(within=Reals,bounds=(0,9.23402057054576),initialize=0) m.x1145 = Var(within=Reals,bounds=(0,9.22316936443956),initialize=0) m.x1146 = Var(within=Reals,bounds=(0,9.21696867523602),initialize=0) m.x1147 = Var(within=Reals,bounds=(0,9.19914169377584),initialize=0) m.x1148 = Var(within=Reals,bounds=(0,9.18519014306788),initialize=0) m.x1149 = Var(within=Reals,bounds=(0,9.18208979846611),initialize=0) m.x1150 = Var(within=Reals,bounds=(0,9.17123859235992),initialize=0) m.x1151 = Var(within=Reals,bounds=(0,9.17588910926257),initialize=0) m.x1152 = Var(within=Reals,bounds=(0,9.17356385081124),initialize=0) m.x1153 = Var(within=Reals,bounds=(0,9.13248428483779),initialize=0) m.x1154 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1155 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1156 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1157 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1158 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1159 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1160 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1161 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1162 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1163 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1164 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1165 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1166 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1167 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1168 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1169 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1170 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1171 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1172 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1173 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1174 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1175 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1176 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1177 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1178 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1179 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1180 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1181 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1182 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1183 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1184 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1185 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1186 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1187 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1188 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1189 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1190 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1191 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1192 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1193 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1194 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1195 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1196 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1197 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1198 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1199 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1200 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1201 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1202 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1203 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1204 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1205 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1206 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1207 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1208 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1209 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1210 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1211 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1212 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1213 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1214 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1215 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1216 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1217 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1218 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1219 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1220 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1221 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1222 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1223 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1224 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1225 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1226 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1227 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1228 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1229 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1230 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1231 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1232 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1233 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1234 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1235 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1236 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1237 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1238 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1239 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1240 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1241 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1242 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1243 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1244 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1245 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1246 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1247 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1248 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1249 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1250 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1251 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1252 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1253 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1254 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1255 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1256 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1257 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1258 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1259 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1260 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1261 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1262 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1263 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1264 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1265 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1266 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1267 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1268 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1269 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1270 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1271 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1272 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1273 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1274 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1275 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1276 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1277 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1278 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1279 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1280 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1281 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1282 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1283 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1284 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1285 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1286 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1287 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1288 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1289 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1290 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1291 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1292 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1293 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1294 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1295 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1296 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1297 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1298 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1299 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1300 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1301 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1302 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1303 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1304 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1305 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1306 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1307 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1308 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1309 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1310 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1311 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1312 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1313 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1314 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1315 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1316 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1317 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1318 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1319 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1320 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1321 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1322 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1323 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1324 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1325 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1326 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1327 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1328 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1329 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1330 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1331 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1332 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1333 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1334 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1335 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1336 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1337 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1338 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1339 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1340 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1341 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1342 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1343 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1344 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1345 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1346 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1347 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1348 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1349 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1350 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1351 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1352 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1353 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1354 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1355 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1356 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1357 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1358 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1359 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1360 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1361 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1362 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1363 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1364 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1365 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1366 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1367 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1368 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1369 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1370 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1371 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1372 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1373 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1374 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1375 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1376 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1377 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1378 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1379 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1380 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1381 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1382 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1383 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1384 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1385 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1386 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1387 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1388 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1389 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1390 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1391 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1392 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1393 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1394 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1395 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1396 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1397 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1398 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1399 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1400 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1401 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1402 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1403 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1404 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1405 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1406 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1407 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1408 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1409 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1410 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1411 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1412 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1413 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1414 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1415 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1416 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1417 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1418 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1419 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1420 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1421 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1422 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1423 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1424 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1425 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1426 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1427 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1428 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1429 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1430 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1431 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1432 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1433 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1434 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1435 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1436 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1437 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1438 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1439 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1440 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1441 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1442 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1443 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1444 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1445 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1446 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1447 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1448 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1449 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1450 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1451 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1452 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1453 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1454 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1455 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1456 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1457 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1458 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1459 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1460 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1461 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1462 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1463 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1464 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1465 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1466 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1467 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1468 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1469 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1470 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1471 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1472 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1473 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1474 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1475 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1476 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1477 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1478 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1479 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1480 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1481 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1482 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1483 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1484 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1485 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1486 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1487 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1488 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1489 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1490 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1491 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1492 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1493 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1494 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1495 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1496 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1497 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1498 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1499 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1500 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1501 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1502 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1503 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1504 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1505 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1506 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1507 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1508 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1509 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1510 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1511 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1512 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1513 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1514 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1515 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1516 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1517 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1518 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1519 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1520 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1521 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1522 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1523 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1524 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1525 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1526 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1527 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1528 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1529 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1530 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1531 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1532 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1533 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1534 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1535 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1536 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1537 = Var(within=Reals,bounds=(0,2000),initialize=0) m.x1538 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1539 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1540 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1541 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1542 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1543 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1544 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1545 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1546 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1547 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1548 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1549 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1550 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1551 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1552 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1553 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1554 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1555 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1556 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1557 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1558 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1559 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1560 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1561 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1562 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1563 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1564 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1565 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1566 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1567 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1568 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1569 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1570 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1571 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1572 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1573 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1574 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1575 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1576 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1577 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1578 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1579 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1580 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1581 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1582 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1583 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1584 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1585 = Var(within=Reals,bounds=(0,0),initialize=0) m.x1586 = Var(within=Reals,bounds=(0,133.328009204217),initialize=0) m.x1587 = Var(within=Reals,bounds=(0,133.291495218837),initialize=0) m.x1588 = Var(within=Reals,bounds=(0,133.273238226147),initialize=0) m.x1589 = Var(within=Reals,bounds=(0,133.236724240767),initialize=0) m.x1590 = Var(within=Reals,bounds=(0,133.218467248077),initialize=0) m.x1591 = Var(within=Reals,bounds=(0,133.200210255387),initialize=0) m.x1592 = Var(within=Reals,bounds=(0,133.218467248077),initialize=0) m.x1593 = Var(within=Reals,bounds=(0,133.254981233457),initialize=0) m.x1594 = Var(within=Reals,bounds=(0,133.346266196907),initialize=0) m.x1595 = Var(within=Reals,bounds=(0,133.528836123808),initialize=0) m.x1596 = Var(within=Reals,bounds=(0,133.82094800685),initialize=0) m.x1597 = Var(within=Reals,bounds=(0,134.149573875271),initialize=0) m.x1598 = Var(within=Reals,bounds=(0,134.532970721763),initialize=0) m.x1599 = Var(within=Reals,bounds=(0,134.624255685213),initialize=0) m.x1600 = Var(within=Reals,bounds=(0,134.350400794862),initialize=0) m.x1601 = Var(within=Reals,bounds=(0,134.277372824102),initialize=0) m.x1602 = Var(within=Reals,bounds=(0,134.131316882581),initialize=0) m.x1603 = Var(within=Reals,bounds=(0,133.89397597761),initialize=0) m.x1604 = Var(within=Reals,bounds=(0,133.747920036089),initialize=0) m.x1605 = Var(within=Reals,bounds=(0,133.674892065329),initialize=0) m.x1606 = Var(within=Reals,bounds=(0,133.601864094569),initialize=0) m.x1607 = Var(within=Reals,bounds=(0,133.528836123808),initialize=0) m.x1608 = Var(within=Reals,bounds=(0,133.474065145738),initialize=0) m.x1609 = Var(within=Reals,bounds=(0,133.419294167668),initialize=0) m.x1610 = Var(within=Reals,bounds=(0,133.693149058019),initialize=0) m.x1611 = Var(within=Reals,bounds=(0,133.83920499954),initialize=0) m.x1612 = Var(within=Reals,bounds=(0,134.00351793375),initialize=0) m.x1613 = Var(within=Reals,bounds=(0,134.149573875271),initialize=0) m.x1614 = Var(within=Reals,bounds=(0,134.313886809482),initialize=0) m.x1615 = Var(within=Reals,bounds=(0,134.295629816792),initialize=0) m.x1616 = Var(within=Reals,bounds=(0,134.313886809482),initialize=0) m.x1617 = Var(within=Reals,bounds=(0,134.532970721763),initialize=0) m.x1618 = Var(within=Reals,bounds=(0,134.624255685213),initialize=0) m.x1619 = Var(within=Reals,bounds=(0,134.989395539015),initialize=0) m.x1620 = Var(within=Reals,bounds=(0,135.098937495155),initialize=0) m.x1621 = Var(within=Reals,bounds=(0,135.244993436676),initialize=0) m.x1622 = Var(within=Reals,bounds=(0,135.628390283168),initialize=0) m.x1623 = Var(within=Reals,bounds=(0,135.902245173519),initialize=0) m.x1624 = Var(within=Reals,bounds=(0,135.810960210069),initialize=0) m.x1625 = Var(within=Reals,bounds=(0,135.555362312408),initialize=0) m.x1626 = Var(within=Reals,bounds=(0,135.409306370887),initialize=0) m.x1627 = Var(within=Reals,bounds=(0,134.989395539015),initialize=0) m.x1628 = Var(within=Reals,bounds=(0,134.660769670593),initialize=0) m.x1629 = Var(within=Reals,bounds=(0,134.587741699833),initialize=0) m.x1630 = Var(within=Reals,bounds=(0,134.332143802172),initialize=0) m.x1631 = Var(within=Reals,bounds=(0,134.441685758312),initialize=0) m.x1632 = Var(within=Reals,bounds=(0,134.386914780242),initialize=0) m.x1633 = Var(within=Reals,bounds=(0,133.419294167668),initialize=0) m.x1634 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1635 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1636 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1637 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1638 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1639 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1640 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1641 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1642 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1643 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1644 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1645 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1646 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1647 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1648 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1649 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1650 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1651 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1652 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1653 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1654 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1655 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1656 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1657 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1658 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1659 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1660 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1661 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1662 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1663 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1664 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1665 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1666 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1667 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1668 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1669 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1670 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1671 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1672 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1673 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1674 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1675 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1676 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1677 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1678 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1679 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1680 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1681 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1682 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1683 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1684 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1685 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1686 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1687 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1688 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1689 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1690 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1691 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1692 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1693 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1694 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1695 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1696 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1697 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1698 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1699 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1700 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1701 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1702 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1703 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1704 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1705 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1706 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1707 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1708 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1709 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1710 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1711 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1712 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1713 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1714 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1715 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1716 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1717 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1718 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1719 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1720 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1721 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1722 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1723 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1724 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1725 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1726 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1727 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1728 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1729 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1730 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1731 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1732 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1733 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1734 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1735 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1736 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1737 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1738 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1739 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1740 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1741 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1742 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1743 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1744 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1745 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1746 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1747 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1748 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1749 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1750 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1751 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1752 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1753 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1754 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1755 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1756 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1757 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1758 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1759 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1760 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1761 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1762 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1763 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1764 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1765 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1766 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1767 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1768 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1769 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1770 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1771 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1772 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1773 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1774 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1775 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1776 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1777 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1778 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1779 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1780 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1781 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1782 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1783 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1784 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1785 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1786 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1787 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1788 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1789 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1790 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1791 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1792 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1793 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1794 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1795 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1796 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1797 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1798 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1799 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1800 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1801 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1802 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1803 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1804 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1805 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1806 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1807 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1808 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1809 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1810 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1811 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1812 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1813 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1814 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1815 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1816 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1817 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1818 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1819 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1820 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1821 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1822 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1823 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1824 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1825 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1826 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1827 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1828 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1829 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1830 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1831 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1832 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1833 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1834 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1835 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1836 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1837 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1838 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1839 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1840 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1841 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1842 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1843 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1844 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1845 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1846 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1847 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1848 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1849 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1850 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1851 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1852 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1853 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1854 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1855 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1856 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1857 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1858 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1859 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1860 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1861 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1862 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1863 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1864 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1865 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1866 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1867 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1868 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1869 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1870 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1871 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1872 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1873 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1874 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1875 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1876 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1877 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1878 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1879 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1880 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1881 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1882 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1883 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1884 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1885 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1886 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1887 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1888 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1889 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1890 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1891 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1892 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1893 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1894 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1895 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1896 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1897 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1898 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1899 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1900 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1901 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1902 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1903 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1904 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1905 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1906 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1907 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1908 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1909 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1910 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1911 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1912 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1913 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1914 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1915 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1916 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1917 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1918 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1919 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1920 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1921 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1922 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1923 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1924 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1925 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1926 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1927 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1928 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1929 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1930 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1931 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1932 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1933 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1934 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1935 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1936 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1937 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1938 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1939 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1940 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1941 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1942 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1943 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1944 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1945 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1946 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1947 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1948 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1949 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1950 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1951 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1952 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1953 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1954 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1955 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1956 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1957 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1958 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1959 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1960 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1961 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1962 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1963 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1964 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1965 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1966 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1967 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1968 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1969 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1970 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1971 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1972 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1973 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1974 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1975 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1976 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1977 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1978 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1979 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1980 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1981 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1982 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1983 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1984 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1985 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1986 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1987 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1988 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1989 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1990 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1991 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1992 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1993 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1994 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1995 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1996 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1997 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1998 = Var(within=Reals,bounds=(0,1),initialize=0) m.x1999 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2000 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2001 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2002 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2003 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2004 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2005 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2006 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2007 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2008 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2009 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2010 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2011 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2012 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2013 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2014 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2015 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2016 = Var(within=Reals,bounds=(0,1),initialize=0) m.x2017 = Var(within=Reals,bounds=(0,1),initialize=0) m.b2018 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2019 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2020 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2021 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2022 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2023 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2024 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2025 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2026 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2027 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2028 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2029 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2030 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2031 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2032 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2033 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2034 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2035 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2036 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2037 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2038 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2039 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2040 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2041 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2042 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2043 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2044 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2045 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2046 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2047 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2048 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2049 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2050 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2051 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2052 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2053 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2054 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2055 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2056 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2057 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2058 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2059 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2060 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2061 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2062 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2063 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2064 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2065 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2066 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2067 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2068 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2069 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2070 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2071 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2072 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2073 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2074 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2075 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2076 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2077 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2078 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2079 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2080 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2081 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2082 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2083 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2084 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2085 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2086 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2087 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2088 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2089 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2090 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2091 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2092 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2093 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2094 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2095 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2096 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2097 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2098 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2099 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2100 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2101 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2102 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2103 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2104 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2105 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2106 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2107 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2108 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2109 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2110 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2111 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2112 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2113 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2114 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2115 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2116 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2117 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2118 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2119 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2120 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2121 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2122 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2123 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2124 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2125 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2126 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2127 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2128 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2129 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2130 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2131 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2132 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2133 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2134 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2135 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2136 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2137 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2138 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2139 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2140 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2141 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2142 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2143 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2144 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2145 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2146 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2147 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2148 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2149 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2150 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2151 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2152 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2153 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2154 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2155 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2156 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2157 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2158 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2159 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2160 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2161 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2162 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2163 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2164 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2165 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2166 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2167 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2168 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2169 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2170 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2171 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2172 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2173 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2174 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2175 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2176 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2177 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2178 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2179 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2180 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2181 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2182 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2183 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2184 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2185 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2186 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2187 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2188 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2189 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2190 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2191 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2192 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2193 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2194 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2195 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2196 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2197 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2198 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2199 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2200 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2201 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2202 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2203 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2204 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2205 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2206 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2207 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2208 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2209 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2210 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2211 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2212 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2213 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2214 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2215 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2216 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2217 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2218 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2219 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2220 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2221 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2222 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2223 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2224 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2225 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2226 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2227 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2228 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2229 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2230 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2231 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2232 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2233 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2234 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2235 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2236 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2237 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2238 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2239 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2240 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2241 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2242 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2243 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2244 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2245 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2246 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2247 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2248 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2249 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2250 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2251 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2252 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2253 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2254 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2255 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2256 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2257 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2258 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2259 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2260 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2261 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2262 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2263 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2264 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2265 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2266 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2267 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2268 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2269 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2270 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2271 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2272 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2273 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2274 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2275 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2276 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2277 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2278 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2279 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2280 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2281 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2282 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2283 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2284 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2285 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2286 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2287 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2288 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2289 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2290 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2291 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2292 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2293 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2294 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2295 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2296 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2297 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2298 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2299 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2300 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2301 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2302 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2303 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2304 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2305 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2306 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2307 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2308 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2309 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2310 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2311 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2312 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2313 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2314 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2315 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2316 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2317 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2318 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2319 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2320 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2321 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2322 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2323 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2324 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2325 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2326 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2327 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2328 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2329 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2330 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2331 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2332 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2333 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2334 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2335 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2336 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2337 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2338 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2339 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2340 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2341 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2342 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2343 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2344 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2345 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2346 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2347 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2348 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2349 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2350 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2351 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2352 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2353 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2354 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2355 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2356 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2357 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2358 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2359 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2360 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2361 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2362 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2363 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2364 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2365 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2366 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2367 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2368 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2369 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2370 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2371 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2372 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2373 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2374 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2375 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2376 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2377 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2378 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2379 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2380 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2381 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2382 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2383 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2384 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2385 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2386 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2387 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2388 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2389 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2390 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2391 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2392 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2393 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2394 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2395 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2396 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2397 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2398 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2399 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2400 = Var(within=Binary,bounds=(0,1),initialize=0) m.b2401 = Var(within=Binary,bounds=(0,1),initialize=0) m.x2402 = Var(within=Reals,bounds=(-29845.2,4392.21685883463),initialize=0) m.x2403 = Var(within=Reals,bounds=(-29845.2,4391.21557785575),initialize=0) m.x2404 = Var(within=Reals,bounds=(-29845.2,4390.71493736631),initialize=0) m.x2405 = Var(within=Reals,bounds=(-29845.2,4389.71365638742),initialize=0) m.x2406 = Var(within=Reals,bounds=(-29845.2,4389.21301589798),initialize=0) m.x2407 = Var(within=Reals,bounds=(-29845.2,4388.71237540854),initialize=0) m.x2408 = Var(within=Reals,bounds=(-29845.2,4389.21301589798),initialize=0) m.x2409 = Var(within=Reals,bounds=(-29845.2,5799.34156762907),initialize=0) m.x2410 = Var(within=Reals,bounds=(-29845.2,7908.14477053777),initialize=0) m.x2411 = Var(within=Reals,bounds=(-29845.2,7917.1577277086),initialize=0) m.x2412 = Var(within=Reals,bounds=(-29845.2,7931.57845918192),initialize=0) m.x2413 = Var(within=Reals,bounds=(-29845.2,7947.8017820894),initialize=0) m.x2414 = Var(within=Reals,bounds=(-29845.2,7966.72899214814),initialize=0) m.x2415 = Var(within=Reals,bounds=(-29845.2,7971.23547073355),initialize=0) m.x2416 = Var(within=Reals,bounds=(-29845.2,7957.71603497731),initialize=0) m.x2417 = Var(within=Reals,bounds=(-29845.2,7954.11085210898),initialize=0) m.x2418 = Var(within=Reals,bounds=(-29845.2,7946.90048637232),initialize=0) m.x2419 = Var(within=Reals,bounds=(-29845.2,7935.18364205025),initialize=0) m.x2420 = Var(within=Reals,bounds=(-29845.2,7927.97327631359),initialize=0) m.x2421 = Var(within=Reals,bounds=(-29845.2,5814.55218267061),initialize=0) m.x2422 = Var(within=Reals,bounds=(-29845.2,5811.90685831556),initialize=0) m.x2423 = Var(within=Reals,bounds=(-29845.2,5809.26153396051),initialize=0) m.x2424 = Var(within=Reals,bounds=(-29845.2,5807.27754069422),initialize=0) m.x2425 = Var(within=Reals,bounds=(-29845.2,4394.72006128184),initialize=0) m.x2426 = Var(within=Reals,bounds=(-29845.2,5030.22248868386),initialize=0) m.x2427 = Var(within=Reals,bounds=(-29845.2,5034.79895695254),initialize=0) m.x2428 = Var(within=Reals,bounds=(-29845.2,5039.94748375479),initialize=0) m.x2429 = Var(within=Reals,bounds=(-29845.2,5044.52395202346),initialize=0) m.x2430 = Var(within=Reals,bounds=(-29845.2,5049.67247882572),initialize=0) m.x2431 = Var(within=Reals,bounds=(-29845.2,5049.10042029214),initialize=0) m.x2432 = Var(within=Reals,bounds=(-29845.2,5049.67247882572),initialize=0) m.x2433 = Var(within=Reals,bounds=(-29845.2,5845.63474384245),initialize=0) m.x2434 = Var(within=Reals,bounds=(-29845.2,7971.23547073355),initialize=0) m.x2435 = Var(within=Reals,bounds=(-29845.2,7989.2613850752),initialize=0) m.x2436 = Var(within=Reals,bounds=(-29845.2,7994.6691593777),initialize=0) m.x2437 = Var(within=Reals,bounds=(-29845.2,8635.9428789269),initialize=0) m.x2438 = Var(within=Reals,bounds=(-29845.2,8656.36986791264),initialize=0) m.x2439 = Var(within=Reals,bounds=(-29845.2,9307.59497773271),initialize=0) m.x2440 = Var(within=Reals,bounds=(-29845.2,8666.09700552489),initialize=0) m.x2441 = Var(within=Reals,bounds=(-29845.2,8652.47901286774),initialize=0) m.x2442 = Var(within=Reals,bounds=(-29845.2,8009.9911865681),initialize=0) m.x2443 = Var(within=Reals,bounds=(-29845.2,7989.2613850752),initialize=0) m.x2444 = Var(within=Reals,bounds=(-29845.2,7973.03806216772),initialize=0) m.x2445 = Var(within=Reals,bounds=(-29845.2,5847.61873710874),initialize=0) m.x2446 = Var(within=Reals,bounds=(-29845.2,5838.36010186606),initialize=0) m.x2447 = Var(within=Reals,bounds=(-29845.2,5842.32808839864),initialize=0) m.x2448 = Var(within=Reals,bounds=(-29845.2,5840.34409513235),initialize=0) m.x2449 = Var(within=Reals,bounds=(-29845.2,5021.6416106801),initialize=0) m.obj = Objective(expr= - m.x2402 - m.x2403 - m.x2404 - m.x2405 - m.x2406 - m.x2407 - m.x2408 - m.x2409 - m.x2410 - m.x2411 - m.x2412 - m.x2413 - m.x2414 - m.x2415 - m.x2416 - m.x2417 - m.x2418 - m.x2419 - m.x2420 - m.x2421 - m.x2422 - m.x2423 - m.x2424 - m.x2425 - m.x2426 - m.x2427 - m.x2428 - m.x2429 - m.x2430 - m.x2431 - m.x2432 - m.x2433 - m.x2434 - m.x2435 - m.x2436 - m.x2437 - m.x2438 - m.x2439 - m.x2440 - m.x2441 - m.x2442 - m.x2443 - m.x2444 - m.x2445 - m.x2446 - m.x2447 - m.x2448 - m.x2449, sense=minimize) m.c2 = Constraint(expr= 65*m.x2 + 65*m.x50 + 48*m.x98 + 48*m.x146 + 45*m.x194 + 45*m.x242 + 45*m.x290 + 45*m.x338 - 70.1*m.x386 + 87.7*m.x434 + 660*m.x1634 + 660*m.x1682 + 660*m.x1730 + 660*m.x1778 + 3470*m.x1826 + 3470*m.x1874 + 731.6*m.x1922 + 731.6*m.x1970 + 30*m.b2018 + 30*m.b2066 + 30*m.b2114 + 30*m.b2162 + 40*m.b2210 + 40*m.b2258 + 10*m.b2306 + 10*m.b2354 + m.x2402 == 0) m.c3 = Constraint(expr= 65*m.x3 + 65*m.x51 + 48*m.x99 + 48*m.x147 + 45*m.x195 + 45*m.x243 + 45*m.x291 + 45*m.x339 - 70.1*m.x387 + 87.7*m.x435 + 660*m.x1635 + 660*m.x1683 + 660*m.x1731 + 660*m.x1779 + 3470*m.x1827 + 3470*m.x1875 + 731.6*m.x1923 + 731.6*m.x1971 + 30*m.b2019 + 30*m.b2067 + 30*m.b2115 + 30*m.b2163 + 40*m.b2211 + 40*m.b2259 + 10*m.b2307 + 10*m.b2355 + m.x2403 == 0) m.c4 = Constraint(expr= 65*m.x4 + 65*m.x52 + 48*m.x100 + 48*m.x148 + 45*m.x196 + 45*m.x244 + 45*m.x292 + 45*m.x340 - 70.1*m.x388 + 87.7*m.x436 + 660*m.x1636 + 660*m.x1684 + 660*m.x1732 + 660*m.x1780 + 3470*m.x1828 + 3470*m.x1876 + 731.6*m.x1924 + 731.6*m.x1972 + 30*m.b2020 + 30*m.b2068 + 30*m.b2116 + 30*m.b2164 + 40*m.b2212 + 40*m.b2260 + 10*m.b2308 + 10*m.b2356 + m.x2404 == 0) m.c5 = Constraint(expr= 65*m.x5 + 65*m.x53 + 48*m.x101 + 48*m.x149 + 45*m.x197 + 45*m.x245 + 45*m.x293 + 45*m.x341 - 70.1*m.x389 + 87.7*m.x437 + 660*m.x1637 + 660*m.x1685 + 660*m.x1733 + 660*m.x1781 + 3470*m.x1829 + 3470*m.x1877 + 731.6*m.x1925 + 731.6*m.x1973 + 30*m.b2021 + 30*m.b2069 + 30*m.b2117 + 30*m.b2165 + 40*m.b2213 + 40*m.b2261 + 10*m.b2309 + 10*m.b2357 + m.x2405 == 0) m.c6 = Constraint(expr= 65*m.x6 + 65*m.x54 + 48*m.x102 + 48*m.x150 + 45*m.x198 + 45*m.x246 + 45*m.x294 + 45*m.x342 - 70.1*m.x390 + 87.7*m.x438 + 660*m.x1638 + 660*m.x1686 + 660*m.x1734 + 660*m.x1782 + 3470*m.x1830 + 3470*m.x1878 + 731.6*m.x1926 + 731.6*m.x1974 + 30*m.b2022 + 30*m.b2070 + 30*m.b2118 + 30*m.b2166 + 40*m.b2214 + 40*m.b2262 + 10*m.b2310 + 10*m.b2358 + m.x2406 == 0) m.c7 = Constraint(expr= 65*m.x7 + 65*m.x55 + 48*m.x103 + 48*m.x151 + 45*m.x199 + 45*m.x247 + 45*m.x295 + 45*m.x343 - 70.1*m.x391 + 87.7*m.x439 + 660*m.x1639 + 660*m.x1687 + 660*m.x1735 + 660*m.x1783 + 3470*m.x1831 + 3470*m.x1879 + 731.6*m.x1927 + 731.6*m.x1975 + 30*m.b2023 + 30*m.b2071 + 30*m.b2119 + 30*m.b2167 + 40*m.b2215 + 40*m.b2263 + 10*m.b2311 + 10*m.b2359 + m.x2407 == 0) m.c8 = Constraint(expr= 65*m.x8 + 65*m.x56 + 48*m.x104 + 48*m.x152 + 45*m.x200 + 45*m.x248 + 45*m.x296 + 45*m.x344 - 70.1*m.x392 + 87.7*m.x440 + 660*m.x1640 + 660*m.x1688 + 660*m.x1736 + 660*m.x1784 + 3470*m.x1832 + 3470*m.x1880 + 731.6*m.x1928 + 731.6*m.x1976 + 30*m.b2024 + 30*m.b2072 + 30*m.b2120 + 30*m.b2168 + 40*m.b2216 + 40*m.b2264 + 10*m.b2312 + 10*m.b2360 + m.x2408 == 0) m.c9 = Constraint(expr= 65*m.x9 + 65*m.x57 + 48*m.x105 + 48*m.x153 + 45*m.x201 + 45*m.x249 + 45*m.x297 + 45*m.x345 - 92.6*m.x393 + 115.7*m.x441 + 660*m.x1641 + 660*m.x1689 + 660*m.x1737 + 660*m.x1785 + 3470*m.x1833 + 3470*m.x1881 + 731.6*m.x1929 + 731.6*m.x1977 + 30*m.b2025 + 30*m.b2073 + 30*m.b2121 + 30*m.b2169 + 40*m.b2217 + 40*m.b2265 + 10*m.b2313 + 10*m.b2361 + m.x2409 == 0) m.c10 = Constraint(expr= 65*m.x10 + 65*m.x58 + 48*m.x106 + 48*m.x154 + 45*m.x202 + 45*m.x250 + 45*m.x298 + 45*m.x346 - 126.2*m.x394 + 157.7*m.x442 + 660*m.x1642 + 660*m.x1690 + 660*m.x1738 + 660*m.x1786 + 3470*m.x1834 + 3470*m.x1882 + 731.6*m.x1930 + 731.6*m.x1978 + 30*m.b2026 + 30*m.b2074 + 30*m.b2122 + 30*m.b2170 + 40*m.b2218 + 40*m.b2266 + 10*m.b2314 + 10*m.b2362 + m.x2410 == 0) m.c11 = Constraint(expr= 65*m.x11 + 65*m.x59 + 48*m.x107 + 48*m.x155 + 45*m.x203 + 45*m.x251 + 45*m.x299 + 45*m.x347 - 126.2*m.x395 + 157.7*m.x443 + 660*m.x1643 + 660*m.x1691 + 660*m.x1739 + 660*m.x1787 + 3470*m.x1835 + 3470*m.x1883 + 731.6*m.x1931 + 731.6*m.x1979 + 30*m.b2027 + 30*m.b2075 + 30*m.b2123 + 30*m.b2171 + 40*m.b2219 + 40*m.b2267 + 10*m.b2315 + 10*m.b2363 + m.x2411 == 0) m.c12 = Constraint(expr= 65*m.x12 + 65*m.x60 + 48*m.x108 + 48*m.x156 + 45*m.x204 + 45*m.x252 + 45*m.x300 + 45*m.x348 - 126.2*m.x396 + 157.7*m.x444 + 660*m.x1644 + 660*m.x1692 + 660*m.x1740 + 660*m.x1788 + 3470*m.x1836 + 3470*m.x1884 + 731.6*m.x1932 + 731.6*m.x1980 + 30*m.b2028 + 30*m.b2076 + 30*m.b2124 + 30*m.b2172 + 40*m.b2220 + 40*m.b2268 + 10*m.b2316 + 10*m.b2364 + m.x2412 == 0) m.c13 = Constraint(expr= 65*m.x13 + 65*m.x61 + 48*m.x109 + 48*m.x157 + 45*m.x205 + 45*m.x253 + 45*m.x301 + 45*m.x349 - 126.2*m.x397 + 157.7*m.x445 + 660*m.x1645 + 660*m.x1693 + 660*m.x1741 + 660*m.x1789 + 3470*m.x1837 + 3470*m.x1885 + 731.6*m.x1933 + 731.6*m.x1981 + 30*m.b2029 + 30*m.b2077 + 30*m.b2125 + 30*m.b2173 + 40*m.b2221 + 40*m.b2269 + 10*m.b2317 + 10*m.b2365 + m.x2413 == 0) m.c14 = Constraint(expr= 65*m.x14 + 65*m.x62 + 48*m.x110 + 48*m.x158 + 45*m.x206 + 45*m.x254 + 45*m.x302 + 45*m.x350 - 126.2*m.x398 + 157.7*m.x446 + 660*m.x1646 + 660*m.x1694 + 660*m.x1742 + 660*m.x1790 + 3470*m.x1838 + 3470*m.x1886 + 731.6*m.x1934 + 731.6*m.x1982 + 30*m.b2030 + 30*m.b2078 + 30*m.b2126 + 30*m.b2174 + 40*m.b2222 + 40*m.b2270 + 10*m.b2318 + 10*m.b2366 + m.x2414 == 0) m.c15 = Constraint(expr= 65*m.x15 + 65*m.x63 + 48*m.x111 + 48*m.x159 + 45*m.x207 + 45*m.x255 + 45*m.x303 + 45*m.x351 - 126.2*m.x399 + 157.7*m.x447 + 660*m.x1647 + 660*m.x1695 + 660*m.x1743 + 660*m.x1791 + 3470*m.x1839 + 3470*m.x1887 + 731.6*m.x1935 + 731.6*m.x1983 + 30*m.b2031 + 30*m.b2079 + 30*m.b2127 + 30*m.b2175 + 40*m.b2223 + 40*m.b2271 + 10*m.b2319 + 10*m.b2367 + m.x2415 == 0) m.c16 = Constraint(expr= 65*m.x16 + 65*m.x64 + 48*m.x112 + 48*m.x160 + 45*m.x208 + 45*m.x256 + 45*m.x304 + 45*m.x352 - 126.2*m.x400 + 157.7*m.x448 + 660*m.x1648 + 660*m.x1696 + 660*m.x1744 + 660*m.x1792 + 3470*m.x1840 + 3470*m.x1888 + 731.6*m.x1936 + 731.6*m.x1984 + 30*m.b2032 + 30*m.b2080 + 30*m.b2128 + 30*m.b2176 + 40*m.b2224 + 40*m.b2272 + 10*m.b2320 + 10*m.b2368 + m.x2416 == 0) m.c17 = Constraint(expr= 65*m.x17 + 65*m.x65 + 48*m.x113 + 48*m.x161 + 45*m.x209 + 45*m.x257 + 45*m.x305 + 45*m.x353 - 126.2*m.x401 + 157.7*m.x449 + 660*m.x1649 + 660*m.x1697 + 660*m.x1745 + 660*m.x1793 + 3470*m.x1841 + 3470*m.x1889 + 731.6*m.x1937 + 731.6*m.x1985 + 30*m.b2033 + 30*m.b2081 + 30*m.b2129 + 30*m.b2177 + 40*m.b2225 + 40*m.b2273 + 10*m.b2321 + 10*m.b2369 + m.x2417 == 0) m.c18 = Constraint(expr= 65*m.x18 + 65*m.x66 + 48*m.x114 + 48*m.x162 + 45*m.x210 + 45*m.x258 + 45*m.x306 + 45*m.x354 - 126.2*m.x402 + 157.7*m.x450 + 660*m.x1650 + 660*m.x1698 + 660*m.x1746 + 660*m.x1794 + 3470*m.x1842 + 3470*m.x1890 + 731.6*m.x1938 + 731.6*m.x1986 + 30*m.b2034 + 30*m.b2082 + 30*m.b2130 + 30*m.b2178 + 40*m.b2226 + 40*m.b2274 + 10*m.b2322 + 10*m.b2370 + m.x2418 == 0) m.c19 = Constraint(expr= 65*m.x19 + 65*m.x67 + 48*m.x115 + 48*m.x163 + 45*m.x211 + 45*m.x259 + 45*m.x307 + 45*m.x355 - 126.2*m.x403 + 157.7*m.x451 + 660*m.x1651 + 660*m.x1699 + 660*m.x1747 + 660*m.x1795 + 3470*m.x1843 + 3470*m.x1891 + 731.6*m.x1939 + 731.6*m.x1987 + 30*m.b2035 + 30*m.b2083 + 30*m.b2131 + 30*m.b2179 + 40*m.b2227 + 40*m.b2275 + 10*m.b2323 + 10*m.b2371 + m.x2419 == 0) m.c20 = Constraint(expr= 65*m.x20 + 65*m.x68 + 48*m.x116 + 48*m.x164 + 45*m.x212 + 45*m.x260 + 45*m.x308 + 45*m.x356 - 126.2*m.x404 + 157.7*m.x452 + 660*m.x1652 + 660*m.x1700 + 660*m.x1748 + 660*m.x1796 + 3470*m.x1844 + 3470*m.x1892 + 731.6*m.x1940 + 731.6*m.x1988 + 30*m.b2036 + 30*m.b2084 + 30*m.b2132 + 30*m.b2180 + 40*m.b2228 + 40*m.b2276 + 10*m.b2324 + 10*m.b2372 + m.x2420 == 0) m.c21 = Constraint(expr= 65*m.x21 + 65*m.x69 + 48*m.x117 + 48*m.x165 + 45*m.x213 + 45*m.x261 + 45*m.x309 + 45*m.x357 - 92.6*m.x405 + 115.7*m.x453 + 660*m.x1653 + 660*m.x1701 + 660*m.x1749 + 660*m.x1797 + 3470*m.x1845 + 3470*m.x1893 + 731.6*m.x1941 + 731.6*m.x1989 + 30*m.b2037 + 30*m.b2085 + 30*m.b2133 + 30*m.b2181 + 40*m.b2229 + 40*m.b2277 + 10*m.b2325 + 10*m.b2373 + m.x2421 == 0) m.c22 = Constraint(expr= 65*m.x22 + 65*m.x70 + 48*m.x118 + 48*m.x166 + 45*m.x214 + 45*m.x262 + 45*m.x310 + 45*m.x358 - 92.6*m.x406 + 115.7*m.x454 + 660*m.x1654 + 660*m.x1702 + 660*m.x1750 + 660*m.x1798 + 3470*m.x1846 + 3470*m.x1894 + 731.6*m.x1942 + 731.6*m.x1990 + 30*m.b2038 + 30*m.b2086 + 30*m.b2134 + 30*m.b2182 + 40*m.b2230 + 40*m.b2278 + 10*m.b2326 + 10*m.b2374 + m.x2422 == 0) m.c23 = Constraint(expr= 65*m.x23 + 65*m.x71 + 48*m.x119 + 48*m.x167 + 45*m.x215 + 45*m.x263 + 45*m.x311 + 45*m.x359 - 92.6*m.x407 + 115.7*m.x455 + 660*m.x1655 + 660*m.x1703 + 660*m.x1751 + 660*m.x1799 + 3470*m.x1847 + 3470*m.x1895 + 731.6*m.x1943 + 731.6*m.x1991 + 30*m.b2039 + 30*m.b2087 + 30*m.b2135 + 30*m.b2183 + 40*m.b2231 + 40*m.b2279 + 10*m.b2327 + 10*m.b2375 + m.x2423 == 0) m.c24 = Constraint(expr= 65*m.x24 + 65*m.x72 + 48*m.x120 + 48*m.x168 + 45*m.x216 + 45*m.x264 + 45*m.x312 + 45*m.x360 - 92.6*m.x408 + 115.7*m.x456 + 660*m.x1656 + 660*m.x1704 + 660*m.x1752 + 660*m.x1800 + 3470*m.x1848 + 3470*m.x1896 + 731.6*m.x1944 + 731.6*m.x1992 + 30*m.b2040 + 30*m.b2088 + 30*m.b2136 + 30*m.b2184 + 40*m.b2232 + 40*m.b2280 + 10*m.b2328 + 10*m.b2376 + m.x2424 == 0) m.c25 = Constraint(expr= 65*m.x25 + 65*m.x73 + 48*m.x121 + 48*m.x169 + 45*m.x217 + 45*m.x265 + 45*m.x313 + 45*m.x361 - 70.1*m.x409 + 87.7*m.x457 + 660*m.x1657 + 660*m.x1705 + 660*m.x1753 + 660*m.x1801 + 3470*m.x1849 + 3470*m.x1897 + 731.6*m.x1945 + 731.6*m.x1993 + 30*m.b2041 + 30*m.b2089 + 30*m.b2137 + 30*m.b2185 + 40*m.b2233 + 40*m.b2281 + 10*m.b2329 + 10*m.b2377 + m.x2425 == 0) m.c26 = Constraint(expr= 65*m.x26 + 65*m.x74 + 48*m.x122 + 48*m.x170 + 45*m.x218 + 45*m.x266 + 45*m.x314 + 45*m.x362 - 80.1*m.x410 + 97.7*m.x458 + 660*m.x1658 + 660*m.x1706 + 660*m.x1754 + 660*m.x1802 + 3470*m.x1850 + 3470*m.x1898 + 731.6*m.x1946 + 731.6*m.x1994 + 30*m.b2042 + 30*m.b2090 + 30*m.b2138 + 30*m.b2186 + 40*m.b2234 + 40*m.b2282 + 10*m.b2330 + 10*m.b2378 + m.x2426 == 0) m.c27 = Constraint(expr= 65*m.x27 + 65*m.x75 + 48*m.x123 + 48*m.x171 + 45*m.x219 + 45*m.x267 + 45*m.x315 + 45*m.x363 - 80.1*m.x411 + 97.7*m.x459 + 660*m.x1659 + 660*m.x1707 + 660*m.x1755 + 660*m.x1803 + 3470*m.x1851 + 3470*m.x1899 + 731.6*m.x1947 + 731.6*m.x1995 + 30*m.b2043 + 30*m.b2091 + 30*m.b2139 + 30*m.b2187 + 40*m.b2235 + 40*m.b2283 + 10*m.b2331 + 10*m.b2379 + m.x2427 == 0) m.c28 = Constraint(expr= 65*m.x28 + 65*m.x76 + 48*m.x124 + 48*m.x172 + 45*m.x220 + 45*m.x268 + 45*m.x316 + 45*m.x364 - 80.1*m.x412 + 97.7*m.x460 + 660*m.x1660 + 660*m.x1708 + 660*m.x1756 + 660*m.x1804 + 3470*m.x1852 + 3470*m.x1900 + 731.6*m.x1948 + 731.6*m.x1996 + 30*m.b2044 + 30*m.b2092 + 30*m.b2140 + 30*m.b2188 + 40*m.b2236 + 40*m.b2284 + 10*m.b2332 + 10*m.b2380 + m.x2428 == 0) m.c29 = Constraint(expr= 65*m.x29 + 65*m.x77 + 48*m.x125 + 48*m.x173 + 45*m.x221 + 45*m.x269 + 45*m.x317 + 45*m.x365 - 80.1*m.x413 + 97.7*m.x461 + 660*m.x1661 + 660*m.x1709 + 660*m.x1757 + 660*m.x1805 + 3470*m.x1853 + 3470*m.x1901 + 731.6*m.x1949 + 731.6*m.x1997 + 30*m.b2045 + 30*m.b2093 + 30*m.b2141 + 30*m.b2189 + 40*m.b2237 + 40*m.b2285 + 10*m.b2333 + 10*m.b2381 + m.x2429 == 0) m.c30 = Constraint(expr= 65*m.x30 + 65*m.x78 + 48*m.x126 + 48*m.x174 + 45*m.x222 + 45*m.x270 + 45*m.x318 + 45*m.x366 - 80.1*m.x414 + 97.7*m.x462 + 660*m.x1662 + 660*m.x1710 + 660*m.x1758 + 660*m.x1806 + 3470*m.x1854 + 3470*m.x1902 + 731.6*m.x1950 + 731.6*m.x1998 + 30*m.b2046 + 30*m.b2094 + 30*m.b2142 + 30*m.b2190 + 40*m.b2238 + 40*m.b2286 + 10*m.b2334 + 10*m.b2382 + m.x2430 == 0) m.c31 = Constraint(expr= 65*m.x31 + 65*m.x79 + 48*m.x127 + 48*m.x175 + 45*m.x223 + 45*m.x271 + 45*m.x319 + 45*m.x367 - 80.1*m.x415 + 97.7*m.x463 + 660*m.x1663 + 660*m.x1711 + 660*m.x1759 + 660*m.x1807 + 3470*m.x1855 + 3470*m.x1903 + 731.6*m.x1951 + 731.6*m.x1999 + 30*m.b2047 + 30*m.b2095 + 30*m.b2143 + 30*m.b2191 + 40*m.b2239 + 40*m.b2287 + 10*m.b2335 + 10*m.b2383 + m.x2431 == 0) m.c32 = Constraint(expr= 65*m.x32 + 65*m.x80 + 48*m.x128 + 48*m.x176 + 45*m.x224 + 45*m.x272 + 45*m.x320 + 45*m.x368 - 80.1*m.x416 + 97.7*m.x464 + 660*m.x1664 + 660*m.x1712 + 660*m.x1760 + 660*m.x1808 + 3470*m.x1856 + 3470*m.x1904 + 731.6*m.x1952 + 731.6*m.x2000 + 30*m.b2048 + 30*m.b2096 + 30*m.b2144 + 30*m.b2192 + 40*m.b2240 + 40*m.b2288 + 10*m.b2336 + 10*m.b2384 + m.x2432 == 0) m.c33 = Constraint(expr= 65*m.x33 + 65*m.x81 + 48*m.x129 + 48*m.x177 + 45*m.x225 + 45*m.x273 + 45*m.x321 + 45*m.x369 - 92.6*m.x417 + 195.7*m.x465 + 660*m.x1665 + 660*m.x1713 + 660*m.x1761 + 660*m.x1809 + 3470*m.x1857 + 3470*m.x1905 + 731.6*m.x1953 + 731.6*m.x2001 + 30*m.b2049 + 30*m.b2097 + 30*m.b2145 + 30*m.b2193 + 40*m.b2241 + 40*m.b2289 + 10*m.b2337 + 10*m.b2385 + m.x2433 == 0) m.c34 = Constraint(expr= 65*m.x34 + 65*m.x82 + 48*m.x130 + 48*m.x178 + 45*m.x226 + 45*m.x274 + 45*m.x322 + 45*m.x370 - 126.2*m.x418 + 157.7*m.x466 + 660*m.x1666 + 660*m.x1714 + 660*m.x1762 + 660*m.x1810 + 3470*m.x1858 + 3470*m.x1906 + 731.6*m.x1954 + 731.6*m.x2002 + 30*m.b2050 + 30*m.b2098 + 30*m.b2146 + 30*m.b2194 + 40*m.b2242 + 40*m.b2290 + 10*m.b2338 + 10*m.b2386 + m.x2434 == 0) m.c35 = Constraint(expr= 65*m.x35 + 65*m.x83 + 48*m.x131 + 48*m.x179 + 45*m.x227 + 45*m.x275 + 45*m.x323 + 45*m.x371 - 126.2*m.x419 + 157.7*m.x467 + 660*m.x1667 + 660*m.x1715 + 660*m.x1763 + 660*m.x1811 + 3470*m.x1859 + 3470*m.x1907 + 731.6*m.x1955 + 731.6*m.x2003 + 30*m.b2051 + 30*m.b2099 + 30*m.b2147 + 30*m.b2195 + 40*m.b2243 + 40*m.b2291 + 10*m.b2339 + 10*m.b2387 + m.x2435 == 0) m.c36 = Constraint(expr= 65*m.x36 + 65*m.x84 + 48*m.x132 + 48*m.x180 + 45*m.x228 + 45*m.x276 + 45*m.x324 + 45*m.x372 - 126.2*m.x420 + 157.7*m.x468 + 660*m.x1668 + 660*m.x1716 + 660*m.x1764 + 660*m.x1812 + 3470*m.x1860 + 3470*m.x1908 + 731.6*m.x1956 + 731.6*m.x2004 + 30*m.b2052 + 30*m.b2100 + 30*m.b2148 + 30*m.b2196 + 40*m.b2244 + 40*m.b2292 + 10*m.b2340 + 10*m.b2388 + m.x2436 == 0) m.c37 = Constraint(expr= 65*m.x37 + 65*m.x85 + 48*m.x133 + 48*m.x181 + 45*m.x229 + 45*m.x277 + 45*m.x325 + 45*m.x373 - 136.2*m.x421 + 167.7*m.x469 + 660*m.x1669 + 660*m.x1717 + 660*m.x1765 + 660*m.x1813 + 3470*m.x1861 + 3470*m.x1909 + 731.6*m.x1957 + 731.6*m.x2005 + 30*m.b2053 + 30*m.b2101 + 30*m.b2149 + 30*m.b2197 + 40*m.b2245 + 40*m.b2293 + 10*m.b2341 + 10*m.b2389 + m.x2437 == 0) m.c38 = Constraint(expr= 65*m.x38 + 65*m.x86 + 48*m.x134 + 48*m.x182 + 45*m.x230 + 45*m.x278 + 45*m.x326 + 45*m.x374 - 136.2*m.x422 + 167.7*m.x470 + 660*m.x1670 + 660*m.x1718 + 660*m.x1766 + 660*m.x1814 + 3470*m.x1862 + 3470*m.x1910 + 731.6*m.x1958 + 731.6*m.x2006 + 30*m.b2054 + 30*m.b2102 + 30*m.b2150 + 30*m.b2198 + 40*m.b2246 + 40*m.b2294 + 10*m.b2342 + 10*m.b2390 + m.x2438 == 0) m.c39 = Constraint(expr= 65*m.x39 + 65*m.x87 + 48*m.x135 + 48*m.x183 + 45*m.x231 + 45*m.x279 + 45*m.x327 + 45*m.x375 - 146.2*m.x423 + 167.7*m.x471 + 660*m.x1671 + 660*m.x1719 + 660*m.x1767 + 660*m.x1815 + 3470*m.x1863 + 3470*m.x1911 + 731.6*m.x1959 + 731.6*m.x2007 + 30*m.b2055 + 30*m.b2103 + 30*m.b2151 + 30*m.b2199 + 40*m.b2247 + 40*m.b2295 + 10*m.b2343 + 10*m.b2391 + m.x2439 == 0) m.c40 = Constraint(expr= 65*m.x40 + 65*m.x88 + 48*m.x136 + 48*m.x184 + 45*m.x232 + 45*m.x280 + 45*m.x328 + 45*m.x376 - 136.2*m.x424 + 157.7*m.x472 + 660*m.x1672 + 660*m.x1720 + 660*m.x1768 + 660*m.x1816 + 3470*m.x1864 + 3470*m.x1912 + 731.6*m.x1960 + 731.6*m.x2008 + 30*m.b2056 + 30*m.b2104 + 30*m.b2152 + 30*m.b2200 + 40*m.b2248 + 40*m.b2296 + 10*m.b2344 + 10*m.b2392 + m.x2440 == 0) m.c41 = Constraint(expr= 65*m.x41 + 65*m.x89 + 48*m.x137 + 48*m.x185 + 45*m.x233 + 45*m.x281 + 45*m.x329 + 45*m.x377 - 136.2*m.x425 + 157.7*m.x473 + 660*m.x1673 + 660*m.x1721 + 660*m.x1769 + 660*m.x1817 + 3470*m.x1865 + 3470*m.x1913 + 731.6*m.x1961 + 731.6*m.x2009 + 30*m.b2057 + 30*m.b2105 + 30*m.b2153 + 30*m.b2201 + 40*m.b2249 + 40*m.b2297 + 10*m.b2345 + 10*m.b2393 + m.x2441 == 0) m.c42 = Constraint(expr= 65*m.x42 + 65*m.x90 + 48*m.x138 + 48*m.x186 + 45*m.x234 + 45*m.x282 + 45*m.x330 + 45*m.x378 - 126.2*m.x426 + 157.7*m.x474 + 660*m.x1674 + 660*m.x1722 + 660*m.x1770 + 660*m.x1818 + 3470*m.x1866 + 3470*m.x1914 + 731.6*m.x1962 + 731.6*m.x2010 + 30*m.b2058 + 30*m.b2106 + 30*m.b2154 + 30*m.b2202 + 40*m.b2250 + 40*m.b2298 + 10*m.b2346 + 10*m.b2394 + m.x2442 == 0) m.c43 = Constraint(expr= 65*m.x43 + 65*m.x91 + 48*m.x139 + 48*m.x187 + 45*m.x235 + 45*m.x283 + 45*m.x331 + 45*m.x379 - 126.2*m.x427 + 157.7*m.x475 + 660*m.x1675 + 660*m.x1723 + 660*m.x1771 + 660*m.x1819 + 3470*m.x1867 + 3470*m.x1915 + 731.6*m.x1963 + 731.6*m.x2011 + 30*m.b2059 + 30*m.b2107 + 30*m.b2155 + 30*m.b2203 + 40*m.b2251 + 40*m.b2299 + 10*m.b2347 + 10*m.b2395 + m.x2443 == 0) m.c44 = Constraint(expr= 65*m.x44 + 65*m.x92 + 48*m.x140 + 48*m.x188 + 45*m.x236 + 45*m.x284 + 45*m.x332 + 45*m.x380 - 126.2*m.x428 + 157.7*m.x476 + 660*m.x1676 + 660*m.x1724 + 660*m.x1772 + 660*m.x1820 + 3470*m.x1868 + 3470*m.x1916 + 731.6*m.x1964 + 731.6*m.x2012 + 30*m.b2060 + 30*m.b2108 + 30*m.b2156 + 30*m.b2204 + 40*m.b2252 + 40*m.b2300 + 10*m.b2348 + 10*m.b2396 + m.x2444 == 0) m.c45 = Constraint(expr= 65*m.x45 + 65*m.x93 + 48*m.x141 + 48*m.x189 + 45*m.x237 + 45*m.x285 + 45*m.x333 + 45*m.x381 - 92.6*m.x429 + 115.7*m.x477 + 660*m.x1677 + 660*m.x1725 + 660*m.x1773 + 660*m.x1821 + 3470*m.x1869 + 3470*m.x1917 + 731.6*m.x1965 + 731.6*m.x2013 + 30*m.b2061 + 30*m.b2109 + 30*m.b2157 + 30*m.b2205 + 40*m.b2253 + 40*m.b2301 + 10*m.b2349 + 10*m.b2397 + m.x2445 == 0) m.c46 = Constraint(expr= 65*m.x46 + 65*m.x94 + 48*m.x142 + 48*m.x190 + 45*m.x238 + 45*m.x286 + 45*m.x334 + 45*m.x382 - 92.6*m.x430 + 115.7*m.x478 + 660*m.x1678 + 660*m.x1726 + 660*m.x1774 + 660*m.x1822 + 3470*m.x1870 + 3470*m.x1918 + 731.6*m.x1966 + 731.6*m.x2014 + 30*m.b2062 + 30*m.b2110 + 30*m.b2158 + 30*m.b2206 + 40*m.b2254 + 40*m.b2302 + 10*m.b2350 + 10*m.b2398 + m.x2446 == 0) m.c47 = Constraint(expr= 65*m.x47 + 65*m.x95 + 48*m.x143 + 48*m.x191 + 45*m.x239 + 45*m.x287 + 45*m.x335 + 45*m.x383 - 92.6*m.x431 + 115.7*m.x479 + 660*m.x1679 + 660*m.x1727 + 660*m.x1775 + 660*m.x1823 + 3470*m.x1871 + 3470*m.x1919 + 731.6*m.x1967 + 731.6*m.x2015 + 30*m.b2063 + 30*m.b2111 + 30*m.b2159 + 30*m.b2207 + 40*m.b2255 + 40*m.b2303 + 10*m.b2351 + 10*m.b2399 + m.x2447 == 0) m.c48 = Constraint(expr= 65*m.x48 + 65*m.x96 + 48*m.x144 + 48*m.x192 + 45*m.x240 + 45*m.x288 + 45*m.x336 + 45*m.x384 - 92.6*m.x432 + 115.7*m.x480 + 660*m.x1680 + 660*m.x1728 + 660*m.x1776 + 660*m.x1824 + 3470*m.x1872 + 3470*m.x1920 + 731.6*m.x1968 + 731.6*m.x2016 + 30*m.b2064 + 30*m.b2112 + 30*m.b2160 + 30*m.b2208 + 40*m.b2256 + 40*m.b2304 + 10*m.b2352 + 10*m.b2400 + m.x2448 == 0) m.c49 = Constraint(expr= 65*m.x49 + 65*m.x97 + 48*m.x145 + 48*m.x193 + 45*m.x241 + 45*m.x289 + 45*m.x337 + 45*m.x385 - 80.1*m.x433 + 87.7*m.x481 + 660*m.x1681 + 660*m.x1729 + 660*m.x1777 + 660*m.x1825 + 3470*m.x1873 + 3470*m.x1921 + 731.6*m.x1969 + 731.6*m.x2017 + 30*m.b2065 + 30*m.b2113 + 30*m.b2161 + 30*m.b2209 + 40*m.b2257 + 40*m.b2305 + 10*m.b2353 + 10*m.b2401 + m.x2449 == 0) m.c50 = Constraint(expr= - m.x1634 + m.b2018 - m.b2065 <= 0) m.c51 = Constraint(expr= - m.x1658 - m.b2041 + m.b2042 <= 0) m.c52 = Constraint(expr= - m.x1682 + m.b2066 - m.b2113 <= 0) m.c53 = Constraint(expr= - m.x1706 - m.b2089 + m.b2090 <= 0) m.c54 = Constraint(expr= - m.x1730 + m.b2114 - m.b2161 <= 0) m.c55 = Constraint(expr= - m.x1754 - m.b2137 + m.b2138 <= 0) m.c56 = Constraint(expr= - m.x1778 + m.b2162 - m.b2209 <= 0) m.c57 = Constraint(expr= - m.x1802 - m.b2185 + m.b2186 <= 0) m.c58 = Constraint(expr= - m.x1826 + m.b2210 - m.b2257 <= 0) m.c59 = Constraint(expr= - m.x1850 - m.b2233 + m.b2234 <= 0) m.c60 = Constraint(expr= - m.x1874 + m.b2258 - m.b2305 <= 0) m.c61 = Constraint(expr= - m.x1898 - m.b2281 + m.b2282 <= 0) m.c62 = Constraint(expr= - m.x1922 + m.b2306 - m.b2353 <= 0) m.c63 = Constraint(expr= - m.x1946 - m.b2329 + m.b2330 <= 0) m.c64 = Constraint(expr= - m.x1970 + m.b2354 - m.b2401 <= 0) m.c65 = Constraint(expr= - m.x1994 - m.b2377 + m.b2378 <= 0) m.c66 = Constraint(expr= - m.x1635 - m.b2018 + m.b2019 <= 0) m.c67 = Constraint(expr= - m.x1636 - m.b2019 + m.b2020 <= 0) m.c68 = Constraint(expr= - m.x1637 - m.b2020 + m.b2021 <= 0) m.c69 = Constraint(expr= - m.x1638 - m.b2021 + m.b2022 <= 0) m.c70 = Constraint(expr= - m.x1639 - m.b2022 + m.b2023 <= 0) m.c71 = Constraint(expr= - m.x1640 - m.b2023 + m.b2024 <= 0) m.c72 = Constraint(expr= - m.x1641 - m.b2024 + m.b2025 <= 0) m.c73 = Constraint(expr= - m.x1642 - m.b2025 + m.b2026 <= 0) m.c74 = Constraint(expr= - m.x1643 - m.b2026 + m.b2027 <= 0) m.c75 = Constraint(expr= - m.x1644 - m.b2027 + m.b2028 <= 0) m.c76 = Constraint(expr= - m.x1645 - m.b2028 + m.b2029 <= 0) m.c77 = Constraint(expr= - m.x1646 - m.b2029 + m.b2030 <= 0) m.c78 = Constraint(expr= - m.x1647 - m.b2030 + m.b2031 <= 0) m.c79 = Constraint(expr= - m.x1648 - m.b2031 + m.b2032 <= 0) m.c80 = Constraint(expr= - m.x1649 - m.b2032 + m.b2033 <= 0) m.c81 = Constraint(expr= - m.x1650 - m.b2033 + m.b2034 <= 0) m.c82 = Constraint(expr= - m.x1651 - m.b2034 + m.b2035 <= 0) m.c83 = Constraint(expr= - m.x1652 - m.b2035 + m.b2036 <= 0) m.c84 = Constraint(expr= - m.x1653 - m.b2036 + m.b2037 <= 0) m.c85 = Constraint(expr= - m.x1654 - m.b2037 + m.b2038 <= 0) m.c86 = Constraint(expr= - m.x1655 - m.b2038 + m.b2039 <= 0) m.c87 = Constraint(expr= - m.x1656 - m.b2039 + m.b2040 <= 0) m.c88 = Constraint(expr= - m.x1657 - m.b2040 + m.b2041 <= 0) m.c89 = Constraint(expr= - m.x1659 - m.b2042 + m.b2043 <= 0) m.c90 = Constraint(expr= - m.x1660 - m.b2043 + m.b2044 <= 0) m.c91 = Constraint(expr= - m.x1661 - m.b2044 + m.b2045 <= 0) m.c92 = Constraint(expr= - m.x1662 - m.b2045 + m.b2046 <= 0) m.c93 = Constraint(expr= - m.x1663 - m.b2046 + m.b2047 <= 0) m.c94 = Constraint(expr= - m.x1664 - m.b2047 + m.b2048 <= 0) m.c95 = Constraint(expr= - m.x1665 - m.b2048 + m.b2049 <= 0) m.c96 = Constraint(expr= - m.x1666 - m.b2049 + m.b2050 <= 0) m.c97 = Constraint(expr= - m.x1667 - m.b2050 + m.b2051 <= 0) m.c98 = Constraint(expr= - m.x1668 - m.b2051 + m.b2052 <= 0) m.c99 = Constraint(expr= - m.x1669 - m.b2052 + m.b2053 <= 0) m.c100 = Constraint(expr= - m.x1670 - m.b2053 + m.b2054 <= 0) m.c101 = Constraint(expr= - m.x1671 - m.b2054 + m.b2055 <= 0) m.c102 = Constraint(expr= - m.x1672 - m.b2055 + m.b2056 <= 0) m.c103 = Constraint(expr= - m.x1673 - m.b2056 + m.b2057 <= 0) m.c104 = Constraint(expr= - m.x1674 - m.b2057 + m.b2058 <= 0) m.c105 = Constraint(expr= - m.x1675 - m.b2058 + m.b2059 <= 0) m.c106 = Constraint(expr= - m.x1676 - m.b2059 + m.b2060 <= 0) m.c107 = Constraint(expr= - m.x1677 - m.b2060 + m.b2061 <= 0) m.c108 = Constraint(expr= - m.x1678 - m.b2061 + m.b2062 <= 0) m.c109 = Constraint(expr= - m.x1679 - m.b2062 + m.b2063 <= 0) m.c110 = Constraint(expr= - m.x1680 - m.b2063 + m.b2064 <= 0) m.c111 = Constraint(expr= - m.x1681 - m.b2064 + m.b2065 <= 0) m.c112 = Constraint(expr= - m.x1683 - m.b2066 + m.b2067 <= 0) m.c113 = Constraint(expr= - m.x1684 - m.b2067 + m.b2068 <= 0) m.c114 = Constraint(expr= - m.x1685 - m.b2068 + m.b2069 <= 0) m.c115 = Constraint(expr= - m.x1686 - m.b2069 + m.b2070 <= 0) m.c116 = Constraint(expr= - m.x1687 - m.b2070 + m.b2071 <= 0) m.c117 = Constraint(expr= - m.x1688 - m.b2071 + m.b2072 <= 0) m.c118 = Constraint(expr= - m.x1689 - m.b2072 + m.b2073 <= 0) m.c119 = Constraint(expr= - m.x1690 - m.b2073 + m.b2074 <= 0) m.c120 = Constraint(expr= - m.x1691 - m.b2074 + m.b2075 <= 0) m.c121 = Constraint(expr= - m.x1692 - m.b2075 + m.b2076 <= 0) m.c122 = Constraint(expr= - m.x1693 - m.b2076 + m.b2077 <= 0) m.c123 = Constraint(expr= - m.x1694 - m.b2077 + m.b2078 <= 0) m.c124 = Constraint(expr= - m.x1695 - m.b2078 + m.b2079 <= 0) m.c125 = Constraint(expr= - m.x1696 - m.b2079 + m.b2080 <= 0) m.c126 = Constraint(expr= - m.x1697 - m.b2080 + m.b2081 <= 0) m.c127 = Constraint(expr= - m.x1698 - m.b2081 + m.b2082 <= 0) m.c128 = Constraint(expr= - m.x1699 - m.b2082 + m.b2083 <= 0) m.c129 = Constraint(expr= - m.x1700 - m.b2083 + m.b2084 <= 0) m.c130 = Constraint(expr= - m.x1701 - m.b2084 + m.b2085 <= 0) m.c131 = Constraint(expr= - m.x1702 - m.b2085 + m.b2086 <= 0) m.c132 = Constraint(expr= - m.x1703 - m.b2086 + m.b2087 <= 0) m.c133 = Constraint(expr= - m.x1704 - m.b2087 + m.b2088 <= 0) m.c134 = Constraint(expr= - m.x1705 - m.b2088 + m.b2089 <= 0) m.c135 = Constraint(expr= - m.x1707 - m.b2090 + m.b2091 <= 0) m.c136 = Constraint(expr= - m.x1708 - m.b2091 + m.b2092 <= 0) m.c137 = Constraint(expr= - m.x1709 - m.b2092 + m.b2093 <= 0) m.c138 = Constraint(expr= - m.x1710 - m.b2093 + m.b2094 <= 0) m.c139 = Constraint(expr= - m.x1711 - m.b2094 + m.b2095 <= 0) m.c140 = Constraint(expr= - m.x1712 - m.b2095 + m.b2096 <= 0) m.c141 = Constraint(expr= - m.x1713 - m.b2096 + m.b2097 <= 0) m.c142 = Constraint(expr= - m.x1714 - m.b2097 + m.b2098 <= 0) m.c143 = Constraint(expr= - m.x1715 - m.b2098 + m.b2099 <= 0) m.c144 = Constraint(expr= - m.x1716 - m.b2099 + m.b2100 <= 0) m.c145 = Constraint(expr= - m.x1717 - m.b2100 + m.b2101 <= 0) m.c146 = Constraint(expr= - m.x1718 - m.b2101 + m.b2102 <= 0) m.c147 = Constraint(expr= - m.x1719 - m.b2102 + m.b2103 <= 0) m.c148 = Constraint(expr= - m.x1720 - m.b2103 + m.b2104 <= 0) m.c149 = Constraint(expr= - m.x1721 - m.b2104 + m.b2105 <= 0) m.c150 = Constraint(expr= - m.x1722 - m.b2105 + m.b2106 <= 0) m.c151 = Constraint(expr= - m.x1723 - m.b2106 + m.b2107 <= 0) m.c152 = Constraint(expr= - m.x1724 - m.b2107 + m.b2108 <= 0) m.c153 = Constraint(expr= - m.x1725 - m.b2108 + m.b2109 <= 0) m.c154 = Constraint(expr= - m.x1726 - m.b2109 + m.b2110 <= 0) m.c155 = Constraint(expr= - m.x1727 - m.b2110 + m.b2111 <= 0) m.c156 = Constraint(expr= - m.x1728 - m.b2111 + m.b2112 <= 0) m.c157 = Constraint(expr= - m.x1729 - m.b2112 + m.b2113 <= 0) m.c158 = Constraint(expr= - m.x1731 - m.b2114 + m.b2115 <= 0) m.c159 = Constraint(expr= - m.x1732 - m.b2115 + m.b2116 <= 0) m.c160 = Constraint(expr= - m.x1733 - m.b2116 + m.b2117 <= 0) m.c161 = Constraint(expr= - m.x1734 - m.b2117 + m.b2118 <= 0) m.c162 = Constraint(expr= - m.x1735 - m.b2118 + m.b2119 <= 0) m.c163 = Constraint(expr= - m.x1736 - m.b2119 + m.b2120 <= 0) m.c164 = Constraint(expr= - m.x1737 - m.b2120 + m.b2121 <= 0) m.c165 = Constraint(expr= - m.x1738 - m.b2121 + m.b2122 <= 0) m.c166 = Constraint(expr= - m.x1739 - m.b2122 + m.b2123 <= 0) m.c167 = Constraint(expr= - m.x1740 - m.b2123 + m.b2124 <= 0) m.c168 = Constraint(expr= - m.x1741 - m.b2124 + m.b2125 <= 0) m.c169 = Constraint(expr= - m.x1742 - m.b2125 + m.b2126 <= 0) m.c170 = Constraint(expr= - m.x1743 - m.b2126 + m.b2127 <= 0) m.c171 = Constraint(expr= - m.x1744 - m.b2127 + m.b2128 <= 0) m.c172 = Constraint(expr= - m.x1745 - m.b2128 + m.b2129 <= 0) m.c173 = Constraint(expr= - m.x1746 - m.b2129 + m.b2130 <= 0) m.c174 = Constraint(expr= - m.x1747 - m.b2130 + m.b2131 <= 0) m.c175 = Constraint(expr= - m.x1748 - m.b2131 + m.b2132 <= 0) m.c176 = Constraint(expr= - m.x1749 - m.b2132 + m.b2133 <= 0) m.c177 = Constraint(expr= - m.x1750 - m.b2133 + m.b2134 <= 0) m.c178 = Constraint(expr= - m.x1751 - m.b2134 + m.b2135 <= 0) m.c179 = Constraint(expr= - m.x1752 - m.b2135 + m.b2136 <= 0) m.c180 = Constraint(expr= - m.x1753 - m.b2136 + m.b2137 <= 0) m.c181 = Constraint(expr= - m.x1755 - m.b2138 + m.b2139 <= 0) m.c182 = Constraint(expr= - m.x1756 - m.b2139 + m.b2140 <= 0) m.c183 = Constraint(expr= - m.x1757 - m.b2140 + m.b2141 <= 0) m.c184 = Constraint(expr= - m.x1758 - m.b2141 + m.b2142 <= 0) m.c185 = Constraint(expr= - m.x1759 - m.b2142 + m.b2143 <= 0) m.c186 = Constraint(expr= - m.x1760 - m.b2143 + m.b2144 <= 0) m.c187 = Constraint(expr= - m.x1761 - m.b2144 + m.b2145 <= 0) m.c188 = Constraint(expr= - m.x1762 - m.b2145 + m.b2146 <= 0) m.c189 = Constraint(expr= - m.x1763 - m.b2146 + m.b2147 <= 0) m.c190 = Constraint(expr= - m.x1764 - m.b2147 + m.b2148 <= 0) m.c191 = Constraint(expr= - m.x1765 - m.b2148 + m.b2149 <= 0) m.c192 = Constraint(expr= - m.x1766 - m.b2149 + m.b2150 <= 0) m.c193 = Constraint(expr= - m.x1767 - m.b2150 + m.b2151 <= 0) m.c194 = Constraint(expr= - m.x1768 - m.b2151 + m.b2152 <= 0) m.c195 = Constraint(expr= - m.x1769 - m.b2152 + m.b2153 <= 0) m.c196 = Constraint(expr= - m.x1770 - m.b2153 + m.b2154 <= 0) m.c197 = Constraint(expr= - m.x1771 - m.b2154 + m.b2155 <= 0) m.c198 = Constraint(expr= - m.x1772 - m.b2155 + m.b2156 <= 0) m.c199 = Constraint(expr= - m.x1773 - m.b2156 + m.b2157 <= 0) m.c200 = Constraint(expr= - m.x1774 - m.b2157 + m.b2158 <= 0) m.c201 = Constraint(expr= - m.x1775 - m.b2158 + m.b2159 <= 0) m.c202 = Constraint(expr= - m.x1776 - m.b2159 + m.b2160 <= 0) m.c203 = Constraint(expr= - m.x1777 - m.b2160 + m.b2161 <= 0) m.c204 = Constraint(expr= - m.x1779 - m.b2162 + m.b2163 <= 0) m.c205 = Constraint(expr= - m.x1780 - m.b2163 + m.b2164 <= 0) m.c206 = Constraint(expr= - m.x1781 - m.b2164 + m.b2165 <= 0) m.c207 = Constraint(expr= - m.x1782 - m.b2165 + m.b2166 <= 0) m.c208 = Constraint(expr= - m.x1783 - m.b2166 + m.b2167 <= 0) m.c209 = Constraint(expr= - m.x1784 - m.b2167 + m.b2168 <= 0) m.c210 = Constraint(expr= - m.x1785 - m.b2168 + m.b2169 <= 0) m.c211 = Constraint(expr= - m.x1786 - m.b2169 + m.b2170 <= 0) m.c212 = Constraint(expr= - m.x1787 - m.b2170 + m.b2171 <= 0) m.c213 = Constraint(expr= - m.x1788 - m.b2171 + m.b2172 <= 0) m.c214 = Constraint(expr= - m.x1789 - m.b2172 + m.b2173 <= 0) m.c215 = Constraint(expr= - m.x1790 - m.b2173 + m.b2174 <= 0) m.c216 = Constraint(expr= - m.x1791 - m.b2174 + m.b2175 <= 0) m.c217 = Constraint(expr= - m.x1792 - m.b2175 + m.b2176 <= 0) m.c218 = Constraint(expr= - m.x1793 - m.b2176 + m.b2177 <= 0) m.c219 = Constraint(expr= - m.x1794 - m.b2177 + m.b2178 <= 0) m.c220 = Constraint(expr= - m.x1795 - m.b2178 + m.b2179 <= 0) m.c221 = Constraint(expr= - m.x1796 - m.b2179 + m.b2180 <= 0) m.c222 = Constraint(expr= - m.x1797 - m.b2180 + m.b2181 <= 0) m.c223 = Constraint(expr= - m.x1798 - m.b2181 + m.b2182 <= 0) m.c224 = Constraint(expr= - m.x1799 - m.b2182 + m.b2183 <= 0) m.c225 = Constraint(expr= - m.x1800 - m.b2183 + m.b2184 <= 0) m.c226 = Constraint(expr= - m.x1801 - m.b2184 + m.b2185 <= 0) m.c227 = Constraint(expr= - m.x1803 - m.b2186 + m.b2187 <= 0) m.c228 = Constraint(expr= - m.x1804 - m.b2187 + m.b2188 <= 0) m.c229 = Constraint(expr= - m.x1805 - m.b2188 + m.b2189 <= 0) m.c230 = Constraint(expr= - m.x1806 - m.b2189 + m.b2190 <= 0) m.c231 = Constraint(expr= - m.x1807 - m.b2190 + m.b2191 <= 0) m.c232 = Constraint(expr= - m.x1808 - m.b2191 + m.b2192 <= 0) m.c233 = Constraint(expr= - m.x1809 - m.b2192 + m.b2193 <= 0) m.c234 = Constraint(expr= - m.x1810 - m.b2193 + m.b2194 <= 0) m.c235 = Constraint(expr= - m.x1811 - m.b2194 + m.b2195 <= 0) m.c236 = Constraint(expr= - m.x1812 - m.b2195 + m.b2196 <= 0) m.c237 = Constraint(expr= - m.x1813 - m.b2196 + m.b2197 <= 0) m.c238 = Constraint(expr= - m.x1814 - m.b2197 + m.b2198 <= 0) m.c239 = Constraint(expr= - m.x1815 - m.b2198 + m.b2199 <= 0) m.c240 = Constraint(expr= - m.x1816 - m.b2199 + m.b2200 <= 0) m.c241 = Constraint(expr= - m.x1817 - m.b2200 + m.b2201 <= 0) m.c242 = Constraint(expr= - m.x1818 - m.b2201 + m.b2202 <= 0) m.c243 = Constraint(expr= - m.x1819 - m.b2202 + m.b2203 <= 0) m.c244 = Constraint(expr= - m.x1820 - m.b2203 + m.b2204 <= 0) m.c245 = Constraint(expr= - m.x1821 - m.b2204 + m.b2205 <= 0) m.c246 = Constraint(expr= - m.x1822 - m.b2205 + m.b2206 <= 0) m.c247 = Constraint(expr= - m.x1823 - m.b2206 + m.b2207 <= 0) m.c248 = Constraint(expr= - m.x1824 - m.b2207 + m.b2208 <= 0) m.c249 = Constraint(expr= - m.x1825 - m.b2208 + m.b2209 <= 0) m.c250 = Constraint(expr= - m.x1827 - m.b2210 + m.b2211 <= 0) m.c251 = Constraint(expr= - m.x1828 - m.b2211 + m.b2212 <= 0) m.c252 = Constraint(expr= - m.x1829 - m.b2212 + m.b2213 <= 0) m.c253 = Constraint(expr= - m.x1830 - m.b2213 + m.b2214 <= 0) m.c254 = Constraint(expr= - m.x1831 - m.b2214 + m.b2215 <= 0) m.c255 = Constraint(expr= - m.x1832 - m.b2215 + m.b2216 <= 0) m.c256 = Constraint(expr= - m.x1833 - m.b2216 + m.b2217 <= 0) m.c257 = Constraint(expr= - m.x1834 - m.b2217 + m.b2218 <= 0) m.c258 = Constraint(expr= - m.x1835 - m.b2218 + m.b2219 <= 0) m.c259 = Constraint(expr= - m.x1836 - m.b2219 + m.b2220 <= 0) m.c260 = Constraint(expr= - m.x1837 - m.b2220 + m.b2221 <= 0) m.c261 = Constraint(expr= - m.x1838 - m.b2221 + m.b2222 <= 0) m.c262 = Constraint(expr= - m.x1839 - m.b2222 + m.b2223 <= 0) m.c263 = Constraint(expr= - m.x1840 - m.b2223 + m.b2224 <= 0) m.c264 = Constraint(expr= - m.x1841 - m.b2224 + m.b2225 <= 0) m.c265 = Constraint(expr= - m.x1842 - m.b2225 + m.b2226 <= 0) m.c266 = Constraint(expr= - m.x1843 - m.b2226 + m.b2227 <= 0) m.c267 = Constraint(expr= - m.x1844 - m.b2227 + m.b2228 <= 0) m.c268 = Constraint(expr= - m.x1845 - m.b2228 + m.b2229 <= 0) m.c269 = Constraint(expr= - m.x1846 - m.b2229 + m.b2230 <= 0) m.c270 = Constraint(expr= - m.x1847 - m.b2230 + m.b2231 <= 0) m.c271 = Constraint(expr= - m.x1848 - m.b2231 + m.b2232 <= 0) m.c272 = Constraint(expr= - m.x1849 - m.b2232 + m.b2233 <= 0) m.c273 = Constraint(expr= - m.x1851 - m.b2234 + m.b2235 <= 0) m.c274 = Constraint(expr= - m.x1852 - m.b2235 + m.b2236 <= 0) m.c275 = Constraint(expr= - m.x1853 - m.b2236 + m.b2237 <= 0) m.c276 = Constraint(expr= - m.x1854 - m.b2237 + m.b2238 <= 0) m.c277 = Constraint(expr= - m.x1855 - m.b2238 + m.b2239 <= 0) m.c278 = Constraint(expr= - m.x1856 - m.b2239 + m.b2240 <= 0) m.c279 = Constraint(expr= - m.x1857 - m.b2240 + m.b2241 <= 0) m.c280 = Constraint(expr= - m.x1858 - m.b2241 + m.b2242 <= 0) m.c281 = Constraint(expr= - m.x1859 - m.b2242 + m.b2243 <= 0) m.c282 = Constraint(expr= - m.x1860 - m.b2243 + m.b2244 <= 0) m.c283 = Constraint(expr= - m.x1861 - m.b2244 + m.b2245 <= 0) m.c284 = Constraint(expr= - m.x1862 - m.b2245 + m.b2246 <= 0) m.c285 = Constraint(expr= - m.x1863 - m.b2246 + m.b2247 <= 0) m.c286 = Constraint(expr= - m.x1864 - m.b2247 + m.b2248 <= 0) m.c287 = Constraint(expr= - m.x1865 - m.b2248 + m.b2249 <= 0) m.c288 = Constraint(expr= - m.x1866 - m.b2249 + m.b2250 <= 0) m.c289 = Constraint(expr= - m.x1867 - m.b2250 + m.b2251 <= 0) m.c290 = Constraint(expr= - m.x1868 - m.b2251 + m.b2252 <= 0) m.c291 = Constraint(expr= - m.x1869 - m.b2252 + m.b2253 <= 0) m.c292 = Constraint(expr= - m.x1870 - m.b2253 + m.b2254 <= 0) m.c293 = Constraint(expr= - m.x1871 - m.b2254 + m.b2255 <= 0) m.c294 = Constraint(expr= - m.x1872 - m.b2255 + m.b2256 <= 0) m.c295 = Constraint(expr= - m.x1873 - m.b2256 + m.b2257 <= 0) m.c296 = Constraint(expr= - m.x1875 - m.b2258 + m.b2259 <= 0) m.c297 = Constraint(expr= - m.x1876 - m.b2259 + m.b2260 <= 0) m.c298 = Constraint(expr= - m.x1877 - m.b2260 + m.b2261 <= 0) m.c299 = Constraint(expr= - m.x1878 - m.b2261 + m.b2262 <= 0) m.c300 = Constraint(expr= - m.x1879 - m.b2262 + m.b2263 <= 0) m.c301 = Constraint(expr= - m.x1880 - m.b2263 + m.b2264 <= 0) m.c302 = Constraint(expr= - m.x1881 - m.b2264 + m.b2265 <= 0) m.c303 = Constraint(expr= - m.x1882 - m.b2265 + m.b2266 <= 0) m.c304 = Constraint(expr= - m.x1883 - m.b2266 + m.b2267 <= 0) m.c305 = Constraint(expr= - m.x1884 - m.b2267 + m.b2268 <= 0) m.c306 = Constraint(expr= - m.x1885 - m.b2268 + m.b2269 <= 0) m.c307 = Constraint(expr= - m.x1886 - m.b2269 + m.b2270 <= 0) m.c308 = Constraint(expr= - m.x1887 - m.b2270 + m.b2271 <= 0) m.c309 = Constraint(expr= - m.x1888 - m.b2271 + m.b2272 <= 0) m.c310 = Constraint(expr= - m.x1889 - m.b2272 + m.b2273 <= 0) m.c311 = Constraint(expr= - m.x1890 - m.b2273 + m.b2274 <= 0) m.c312 = Constraint(expr= - m.x1891 - m.b2274 + m.b2275 <= 0) m.c313 = Constraint(expr= - m.x1892 - m.b2275 + m.b2276 <= 0) m.c314 = Constraint(expr= - m.x1893 - m.b2276 + m.b2277 <= 0) m.c315 = Constraint(expr= - m.x1894 - m.b2277 + m.b2278 <= 0) m.c316 = Constraint(expr= - m.x1895 - m.b2278 + m.b2279 <= 0) m.c317 = Constraint(expr= - m.x1896 - m.b2279 + m.b2280 <= 0) m.c318 = Constraint(expr= - m.x1897 - m.b2280 + m.b2281 <= 0) m.c319 = Constraint(expr= - m.x1899 - m.b2282 + m.b2283 <= 0) m.c320 = Constraint(expr= - m.x1900 - m.b2283 + m.b2284 <= 0) m.c321 = Constraint(expr= - m.x1901 - m.b2284 + m.b2285 <= 0) m.c322 = Constraint(expr= - m.x1902 - m.b2285 + m.b2286 <= 0) m.c323 = Constraint(expr= - m.x1903 - m.b2286 + m.b2287 <= 0) m.c324 = Constraint(expr= - m.x1904 - m.b2287 + m.b2288 <= 0) m.c325 = Constraint(expr= - m.x1905 - m.b2288 + m.b2289 <= 0) m.c326 = Constraint(expr= - m.x1906 - m.b2289 + m.b2290 <= 0) m.c327 = Constraint(expr= - m.x1907 - m.b2290 + m.b2291 <= 0) m.c328 = Constraint(expr= - m.x1908 - m.b2291 + m.b2292 <= 0) m.c329 = Constraint(expr= - m.x1909 - m.b2292 + m.b2293 <= 0) m.c330 = Constraint(expr= - m.x1910 - m.b2293 + m.b2294 <= 0) m.c331 = Constraint(expr= - m.x1911 - m.b2294 + m.b2295 <= 0) m.c332 = Constraint(expr= - m.x1912 - m.b2295 + m.b2296 <= 0) m.c333 = Constraint(expr= - m.x1913 - m.b2296 + m.b2297 <= 0) m.c334 = Constraint(expr= - m.x1914 - m.b2297 + m.b2298 <= 0) m.c335 = Constraint(expr= - m.x1915 - m.b2298 + m.b2299 <= 0) m.c336 = Constraint(expr= - m.x1916 - m.b2299 + m.b2300 <= 0) m.c337 = Constraint(expr= - m.x1917 - m.b2300 + m.b2301 <= 0) m.c338 = Constraint(expr= - m.x1918 - m.b2301 + m.b2302 <= 0) m.c339 = Constraint(expr= - m.x1919 - m.b2302 + m.b2303 <= 0) m.c340 = Constraint(expr= - m.x1920 - m.b2303 + m.b2304 <= 0) m.c341 = Constraint(expr= - m.x1921 - m.b2304 + m.b2305 <= 0) m.c342 = Constraint(expr= - m.x1923 - m.b2306 + m.b2307 <= 0) m.c343 = Constraint(expr= - m.x1924 - m.b2307 + m.b2308 <= 0) m.c344 = Constraint(expr= - m.x1925 - m.b2308 + m.b2309 <= 0) m.c345 = Constraint(expr= - m.x1926 - m.b2309 + m.b2310 <= 0) m.c346 = Constraint(expr= - m.x1927 - m.b2310 + m.b2311 <= 0) m.c347 = Constraint(expr= - m.x1928 - m.b2311 + m.b2312 <= 0) m.c348 = Constraint(expr= - m.x1929 - m.b2312 + m.b2313 <= 0) m.c349 = Constraint(expr= - m.x1930 - m.b2313 + m.b2314 <= 0) m.c350 = Constraint(expr= - m.x1931 - m.b2314 + m.b2315 <= 0) m.c351 = Constraint(expr= - m.x1932 - m.b2315 + m.b2316 <= 0) m.c352 = Constraint(expr= - m.x1933 - m.b2316 + m.b2317 <= 0) m.c353 = Constraint(expr= - m.x1934 - m.b2317 + m.b2318 <= 0) m.c354 = Constraint(expr= - m.x1935 - m.b2318 + m.b2319 <= 0) m.c355 = Constraint(expr= - m.x1936 - m.b2319 + m.b2320 <= 0) m.c356 = Constraint(expr= - m.x1937 - m.b2320 + m.b2321 <= 0) m.c357 = Constraint(expr= - m.x1938 - m.b2321 + m.b2322 <= 0) m.c358 = Constraint(expr= - m.x1939 - m.b2322 + m.b2323 <= 0) m.c359 = Constraint(expr= - m.x1940 - m.b2323 + m.b2324 <= 0) m.c360 = Constraint(expr= - m.x1941 - m.b2324 + m.b2325 <= 0) m.c361 = Constraint(expr= - m.x1942 - m.b2325 + m.b2326 <= 0) m.c362 = Constraint(expr= - m.x1943 - m.b2326 + m.b2327 <= 0) m.c363 = Constraint(expr= - m.x1944 - m.b2327 + m.b2328 <= 0) m.c364 = Constraint(expr= - m.x1945 - m.b2328 + m.b2329 <= 0) m.c365 = Constraint(expr= - m.x1947 - m.b2330 + m.b2331 <= 0) m.c366 = Constraint(expr= - m.x1948 - m.b2331 + m.b2332 <= 0) m.c367 = Constraint(expr= - m.x1949 - m.b2332 + m.b2333 <= 0) m.c368 = Constraint(expr= - m.x1950 - m.b2333 + m.b2334 <= 0) m.c369 = Constraint(expr= - m.x1951 - m.b2334 + m.b2335 <= 0) m.c370 = Constraint(expr= - m.x1952 - m.b2335 + m.b2336 <= 0) m.c371 = Constraint(expr= - m.x1953 - m.b2336 + m.b2337 <= 0) m.c372 = Constraint(expr= - m.x1954 - m.b2337 + m.b2338 <= 0) m.c373 = Constraint(expr= - m.x1955 - m.b2338 + m.b2339 <= 0) m.c374 = Constraint(expr= - m.x1956 - m.b2339 + m.b2340 <= 0) m.c375 = Constraint(expr= - m.x1957 - m.b2340 + m.b2341 <= 0) m.c376 = Constraint(expr= - m.x1958 - m.b2341 + m.b2342 <= 0) m.c377 = Constraint(expr= - m.x1959 - m.b2342 + m.b2343 <= 0) m.c378 = Constraint(expr= - m.x1960 - m.b2343 + m.b2344 <= 0) m.c379 = Constraint(expr= - m.x1961 - m.b2344 + m.b2345 <= 0) m.c380 = Constraint(expr= - m.x1962 - m.b2345 + m.b2346 <= 0) m.c381 = Constraint(expr= - m.x1963 - m.b2346 + m.b2347 <= 0) m.c382 = Constraint(expr= - m.x1964 - m.b2347 + m.b2348 <= 0) m.c383 = Constraint(expr= - m.x1965 - m.b2348 + m.b2349 <= 0) m.c384 = Constraint(expr= - m.x1966 - m.b2349 + m.b2350 <= 0) m.c385 = Constraint(expr= - m.x1967 - m.b2350 + m.b2351 <= 0) m.c386 = Constraint(expr= - m.x1968 - m.b2351 + m.b2352 <= 0) m.c387 = Constraint(expr= - m.x1969 - m.b2352 + m.b2353 <= 0) m.c388 = Constraint(expr= - m.x1971 - m.b2354 + m.b2355 <= 0) m.c389 = Constraint(expr= - m.x1972 - m.b2355 + m.b2356 <= 0) m.c390 = Constraint(expr= - m.x1973 - m.b2356 + m.b2357 <= 0) m.c391 = Constraint(expr= - m.x1974 - m.b2357 + m.b2358 <= 0) m.c392 = Constraint(expr= - m.x1975 - m.b2358 + m.b2359 <= 0) m.c393 = Constraint(expr= - m.x1976 - m.b2359 + m.b2360 <= 0) m.c394 = Constraint(expr= - m.x1977 - m.b2360 + m.b2361 <= 0) m.c395 = Constraint(expr= - m.x1978 - m.b2361 + m.b2362 <= 0) m.c396 = Constraint(expr= - m.x1979 - m.b2362 + m.b2363 <= 0) m.c397 = Constraint(expr= - m.x1980 - m.b2363 + m.b2364 <= 0) m.c398 = Constraint(expr= - m.x1981 - m.b2364 + m.b2365 <= 0) m.c399 = Constraint(expr= - m.x1982 - m.b2365 + m.b2366 <= 0) m.c400 = Constraint(expr= - m.x1983 - m.b2366 + m.b2367 <= 0) m.c401 = Constraint(expr= - m.x1984 - m.b2367 + m.b2368 <= 0) m.c402 = Constraint(expr= - m.x1985 - m.b2368 + m.b2369 <= 0) m.c403 = Constraint(expr= - m.x1986 - m.b2369 + m.b2370 <= 0) m.c404 = Constraint(expr= - m.x1987 - m.b2370 + m.b2371 <= 0) m.c405 = Constraint(expr= - m.x1988 - m.b2371 + m.b2372 <= 0) m.c406 = Constraint(expr= - m.x1989 - m.b2372 + m.b2373 <= 0) m.c407 = Constraint(expr= - m.x1990 - m.b2373 + m.b2374 <= 0) m.c408 = Constraint(expr= - m.x1991 - m.b2374 + m.b2375 <= 0) m.c409 = Constraint(expr= - m.x1992 - m.b2375 + m.b2376 <= 0) m.c410 = Constraint(expr= - m.x1993 - m.b2376 + m.b2377 <= 0) m.c411 = Constraint(expr= - m.x1995 - m.b2378 + m.b2379 <= 0) m.c412 = Constraint(expr= - m.x1996 - m.b2379 + m.b2380 <= 0) m.c413 = Constraint(expr= - m.x1997 - m.b2380 + m.b2381 <= 0) m.c414 = Constraint(expr= - m.x1998 - m.b2381 + m.b2382 <= 0) m.c415 = Constraint(expr= - m.x1999 - m.b2382 + m.b2383 <= 0) m.c416 = Constraint(expr= - m.x2000 - m.b2383 + m.b2384 <= 0) m.c417 = Constraint(expr= - m.x2001 - m.b2384 + m.b2385 <= 0) m.c418 = Constraint(expr= - m.x2002 - m.b2385 + m.b2386 <= 0) m.c419 = Constraint(expr= - m.x2003 - m.b2386 + m.b2387 <= 0) m.c420 = Constraint(expr= - m.x2004 - m.b2387 + m.b2388 <= 0) m.c421 = Constraint(expr= - m.x2005 - m.b2388 + m.b2389 <= 0) m.c422 = Constraint(expr= - m.x2006 - m.b2389 + m.b2390 <= 0) m.c423 = Constraint(expr= - m.x2007 - m.b2390 + m.b2391 <= 0) m.c424 = Constraint(expr= - m.x2008 - m.b2391 + m.b2392 <= 0) m.c425 = Constraint(expr= - m.x2009 - m.b2392 + m.b2393 <= 0) m.c426 = Constraint(expr= - m.x2010 - m.b2393 + m.b2394 <= 0) m.c427 = Constraint(expr= - m.x2011 - m.b2394 + m.b2395 <= 0) m.c428 = Constraint(expr= - m.x2012 - m.b2395 + m.b2396 <= 0) m.c429 = Constraint(expr= - m.x2013 - m.b2396 + m.b2397 <= 0) m.c430 = Constraint(expr= - m.x2014 - m.b2397 + m.b2398 <= 0) m.c431 = Constraint(expr= - m.x2015 - m.b2398 + m.b2399 <= 0) m.c432 = Constraint(expr= - m.x2016 - m.b2399 + m.b2400 <= 0) m.c433 = Constraint(expr= - m.x2017 - m.b2400 + m.b2401 <= 0) m.c434 = Constraint(expr= m.x1634 + m.x1635 + m.x1636 + m.x1637 + m.x1638 + m.x1639 + m.x1640 + m.x1641 + m.x1642 + m.x1643 + m.x1644 + m.x1645 + m.x1646 + m.x1647 + m.x1648 + m.x1649 + m.x1650 + m.x1651 + m.x1652 + m.x1653 + m.x1654 + m.x1655 + m.x1656 + m.x1657 <= 4) m.c435 = Constraint(expr= m.x1682 + m.x1683 + m.x1684 + m.x1685 + m.x1686 + m.x1687 + m.x1688 + m.x1689 + m.x1690 + m.x1691 + m.x1692 + m.x1693 + m.x1694 + m.x1695 + m.x1696 + m.x1697 + m.x1698 + m.x1699 + m.x1700 + m.x1701 + m.x1702 + m.x1703 + m.x1704 + m.x1705 <= 4) m.c436 = Constraint(expr= m.x1730 + m.x1731 + m.x1732 + m.x1733 + m.x1734 + m.x1735 + m.x1736 + m.x1737 + m.x1738 + m.x1739 + m.x1740 + m.x1741 + m.x1742 + m.x1743 + m.x1744 + m.x1745 + m.x1746 + m.x1747 + m.x1748 + m.x1749 + m.x1750 + m.x1751 + m.x1752 + m.x1753 <= 4) m.c437 = Constraint(expr= m.x1778 + m.x1779 + m.x1780 + m.x1781 + m.x1782 + m.x1783 + m.x1784 + m.x1785 + m.x1786 + m.x1787 + m.x1788 + m.x1789 + m.x1790 + m.x1791 + m.x1792 + m.x1793 + m.x1794 + m.x1795 + m.x1796 + m.x1797 + m.x1798 + m.x1799 + m.x1800 + m.x1801 <= 4) m.c438 = Constraint(expr= m.x1826 + m.x1827 + m.x1828 + m.x1829 + m.x1830 + m.x1831 + m.x1832 + m.x1833 + m.x1834 + m.x1835 + m.x1836 + m.x1837 + m.x1838 + m.x1839 + m.x1840 + m.x1841 + m.x1842 + m.x1843 + m.x1844 + m.x1845 + m.x1846 + m.x1847 + m.x1848 + m.x1849 <= 2) m.c439 = Constraint(expr= m.x1874 + m.x1875 + m.x1876 + m.x1877 + m.x1878 + m.x1879 + m.x1880 + m.x1881 + m.x1882 + m.x1883 + m.x1884 + m.x1885 + m.x1886 + m.x1887 + m.x1888 + m.x1889 + m.x1890 + m.x1891 + m.x1892 + m.x1893 + m.x1894 + m.x1895 + m.x1896 + m.x1897 <= 2) m.c440 = Constraint(expr= m.x1922 + m.x1923 + m.x1924 + m.x1925 + m.x1926 + m.x1927 + m.x1928 + m.x1929 + m.x1930 + m.x1931 + m.x1932 + m.x1933 + m.x1934 + m.x1935 + m.x1936 + m.x1937 + m.x1938 + m.x1939 + m.x1940 + m.x1941 + m.x1942 + m.x1943 + m.x1944 + m.x1945 <= 10000) m.c441 = Constraint(expr= m.x1970 + m.x1971 + m.x1972 + m.x1973 + m.x1974 + m.x1975 + m.x1976 + m.x1977 + m.x1978 + m.x1979 + m.x1980 + m.x1981 + m.x1982 + m.x1983 + m.x1984 + m.x1985 + m.x1986 + m.x1987 + m.x1988 + m.x1989 + m.x1990 + m.x1991 + m.x1992 + m.x1993 <= 10000) m.c442 = Constraint(expr= m.x1658 + m.x1659 + m.x1660 + m.x1661 + m.x1662 + m.x1663 + m.x1664 + m.x1665 + m.x1666 + m.x1667 + m.x1668 + m.x1669 + m.x1670 + m.x1671 + m.x1672 + m.x1673 + m.x1674 + m.x1675 + m.x1676 + m.x1677 + m.x1678 + m.x1679 + m.x1680 + m.x1681 <= 4) m.c443 = Constraint(expr= m.x1706 + m.x1707 + m.x1708 + m.x1709 + m.x1710 + m.x1711 + m.x1712 + m.x1713 + m.x1714 + m.x1715 + m.x1716 + m.x1717 + m.x1718 + m.x1719 + m.x1720 + m.x1721 + m.x1722 + m.x1723 + m.x1724 + m.x1725 + m.x1726 + m.x1727 + m.x1728 + m.x1729 <= 4) m.c444 = Constraint(expr= m.x1754 + m.x1755 + m.x1756 + m.x1757 + m.x1758 + m.x1759 + m.x1760 + m.x1761 + m.x1762 + m.x1763 + m.x1764 + m.x1765 + m.x1766 + m.x1767 + m.x1768 + m.x1769 + m.x1770 + m.x1771 + m.x1772 + m.x1773 + m.x1774 + m.x1775 + m.x1776 + m.x1777 <= 4) m.c445 = Constraint(expr= m.x1802 + m.x1803 + m.x1804 + m.x1805 + m.x1806 + m.x1807 + m.x1808 + m.x1809 + m.x1810 + m.x1811 + m.x1812 + m.x1813 + m.x1814 + m.x1815 + m.x1816 + m.x1817 + m.x1818 + m.x1819 + m.x1820 + m.x1821 + m.x1822 + m.x1823 + m.x1824 + m.x1825 <= 4) m.c446 = Constraint(expr= m.x1850 + m.x1851 + m.x1852 + m.x1853 + m.x1854 + m.x1855 + m.x1856 + m.x1857 + m.x1858 + m.x1859 + m.x1860 + m.x1861 + m.x1862 + m.x1863 + m.x1864 + m.x1865 + m.x1866 + m.x1867 + m.x1868 + m.x1869 + m.x1870 + m.x1871 + m.x1872 + m.x1873 <= 2) m.c447 = Constraint(expr= m.x1898 + m.x1899 + m.x1900 + m.x1901 + m.x1902 + m.x1903 + m.x1904 + m.x1905 + m.x1906 + m.x1907 + m.x1908 + m.x1909 + m.x1910 + m.x1911 + m.x1912 + m.x1913 + m.x1914 + m.x1915 + m.x1916 + m.x1917 + m.x1918 + m.x1919 + m.x1920 + m.x1921 <= 2) m.c448 = Constraint(expr= m.x1946 + m.x1947 + m.x1948 + m.x1949 + m.x1950 + m.x1951 + m.x1952 + m.x1953 + m.x1954 + m.x1955 + m.x1956 + m.x1957 + m.x1958 + m.x1959 + m.x1960 + m.x1961 + m.x1962 + m.x1963 + m.x1964 + m.x1965 + m.x1966 + m.x1967 + m.x1968 + m.x1969 <= 10000) m.c449 = Constraint(expr= m.x1994 + m.x1995 + m.x1996 + m.x1997 + m.x1998 + m.x1999 + m.x2000 + m.x2001 + m.x2002 + m.x2003 + m.x2004 + m.x2005 + m.x2006 + m.x2007 + m.x2008 + m.x2009 + m.x2010 + m.x2011 + m.x2012 + m.x2013 + m.x2014 + m.x2015 + m.x2016 + m.x2017 <= 10000) m.c450 = Constraint(expr= m.x482 - m.x505 <= 4.32706) m.c451 = Constraint(expr= - m.x482 + m.x483 <= 4.32575) m.c452 = Constraint(expr= - m.x483 + m.x484 <= 4.32509) m.c453 = Constraint(expr= - m.x484 + m.x485 <= 4.32378) m.c454 = Constraint(expr= - m.x485 + m.x486 <= 4.32313) m.c455 = Constraint(expr= - m.x486 + m.x487 <= 4.32247) m.c456 = Constraint(expr= - m.x487 + m.x488 <= 4.32313) m.c457 = Constraint(expr= - m.x488 + m.x489 <= 4.32444) m.c458 = Constraint(expr= - m.x489 + m.x490 <= 4.32771) m.c459 = Constraint(expr= - m.x490 + m.x491 <= 4.33427) m.c460 = Constraint(expr= - m.x491 + m.x492 <= 4.34475) m.c461 = Constraint(expr= - m.x492 + m.x493 <= 4.35655) m.c462 = Constraint(expr= - m.x493 + m.x494 <= 4.37031) m.c463 = Constraint(expr= - m.x494 + m.x495 <= 4.37358) m.c464 = Constraint(expr= - m.x495 + m.x496 <= 4.36375) m.c465 = Constraint(expr= - m.x496 + m.x497 <= 4.36113) m.c466 = Constraint(expr= - m.x497 + m.x498 <= 4.35589) m.c467 = Constraint(expr= - m.x498 + m.x499 <= 4.34737) m.c468 = Constraint(expr= - m.x499 + m.x500 <= 4.34213) m.c469 = Constraint(expr= - m.x500 + m.x501 <= 4.33951) m.c470 = Constraint(expr= - m.x501 + m.x502 <= 4.33689) m.c471 = Constraint(expr= - m.x502 + m.x503 <= 4.33427) m.c472 = Constraint(expr= - m.x503 + m.x504 <= 4.3323) m.c473 = Constraint(expr= - m.x504 + m.x505 <= 4.33034) m.c474 = Constraint(expr= m.x506 - m.x529 <= 4.34016) m.c475 = Constraint(expr= - m.x506 + m.x507 <= 4.34541) m.c476 = Constraint(expr= - m.x507 + m.x508 <= 4.3513) m.c477 = Constraint(expr= - m.x508 + m.x509 <= 4.35655) m.c478 = Constraint(expr= - m.x509 + m.x510 <= 4.36244) m.c479 = Constraint(expr= - m.x510 + m.x511 <= 4.36179) m.c480 = Constraint(expr= - m.x511 + m.x512 <= 4.36244) m.c481 = Constraint(expr= - m.x512 + m.x513 <= 4.37031) m.c482 = Constraint(expr= - m.x513 + m.x514 <= 4.37358) m.c483 = Constraint(expr= - m.x514 + m.x515 <= 4.38669) m.c484 = Constraint(expr= - m.x515 + m.x516 <= 4.39062) m.c485 = Constraint(expr= - m.x516 + m.x517 <= 4.39586) m.c486 = Constraint(expr= - m.x517 + m.x518 <= 4.40962) m.c487 = Constraint(expr= - m.x518 + m.x519 <= 4.41945) m.c488 = Constraint(expr= - m.x519 + m.x520 <= 4.41618) m.c489 = Constraint(expr= - m.x520 + m.x521 <= 4.407) m.c490 = Constraint(expr= - m.x521 + m.x522 <= 4.40176) m.c491 = Constraint(expr= - m.x522 + m.x523 <= 4.38669) m.c492 = Constraint(expr= - m.x523 + m.x524 <= 4.37489) m.c493 = Constraint(expr= - m.x524 + m.x525 <= 4.37227) m.c494 = Constraint(expr= - m.x525 + m.x526 <= 4.3631) m.c495 = Constraint(expr= - m.x526 + m.x527 <= 4.36703) m.c496 = Constraint(expr= - m.x527 + m.x528 <= 4.36506) m.c497 = Constraint(expr= - m.x528 + m.x529 <= 4.33034) m.c498 = Constraint(expr= m.x530 - m.x553 <= 4.32706) m.c499 = Constraint(expr= - m.x530 + m.x531 <= 4.32575) m.c500 = Constraint(expr= - m.x531 + m.x532 <= 4.32509) m.c501 = Constraint(expr= - m.x532 + m.x533 <= 4.32378) m.c502 = Constraint(expr= - m.x533 + m.x534 <= 4.32313) m.c503 = Constraint(expr= - m.x534 + m.x535 <= 4.32247) m.c504 = Constraint(expr= - m.x535 + m.x536 <= 4.32313) m.c505 = Constraint(expr= - m.x536 + m.x537 <= 4.32444) m.c506 = Constraint(expr= - m.x537 + m.x538 <= 4.32771) m.c507 = Constraint(expr= - m.x538 + m.x539 <= 4.33427) m.c508 = Constraint(expr= - m.x539 + m.x540 <= 4.34475) m.c509 = Constraint(expr= - m.x540 + m.x541 <= 4.35655) m.c510 = Constraint(expr= - m.x541 + m.x542 <= 4.37031) m.c511 = Constraint(expr= - m.x542 + m.x543 <= 4.37358) m.c512 = Constraint(expr= - m.x543 + m.x544 <= 4.36375) m.c513 = Constraint(expr= - m.x544 + m.x545 <= 4.36113) m.c514 = Constraint(expr= - m.x545 + m.x546 <= 4.35589) m.c515 = Constraint(expr= - m.x546 + m.x547 <= 4.34737) m.c516 = Constraint(expr= - m.x547 + m.x548 <= 4.34213) m.c517 = Constraint(expr= - m.x548 + m.x549 <= 4.33951) m.c518 = Constraint(expr= - m.x549 + m.x550 <= 4.33689) m.c519 = Constraint(expr= - m.x550 + m.x551 <= 4.33427) m.c520 = Constraint(expr= - m.x551 + m.x552 <= 4.3323) m.c521 = Constraint(expr= - m.x552 + m.x553 <= 4.33034) m.c522 = Constraint(expr= m.x554 - m.x577 <= 4.34016) m.c523 = Constraint(expr= - m.x554 + m.x555 <= 4.34541) m.c524 = Constraint(expr= - m.x555 + m.x556 <= 4.3513) m.c525 = Constraint(expr= - m.x556 + m.x557 <= 4.35655) m.c526 = Constraint(expr= - m.x557 + m.x558 <= 4.36244) m.c527 = Constraint(expr= - m.x558 + m.x559 <= 4.36179) m.c528 = Constraint(expr= - m.x559 + m.x560 <= 4.36244) m.c529 = Constraint(expr= - m.x560 + m.x561 <= 4.37031) m.c530 = Constraint(expr= - m.x561 + m.x562 <= 4.37358) m.c531 = Constraint(expr= - m.x562 + m.x563 <= 4.38669) m.c532 = Constraint(expr= - m.x563 + m.x564 <= 4.39062) m.c533 = Constraint(expr= - m.x564 + m.x565 <= 4.39586) m.c534 = Constraint(expr= - m.x565 + m.x566 <= 4.40962) m.c535 = Constraint(expr= - m.x566 + m.x567 <= 4.41945) m.c536 = Constraint(expr= - m.x567 + m.x568 <= 4.41618) m.c537 = Constraint(expr= - m.x568 + m.x569 <= 4.407) m.c538 = Constraint(expr= - m.x569 + m.x570 <= 4.40176) m.c539 = Constraint(expr= - m.x570 + m.x571 <= 4.38669) m.c540 = Constraint(expr= - m.x571 + m.x572 <= 4.37489) m.c541 = Constraint(expr= - m.x572 + m.x573 <= 4.37227) m.c542 = Constraint(expr= - m.x573 + m.x574 <= 4.3631) m.c543 = Constraint(expr= - m.x574 + m.x575 <= 4.36703) m.c544 = Constraint(expr= - m.x575 + m.x576 <= 4.36506) m.c545 = Constraint(expr= - m.x576 + m.x577 <= 4.33034) m.c546 = Constraint(expr= m.x578 - m.x601 <= 1.7525) m.c547 = Constraint(expr= - m.x578 + m.x579 <= 1.75226) m.c548 = Constraint(expr= - m.x579 + m.x580 <= 1.75214) m.c549 = Constraint(expr= - m.x580 + m.x581 <= 1.7519) m.c550 = Constraint(expr= - m.x581 + m.x582 <= 1.75179) m.c551 = Constraint(expr= - m.x582 + m.x583 <= 1.75167) m.c552 = Constraint(expr= - m.x583 + m.x584 <= 1.75179) m.c553 = Constraint(expr= - m.x584 + m.x585 <= 1.75202) m.c554 = Constraint(expr= - m.x585 + m.x586 <= 1.75262) m.c555 = Constraint(expr= - m.x586 + m.x587 <= 1.7538) m.c556 = Constraint(expr= - m.x587 + m.x588 <= 1.7557) m.c557 = Constraint(expr= - m.x588 + m.x589 <= 1.75784) m.c558 = Constraint(expr= - m.x589 + m.x590 <= 1.76033) m.c559 = Constraint(expr= - m.x590 + m.x591 <= 1.76093) m.c560 = Constraint(expr= - m.x591 + m.x592 <= 1.75915) m.c561 = Constraint(expr= - m.x592 + m.x593 <= 1.75867) m.c562 = Constraint(expr= - m.x593 + m.x594 <= 1.75772) m.c563 = Constraint(expr= - m.x594 + m.x595 <= 1.75618) m.c564 = Constraint(expr= - m.x595 + m.x596 <= 1.75523) m.c565 = Constraint(expr= - m.x596 + m.x597 <= 1.75475) m.c566 = Constraint(expr= - m.x597 + m.x598 <= 1.75428) m.c567 = Constraint(expr= - m.x598 + m.x599 <= 1.7538) m.c568 = Constraint(expr= - m.x599 + m.x600 <= 1.75345) m.c569 = Constraint(expr= - m.x600 + m.x601 <= 1.75309) m.c570 = Constraint(expr= m.x602 - m.x625 <= 1.75487) m.c571 = Constraint(expr= - m.x602 + m.x603 <= 1.75582) m.c572 = Constraint(expr= - m.x603 + m.x604 <= 1.75689) m.c573 = Constraint(expr= - m.x604 + m.x605 <= 1.75784) m.c574 = Constraint(expr= - m.x605 + m.x606 <= 1.75891) m.c575 = Constraint(expr= - m.x606 + m.x607 <= 1.75879) m.c576 = Constraint(expr= - m.x607 + m.x608 <= 1.75891) m.c577 = Constraint(expr= - m.x608 + m.x609 <= 1.76033) m.c578 = Constraint(expr= - m.x609 + m.x610 <= 1.76093) m.c579 = Constraint(expr= - m.x610 + m.x611 <= 1.7633) m.c580 = Constraint(expr= - m.x611 + m.x612 <= 1.76402) m.c581 = Constraint(expr= - m.x612 + m.x613 <= 1.76496) m.c582 = Constraint(expr= - m.x613 + m.x614 <= 1.76746) m.c583 = Constraint(expr= - m.x614 + m.x615 <= 1.76924) m.c584 = Constraint(expr= - m.x615 + m.x616 <= 1.76865) m.c585 = Constraint(expr= - m.x616 + m.x617 <= 1.76698) m.c586 = Constraint(expr= - m.x617 + m.x618 <= 1.76603) m.c587 = Constraint(expr= - m.x618 + m.x619 <= 1.7633) m.c588 = Constraint(expr= - m.x619 + m.x620 <= 1.76117) m.c589 = Constraint(expr= - m.x620 + m.x621 <= 1.76069) m.c590 = Constraint(expr= - m.x621 + m.x622 <= 1.75903) m.c591 = Constraint(expr= - m.x622 + m.x623 <= 1.75974) m.c592 = Constraint(expr= - m.x623 + m.x624 <= 1.75938) m.c593 = Constraint(expr= - m.x624 + m.x625 <= 1.75309) m.c594 = Constraint(expr= m.x626 - m.x649 <= 1.7525) m.c595 = Constraint(expr= - m.x626 + m.x627 <= 1.75226) m.c596 = Constraint(expr= - m.x627 + m.x628 <= 1.75214) m.c597 = Constraint(expr= - m.x628 + m.x629 <= 1.7519) m.c598 = Constraint(expr= - m.x629 + m.x630 <= 1.75179) m.c599 = Constraint(expr= - m.x630 + m.x631 <= 1.75167) m.c600 = Constraint(expr= - m.x631 + m.x632 <= 1.75179) m.c601 = Constraint(expr= - m.x632 + m.x633 <= 1.75202) m.c602 = Constraint(expr= - m.x633 + m.x634 <= 1.75262) m.c603 = Constraint(expr= - m.x634 + m.x635 <= 1.7538) m.c604 = Constraint(expr= - m.x635 + m.x636 <= 1.7557) m.c605 = Constraint(expr= - m.x636 + m.x637 <= 1.75784) m.c606 = Constraint(expr= - m.x637 + m.x638 <= 1.76033) m.c607 = Constraint(expr= - m.x638 + m.x639 <= 1.76093) m.c608 = Constraint(expr= - m.x639 + m.x640 <= 1.75915) m.c609 = Constraint(expr= - m.x640 + m.x641 <= 1.75867) m.c610 = Constraint(expr= - m.x641 + m.x642 <= 1.75772) m.c611 = Constraint(expr= - m.x642 + m.x643 <= 1.75618) m.c612 = Constraint(expr= - m.x643 + m.x644 <= 1.75523) m.c613 = Constraint(expr= - m.x644 + m.x645 <= 1.75475) m.c614 = Constraint(expr= - m.x645 + m.x646 <= 1.75428) m.c615 = Constraint(expr= - m.x646 + m.x647 <= 1.7538) m.c616 = Constraint(expr= - m.x647 + m.x648 <= 1.75345) m.c617 = Constraint(expr= - m.x648 + m.x649 <= 1.75309) m.c618 = Constraint(expr= m.x650 - m.x673 <= 1.75487) m.c619 = Constraint(expr= - m.x650 + m.x651 <= 1.75582) m.c620 = Constraint(expr= - m.x651 + m.x652 <= 1.75689) m.c621 = Constraint(expr= - m.x652 + m.x653 <= 1.75784) m.c622 = Constraint(expr= - m.x653 + m.x654 <= 1.75891) m.c623 = Constraint(expr= - m.x654 + m.x655 <= 1.75879) m.c624 = Constraint(expr= - m.x655 + m.x656 <= 1.75891) m.c625 = Constraint(expr= - m.x656 + m.x657 <= 1.76033) m.c626 = Constraint(expr= - m.x657 + m.x658 <= 1.76093) m.c627 = Constraint(expr= - m.x658 + m.x659 <= 1.7633) m.c628 = Constraint(expr= - m.x659 + m.x660 <= 1.76402) m.c629 = Constraint(expr= - m.x660 + m.x661 <= 1.76496) m.c630 = Constraint(expr= - m.x661 + m.x662 <= 1.76746) m.c631 = Constraint(expr= - m.x662 + m.x663 <= 1.76924) m.c632 = Constraint(expr= - m.x663 + m.x664 <= 1.76865) m.c633 = Constraint(expr= - m.x664 + m.x665 <= 1.76698) m.c634 = Constraint(expr= - m.x665 + m.x666 <= 1.76603) m.c635 = Constraint(expr= - m.x666 + m.x667 <= 1.7633) m.c636 = Constraint(expr= - m.x667 + m.x668 <= 1.76117) m.c637 = Constraint(expr= - m.x668 + m.x669 <= 1.76069) m.c638 = Constraint(expr= - m.x669 + m.x670 <= 1.75903) m.c639 = Constraint(expr= - m.x670 + m.x671 <= 1.75974) m.c640 = Constraint(expr= - m.x671 + m.x672 <= 1.75938) m.c641 = Constraint(expr= - m.x672 + m.x673 <= 1.75309) m.c642 = Constraint(expr= m.x674 - m.x697 <= 1.7525) m.c643 = Constraint(expr= - m.x674 + m.x675 <= 1.75226) m.c644 = Constraint(expr= - m.x675 + m.x676 <= 1.75214) m.c645 = Constraint(expr= - m.x676 + m.x677 <= 1.7519) m.c646 = Constraint(expr= - m.x677 + m.x678 <= 1.75179) m.c647 = Constraint(expr= - m.x678 + m.x679 <= 1.75167) m.c648 = Constraint(expr= - m.x679 + m.x680 <= 1.75179) m.c649 = Constraint(expr= - m.x680 + m.x681 <= 1.75202) m.c650 = Constraint(expr= - m.x681 + m.x682 <= 1.75262) m.c651 = Constraint(expr= - m.x682 + m.x683 <= 1.7538) m.c652 = Constraint(expr= - m.x683 + m.x684 <= 1.7557) m.c653 = Constraint(expr= - m.x684 + m.x685 <= 1.75784) m.c654 = Constraint(expr= - m.x685 + m.x686 <= 1.76033) m.c655 = Constraint(expr= - m.x686 + m.x687 <= 1.76093) m.c656 = Constraint(expr= - m.x687 + m.x688 <= 1.75915) m.c657 = Constraint(expr= - m.x688 + m.x689 <= 1.75867) m.c658 = Constraint(expr= - m.x689 + m.x690 <= 1.75772) m.c659 = Constraint(expr= - m.x690 + m.x691 <= 1.75618) m.c660 = Constraint(expr= - m.x691 + m.x692 <= 1.75523) m.c661 = Constraint(expr= - m.x692 + m.x693 <= 1.75475) m.c662 = Constraint(expr= - m.x693 + m.x694 <= 1.75428) m.c663 = Constraint(expr= - m.x694 + m.x695 <= 1.7538) m.c664 = Constraint(expr= - m.x695 + m.x696 <= 1.75345) m.c665 = Constraint(expr= - m.x696 + m.x697 <= 1.75309) m.c666 = Constraint(expr= m.x698 - m.x721 <= 1.75487) m.c667 = Constraint(expr= - m.x698 + m.x699 <= 1.75582) m.c668 = Constraint(expr= - m.x699 + m.x700 <= 1.75689) m.c669 = Constraint(expr= - m.x700 + m.x701 <= 1.75784) m.c670 = Constraint(expr= - m.x701 + m.x702 <= 1.75891) m.c671 = Constraint(expr= - m.x702 + m.x703 <= 1.75879) m.c672 = Constraint(expr= - m.x703 + m.x704 <= 1.75891) m.c673 = Constraint(expr= - m.x704 + m.x705 <= 1.76033) m.c674 = Constraint(expr= - m.x705 + m.x706 <= 1.76093) m.c675 = Constraint(expr= - m.x706 + m.x707 <= 1.7633) m.c676 = Constraint(expr= - m.x707 + m.x708 <= 1.76402) m.c677 = Constraint(expr= - m.x708 + m.x709 <= 1.76496) m.c678 = Constraint(expr= - m.x709 + m.x710 <= 1.76746) m.c679 = Constraint(expr= - m.x710 + m.x711 <= 1.76924) m.c680 = Constraint(expr= - m.x711 + m.x712 <= 1.76865) m.c681 = Constraint(expr= - m.x712 + m.x713 <= 1.76698) m.c682 = Constraint(expr= - m.x713 + m.x714 <= 1.76603) m.c683 = Constraint(expr= - m.x714 + m.x715 <= 1.7633) m.c684 = Constraint(expr= - m.x715 + m.x716 <= 1.76117) m.c685 = Constraint(expr= - m.x716 + m.x717 <= 1.76069) m.c686 = Constraint(expr= - m.x717 + m.x718 <= 1.75903) m.c687 = Constraint(expr= - m.x718 + m.x719 <= 1.75974) m.c688 = Constraint(expr= - m.x719 + m.x720 <= 1.75938) m.c689 = Constraint(expr= - m.x720 + m.x721 <= 1.75309) m.c690 = Constraint(expr= m.x722 - m.x745 <= 1.7525) m.c691 = Constraint(expr= - m.x722 + m.x723 <= 1.75226) m.c692 = Constraint(expr= - m.x723 + m.x724 <= 1.75214) m.c693 = Constraint(expr= - m.x724 + m.x725 <= 1.7519) m.c694 = Constraint(expr= - m.x725 + m.x726 <= 1.75179) m.c695 = Constraint(expr= - m.x726 + m.x727 <= 1.75167) m.c696 = Constraint(expr= - m.x727 + m.x728 <= 1.75179) m.c697 = Constraint(expr= - m.x728 + m.x729 <= 1.75202) m.c698 = Constraint(expr= - m.x729 + m.x730 <= 1.75262) m.c699 = Constraint(expr= - m.x730 + m.x731 <= 1.7538) m.c700 = Constraint(expr= - m.x731 + m.x732 <= 1.7557) m.c701 = Constraint(expr= - m.x732 + m.x733 <= 1.75784) m.c702 = Constraint(expr= - m.x733 + m.x734 <= 1.76033) m.c703 = Constraint(expr= - m.x734 + m.x735 <= 1.76093) m.c704 = Constraint(expr= - m.x735 + m.x736 <= 1.75915) m.c705 = Constraint(expr= - m.x736 + m.x737 <= 1.75867) m.c706 = Constraint(expr= - m.x737 + m.x738 <= 1.75772) m.c707 = Constraint(expr= - m.x738 + m.x739 <= 1.75618) m.c708 = Constraint(expr= - m.x739 + m.x740 <= 1.75523) m.c709 = Constraint(expr= - m.x740 + m.x741 <= 1.75475) m.c710 = Constraint(expr= - m.x741 + m.x742 <= 1.75428) m.c711 = Constraint(expr= - m.x742 + m.x743 <= 1.7538) m.c712 = Constraint(expr= - m.x743 + m.x744 <= 1.75345) m.c713 = Constraint(expr= - m.x744 + m.x745 <= 1.75309) m.c714 = Constraint(expr= m.x746 - m.x769 <= 1.75487) m.c715 = Constraint(expr= - m.x746 + m.x747 <= 1.75582) m.c716 = Constraint(expr= - m.x747 + m.x748 <= 1.75689) m.c717 = Constraint(expr= - m.x748 + m.x749 <= 1.75784) m.c718 = Constraint(expr= - m.x749 + m.x750 <= 1.75891) m.c719 = Constraint(expr= - m.x750 + m.x751 <= 1.75879) m.c720 = Constraint(expr= - m.x751 + m.x752 <= 1.75891) m.c721 = Constraint(expr= - m.x752 + m.x753 <= 1.76033) m.c722 = Constraint(expr= - m.x753 + m.x754 <= 1.76093) m.c723 = Constraint(expr= - m.x754 + m.x755 <= 1.7633) m.c724 = Constraint(expr= - m.x755 + m.x756 <= 1.76402) m.c725 = Constraint(expr= - m.x756 + m.x757 <= 1.76496) m.c726 = Constraint(expr= - m.x757 + m.x758 <= 1.76746) m.c727 = Constraint(expr= - m.x758 + m.x759 <= 1.76924) m.c728 = Constraint(expr= - m.x759 + m.x760 <= 1.76865) m.c729 = Constraint(expr= - m.x760 + m.x761 <= 1.76698) m.c730 = Constraint(expr= - m.x761 + m.x762 <= 1.76603) m.c731 = Constraint(expr= - m.x762 + m.x763 <= 1.7633) m.c732 = Constraint(expr= - m.x763 + m.x764 <= 1.76117) m.c733 = Constraint(expr= - m.x764 + m.x765 <= 1.76069) m.c734 = Constraint(expr= - m.x765 + m.x766 <= 1.75903) m.c735 = Constraint(expr= - m.x766 + m.x767 <= 1.75974) m.c736 = Constraint(expr= - m.x767 + m.x768 <= 1.75938) m.c737 = Constraint(expr= - m.x768 + m.x769 <= 1.75309) m.c738 = Constraint(expr= m.x482 - m.x505 >= -4.32706) m.c739 = Constraint(expr= - m.x482 + m.x483 >= -4.32575) m.c740 = Constraint(expr= - m.x483 + m.x484 >= -4.32509) m.c741 = Constraint(expr= - m.x484 + m.x485 >= -4.32378) m.c742 = Constraint(expr= - m.x485 + m.x486 >= -4.32313) m.c743 = Constraint(expr= - m.x486 + m.x487 >= -4.32247) m.c744 = Constraint(expr= - m.x487 + m.x488 >= -4.32313) m.c745 = Constraint(expr= - m.x488 + m.x489 >= -4.32444) m.c746 = Constraint(expr= - m.x489 + m.x490 >= -4.32771) m.c747 = Constraint(expr= - m.x490 + m.x491 >= -4.33427) m.c748 = Constraint(expr= - m.x491 + m.x492 >= -4.34475) m.c749 = Constraint(expr= - m.x492 + m.x493 >= -4.35655) m.c750 = Constraint(expr= - m.x493 + m.x494 >= -4.37031) m.c751 = Constraint(expr= - m.x494 + m.x495 >= -4.37358) m.c752 = Constraint(expr= - m.x495 + m.x496 >= -4.36375) m.c753 = Constraint(expr= - m.x496 + m.x497 >= -4.36113) m.c754 = Constraint(expr= - m.x497 + m.x498 >= -4.35589) m.c755 = Constraint(expr= - m.x498 + m.x499 >= -4.34737) m.c756 = Constraint(expr= - m.x499 + m.x500 >= -4.34213) m.c757 = Constraint(expr= - m.x500 + m.x501 >= -4.33951) m.c758 = Constraint(expr= - m.x501 + m.x502 >= -4.33689) m.c759 = Constraint(expr= - m.x502 + m.x503 >= -4.33427) m.c760 = Constraint(expr= - m.x503 + m.x504 >= -4.3323) m.c761 = Constraint(expr= - m.x504 + m.x505 >= -4.33034) m.c762 = Constraint(expr= m.x506 - m.x529 >= -4.34016) m.c763 = Constraint(expr= - m.x506 + m.x507 >= -4.34541) m.c764 = Constraint(expr= - m.x507 + m.x508 >= -4.3513) m.c765 = Constraint(expr= - m.x508 + m.x509 >= -4.35655) m.c766 = Constraint(expr= - m.x509 + m.x510 >= -4.36244) m.c767 = Constraint(expr= - m.x510 + m.x511 >= -4.36179) m.c768 = Constraint(expr= - m.x511 + m.x512 >= -4.36244) m.c769 = Constraint(expr= - m.x512 + m.x513 >= -4.37031) m.c770 = Constraint(expr= - m.x513 + m.x514 >= -4.37358) m.c771 = Constraint(expr= - m.x514 + m.x515 >= -4.38669) m.c772 = Constraint(expr= - m.x515 + m.x516 >= -4.39062) m.c773 = Constraint(expr= - m.x516 + m.x517 >= -4.39586) m.c774 = Constraint(expr= - m.x517 + m.x518 >= -4.40962) m.c775 = Constraint(expr= - m.x518 + m.x519 >= -4.41945) m.c776 = Constraint(expr= - m.x519 + m.x520 >= -4.41618) m.c777 = Constraint(expr= - m.x520 + m.x521 >= -4.407) m.c778 = Constraint(expr= - m.x521 + m.x522 >= -4.40176) m.c779 = Constraint(expr= - m.x522 + m.x523 >= -4.38669) m.c780 = Constraint(expr= - m.x523 + m.x524 >= -4.37489) m.c781 = Constraint(expr= - m.x524 + m.x525 >= -4.37227) m.c782 = Constraint(expr= - m.x525 + m.x526 >= -4.3631) m.c783 = Constraint(expr= - m.x526 + m.x527 >= -4.36703) m.c784 = Constraint(expr= - m.x527 + m.x528 >= -4.36506) m.c785 = Constraint(expr= - m.x528 + m.x529 >= -4.33034) m.c786 = Constraint(expr= m.x530 - m.x553 >= -4.32706) m.c787 = Constraint(expr= - m.x530 + m.x531 >= -4.32575) m.c788 = Constraint(expr= - m.x531 + m.x532 >= -4.32509) m.c789 = Constraint(expr= - m.x532 + m.x533 >= -4.32378) m.c790 = Constraint(expr= - m.x533 + m.x534 >= -4.32313) m.c791 = Constraint(expr= - m.x534 + m.x535 >= -4.32247) m.c792 = Constraint(expr= - m.x535 + m.x536 >= -4.32313) m.c793 = Constraint(expr= - m.x536 + m.x537 >= -4.32444) m.c794 = Constraint(expr= - m.x537 + m.x538 >= -4.32771) m.c795 = Constraint(expr= - m.x538 + m.x539 >= -4.33427) m.c796 = Constraint(expr= - m.x539 + m.x540 >= -4.34475) m.c797 = Constraint(expr= - m.x540 + m.x541 >= -4.35655) m.c798 = Constraint(expr= - m.x541 + m.x542 >= -4.37031) m.c799 = Constraint(expr= - m.x542 + m.x543 >= -4.37358) m.c800 = Constraint(expr= - m.x543 + m.x544 >= -4.36375) m.c801 = Constraint(expr= - m.x544 + m.x545 >= -4.36113) m.c802 = Constraint(expr= - m.x545 + m.x546 >= -4.35589) m.c803 = Constraint(expr= - m.x546 + m.x547 >= -4.34737) m.c804 = Constraint(expr= - m.x547 + m.x548 >= -4.34213) m.c805 = Constraint(expr= - m.x548 + m.x549 >= -4.33951) m.c806 = Constraint(expr= - m.x549 + m.x550 >= -4.33689) m.c807 = Constraint(expr= - m.x550 + m.x551 >= -4.33427) m.c808 = Constraint(expr= - m.x551 + m.x552 >= -4.3323) m.c809 = Constraint(expr= - m.x552 + m.x553 >= -4.33034) m.c810 = Constraint(expr= m.x554 - m.x577 >= -4.34016) m.c811 = Constraint(expr= - m.x554 + m.x555 >= -4.34541) m.c812 = Constraint(expr= - m.x555 + m.x556 >= -4.3513) m.c813 = Constraint(expr= - m.x556 + m.x557 >= -4.35655) m.c814 = Constraint(expr= - m.x557 + m.x558 >= -4.36244) m.c815 = Constraint(expr= - m.x558 + m.x559 >= -4.36179) m.c816 = Constraint(expr= - m.x559 + m.x560 >= -4.36244) m.c817 = Constraint(expr= - m.x560 + m.x561 >= -4.37031) m.c818 = Constraint(expr= - m.x561 + m.x562 >= -4.37358) m.c819 = Constraint(expr= - m.x562 + m.x563 >= -4.38669) m.c820 = Constraint(expr= - m.x563 + m.x564 >= -4.39062) m.c821 = Constraint(expr= - m.x564 + m.x565 >= -4.39586) m.c822 = Constraint(expr= - m.x565 + m.x566 >= -4.40962) m.c823 = Constraint(expr= - m.x566 + m.x567 >= -4.41945) m.c824 = Constraint(expr= - m.x567 + m.x568 >= -4.41618) m.c825 = Constraint(expr= - m.x568 + m.x569 >= -4.407) m.c826 = Constraint(expr= - m.x569 + m.x570 >= -4.40176) m.c827 = Constraint(expr= - m.x570 + m.x571 >= -4.38669) m.c828 = Constraint(expr= - m.x571 + m.x572 >= -4.37489) m.c829 = Constraint(expr= - m.x572 + m.x573 >= -4.37227) m.c830 = Constraint(expr= - m.x573 + m.x574 >= -4.3631) m.c831 = Constraint(expr= - m.x574 + m.x575 >= -4.36703) m.c832 = Constraint(expr= - m.x575 + m.x576 >= -4.36506) m.c833 = Constraint(expr= - m.x576 + m.x577 >= -4.33034) m.c834 = Constraint(expr= m.x578 - m.x601 >= -1.7525) m.c835 = Constraint(expr= - m.x578 + m.x579 >= -1.75226) m.c836 = Constraint(expr= - m.x579 + m.x580 >= -1.75214) m.c837 = Constraint(expr= - m.x580 + m.x581 >= -1.7519) m.c838 = Constraint(expr= - m.x581 + m.x582 >= -1.75179) m.c839 = Constraint(expr= - m.x582 + m.x583 >= -1.75167) m.c840 = Constraint(expr= - m.x583 + m.x584 >= -1.75179) m.c841 = Constraint(expr= - m.x584 + m.x585 >= -1.75202) m.c842 = Constraint(expr= - m.x585 + m.x586 >= -1.75262) m.c843 = Constraint(expr= - m.x586 + m.x587 >= -1.7538) m.c844 = Constraint(expr= - m.x587 + m.x588 >= -1.7557) m.c845 = Constraint(expr= - m.x588 + m.x589 >= -1.75784) m.c846 = Constraint(expr= - m.x589 + m.x590 >= -1.76033) m.c847 = Constraint(expr= - m.x590 + m.x591 >= -1.76093) m.c848 = Constraint(expr= - m.x591 + m.x592 >= -1.75915) m.c849 = Constraint(expr= - m.x592 + m.x593 >= -1.75867) m.c850 = Constraint(expr= - m.x593 + m.x594 >= -1.75772) m.c851 = Constraint(expr= - m.x594 + m.x595 >= -1.75618) m.c852 = Constraint(expr= - m.x595 + m.x596 >= -1.75523) m.c853 = Constraint(expr= - m.x596 + m.x597 >= -1.75475) m.c854 = Constraint(expr= - m.x597 + m.x598 >= -1.75428) m.c855 = Constraint(expr= - m.x598 + m.x599 >= -1.7538) m.c856 = Constraint(expr= - m.x599 + m.x600 >= -1.75345) m.c857 = Constraint(expr= - m.x600 + m.x601 >= -1.75309) m.c858 = Constraint(expr= m.x602 - m.x625 >= -1.75487) m.c859 = Constraint(expr= - m.x602 + m.x603 >= -1.75582) m.c860 = Constraint(expr= - m.x603 + m.x604 >= -1.75689) m.c861 = Constraint(expr= - m.x604 + m.x605 >= -1.75784) m.c862 = Constraint(expr= - m.x605 + m.x606 >= -1.75891) m.c863 = Constraint(expr= - m.x606 + m.x607 >= -1.75879) m.c864 = Constraint(expr= - m.x607 + m.x608 >= -1.75891) m.c865 = Constraint(expr= - m.x608 + m.x609 >= -1.76033) m.c866 = Constraint(expr= - m.x609 + m.x610 >= -1.76093) m.c867 = Constraint(expr= - m.x610 + m.x611 >= -1.7633) m.c868 = Constraint(expr= - m.x611 + m.x612 >= -1.76402) m.c869 = Constraint(expr= - m.x612 + m.x613 >= -1.76496) m.c870 = Constraint(expr= - m.x613 + m.x614 >= -1.76746) m.c871 = Constraint(expr= - m.x614 + m.x615 >= -1.76924) m.c872 = Constraint(expr= - m.x615 + m.x616 >= -1.76865) m.c873 = Constraint(expr= - m.x616 + m.x617 >= -1.76698) m.c874 = Constraint(expr= - m.x617 + m.x618 >= -1.76603) m.c875 = Constraint(expr= - m.x618 + m.x619 >= -1.7633) m.c876 = Constraint(expr= - m.x619 + m.x620 >= -1.76117) m.c877 = Constraint(expr= - m.x620 + m.x621 >= -1.76069) m.c878 = Constraint(expr= - m.x621 + m.x622 >= -1.75903) m.c879 = Constraint(expr= - m.x622 + m.x623 >= -1.75974) m.c880 = Constraint(expr= - m.x623 + m.x624 >= -1.75938) m.c881 = Constraint(expr= - m.x624 + m.x625 >= -1.75309) m.c882 = Constraint(expr= m.x626 - m.x649 >= -1.7525) m.c883 = Constraint(expr= - m.x626 + m.x627 >= -1.75226) m.c884 = Constraint(expr= - m.x627 + m.x628 >= -1.75214) m.c885 = Constraint(expr= - m.x628 + m.x629 >= -1.7519) m.c886 = Constraint(expr= - m.x629 + m.x630 >= -1.75179) m.c887 = Constraint(expr= - m.x630 + m.x631 >= -1.75167) m.c888 = Constraint(expr= - m.x631 + m.x632 >= -1.75179) m.c889 = Constraint(expr= - m.x632 + m.x633 >= -1.75202) m.c890 = Constraint(expr= - m.x633 + m.x634 >= -1.75262) m.c891 = Constraint(expr= - m.x634 + m.x635 >= -1.7538) m.c892 = Constraint(expr= - m.x635 + m.x636 >= -1.7557) m.c893 = Constraint(expr= - m.x636 + m.x637 >= -1.75784) m.c894 = Constraint(expr= - m.x637 + m.x638 >= -1.76033) m.c895 = Constraint(expr= - m.x638 + m.x639 >= -1.76093) m.c896 = Constraint(expr= - m.x639 + m.x640 >= -1.75915) m.c897 = Constraint(expr= - m.x640 + m.x641 >= -1.75867) m.c898 = Constraint(expr= - m.x641 + m.x642 >= -1.75772) m.c899 = Constraint(expr= - m.x642 + m.x643 >= -1.75618) m.c900 = Constraint(expr= - m.x643 + m.x644 >= -1.75523) m.c901 = Constraint(expr= - m.x644 + m.x645 >= -1.75475) m.c902 = Constraint(expr= - m.x645 + m.x646 >= -1.75428) m.c903 = Constraint(expr= - m.x646 + m.x647 >= -1.7538) m.c904 = Constraint(expr= - m.x647 + m.x648 >= -1.75345) m.c905 = Constraint(expr= - m.x648 + m.x649 >= -1.75309) m.c906 = Constraint(expr= m.x650 - m.x673 >= -1.75487) m.c907 = Constraint(expr= - m.x650 + m.x651 >= -1.75582) m.c908 = Constraint(expr= - m.x651 + m.x652 >= -1.75689) m.c909 = Constraint(expr= - m.x652 + m.x653 >= -1.75784) m.c910 = Constraint(expr= - m.x653 + m.x654 >= -1.75891) m.c911 = Constraint(expr= - m.x654 + m.x655 >= -1.75879) m.c912 = Constraint(expr= - m.x655 + m.x656 >= -1.75891) m.c913 = Constraint(expr= - m.x656 + m.x657 >= -1.76033) m.c914 = Constraint(expr= - m.x657 + m.x658 >= -1.76093) m.c915 = Constraint(expr= - m.x658 + m.x659 >= -1.7633) m.c916 = Constraint(expr= - m.x659 + m.x660 >= -1.76402) m.c917 = Constraint(expr= - m.x660 + m.x661 >= -1.76496) m.c918 = Constraint(expr= - m.x661 + m.x662 >= -1.76746) m.c919 = Constraint(expr= - m.x662 + m.x663 >= -1.76924) m.c920 = Constraint(expr= - m.x663 + m.x664 >= -1.76865) m.c921 = Constraint(expr= - m.x664 + m.x665 >= -1.76698) m.c922 = Constraint(expr= - m.x665 + m.x666 >= -1.76603) m.c923 = Constraint(expr= - m.x666 + m.x667 >= -1.7633) m.c924 = Constraint(expr= - m.x667 + m.x668 >= -1.76117) m.c925 = Constraint(expr= - m.x668 + m.x669 >= -1.76069) m.c926 = Constraint(expr= - m.x669 + m.x670 >= -1.75903) m.c927 = Constraint(expr= - m.x670 + m.x671 >= -1.75974) m.c928 = Constraint(expr= - m.x671 + m.x672 >= -1.75938) m.c929 = Constraint(expr= - m.x672 + m.x673 >= -1.75309) m.c930 = Constraint(expr= m.x674 - m.x697 >= -1.7525) m.c931 = Constraint(expr= - m.x674 + m.x675 >= -1.75226) m.c932 = Constraint(expr= - m.x675 + m.x676 >= -1.75214) m.c933 = Constraint(expr= - m.x676 + m.x677 >= -1.7519) m.c934 = Constraint(expr= - m.x677 + m.x678 >= -1.75179) m.c935 = Constraint(expr= - m.x678 + m.x679 >= -1.75167) m.c936 = Constraint(expr= - m.x679 + m.x680 >= -1.75179) m.c937 = Constraint(expr= - m.x680 + m.x681 >= -1.75202) m.c938 = Constraint(expr= - m.x681 + m.x682 >= -1.75262) m.c939 = Constraint(expr= - m.x682 + m.x683 >= -1.7538) m.c940 = Constraint(expr= - m.x683 + m.x684 >= -1.7557) m.c941 = Constraint(expr= - m.x684 + m.x685 >= -1.75784) m.c942 = Constraint(expr= - m.x685 + m.x686 >= -1.76033) m.c943 = Constraint(expr= - m.x686 + m.x687 >= -1.76093) m.c944 = Constraint(expr= - m.x687 + m.x688 >= -1.75915) m.c945 = Constraint(expr= - m.x688 + m.x689 >= -1.75867) m.c946 = Constraint(expr= - m.x689 + m.x690 >= -1.75772) m.c947 = Constraint(expr= - m.x690 + m.x691 >= -1.75618) m.c948 = Constraint(expr= - m.x691 + m.x692 >= -1.75523) m.c949 = Constraint(expr= - m.x692 + m.x693 >= -1.75475) m.c950 = Constraint(expr= - m.x693 + m.x694 >= -1.75428) m.c951 = Constraint(expr= - m.x694 + m.x695 >= -1.7538) m.c952 = Constraint(expr= - m.x695 + m.x696 >= -1.75345) m.c953 = Constraint(expr= - m.x696 + m.x697 >= -1.75309) m.c954 = Constraint(expr= m.x698 - m.x721 >= -1.75487) m.c955 = Constraint(expr= - m.x698 + m.x699 >= -1.75582) m.c956 = Constraint(expr= - m.x699 + m.x700 >= -1.75689) m.c957 = Constraint(expr= - m.x700 + m.x701 >= -1.75784) m.c958 = Constraint(expr= - m.x701 + m.x702 >= -1.75891) m.c959 = Constraint(expr= - m.x702 + m.x703 >= -1.75879) m.c960 = Constraint(expr= - m.x703 + m.x704 >= -1.75891) m.c961 = Constraint(expr= - m.x704 + m.x705 >= -1.76033) m.c962 = Constraint(expr= - m.x705 + m.x706 >= -1.76093) m.c963 = Constraint(expr= - m.x706 + m.x707 >= -1.7633) m.c964 = Constraint(expr= - m.x707 + m.x708 >= -1.76402) m.c965 = Constraint(expr= - m.x708 + m.x709 >= -1.76496) m.c966 = Constraint(expr= - m.x709 + m.x710 >= -1.76746) m.c967 = Constraint(expr= - m.x710 + m.x711 >= -1.76924) m.c968 = Constraint(expr= - m.x711 + m.x712 >= -1.76865) m.c969 = Constraint(expr= - m.x712 + m.x713 >= -1.76698) m.c970 = Constraint(expr= - m.x713 + m.x714 >= -1.76603) m.c971 = Constraint(expr= - m.x714 + m.x715 >= -1.7633) m.c972 = Constraint(expr= - m.x715 + m.x716 >= -1.76117) m.c973 = Constraint(expr= - m.x716 + m.x717 >= -1.76069) m.c974 = Constraint(expr= - m.x717 + m.x718 >= -1.75903) m.c975 = Constraint(expr= - m.x718 + m.x719 >= -1.75974) m.c976 = Constraint(expr= - m.x719 + m.x720 >= -1.75938) m.c977 = Constraint(expr= - m.x720 + m.x721 >= -1.75309) m.c978 = Constraint(expr= m.x722 - m.x745 >= -1.7525) m.c979 = Constraint(expr= - m.x722 + m.x723 >= -1.75226) m.c980 = Constraint(expr= - m.x723 + m.x724 >= -1.75214) m.c981 = Constraint(expr= - m.x724 + m.x725 >= -1.7519) m.c982 = Constraint(expr= - m.x725 + m.x726 >= -1.75179) m.c983 = Constraint(expr= - m.x726 + m.x727 >= -1.75167) m.c984 = Constraint(expr= - m.x727 + m.x728 >= -1.75179) m.c985 = Constraint(expr= - m.x728 + m.x729 >= -1.75202) m.c986 = Constraint(expr= - m.x729 + m.x730 >= -1.75262) m.c987 = Constraint(expr= - m.x730 + m.x731 >= -1.7538) m.c988 = Constraint(expr= - m.x731 + m.x732 >= -1.7557) m.c989 = Constraint(expr= - m.x732 + m.x733 >= -1.75784) m.c990 = Constraint(expr= - m.x733 + m.x734 >= -1.76033) m.c991 = Constraint(expr= - m.x734 + m.x735 >= -1.76093) m.c992 = Constraint(expr= - m.x735 + m.x736 >= -1.75915) m.c993 = Constraint(expr= - m.x736 + m.x737 >= -1.75867) m.c994 = Constraint(expr= - m.x737 + m.x738 >= -1.75772) m.c995 = Constraint(expr= - m.x738 + m.x739 >= -1.75618) m.c996 = Constraint(expr= - m.x739 + m.x740 >= -1.75523) m.c997 = Constraint(expr= - m.x740 + m.x741 >= -1.75475) m.c998 = Constraint(expr= - m.x741 + m.x742 >= -1.75428) m.c999 = Constraint(expr= - m.x742 + m.x743 >= -1.7538) m.c1000 = Constraint(expr= - m.x743 + m.x744 >= -1.75345) m.c1001 = Constraint(expr= - m.x744 + m.x745 >= -1.75309) m.c1002 = Constraint(expr= m.x746 - m.x769 >= -1.75487) m.c1003 = Constraint(expr= - m.x746 + m.x747 >= -1.75582) m.c1004 = Constraint(expr= - m.x747 + m.x748 >= -1.75689) m.c1005 = Constraint(expr= - m.x748 + m.x749 >= -1.75784) m.c1006 = Constraint(expr= - m.x749 + m.x750 >= -1.75891) m.c1007 = Constraint(expr= - m.x750 + m.x751 >= -1.75879) m.c1008 = Constraint(expr= - m.x751 + m.x752 >= -1.75891) m.c1009 = Constraint(expr= - m.x752 + m.x753 >= -1.76033) m.c1010 = Constraint(expr= - m.x753 + m.x754 >= -1.76093) m.c1011 = Constraint(expr= - m.x754 + m.x755 >= -1.7633) m.c1012 = Constraint(expr= - m.x755 + m.x756 >= -1.76402) m.c1013 = Constraint(expr= - m.x756 + m.x757 >= -1.76496) m.c1014 = Constraint(expr= - m.x757 + m.x758 >= -1.76746) m.c1015 = Constraint(expr= - m.x758 + m.x759 >= -1.76924) m.c1016 = Constraint(expr= - m.x759 + m.x760 >= -1.76865) m.c1017 = Constraint(expr= - m.x760 + m.x761 >= -1.76698) m.c1018 = Constraint(expr= - m.x761 + m.x762 >= -1.76603) m.c1019 = Constraint(expr= - m.x762 + m.x763 >= -1.7633) m.c1020 = Constraint(expr= - m.x763 + m.x764 >= -1.76117) m.c1021 = Constraint(expr= - m.x764 + m.x765 >= -1.76069) m.c1022 = Constraint(expr= - m.x765 + m.x766 >= -1.75903) m.c1023 = Constraint(expr= - m.x766 + m.x767 >= -1.75974) m.c1024 = Constraint(expr= - m.x767 + m.x768 >= -1.75938) m.c1025 = Constraint(expr= - m.x768 + m.x769 >= -1.75309) m.c1026 = Constraint(expr= m.x770 - m.x793 <= 6.983) m.c1027 = Constraint(expr= - m.x770 + m.x771 <= 6.983) m.c1028 = Constraint(expr= - m.x771 + m.x772 <= 6.983) m.c1029 = Constraint(expr= - m.x772 + m.x773 <= 6.983) m.c1030 = Constraint(expr= - m.x773 + m.x774 <= 6.983) m.c1031 = Constraint(expr= - m.x774 + m.x775 <= 6.983) m.c1032 = Constraint(expr= - m.x775 + m.x776 <= 6.983) m.c1033 = Constraint(expr= - m.x776 + m.x777 <= 6.983) m.c1034 = Constraint(expr= - m.x777 + m.x778 <= 6.983) m.c1035 = Constraint(expr= - m.x778 + m.x779 <= 6.983) m.c1036 = Constraint(expr= - m.x779 + m.x780 <= 6.983) m.c1037 = Constraint(expr= - m.x780 + m.x781 <= 6.983) m.c1038 = Constraint(expr= - m.x781 + m.x782 <= 6.983) m.c1039 = Constraint(expr= - m.x782 + m.x783 <= 6.983) m.c1040 = Constraint(expr= - m.x783 + m.x784 <= 6.983) m.c1041 = Constraint(expr= - m.x784 + m.x785 <= 6.983) m.c1042 = Constraint(expr= - m.x785 + m.x786 <= 6.983) m.c1043 = Constraint(expr= - m.x786 + m.x787 <= 6.983) m.c1044 = Constraint(expr= - m.x787 + m.x788 <= 6.983) m.c1045 = Constraint(expr= - m.x788 + m.x789 <= 6.983) m.c1046 = Constraint(expr= - m.x789 + m.x790 <= 6.983) m.c1047 = Constraint(expr= - m.x790 + m.x791 <= 6.983) m.c1048 = Constraint(expr= - m.x791 + m.x792 <= 6.983) m.c1049 = Constraint(expr= - m.x792 + m.x793 <= 6.983) m.c1050 = Constraint(expr= m.x794 - m.x817 <= 6.983) m.c1051 = Constraint(expr= - m.x794 + m.x795 <= 6.983) m.c1052 = Constraint(expr= - m.x795 + m.x796 <= 6.983) m.c1053 = Constraint(expr= - m.x796 + m.x797 <= 6.983) m.c1054 = Constraint(expr= - m.x797 + m.x798 <= 6.983) m.c1055 = Constraint(expr= - m.x798 + m.x799 <= 6.983) m.c1056 = Constraint(expr= - m.x799 + m.x800 <= 6.983) m.c1057 = Constraint(expr= - m.x800 + m.x801 <= 6.983) m.c1058 = Constraint(expr= - m.x801 + m.x802 <= 6.983) m.c1059 = Constraint(expr= - m.x802 + m.x803 <= 6.983) m.c1060 = Constraint(expr= - m.x803 + m.x804 <= 6.983) m.c1061 = Constraint(expr= - m.x804 + m.x805 <= 6.983) m.c1062 = Constraint(expr= - m.x805 + m.x806 <= 6.983) m.c1063 = Constraint(expr= - m.x806 + m.x807 <= 6.983) m.c1064 = Constraint(expr= - m.x807 + m.x808 <= 6.983) m.c1065 = Constraint(expr= - m.x808 + m.x809 <= 6.983) m.c1066 = Constraint(expr= - m.x809 + m.x810 <= 6.983) m.c1067 = Constraint(expr= - m.x810 + m.x811 <= 6.983) m.c1068 = Constraint(expr= - m.x811 + m.x812 <= 6.983) m.c1069 = Constraint(expr= - m.x812 + m.x813 <= 6.983) m.c1070 = Constraint(expr= - m.x813 + m.x814 <= 6.983) m.c1071 = Constraint(expr= - m.x814 + m.x815 <= 6.983) m.c1072 = Constraint(expr= - m.x815 + m.x816 <= 6.983) m.c1073 = Constraint(expr= - m.x816 + m.x817 <= 6.983) m.c1074 = Constraint(expr= m.x818 - m.x841 <= 6.983) m.c1075 = Constraint(expr= - m.x818 + m.x819 <= 6.983) m.c1076 = Constraint(expr= - m.x819 + m.x820 <= 6.983) m.c1077 = Constraint(expr= - m.x820 + m.x821 <= 6.983) m.c1078 = Constraint(expr= - m.x821 + m.x822 <= 6.983) m.c1079 = Constraint(expr= - m.x822 + m.x823 <= 6.983) m.c1080 = Constraint(expr= - m.x823 + m.x824 <= 6.983) m.c1081 = Constraint(expr= - m.x824 + m.x825 <= 6.983) m.c1082 = Constraint(expr= - m.x825 + m.x826 <= 6.983) m.c1083 = Constraint(expr= - m.x826 + m.x827 <= 6.983) m.c1084 = Constraint(expr= - m.x827 + m.x828 <= 6.983) m.c1085 = Constraint(expr= - m.x828 + m.x829 <= 6.983) m.c1086 = Constraint(expr= - m.x829 + m.x830 <= 6.983) m.c1087 = Constraint(expr= - m.x830 + m.x831 <= 6.983) m.c1088 = Constraint(expr= - m.x831 + m.x832 <= 6.983) m.c1089 = Constraint(expr= - m.x832 + m.x833 <= 6.983) m.c1090 = Constraint(expr= - m.x833 + m.x834 <= 6.983) m.c1091 = Constraint(expr= - m.x834 + m.x835 <= 6.983) m.c1092 = Constraint(expr= - m.x835 + m.x836 <= 6.983) m.c1093 = Constraint(expr= - m.x836 + m.x837 <= 6.983) m.c1094 = Constraint(expr= - m.x837 + m.x838 <= 6.983) m.c1095 = Constraint(expr= - m.x838 + m.x839 <= 6.983) m.c1096 = Constraint(expr= - m.x839 + m.x840 <= 6.983) m.c1097 = Constraint(expr= - m.x840 + m.x841 <= 6.983) m.c1098 = Constraint(expr= m.x842 - m.x865 <= 6.983) m.c1099 = Constraint(expr= - m.x842 + m.x843 <= 6.983) m.c1100 = Constraint(expr= - m.x843 + m.x844 <= 6.983) m.c1101 = Constraint(expr= - m.x844 + m.x845 <= 6.983) m.c1102 = Constraint(expr= - m.x845 + m.x846 <= 6.983) m.c1103 = Constraint(expr= - m.x846 + m.x847 <= 6.983) m.c1104 = Constraint(expr= - m.x847 + m.x848 <= 6.983) m.c1105 = Constraint(expr= - m.x848 + m.x849 <= 6.983) m.c1106 = Constraint(expr= - m.x849 + m.x850 <= 6.983) m.c1107 = Constraint(expr= - m.x850 + m.x851 <= 6.983) m.c1108 = Constraint(expr= - m.x851 + m.x852 <= 6.983) m.c1109 = Constraint(expr= - m.x852 + m.x853 <= 6.983) m.c1110 = Constraint(expr= - m.x853 + m.x854 <= 6.983) m.c1111 = Constraint(expr= - m.x854 + m.x855 <= 6.983) m.c1112 = Constraint(expr= - m.x855 + m.x856 <= 6.983) m.c1113 = Constraint(expr= - m.x856 + m.x857 <= 6.983) m.c1114 = Constraint(expr= - m.x857 + m.x858 <= 6.983) m.c1115 = Constraint(expr= - m.x858 + m.x859 <= 6.983) m.c1116 = Constraint(expr= - m.x859 + m.x860 <= 6.983) m.c1117 = Constraint(expr= - m.x860 + m.x861 <= 6.983) m.c1118 = Constraint(expr= - m.x861 + m.x862 <= 6.983) m.c1119 = Constraint(expr= - m.x862 + m.x863 <= 6.983) m.c1120 = Constraint(expr= - m.x863 + m.x864 <= 6.983) m.c1121 = Constraint(expr= - m.x864 + m.x865 <= 6.983) m.c1122 = Constraint(expr= m.x866 - m.x889 <= 5.1187) m.c1123 = Constraint(expr= - m.x866 + m.x867 <= 5.11491) m.c1124 = Constraint(expr= - m.x867 + m.x868 <= 5.11301) m.c1125 = Constraint(expr= - m.x868 + m.x869 <= 5.10922) m.c1126 = Constraint(expr= - m.x869 + m.x870 <= 5.10733) m.c1127 = Constraint(expr= - m.x870 + m.x871 <= 5.10543) m.c1128 = Constraint(expr= - m.x871 + m.x872 <= 5.10733) m.c1129 = Constraint(expr= - m.x872 + m.x873 <= 5.11112) m.c1130 = Constraint(expr= - m.x873 + m.x874 <= 5.12059) m.c1131 = Constraint(expr= - m.x874 + m.x875 <= 5.13954) m.c1132 = Constraint(expr= - m.x875 + m.x876 <= 5.16985) m.c1133 = Constraint(expr= - m.x876 + m.x877 <= 5.20395) m.c1134 = Constraint(expr= - m.x877 + m.x878 <= 5.24374) m.c1135 = Constraint(expr= - m.x878 + m.x879 <= 5.25321) m.c1136 = Constraint(expr= - m.x879 + m.x880 <= 5.22479) m.c1137 = Constraint(expr= - m.x880 + m.x881 <= 5.21721) m.c1138 = Constraint(expr= - m.x881 + m.x882 <= 5.20206) m.c1139 = Constraint(expr= - m.x882 + m.x883 <= 5.17743) m.c1140 = Constraint(expr= - m.x883 + m.x884 <= 5.16227) m.c1141 = Constraint(expr= - m.x884 + m.x885 <= 5.15469) m.c1142 = Constraint(expr= - m.x885 + m.x886 <= 5.14712) m.c1143 = Constraint(expr= - m.x886 + m.x887 <= 5.13954) m.c1144 = Constraint(expr= - m.x887 + m.x888 <= 5.13385) m.c1145 = Constraint(expr= - m.x888 + m.x889 <= 5.12817) m.c1146 = Constraint(expr= m.x890 - m.x913 <= 5.15659) m.c1147 = Constraint(expr= - m.x890 + m.x891 <= 5.17174) m.c1148 = Constraint(expr= - m.x891 + m.x892 <= 5.1888) m.c1149 = Constraint(expr= - m.x892 + m.x893 <= 5.20395) m.c1150 = Constraint(expr= - m.x893 + m.x894 <= 5.221) m.c1151 = Constraint(expr= - m.x894 + m.x895 <= 5.21911) m.c1152 = Constraint(expr= - m.x895 + m.x896 <= 5.221) m.c1153 = Constraint(expr= - m.x896 + m.x897 <= 5.24374) m.c1154 = Constraint(expr= - m.x897 + m.x898 <= 5.25321) m.c1155 = Constraint(expr= - m.x898 + m.x899 <= 5.2911) m.c1156 = Constraint(expr= - m.x899 + m.x900 <= 5.30247) m.c1157 = Constraint(expr= - m.x900 + m.x901 <= 5.31763) m.c1158 = Constraint(expr= - m.x901 + m.x902 <= 5.35741) m.c1159 = Constraint(expr= - m.x902 + m.x903 <= 5.38583) m.c1160 = Constraint(expr= - m.x903 + m.x904 <= 5.37636) m.c1161 = Constraint(expr= - m.x904 + m.x905 <= 5.34984) m.c1162 = Constraint(expr= - m.x905 + m.x906 <= 5.33468) m.c1163 = Constraint(expr= - m.x906 + m.x907 <= 5.2911) m.c1164 = Constraint(expr= - m.x907 + m.x908 <= 5.257) m.c1165 = Constraint(expr= - m.x908 + m.x909 <= 5.24942) m.c1166 = Constraint(expr= - m.x909 + m.x910 <= 5.2229) m.c1167 = Constraint(expr= - m.x910 + m.x911 <= 5.23427) m.c1168 = Constraint(expr= - m.x911 + m.x912 <= 5.22858) m.c1169 = Constraint(expr= - m.x912 + m.x913 <= 5.12817) m.c1170 = Constraint(expr= m.x914 - m.x937 <= 5.1187) m.c1171 = Constraint(expr= - m.x914 + m.x915 <= 5.11491) m.c1172 = Constraint(expr= - m.x915 + m.x916 <= 5.11301) m.c1173 = Constraint(expr= - m.x916 + m.x917 <= 5.10922) m.c1174 = Constraint(expr= - m.x917 + m.x918 <= 5.10733) m.c1175 = Constraint(expr= - m.x918 + m.x919 <= 5.10543) m.c1176 = Constraint(expr= - m.x919 + m.x920 <= 5.10733) m.c1177 = Constraint(expr= - m.x920 + m.x921 <= 5.11112) m.c1178 = Constraint(expr= - m.x921 + m.x922 <= 5.12059) m.c1179 = Constraint(expr= - m.x922 + m.x923 <= 5.13954) m.c1180 = Constraint(expr= - m.x923 + m.x924 <= 5.16985) m.c1181 = Constraint(expr= - m.x924 + m.x925 <= 5.20395) m.c1182 = Constraint(expr= - m.x925 + m.x926 <= 5.24374) m.c1183 = Constraint(expr= - m.x926 + m.x927 <= 5.25321) m.c1184 = Constraint(expr= - m.x927 + m.x928 <= 5.22479) m.c1185 = Constraint(expr= - m.x928 + m.x929 <= 5.21721) m.c1186 = Constraint(expr= - m.x929 + m.x930 <= 5.20206) m.c1187 = Constraint(expr= - m.x930 + m.x931 <= 5.17743) m.c1188 = Constraint(expr= - m.x931 + m.x932 <= 5.16227) m.c1189 = Constraint(expr= - m.x932 + m.x933 <= 5.15469) m.c1190 = Constraint(expr= - m.x933 + m.x934 <= 5.14712) m.c1191 = Constraint(expr= - m.x934 + m.x935 <= 5.13954) m.c1192 = Constraint(expr= - m.x935 + m.x936 <= 5.13385) m.c1193 = Constraint(expr= - m.x936 + m.x937 <= 5.12817) m.c1194 = Constraint(expr= m.x938 - m.x961 <= 5.15659) m.c1195 = Constraint(expr= - m.x938 + m.x939 <= 5.17174) m.c1196 = Constraint(expr= - m.x939 + m.x940 <= 5.1888) m.c1197 = Constraint(expr= - m.x940 + m.x941 <= 5.20395) m.c1198 = Constraint(expr= - m.x941 + m.x942 <= 5.221) m.c1199 = Constraint(expr= - m.x942 + m.x943 <= 5.21911) m.c1200 = Constraint(expr= - m.x943 + m.x944 <= 5.221) m.c1201 = Constraint(expr= - m.x944 + m.x945 <= 5.24374) m.c1202 = Constraint(expr= - m.x945 + m.x946 <= 5.25321) m.c1203 = Constraint(expr= - m.x946 + m.x947 <= 5.2911) m.c1204 = Constraint(expr= - m.x947 + m.x948 <= 5.30247) m.c1205 = Constraint(expr= - m.x948 + m.x949 <= 5.31763) m.c1206 = Constraint(expr= - m.x949 + m.x950 <= 5.35741) m.c1207 = Constraint(expr= - m.x950 + m.x951 <= 5.38583) m.c1208 = Constraint(expr= - m.x951 + m.x952 <= 5.37636) m.c1209 = Constraint(expr= - m.x952 + m.x953 <= 5.34984) m.c1210 = Constraint(expr= - m.x953 + m.x954 <= 5.33468) m.c1211 = Constraint(expr= - m.x954 + m.x955 <= 5.2911) m.c1212 = Constraint(expr= - m.x955 + m.x956 <= 5.257) m.c1213 = Constraint(expr= - m.x956 + m.x957 <= 5.24942) m.c1214 = Constraint(expr= - m.x957 + m.x958 <= 5.2229) m.c1215 = Constraint(expr= - m.x958 + m.x959 <= 5.23427) m.c1216 = Constraint(expr= - m.x959 + m.x960 <= 5.22858) m.c1217 = Constraint(expr= - m.x960 + m.x961 <= 5.12817) m.c1218 = Constraint(expr= m.x962 - m.x985 <= 2.28215) m.c1219 = Constraint(expr= - m.x962 + m.x963 <= 2.28176) m.c1220 = Constraint(expr= - m.x963 + m.x964 <= 2.28157) m.c1221 = Constraint(expr= - m.x964 + m.x965 <= 2.28118) m.c1222 = Constraint(expr= - m.x965 + m.x966 <= 2.28099) m.c1223 = Constraint(expr= - m.x966 + m.x967 <= 2.2808) m.c1224 = Constraint(expr= - m.x967 + m.x968 <= 2.28099) m.c1225 = Constraint(expr= - m.x968 + m.x969 <= 2.28138) m.c1226 = Constraint(expr= - m.x969 + m.x970 <= 2.28235) m.c1227 = Constraint(expr= - m.x970 + m.x971 <= 2.28428) m.c1228 = Constraint(expr= - m.x971 + m.x972 <= 2.28738) m.c1229 = Constraint(expr= - m.x972 + m.x973 <= 2.29087) m.c1230 = Constraint(expr= - m.x973 + m.x974 <= 2.29494) m.c1231 = Constraint(expr= - m.x974 + m.x975 <= 2.29591) m.c1232 = Constraint(expr= - m.x975 + m.x976 <= 2.293) m.c1233 = Constraint(expr= - m.x976 + m.x977 <= 2.29223) m.c1234 = Constraint(expr= - m.x977 + m.x978 <= 2.29068) m.c1235 = Constraint(expr= - m.x978 + m.x979 <= 2.28816) m.c1236 = Constraint(expr= - m.x979 + m.x980 <= 2.28661) m.c1237 = Constraint(expr= - m.x980 + m.x981 <= 2.28583) m.c1238 = Constraint(expr= - m.x981 + m.x982 <= 2.28506) m.c1239 = Constraint(expr= - m.x982 + m.x983 <= 2.28428) m.c1240 = Constraint(expr= - m.x983 + m.x984 <= 2.2837) m.c1241 = Constraint(expr= - m.x984 + m.x985 <= 2.28312) m.c1242 = Constraint(expr= m.x986 - m.x1009 <= 2.28603) m.c1243 = Constraint(expr= - m.x986 + m.x987 <= 2.28758) m.c1244 = Constraint(expr= - m.x987 + m.x988 <= 2.28932) m.c1245 = Constraint(expr= - m.x988 + m.x989 <= 2.29087) m.c1246 = Constraint(expr= - m.x989 + m.x990 <= 2.29262) m.c1247 = Constraint(expr= - m.x990 + m.x991 <= 2.29242) m.c1248 = Constraint(expr= - m.x991 + m.x992 <= 2.29262) m.c1249 = Constraint(expr= - m.x992 + m.x993 <= 2.29494) m.c1250 = Constraint(expr= - m.x993 + m.x994 <= 2.29591) m.c1251 = Constraint(expr= - m.x994 + m.x995 <= 2.29979) m.c1252 = Constraint(expr= - m.x995 + m.x996 <= 2.30095) m.c1253 = Constraint(expr= - m.x996 + m.x997 <= 2.3025) m.c1254 = Constraint(expr= - m.x997 + m.x998 <= 2.30657) m.c1255 = Constraint(expr= - m.x998 + m.x999 <= 2.30947) m.c1256 = Constraint(expr= - m.x999 + m.x1000 <= 2.30851) m.c1257 = Constraint(expr= - m.x1000 + m.x1001 <= 2.30579) m.c1258 = Constraint(expr= - m.x1001 + m.x1002 <= 2.30424) m.c1259 = Constraint(expr= - m.x1002 + m.x1003 <= 2.29979) m.c1260 = Constraint(expr= - m.x1003 + m.x1004 <= 2.2963) m.c1261 = Constraint(expr= - m.x1004 + m.x1005 <= 2.29552) m.c1262 = Constraint(expr= - m.x1005 + m.x1006 <= 2.29281) m.c1263 = Constraint(expr= - m.x1006 + m.x1007 <= 2.29397) m.c1264 = Constraint(expr= - m.x1007 + m.x1008 <= 2.29339) m.c1265 = Constraint(expr= - m.x1008 + m.x1009 <= 2.28312) m.c1266 = Constraint(expr= m.x1010 - m.x1033 <= 2.28215) m.c1267 = Constraint(expr= - m.x1010 + m.x1011 <= 2.28176) m.c1268 = Constraint(expr= - m.x1011 + m.x1012 <= 2.28157) m.c1269 = Constraint(expr= - m.x1012 + m.x1013 <= 2.28118) m.c1270 = Constraint(expr= - m.x1013 + m.x1014 <= 2.28099) m.c1271 = Constraint(expr= - m.x1014 + m.x1015 <= 2.2808) m.c1272 = Constraint(expr= - m.x1015 + m.x1016 <= 2.28099) m.c1273 = Constraint(expr= - m.x1016 + m.x1017 <= 2.28138) m.c1274 = Constraint(expr= - m.x1017 + m.x1018 <= 2.28235) m.c1275 = Constraint(expr= - m.x1018 + m.x1019 <= 2.28428) m.c1276 = Constraint(expr= - m.x1019 + m.x1020 <= 2.28738) m.c1277 = Constraint(expr= - m.x1020 + m.x1021 <= 2.29087) m.c1278 = Constraint(expr= - m.x1021 + m.x1022 <= 2.29494) m.c1279 = Constraint(expr= - m.x1022 + m.x1023 <= 2.29591) m.c1280 = Constraint(expr= - m.x1023 + m.x1024 <= 2.293) m.c1281 = Constraint(expr= - m.x1024 + m.x1025 <= 2.29223) m.c1282 = Constraint(expr= - m.x1025 + m.x1026 <= 2.29068) m.c1283 = Constraint(expr= - m.x1026 + m.x1027 <= 2.28816) m.c1284 = Constraint(expr= - m.x1027 + m.x1028 <= 2.28661) m.c1285 = Constraint(expr= - m.x1028 + m.x1029 <= 2.28583) m.c1286 = Constraint(expr= - m.x1029 + m.x1030 <= 2.28506) m.c1287 = Constraint(expr= - m.x1030 + m.x1031 <= 2.28428) m.c1288 = Constraint(expr= - m.x1031 + m.x1032 <= 2.2837) m.c1289 = Constraint(expr= - m.x1032 + m.x1033 <= 2.28312) m.c1290 = Constraint(expr= m.x1034 - m.x1057 <= 2.28603) m.c1291 = Constraint(expr= - m.x1034 + m.x1035 <= 2.28758) m.c1292 = Constraint(expr= - m.x1035 + m.x1036 <= 2.28932) m.c1293 = Constraint(expr= - m.x1036 + m.x1037 <= 2.29087) m.c1294 = Constraint(expr= - m.x1037 + m.x1038 <= 2.29262) m.c1295 = Constraint(expr= - m.x1038 + m.x1039 <= 2.29242) m.c1296 = Constraint(expr= - m.x1039 + m.x1040 <= 2.29262) m.c1297 = Constraint(expr= - m.x1040 + m.x1041 <= 2.29494) m.c1298 = Constraint(expr= - m.x1041 + m.x1042 <= 2.29591) m.c1299 = Constraint(expr= - m.x1042 + m.x1043 <= 2.29979) m.c1300 = Constraint(expr= - m.x1043 + m.x1044 <= 2.30095) m.c1301 = Constraint(expr= - m.x1044 + m.x1045 <= 2.3025) m.c1302 = Constraint(expr= - m.x1045 + m.x1046 <= 2.30657) m.c1303 = Constraint(expr= - m.x1046 + m.x1047 <= 2.30947) m.c1304 = Constraint(expr= - m.x1047 + m.x1048 <= 2.30851) m.c1305 = Constraint(expr= - m.x1048 + m.x1049 <= 2.30579) m.c1306 = Constraint(expr= - m.x1049 + m.x1050 <= 2.30424) m.c1307 = Constraint(expr= - m.x1050 + m.x1051 <= 2.29979) m.c1308 = Constraint(expr= - m.x1051 + m.x1052 <= 2.2963) m.c1309 = Constraint(expr= - m.x1052 + m.x1053 <= 2.29552) m.c1310 = Constraint(expr= - m.x1053 + m.x1054 <= 2.29281) m.c1311 = Constraint(expr= - m.x1054 + m.x1055 <= 2.29397) m.c1312 = Constraint(expr= - m.x1055 + m.x1056 <= 2.29339) m.c1313 = Constraint(expr= - m.x1056 + m.x1057 <= 2.28312) m.c1314 = Constraint(expr= m.x1058 - m.x1081 <= 2.28215) m.c1315 = Constraint(expr= - m.x1058 + m.x1059 <= 2.28176) m.c1316 = Constraint(expr= - m.x1059 + m.x1060 <= 2.28157) m.c1317 = Constraint(expr= - m.x1060 + m.x1061 <= 2.28118) m.c1318 = Constraint(expr= - m.x1061 + m.x1062 <= 2.28099) m.c1319 = Constraint(expr= - m.x1062 + m.x1063 <= 2.2808) m.c1320 = Constraint(expr= - m.x1063 + m.x1064 <= 2.28099) m.c1321 = Constraint(expr= - m.x1064 + m.x1065 <= 2.28138) m.c1322 = Constraint(expr= - m.x1065 + m.x1066 <= 2.28235) m.c1323 = Constraint(expr= - m.x1066 + m.x1067 <= 2.28428) m.c1324 = Constraint(expr= - m.x1067 + m.x1068 <= 2.28738) m.c1325 = Constraint(expr= - m.x1068 + m.x1069 <= 2.29087) m.c1326 = Constraint(expr= - m.x1069 + m.x1070 <= 2.29494) m.c1327 = Constraint(expr= - m.x1070 + m.x1071 <= 2.29591) m.c1328 = Constraint(expr= - m.x1071 + m.x1072 <= 2.293) m.c1329 = Constraint(expr= - m.x1072 + m.x1073 <= 2.29223) m.c1330 = Constraint(expr= - m.x1073 + m.x1074 <= 2.29068) m.c1331 = Constraint(expr= - m.x1074 + m.x1075 <= 2.28816) m.c1332 = Constraint(expr= - m.x1075 + m.x1076 <= 2.28661) m.c1333 = Constraint(expr= - m.x1076 + m.x1077 <= 2.28583) m.c1334 = Constraint(expr= - m.x1077 + m.x1078 <= 2.28506) m.c1335 = Constraint(expr= - m.x1078 + m.x1079 <= 2.28428) m.c1336 = Constraint(expr= - m.x1079 + m.x1080 <= 2.2837) m.c1337 = Constraint(expr= - m.x1080 + m.x1081 <= 2.28312) m.c1338 = Constraint(expr= m.x1082 - m.x1105 <= 2.28603) m.c1339 = Constraint(expr= - m.x1082 + m.x1083 <= 2.28758) m.c1340 = Constraint(expr= - m.x1083 + m.x1084 <= 2.28932) m.c1341 = Constraint(expr= - m.x1084 + m.x1085 <= 2.29087) m.c1342 = Constraint(expr= - m.x1085 + m.x1086 <= 2.29262) m.c1343 = Constraint(expr= - m.x1086 + m.x1087 <= 2.29242) m.c1344 = Constraint(expr= - m.x1087 + m.x1088 <= 2.29262) m.c1345 = Constraint(expr= - m.x1088 + m.x1089 <= 2.29494) m.c1346 = Constraint(expr= - m.x1089 + m.x1090 <= 2.29591) m.c1347 = Constraint(expr= - m.x1090 + m.x1091 <= 2.29979) m.c1348 = Constraint(expr= - m.x1091 + m.x1092 <= 2.30095) m.c1349 = Constraint(expr= - m.x1092 + m.x1093 <= 2.3025) m.c1350 = Constraint(expr= - m.x1093 + m.x1094 <= 2.30657) m.c1351 = Constraint(expr= - m.x1094 + m.x1095 <= 2.30947) m.c1352 = Constraint(expr= - m.x1095 + m.x1096 <= 2.30851) m.c1353 = Constraint(expr= - m.x1096 + m.x1097 <= 2.30579) m.c1354 = Constraint(expr= - m.x1097 + m.x1098 <= 2.30424) m.c1355 = Constraint(expr= - m.x1098 + m.x1099 <= 2.29979) m.c1356 = Constraint(expr= - m.x1099 + m.x1100 <= 2.2963) m.c1357 = Constraint(expr= - m.x1100 + m.x1101 <= 2.29552) m.c1358 = Constraint(expr= - m.x1101 + m.x1102 <= 2.29281) m.c1359 = Constraint(expr= - m.x1102 + m.x1103 <= 2.29397) m.c1360 = Constraint(expr= - m.x1103 + m.x1104 <= 2.29339) m.c1361 = Constraint(expr= - m.x1104 + m.x1105 <= 2.28312) m.c1362 = Constraint(expr= m.x1106 - m.x1129 <= 2.28215) m.c1363 = Constraint(expr= - m.x1106 + m.x1107 <= 2.28176) m.c1364 = Constraint(expr= - m.x1107 + m.x1108 <= 2.28157) m.c1365 = Constraint(expr= - m.x1108 + m.x1109 <= 2.28118) m.c1366 = Constraint(expr= - m.x1109 + m.x1110 <= 2.28099) m.c1367 = Constraint(expr= - m.x1110 + m.x1111 <= 2.2808) m.c1368 = Constraint(expr= - m.x1111 + m.x1112 <= 2.28099) m.c1369 = Constraint(expr= - m.x1112 + m.x1113 <= 2.28138) m.c1370 = Constraint(expr= - m.x1113 + m.x1114 <= 2.28235) m.c1371 = Constraint(expr= - m.x1114 + m.x1115 <= 2.28428) m.c1372 = Constraint(expr= - m.x1115 + m.x1116 <= 2.28738) m.c1373 = Constraint(expr= - m.x1116 + m.x1117 <= 2.29087) m.c1374 = Constraint(expr= - m.x1117 + m.x1118 <= 2.29494) m.c1375 = Constraint(expr= - m.x1118 + m.x1119 <= 2.29591) m.c1376 = Constraint(expr= - m.x1119 + m.x1120 <= 2.293) m.c1377 = Constraint(expr= - m.x1120 + m.x1121 <= 2.29223) m.c1378 = Constraint(expr= - m.x1121 + m.x1122 <= 2.29068) m.c1379 = Constraint(expr= - m.x1122 + m.x1123 <= 2.28816) m.c1380 = Constraint(expr= - m.x1123 + m.x1124 <= 2.28661) m.c1381 = Constraint(expr= - m.x1124 + m.x1125 <= 2.28583) m.c1382 = Constraint(expr= - m.x1125 + m.x1126 <= 2.28506) m.c1383 = Constraint(expr= - m.x1126 + m.x1127 <= 2.28428) m.c1384 = Constraint(expr= - m.x1127 + m.x1128 <= 2.2837) m.c1385 = Constraint(expr= - m.x1128 + m.x1129 <= 2.28312) m.c1386 = Constraint(expr= m.x1130 - m.x1153 <= 2.28603) m.c1387 = Constraint(expr= - m.x1130 + m.x1131 <= 2.28758) m.c1388 = Constraint(expr= - m.x1131 + m.x1132 <= 2.28932) m.c1389 = Constraint(expr= - m.x1132 + m.x1133 <= 2.29087) m.c1390 = Constraint(expr= - m.x1133 + m.x1134 <= 2.29262) m.c1391 = Constraint(expr= - m.x1134 + m.x1135 <= 2.29242) m.c1392 = Constraint(expr= - m.x1135 + m.x1136 <= 2.29262) m.c1393 = Constraint(expr= - m.x1136 + m.x1137 <= 2.29494) m.c1394 = Constraint(expr= - m.x1137 + m.x1138 <= 2.29591) m.c1395 = Constraint(expr= - m.x1138 + m.x1139 <= 2.29979) m.c1396 = Constraint(expr= - m.x1139 + m.x1140 <= 2.30095) m.c1397 = Constraint(expr= - m.x1140 + m.x1141 <= 2.3025) m.c1398 = Constraint(expr= - m.x1141 + m.x1142 <= 2.30657) m.c1399 = Constraint(expr= - m.x1142 + m.x1143 <= 2.30947) m.c1400 = Constraint(expr= - m.x1143 + m.x1144 <= 2.30851) m.c1401 = Constraint(expr= - m.x1144 + m.x1145 <= 2.30579) m.c1402 = Constraint(expr= - m.x1145 + m.x1146 <= 2.30424) m.c1403 = Constraint(expr= - m.x1146 + m.x1147 <= 2.29979) m.c1404 = Constraint(expr= - m.x1147 + m.x1148 <= 2.2963) m.c1405 = Constraint(expr= - m.x1148 + m.x1149 <= 2.29552) m.c1406 = Constraint(expr= - m.x1149 + m.x1150 <= 2.29281) m.c1407 = Constraint(expr= - m.x1150 + m.x1151 <= 2.29397) m.c1408 = Constraint(expr= - m.x1151 + m.x1152 <= 2.29339) m.c1409 = Constraint(expr= - m.x1152 + m.x1153 <= 2.28312) m.c1410 = Constraint(expr= m.x770 - m.x793 >= -6.983) m.c1411 = Constraint(expr= - m.x770 + m.x771 >= -6.983) m.c1412 = Constraint(expr= - m.x771 + m.x772 >= -6.983) m.c1413 = Constraint(expr= - m.x772 + m.x773 >= -6.983) m.c1414 = Constraint(expr= - m.x773 + m.x774 >= -6.983) m.c1415 = Constraint(expr= - m.x774 + m.x775 >= -6.983) m.c1416 = Constraint(expr= - m.x775 + m.x776 >= -6.983) m.c1417 = Constraint(expr= - m.x776 + m.x777 >= -6.983) m.c1418 = Constraint(expr= - m.x777 + m.x778 >= -6.983) m.c1419 = Constraint(expr= - m.x778 + m.x779 >= -6.983) m.c1420 = Constraint(expr= - m.x779 + m.x780 >= -6.983) m.c1421 = Constraint(expr= - m.x780 + m.x781 >= -6.983) m.c1422 = Constraint(expr= - m.x781 + m.x782 >= -6.983) m.c1423 = Constraint(expr= - m.x782 + m.x783 >= -6.983) m.c1424 = Constraint(expr= - m.x783 + m.x784 >= -6.983) m.c1425 = Constraint(expr= - m.x784 + m.x785 >= -6.983) m.c1426 = Constraint(expr= - m.x785 + m.x786 >= -6.983) m.c1427 = Constraint(expr= - m.x786 + m.x787 >= -6.983) m.c1428 = Constraint(expr= - m.x787 + m.x788 >= -6.983) m.c1429 = Constraint(expr= - m.x788 + m.x789 >= -6.983) m.c1430 = Constraint(expr= - m.x789 + m.x790 >= -6.983) m.c1431 = Constraint(expr= - m.x790 + m.x791 >= -6.983) m.c1432 = Constraint(expr= - m.x791 + m.x792 >= -6.983) m.c1433 = Constraint(expr= - m.x792 + m.x793 >= -6.983) m.c1434 = Constraint(expr= m.x794 - m.x817 >= -6.983) m.c1435 = Constraint(expr= - m.x794 + m.x795 >= -6.983) m.c1436 = Constraint(expr= - m.x795 + m.x796 >= -6.983) m.c1437 = Constraint(expr= - m.x796 + m.x797 >= -6.983) m.c1438 = Constraint(expr= - m.x797 + m.x798 >= -6.983) m.c1439 = Constraint(expr= - m.x798 + m.x799 >= -6.983) m.c1440 = Constraint(expr= - m.x799 + m.x800 >= -6.983) m.c1441 = Constraint(expr= - m.x800 + m.x801 >= -6.983) m.c1442 = Constraint(expr= - m.x801 + m.x802 >= -6.983) m.c1443 = Constraint(expr= - m.x802 + m.x803 >= -6.983) m.c1444 = Constraint(expr= - m.x803 + m.x804 >= -6.983) m.c1445 = Constraint(expr= - m.x804 + m.x805 >= -6.983) m.c1446 = Constraint(expr= - m.x805 + m.x806 >= -6.983) m.c1447 = Constraint(expr= - m.x806 + m.x807 >= -6.983) m.c1448 = Constraint(expr= - m.x807 + m.x808 >= -6.983) m.c1449 = Constraint(expr= - m.x808 + m.x809 >= -6.983) m.c1450 = Constraint(expr= - m.x809 + m.x810 >= -6.983) m.c1451 = Constraint(expr= - m.x810 + m.x811 >= -6.983) m.c1452 = Constraint(expr= - m.x811 + m.x812 >= -6.983) m.c1453 = Constraint(expr= - m.x812 + m.x813 >= -6.983) m.c1454 = Constraint(expr= - m.x813 + m.x814 >= -6.983) m.c1455 = Constraint(expr= - m.x814 + m.x815 >= -6.983) m.c1456 = Constraint(expr= - m.x815 + m.x816 >= -6.983) m.c1457 = Constraint(expr= - m.x816 + m.x817 >= -6.983) m.c1458 = Constraint(expr= m.x818 - m.x841 >= -6.983) m.c1459 = Constraint(expr= - m.x818 + m.x819 >= -6.983) m.c1460 = Constraint(expr= - m.x819 + m.x820 >= -6.983) m.c1461 = Constraint(expr= - m.x820 + m.x821 >= -6.983) m.c1462 = Constraint(expr= - m.x821 + m.x822 >= -6.983) m.c1463 = Constraint(expr= - m.x822 + m.x823 >= -6.983) m.c1464 = Constraint(expr= - m.x823 + m.x824 >= -6.983) m.c1465 = Constraint(expr= - m.x824 + m.x825 >= -6.983) m.c1466 = Constraint(expr= - m.x825 + m.x826 >= -6.983) m.c1467 = Constraint(expr= - m.x826 + m.x827 >= -6.983) m.c1468 = Constraint(expr= - m.x827 + m.x828 >= -6.983) m.c1469 = Constraint(expr= - m.x828 + m.x829 >= -6.983) m.c1470 = Constraint(expr= - m.x829 + m.x830 >= -6.983) m.c1471 = Constraint(expr= - m.x830 + m.x831 >= -6.983) m.c1472 = Constraint(expr= - m.x831 + m.x832 >= -6.983) m.c1473 = Constraint(expr= - m.x832 + m.x833 >= -6.983) m.c1474 = Constraint(expr= - m.x833 + m.x834 >= -6.983) m.c1475 = Constraint(expr= - m.x834 + m.x835 >= -6.983) m.c1476 = Constraint(expr= - m.x835 + m.x836 >= -6.983) m.c1477 = Constraint(expr= - m.x836 + m.x837 >= -6.983) m.c1478 = Constraint(expr= - m.x837 + m.x838 >= -6.983) m.c1479 = Constraint(expr= - m.x838 + m.x839 >= -6.983) m.c1480 = Constraint(expr= - m.x839 + m.x840 >= -6.983) m.c1481 = Constraint(expr= - m.x840 + m.x841 >= -6.983) m.c1482 = Constraint(expr= m.x842 - m.x865 >= -6.983) m.c1483 = Constraint(expr= - m.x842 + m.x843 >= -6.983) m.c1484 = Constraint(expr= - m.x843 + m.x844 >= -6.983) m.c1485 = Constraint(expr= - m.x844 + m.x845 >= -6.983) m.c1486 = Constraint(expr= - m.x845 + m.x846 >= -6.983) m.c1487 = Constraint(expr= - m.x846 + m.x847 >= -6.983) m.c1488 = Constraint(expr= - m.x847 + m.x848 >= -6.983) m.c1489 = Constraint(expr= - m.x848 + m.x849 >= -6.983) m.c1490 = Constraint(expr= - m.x849 + m.x850 >= -6.983) m.c1491 = Constraint(expr= - m.x850 + m.x851 >= -6.983) m.c1492 = Constraint(expr= - m.x851 + m.x852 >= -6.983) m.c1493 = Constraint(expr= - m.x852 + m.x853 >= -6.983) m.c1494 = Constraint(expr= - m.x853 + m.x854 >= -6.983) m.c1495 = Constraint(expr= - m.x854 + m.x855 >= -6.983) m.c1496 = Constraint(expr= - m.x855 + m.x856 >= -6.983) m.c1497 = Constraint(expr= - m.x856 + m.x857 >= -6.983) m.c1498 = Constraint(expr= - m.x857 + m.x858 >= -6.983) m.c1499 = Constraint(expr= - m.x858 + m.x859 >= -6.983) m.c1500 = Constraint(expr= - m.x859 + m.x860 >= -6.983) m.c1501 = Constraint(expr= - m.x860 + m.x861 >= -6.983) m.c1502 = Constraint(expr= - m.x861 + m.x862 >= -6.983) m.c1503 = Constraint(expr= - m.x862 + m.x863 >= -6.983) m.c1504 = Constraint(expr= - m.x863 + m.x864 >= -6.983) m.c1505 = Constraint(expr= - m.x864 + m.x865 >= -6.983) m.c1506 = Constraint(expr= m.x866 - m.x889 >= -5.1187) m.c1507 = Constraint(expr= - m.x866 + m.x867 >= -5.11491) m.c1508 = Constraint(expr= - m.x867 + m.x868 >= -5.11301) m.c1509 = Constraint(expr= - m.x868 + m.x869 >= -5.10922) m.c1510 = Constraint(expr= - m.x869 + m.x870 >= -5.10733) m.c1511 = Constraint(expr= - m.x870 + m.x871 >= -5.10543) m.c1512 = Constraint(expr= - m.x871 + m.x872 >= -5.10733) m.c1513 = Constraint(expr= - m.x872 + m.x873 >= -5.11112) m.c1514 = Constraint(expr= - m.x873 + m.x874 >= -5.12059) m.c1515 = Constraint(expr= - m.x874 + m.x875 >= -5.13954) m.c1516 = Constraint(expr= - m.x875 + m.x876 >= -5.16985) m.c1517 = Constraint(expr= - m.x876 + m.x877 >= -5.20395) m.c1518 = Constraint(expr= - m.x877 + m.x878 >= -5.24374) m.c1519 = Constraint(expr= - m.x878 + m.x879 >= -5.25321) m.c1520 = Constraint(expr= - m.x879 + m.x880 >= -5.22479) m.c1521 = Constraint(expr= - m.x880 + m.x881 >= -5.21721) m.c1522 = Constraint(expr= - m.x881 + m.x882 >= -5.20206) m.c1523 = Constraint(expr= - m.x882 + m.x883 >= -5.17743) m.c1524 = Constraint(expr= - m.x883 + m.x884 >= -5.16227) m.c1525 = Constraint(expr= - m.x884 + m.x885 >= -5.15469) m.c1526 = Constraint(expr= - m.x885 + m.x886 >= -5.14712) m.c1527 = Constraint(expr= - m.x886 + m.x887 >= -5.13954) m.c1528 = Constraint(expr= - m.x887 + m.x888 >= -5.13385) m.c1529 = Constraint(expr= - m.x888 + m.x889 >= -5.12817) m.c1530 = Constraint(expr= m.x890 - m.x913 >= -5.15659) m.c1531 = Constraint(expr= - m.x890 + m.x891 >= -5.17174) m.c1532 = Constraint(expr= - m.x891 + m.x892 >= -5.1888) m.c1533 = Constraint(expr= - m.x892 + m.x893 >= -5.20395) m.c1534 = Constraint(expr= - m.x893 + m.x894 >= -5.221) m.c1535 = Constraint(expr= - m.x894 + m.x895 >= -5.21911) m.c1536 = Constraint(expr= - m.x895 + m.x896 >= -5.221) m.c1537 = Constraint(expr= - m.x896 + m.x897 >= -5.24374) m.c1538 = Constraint(expr= - m.x897 + m.x898 >= -5.25321) m.c1539 = Constraint(expr= - m.x898 + m.x899 >= -5.2911) m.c1540 = Constraint(expr= - m.x899 + m.x900 >= -5.30247) m.c1541 = Constraint(expr= - m.x900 + m.x901 >= -5.31763) m.c1542 = Constraint(expr= - m.x901 + m.x902 >= -5.35741) m.c1543 = Constraint(expr= - m.x902 + m.x903 >= -5.38583) m.c1544 = Constraint(expr= - m.x903 + m.x904 >= -5.37636) m.c1545 = Constraint(expr= - m.x904 + m.x905 >= -5.34984) m.c1546 = Constraint(expr= - m.x905 + m.x906 >= -5.33468) m.c1547 = Constraint(expr= - m.x906 + m.x907 >= -5.2911) m.c1548 = Constraint(expr= - m.x907 + m.x908 >= -5.257) m.c1549 = Constraint(expr= - m.x908 + m.x909 >= -5.24942) m.c1550 = Constraint(expr= - m.x909 + m.x910 >= -5.2229) m.c1551 = Constraint(expr= - m.x910 + m.x911 >= -5.23427) m.c1552 = Constraint(expr= - m.x911 + m.x912 >= -5.22858) m.c1553 = Constraint(expr= - m.x912 + m.x913 >= -5.12817) m.c1554 = Constraint(expr= m.x914 - m.x937 >= -5.1187) m.c1555 = Constraint(expr= - m.x914 + m.x915 >= -5.11491) m.c1556 = Constraint(expr= - m.x915 + m.x916 >= -5.11301) m.c1557 = Constraint(expr= - m.x916 + m.x917 >= -5.10922) m.c1558 = Constraint(expr= - m.x917 + m.x918 >= -5.10733) m.c1559 = Constraint(expr= - m.x918 + m.x919 >= -5.10543) m.c1560 = Constraint(expr= - m.x919 + m.x920 >= -5.10733) m.c1561 = Constraint(expr= - m.x920 + m.x921 >= -5.11112) m.c1562 = Constraint(expr= - m.x921 + m.x922 >= -5.12059) m.c1563 = Constraint(expr= - m.x922 + m.x923 >= -5.13954) m.c1564 = Constraint(expr= - m.x923 + m.x924 >= -5.16985) m.c1565 = Constraint(expr= - m.x924 + m.x925 >= -5.20395) m.c1566 = Constraint(expr= - m.x925 + m.x926 >= -5.24374) m.c1567 = Constraint(expr= - m.x926 + m.x927 >= -5.25321) m.c1568 = Constraint(expr= - m.x927 + m.x928 >= -5.22479) m.c1569 = Constraint(expr= - m.x928 + m.x929 >= -5.21721) m.c1570 = Constraint(expr= - m.x929 + m.x930 >= -5.20206) m.c1571 = Constraint(expr= - m.x930 + m.x931 >= -5.17743) m.c1572 = Constraint(expr= - m.x931 + m.x932 >= -5.16227) m.c1573 = Constraint(expr= - m.x932 + m.x933 >= -5.15469) m.c1574 = Constraint(expr= - m.x933 + m.x934 >= -5.14712) m.c1575 = Constraint(expr= - m.x934 + m.x935 >= -5.13954) m.c1576 = Constraint(expr= - m.x935 + m.x936 >= -5.13385) m.c1577 = Constraint(expr= - m.x936 + m.x937 >= -5.12817) m.c1578 = Constraint(expr= m.x938 - m.x961 >= -5.15659) m.c1579 = Constraint(expr= - m.x938 + m.x939 >= -5.17174) m.c1580 = Constraint(expr= - m.x939 + m.x940 >= -5.1888) m.c1581 = Constraint(expr= - m.x940 + m.x941 >= -5.20395) m.c1582 = Constraint(expr= - m.x941 + m.x942 >= -5.221) m.c1583 = Constraint(expr= - m.x942 + m.x943 >= -5.21911) m.c1584 = Constraint(expr= - m.x943 + m.x944 >= -5.221) m.c1585 = Constraint(expr= - m.x944 + m.x945 >= -5.24374) m.c1586 = Constraint(expr= - m.x945 + m.x946 >= -5.25321) m.c1587 = Constraint(expr= - m.x946 + m.x947 >= -5.2911) m.c1588 = Constraint(expr= - m.x947 + m.x948 >= -5.30247) m.c1589 = Constraint(expr= - m.x948 + m.x949 >= -5.31763) m.c1590 = Constraint(expr= - m.x949 + m.x950 >= -5.35741) m.c1591 = Constraint(expr= - m.x950 + m.x951 >= -5.38583) m.c1592 = Constraint(expr= - m.x951 + m.x952 >= -5.37636) m.c1593 = Constraint(expr= - m.x952 + m.x953 >= -5.34984) m.c1594 = Constraint(expr= - m.x953 + m.x954 >= -5.33468) m.c1595 = Constraint(expr= - m.x954 + m.x955 >= -5.2911) m.c1596 = Constraint(expr= - m.x955 + m.x956 >= -5.257) m.c1597 = Constraint(expr= - m.x956 + m.x957 >= -5.24942) m.c1598 = Constraint(expr= - m.x957 + m.x958 >= -5.2229) m.c1599 = Constraint(expr= - m.x958 + m.x959 >= -5.23427) m.c1600 = Constraint(expr= - m.x959 + m.x960 >= -5.22858) m.c1601 = Constraint(expr= - m.x960 + m.x961 >= -5.12817) m.c1602 = Constraint(expr= m.x962 - m.x985 >= -2.28215) m.c1603 = Constraint(expr= - m.x962 + m.x963 >= -2.28176) m.c1604 = Constraint(expr= - m.x963 + m.x964 >= -2.28157) m.c1605 = Constraint(expr= - m.x964 + m.x965 >= -2.28118) m.c1606 = Constraint(expr= - m.x965 + m.x966 >= -2.28099) m.c1607 = Constraint(expr= - m.x966 + m.x967 >= -2.2808) m.c1608 = Constraint(expr= - m.x967 + m.x968 >= -2.28099) m.c1609 = Constraint(expr= - m.x968 + m.x969 >= -2.28138) m.c1610 = Constraint(expr= - m.x969 + m.x970 >= -2.28235) m.c1611 = Constraint(expr= - m.x970 + m.x971 >= -2.28428) m.c1612 = Constraint(expr= - m.x971 + m.x972 >= -2.28738) m.c1613 = Constraint(expr= - m.x972 + m.x973 >= -2.29087) m.c1614 = Constraint(expr= - m.x973 + m.x974 >= -2.29494) m.c1615 = Constraint(expr= - m.x974 + m.x975 >= -2.29591) m.c1616 = Constraint(expr= - m.x975 + m.x976 >= -2.293) m.c1617 = Constraint(expr= - m.x976 + m.x977 >= -2.29223) m.c1618 = Constraint(expr= - m.x977 + m.x978 >= -2.29068) m.c1619 = Constraint(expr= - m.x978 + m.x979 >= -2.28816) m.c1620 = Constraint(expr= - m.x979 + m.x980 >= -2.28661) m.c1621 = Constraint(expr= - m.x980 + m.x981 >= -2.28583) m.c1622 = Constraint(expr= - m.x981 + m.x982 >= -2.28506) m.c1623 = Constraint(expr= - m.x982 + m.x983 >= -2.28428) m.c1624 = Constraint(expr= - m.x983 + m.x984 >= -2.2837) m.c1625 = Constraint(expr= - m.x984 + m.x985 >= -2.28312) m.c1626 = Constraint(expr= m.x986 - m.x1009 >= -2.28603) m.c1627 = Constraint(expr= - m.x986 + m.x987 >= -2.28758) m.c1628 = Constraint(expr= - m.x987 + m.x988 >= -2.28932) m.c1629 = Constraint(expr= - m.x988 + m.x989 >= -2.29087) m.c1630 = Constraint(expr= - m.x989 + m.x990 >= -2.29262) m.c1631 = Constraint(expr= - m.x990 + m.x991 >= -2.29242) m.c1632 = Constraint(expr= - m.x991 + m.x992 >= -2.29262) m.c1633 = Constraint(expr= - m.x992 + m.x993 >= -2.29494) m.c1634 = Constraint(expr= - m.x993 + m.x994 >= -2.29591) m.c1635 = Constraint(expr= - m.x994 + m.x995 >= -2.29979) m.c1636 = Constraint(expr= - m.x995 + m.x996 >= -2.30095) m.c1637 = Constraint(expr= - m.x996 + m.x997 >= -2.3025) m.c1638 = Constraint(expr= - m.x997 + m.x998 >= -2.30657) m.c1639 = Constraint(expr= - m.x998 + m.x999 >= -2.30947) m.c1640 = Constraint(expr= - m.x999 + m.x1000 >= -2.30851) m.c1641 = Constraint(expr= - m.x1000 + m.x1001 >= -2.30579) m.c1642 = Constraint(expr= - m.x1001 + m.x1002 >= -2.30424) m.c1643 = Constraint(expr= - m.x1002 + m.x1003 >= -2.29979) m.c1644 = Constraint(expr= - m.x1003 + m.x1004 >= -2.2963) m.c1645 = Constraint(expr= - m.x1004 + m.x1005 >= -2.29552) m.c1646 = Constraint(expr= - m.x1005 + m.x1006 >= -2.29281) m.c1647 = Constraint(expr= - m.x1006 + m.x1007 >= -2.29397) m.c1648 = Constraint(expr= - m.x1007 + m.x1008 >= -2.29339) m.c1649 = Constraint(expr= - m.x1008 + m.x1009 >= -2.28312) m.c1650 = Constraint(expr= m.x1010 - m.x1033 >= -2.28215) m.c1651 = Constraint(expr= - m.x1010 + m.x1011 >= -2.28176) m.c1652 = Constraint(expr= - m.x1011 + m.x1012 >= -2.28157) m.c1653 = Constraint(expr= - m.x1012 + m.x1013 >= -2.28118) m.c1654 = Constraint(expr= - m.x1013 + m.x1014 >= -2.28099) m.c1655 = Constraint(expr= - m.x1014 + m.x1015 >= -2.2808) m.c1656 = Constraint(expr= - m.x1015 + m.x1016 >= -2.28099) m.c1657 = Constraint(expr= - m.x1016 + m.x1017 >= -2.28138) m.c1658 = Constraint(expr= - m.x1017 + m.x1018 >= -2.28235) m.c1659 = Constraint(expr= - m.x1018 + m.x1019 >= -2.28428) m.c1660 = Constraint(expr= - m.x1019 + m.x1020 >= -2.28738) m.c1661 = Constraint(expr= - m.x1020 + m.x1021 >= -2.29087) m.c1662 = Constraint(expr= - m.x1021 + m.x1022 >= -2.29494) m.c1663 = Constraint(expr= - m.x1022 + m.x1023 >= -2.29591) m.c1664 = Constraint(expr= - m.x1023 + m.x1024 >= -2.293) m.c1665 = Constraint(expr= - m.x1024 + m.x1025 >= -2.29223) m.c1666 = Constraint(expr= - m.x1025 + m.x1026 >= -2.29068) m.c1667 = Constraint(expr= - m.x1026 + m.x1027 >= -2.28816) m.c1668 = Constraint(expr= - m.x1027 + m.x1028 >= -2.28661) m.c1669 = Constraint(expr= - m.x1028 + m.x1029 >= -2.28583) m.c1670 = Constraint(expr= - m.x1029 + m.x1030 >= -2.28506) m.c1671 = Constraint(expr= - m.x1030 + m.x1031 >= -2.28428) m.c1672 = Constraint(expr= - m.x1031 + m.x1032 >= -2.2837) m.c1673 = Constraint(expr= - m.x1032 + m.x1033 >= -2.28312) m.c1674 = Constraint(expr= m.x1034 - m.x1057 >= -2.28603) m.c1675 = Constraint(expr= - m.x1034 + m.x1035 >= -2.28758) m.c1676 = Constraint(expr= - m.x1035 + m.x1036 >= -2.28932) m.c1677 = Constraint(expr= - m.x1036 + m.x1037 >= -2.29087) m.c1678 = Constraint(expr= - m.x1037 + m.x1038 >= -2.29262) m.c1679 = Constraint(expr= - m.x1038 + m.x1039 >= -2.29242) m.c1680 = Constraint(expr= - m.x1039 + m.x1040 >= -2.29262) m.c1681 = Constraint(expr= - m.x1040 + m.x1041 >= -2.29494) m.c1682 = Constraint(expr= - m.x1041 + m.x1042 >= -2.29591) m.c1683 = Constraint(expr= - m.x1042 + m.x1043 >= -2.29979) m.c1684 = Constraint(expr= - m.x1043 + m.x1044 >= -2.30095) m.c1685 = Constraint(expr= - m.x1044 + m.x1045 >= -2.3025) m.c1686 = Constraint(expr= - m.x1045 + m.x1046 >= -2.30657) m.c1687 = Constraint(expr= - m.x1046 + m.x1047 >= -2.30947) m.c1688 = Constraint(expr= - m.x1047 + m.x1048 >= -2.30851) m.c1689 = Constraint(expr= - m.x1048 + m.x1049 >= -2.30579) m.c1690 = Constraint(expr= - m.x1049 + m.x1050 >= -2.30424) m.c1691 = Constraint(expr= - m.x1050 + m.x1051 >= -2.29979) m.c1692 = Constraint(expr= - m.x1051 + m.x1052 >= -2.2963) m.c1693 = Constraint(expr= - m.x1052 + m.x1053 >= -2.29552) m.c1694 = Constraint(expr= - m.x1053 + m.x1054 >= -2.29281) m.c1695 = Constraint(expr= - m.x1054 + m.x1055 >= -2.29397) m.c1696 = Constraint(expr= - m.x1055 + m.x1056 >= -2.29339) m.c1697 = Constraint(expr= - m.x1056 + m.x1057 >= -2.28312) m.c1698 = Constraint(expr= m.x1058 - m.x1081 >= -2.28215) m.c1699 = Constraint(expr= - m.x1058 + m.x1059 >= -2.28176) m.c1700 = Constraint(expr= - m.x1059 + m.x1060 >= -2.28157) m.c1701 = Constraint(expr= - m.x1060 + m.x1061 >= -2.28118) m.c1702 = Constraint(expr= - m.x1061 + m.x1062 >= -2.28099) m.c1703 = Constraint(expr= - m.x1062 + m.x1063 >= -2.2808) m.c1704 = Constraint(expr= - m.x1063 + m.x1064 >= -2.28099) m.c1705 = Constraint(expr= - m.x1064 + m.x1065 >= -2.28138) m.c1706 = Constraint(expr= - m.x1065 + m.x1066 >= -2.28235) m.c1707 = Constraint(expr= - m.x1066 + m.x1067 >= -2.28428) m.c1708 = Constraint(expr= - m.x1067 + m.x1068 >= -2.28738) m.c1709 = Constraint(expr= - m.x1068 + m.x1069 >= -2.29087) m.c1710 = Constraint(expr= - m.x1069 + m.x1070 >= -2.29494) m.c1711 = Constraint(expr= - m.x1070 + m.x1071 >= -2.29591) m.c1712 = Constraint(expr= - m.x1071 + m.x1072 >= -2.293) m.c1713 = Constraint(expr= - m.x1072 + m.x1073 >= -2.29223) m.c1714 = Constraint(expr= - m.x1073 + m.x1074 >= -2.29068) m.c1715 = Constraint(expr= - m.x1074 + m.x1075 >= -2.28816) m.c1716 = Constraint(expr= - m.x1075 + m.x1076 >= -2.28661) m.c1717 = Constraint(expr= - m.x1076 + m.x1077 >= -2.28583) m.c1718 = Constraint(expr= - m.x1077 + m.x1078 >= -2.28506) m.c1719 = Constraint(expr= - m.x1078 + m.x1079 >= -2.28428) m.c1720 = Constraint(expr= - m.x1079 + m.x1080 >= -2.2837) m.c1721 = Constraint(expr= - m.x1080 + m.x1081 >= -2.28312) m.c1722 = Constraint(expr= m.x1082 - m.x1105 >= -2.28603) m.c1723 = Constraint(expr= - m.x1082 + m.x1083 >= -2.28758) m.c1724 = Constraint(expr= - m.x1083 + m.x1084 >= -2.28932) m.c1725 = Constraint(expr= - m.x1084 + m.x1085 >= -2.29087) m.c1726 = Constraint(expr= - m.x1085 + m.x1086 >= -2.29262) m.c1727 = Constraint(expr= - m.x1086 + m.x1087 >= -2.29242) m.c1728 = Constraint(expr= - m.x1087 + m.x1088 >= -2.29262) m.c1729 = Constraint(expr= - m.x1088 + m.x1089 >= -2.29494) m.c1730 = Constraint(expr= - m.x1089 + m.x1090 >= -2.29591) m.c1731 = Constraint(expr= - m.x1090 + m.x1091 >= -2.29979) m.c1732 = Constraint(expr= - m.x1091 + m.x1092 >= -2.30095) m.c1733 = Constraint(expr= - m.x1092 + m.x1093 >= -2.3025) m.c1734 = Constraint(expr= - m.x1093 + m.x1094 >= -2.30657) m.c1735 = Constraint(expr= - m.x1094 + m.x1095 >= -2.30947) m.c1736 = Constraint(expr= - m.x1095 + m.x1096 >= -2.30851) m.c1737 = Constraint(expr= - m.x1096 + m.x1097 >= -2.30579) m.c1738 = Constraint(expr= - m.x1097 + m.x1098 >= -2.30424) m.c1739 = Constraint(expr= - m.x1098 + m.x1099 >= -2.29979) m.c1740 = Constraint(expr= - m.x1099 + m.x1100 >= -2.2963) m.c1741 = Constraint(expr= - m.x1100 + m.x1101 >= -2.29552) m.c1742 = Constraint(expr= - m.x1101 + m.x1102 >= -2.29281) m.c1743 = Constraint(expr= - m.x1102 + m.x1103 >= -2.29397) m.c1744 = Constraint(expr= - m.x1103 + m.x1104 >= -2.29339) m.c1745 = Constraint(expr= - m.x1104 + m.x1105 >= -2.28312) m.c1746 = Constraint(expr= m.x1106 - m.x1129 >= -2.28215) m.c1747 = Constraint(expr= - m.x1106 + m.x1107 >= -2.28176) m.c1748 = Constraint(expr= - m.x1107 + m.x1108 >= -2.28157) m.c1749 = Constraint(expr= - m.x1108 + m.x1109 >= -2.28118) m.c1750 = Constraint(expr= - m.x1109 + m.x1110 >= -2.28099) m.c1751 = Constraint(expr= - m.x1110 + m.x1111 >= -2.2808) m.c1752 = Constraint(expr= - m.x1111 + m.x1112 >= -2.28099) m.c1753 = Constraint(expr= - m.x1112 + m.x1113 >= -2.28138) m.c1754 = Constraint(expr= - m.x1113 + m.x1114 >= -2.28235) m.c1755 = Constraint(expr= - m.x1114 + m.x1115 >= -2.28428) m.c1756 = Constraint(expr= - m.x1115 + m.x1116 >= -2.28738) m.c1757 = Constraint(expr= - m.x1116 + m.x1117 >= -2.29087) m.c1758 = Constraint(expr= - m.x1117 + m.x1118 >= -2.29494) m.c1759 = Constraint(expr= - m.x1118 + m.x1119 >= -2.29591) m.c1760 = Constraint(expr= - m.x1119 + m.x1120 >= -2.293) m.c1761 = Constraint(expr= - m.x1120 + m.x1121 >= -2.29223) m.c1762 = Constraint(expr= - m.x1121 + m.x1122 >= -2.29068) m.c1763 = Constraint(expr= - m.x1122 + m.x1123 >= -2.28816) m.c1764 = Constraint(expr= - m.x1123 + m.x1124 >= -2.28661) m.c1765 = Constraint(expr= - m.x1124 + m.x1125 >= -2.28583) m.c1766 = Constraint(expr= - m.x1125 + m.x1126 >= -2.28506) m.c1767 = Constraint(expr= - m.x1126 + m.x1127 >= -2.28428) m.c1768 = Constraint(expr= - m.x1127 + m.x1128 >= -2.2837) m.c1769 = Constraint(expr= - m.x1128 + m.x1129 >= -2.28312) m.c1770 = Constraint(expr= m.x1130 - m.x1153 >= -2.28603) m.c1771 = Constraint(expr= - m.x1130 + m.x1131 >= -2.28758) m.c1772 = Constraint(expr= - m.x1131 + m.x1132 >= -2.28932) m.c1773 = Constraint(expr= - m.x1132 + m.x1133 >= -2.29087) m.c1774 = Constraint(expr= - m.x1133 + m.x1134 >= -2.29262) m.c1775 = Constraint(expr= - m.x1134 + m.x1135 >= -2.29242) m.c1776 = Constraint(expr= - m.x1135 + m.x1136 >= -2.29262) m.c1777 = Constraint(expr= - m.x1136 + m.x1137 >= -2.29494) m.c1778 = Constraint(expr= - m.x1137 + m.x1138 >= -2.29591) m.c1779 = Constraint(expr= - m.x1138 + m.x1139 >= -2.29979) m.c1780 = Constraint(expr= - m.x1139 + m.x1140 >= -2.30095) m.c1781 = Constraint(expr= - m.x1140 + m.x1141 >= -2.3025) m.c1782 = Constraint(expr= - m.x1141 + m.x1142 >= -2.30657) m.c1783 = Constraint(expr= - m.x1142 + m.x1143 >= -2.30947) m.c1784 = Constraint(expr= - m.x1143 + m.x1144 >= -2.30851) m.c1785 = Constraint(expr= - m.x1144 + m.x1145 >= -2.30579) m.c1786 = Constraint(expr= - m.x1145 + m.x1146 >= -2.30424) m.c1787 = Constraint(expr= - m.x1146 + m.x1147 >= -2.29979) m.c1788 = Constraint(expr= - m.x1147 + m.x1148 >= -2.2963) m.c1789 = Constraint(expr= - m.x1148 + m.x1149 >= -2.29552) m.c1790 = Constraint(expr= - m.x1149 + m.x1150 >= -2.29281) m.c1791 = Constraint(expr= - m.x1150 + m.x1151 >= -2.29397) m.c1792 = Constraint(expr= - m.x1151 + m.x1152 >= -2.29339) m.c1793 = Constraint(expr= - m.x1152 + m.x1153 >= -2.28312) m.c1794 = Constraint(expr= m.b2306 + m.b2307 + m.b2308 + m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 <= 7) m.c1795 = Constraint(expr= m.b2354 + m.b2355 + m.b2356 + m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 <= 7) m.c1796 = Constraint(expr= m.b2330 + m.b2331 + m.b2332 + m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 <= 7) m.c1797 = Constraint(expr= m.b2378 + m.b2379 + m.b2380 + m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 <= 7) m.c1798 = Constraint(expr= m.b2307 + m.b2308 + m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 <= 7) m.c1799 = Constraint(expr= m.b2355 + m.b2356 + m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 <= 7) m.c1800 = Constraint(expr= m.b2331 + m.b2332 + m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 <= 7) m.c1801 = Constraint(expr= m.b2379 + m.b2380 + m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 <= 7) m.c1802 = Constraint(expr= m.b2308 + m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 <= 7) m.c1803 = Constraint(expr= m.b2356 + m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 <= 7) m.c1804 = Constraint(expr= m.b2332 + m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 <= 7) m.c1805 = Constraint(expr= m.b2380 + m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 <= 7) m.c1806 = Constraint(expr= m.b2309 + m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 <= 7) m.c1807 = Constraint(expr= m.b2357 + m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 <= 7) m.c1808 = Constraint(expr= m.b2333 + m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 <= 7) m.c1809 = Constraint(expr= m.b2381 + m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 <= 7) m.c1810 = Constraint(expr= m.b2310 + m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 <= 7) m.c1811 = Constraint(expr= m.b2358 + m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 <= 7) m.c1812 = Constraint(expr= m.b2334 + m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 <= 7) m.c1813 = Constraint(expr= m.b2382 + m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 <= 7) m.c1814 = Constraint(expr= m.b2311 + m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 <= 7) m.c1815 = Constraint(expr= m.b2359 + m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 <= 7) m.c1816 = Constraint(expr= m.b2335 + m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 <= 7) m.c1817 = Constraint(expr= m.b2383 + m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 <= 7) m.c1818 = Constraint(expr= m.b2312 + m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 <= 7) m.c1819 = Constraint(expr= m.b2360 + m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 <= 7) m.c1820 = Constraint(expr= m.b2336 + m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 <= 7) m.c1821 = Constraint(expr= m.b2384 + m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 <= 7) m.c1822 = Constraint(expr= m.b2313 + m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 <= 7) m.c1823 = Constraint(expr= m.b2361 + m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 <= 7) m.c1824 = Constraint(expr= m.b2337 + m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 <= 7) m.c1825 = Constraint(expr= m.b2385 + m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 <= 7) m.c1826 = Constraint(expr= m.b2314 + m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 <= 7) m.c1827 = Constraint(expr= m.b2362 + m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 <= 7) m.c1828 = Constraint(expr= m.b2338 + m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 <= 7) m.c1829 = Constraint(expr= m.b2386 + m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 <= 7) m.c1830 = Constraint(expr= m.b2315 + m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 <= 7) m.c1831 = Constraint(expr= m.b2363 + m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 <= 7) m.c1832 = Constraint(expr= m.b2339 + m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 <= 7) m.c1833 = Constraint(expr= m.b2387 + m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 <= 7) m.c1834 = Constraint(expr= m.b2316 + m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 <= 7) m.c1835 = Constraint(expr= m.b2364 + m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 <= 7) m.c1836 = Constraint(expr= m.b2340 + m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 <= 7) m.c1837 = Constraint(expr= m.b2388 + m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 <= 7) m.c1838 = Constraint(expr= m.b2317 + m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 <= 7) m.c1839 = Constraint(expr= m.b2365 + m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 <= 7) m.c1840 = Constraint(expr= m.b2341 + m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 <= 7) m.c1841 = Constraint(expr= m.b2389 + m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 <= 7) m.c1842 = Constraint(expr= m.b2318 + m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 <= 7) m.c1843 = Constraint(expr= m.b2366 + m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 <= 7) m.c1844 = Constraint(expr= m.b2342 + m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 <= 7) m.c1845 = Constraint(expr= m.b2390 + m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 <= 7) m.c1846 = Constraint(expr= m.b2319 + m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 <= 7) m.c1847 = Constraint(expr= m.b2367 + m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 <= 7) m.c1848 = Constraint(expr= m.b2343 + m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 <= 7) m.c1849 = Constraint(expr= m.b2391 + m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 <= 7) m.c1850 = Constraint(expr= m.b2320 + m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 <= 7) m.c1851 = Constraint(expr= m.b2368 + m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 <= 7) m.c1852 = Constraint(expr= m.b2344 + m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 <= 7) m.c1853 = Constraint(expr= m.b2392 + m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 <= 7) m.c1854 = Constraint(expr= m.b2321 + m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 <= 7) m.c1855 = Constraint(expr= m.b2369 + m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 <= 7) m.c1856 = Constraint(expr= m.b2345 + m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 <= 7) m.c1857 = Constraint(expr= m.b2393 + m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 <= 7) m.c1858 = Constraint(expr= m.b2322 + m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1859 = Constraint(expr= m.b2370 + m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1860 = Constraint(expr= m.b2346 + m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1861 = Constraint(expr= m.b2394 + m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1862 = Constraint(expr= m.b2323 + m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1863 = Constraint(expr= m.b2371 + m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1864 = Constraint(expr= m.b2347 + m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1865 = Constraint(expr= m.b2395 + m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1866 = Constraint(expr= m.b2324 + m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1867 = Constraint(expr= m.b2372 + m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1868 = Constraint(expr= m.b2348 + m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1869 = Constraint(expr= m.b2396 + m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1870 = Constraint(expr= m.b2325 + m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1871 = Constraint(expr= m.b2373 + m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1872 = Constraint(expr= m.b2349 + m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1873 = Constraint(expr= m.b2397 + m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1874 = Constraint(expr= m.b2326 + m.b2327 + m.b2328 + m.b2329 <= 7) m.c1875 = Constraint(expr= m.b2374 + m.b2375 + m.b2376 + m.b2377 <= 7) m.c1876 = Constraint(expr= m.b2350 + m.b2351 + m.b2352 + m.b2353 <= 7) m.c1877 = Constraint(expr= m.b2398 + m.b2399 + m.b2400 + m.b2401 <= 7) m.c1878 = Constraint(expr= m.b2327 + m.b2328 + m.b2329 <= 7) m.c1879 = Constraint(expr= m.b2375 + m.b2376 + m.b2377 <= 7) m.c1880 = Constraint(expr= m.b2351 + m.b2352 + m.b2353 <= 7) m.c1881 = Constraint(expr= m.b2399 + m.b2400 + m.b2401 <= 7) m.c1882 = Constraint(expr= m.b2328 + m.b2329 <= 7) m.c1883 = Constraint(expr= m.b2376 + m.b2377 <= 7) m.c1884 = Constraint(expr= m.b2352 + m.b2353 <= 7) m.c1885 = Constraint(expr= m.b2400 + m.b2401 <= 7) m.c1886 = Constraint(expr= m.b2329 <= 7) m.c1887 = Constraint(expr= m.b2377 <= 7) m.c1888 = Constraint(expr= m.b2353 <= 7) m.c1889 = Constraint(expr= m.b2401 <= 7) m.c1890 = Constraint(expr= m.x770 + m.x818 + m.x866 + m.x914 + m.x962 + m.x1010 + m.x1058 + m.x1106 + 0.9975*m.x1490 - m.x1491 - m.x1586 >= 78.44) m.c1891 = Constraint(expr= m.x771 + m.x819 + m.x867 + m.x915 + m.x963 + m.x1011 + m.x1059 + m.x1107 + 0.9975*m.x1491 - m.x1492 - m.x1587 >= 79.24) m.c1892 = Constraint(expr= m.x772 + m.x820 + m.x868 + m.x916 + m.x964 + m.x1012 + m.x1060 + m.x1108 + 0.9975*m.x1492 - m.x1493 - m.x1588 >= 81.84) m.c1893 = Constraint(expr= m.x773 + m.x821 + m.x869 + m.x917 + m.x965 + m.x1013 + m.x1061 + m.x1109 + 0.9975*m.x1493 - m.x1494 - m.x1589 >= 84.24) m.c1894 = Constraint(expr= m.x774 + m.x822 + m.x870 + m.x918 + m.x966 + m.x1014 + m.x1062 + m.x1110 + 0.9975*m.x1494 - m.x1495 - m.x1590 >= 87.24) m.c1895 = Constraint(expr= m.x775 + m.x823 + m.x871 + m.x919 + m.x967 + m.x1015 + m.x1063 + m.x1111 + 0.9975*m.x1495 - m.x1496 - m.x1591 >= 90.25) m.c1896 = Constraint(expr= m.x776 + m.x824 + m.x872 + m.x920 + m.x968 + m.x1016 + m.x1064 + m.x1112 + 0.9975*m.x1496 - m.x1497 - m.x1592 >= 92.85) m.c1897 = Constraint(expr= m.x777 + m.x825 + m.x873 + m.x921 + m.x969 + m.x1017 + m.x1065 + m.x1113 + 0.9975*m.x1497 - m.x1498 - m.x1593 >= 93.85) m.c1898 = Constraint(expr= m.x778 + m.x826 + m.x874 + m.x922 + m.x970 + m.x1018 + m.x1066 + m.x1114 + 0.9975*m.x1498 - m.x1499 - m.x1594 >= 93.85) m.c1899 = Constraint(expr= m.x779 + m.x827 + m.x875 + m.x923 + m.x971 + m.x1019 + m.x1067 + m.x1115 + 0.9975*m.x1499 - m.x1500 - m.x1595 >= 92.45) m.c1900 = Constraint(expr= m.x780 + m.x828 + m.x876 + m.x924 + m.x972 + m.x1020 + m.x1068 + m.x1116 + 0.9975*m.x1500 - m.x1501 - m.x1596 >= 90.85) m.c1901 = Constraint(expr= m.x781 + m.x829 + m.x877 + m.x925 + m.x973 + m.x1021 + m.x1069 + m.x1117 + 0.9975*m.x1501 - m.x1502 - m.x1597 >= 87.65) m.c1902 = Constraint(expr= m.x782 + m.x830 + m.x878 + m.x926 + m.x974 + m.x1022 + m.x1070 + m.x1118 + 0.9975*m.x1502 - m.x1503 - m.x1598 >= 87.44) m.c1903 = Constraint(expr= m.x783 + m.x831 + m.x879 + m.x927 + m.x975 + m.x1023 + m.x1071 + m.x1119 + 0.9975*m.x1503 - m.x1504 - m.x1599 >= 89.05) m.c1904 = Constraint(expr= m.x784 + m.x832 + m.x880 + m.x928 + m.x976 + m.x1024 + m.x1072 + m.x1120 + 0.9975*m.x1504 - m.x1505 - m.x1600 >= 90.65) m.c1905 = Constraint(expr= m.x785 + m.x833 + m.x881 + m.x929 + m.x977 + m.x1025 + m.x1073 + m.x1121 + 0.9975*m.x1505 - m.x1506 - m.x1601 >= 90.85) m.c1906 = Constraint(expr= m.x786 + m.x834 + m.x882 + m.x930 + m.x978 + m.x1026 + m.x1074 + m.x1122 + 0.9975*m.x1506 - m.x1507 - m.x1602 >= 90.65) m.c1907 = Constraint(expr= m.x787 + m.x835 + m.x883 + m.x931 + m.x979 + m.x1027 + m.x1075 + m.x1123 + 0.9975*m.x1507 - m.x1508 - m.x1603 >= 89.45) m.c1908 = Constraint(expr= m.x788 + m.x836 + m.x884 + m.x932 + m.x980 + m.x1028 + m.x1076 + m.x1124 + 0.9975*m.x1508 - m.x1509 - m.x1604 >= 88.25) m.c1909 = Constraint(expr= m.x789 + m.x837 + m.x885 + m.x933 + m.x981 + m.x1029 + m.x1077 + m.x1125 + 0.9975*m.x1509 - m.x1510 - m.x1605 >= 87.04) m.c1910 = Constraint(expr= m.x790 + m.x838 + m.x886 + m.x934 + m.x982 + m.x1030 + m.x1078 + m.x1126 + 0.9975*m.x1510 - m.x1511 - m.x1606 >= 85.84) m.c1911 = Constraint(expr= m.x791 + m.x839 + m.x887 + m.x935 + m.x983 + m.x1031 + m.x1079 + m.x1127 + 0.9975*m.x1511 - m.x1512 - m.x1607 >= 82.64) m.c1912 = Constraint(expr= m.x792 + m.x840 + m.x888 + m.x936 + m.x984 + m.x1032 + m.x1080 + m.x1128 + 0.9975*m.x1512 - m.x1513 - m.x1608 >= 79.04) m.c1913 = Constraint(expr= m.x794 + m.x842 + m.x890 + m.x938 + m.x986 + m.x1034 + m.x1082 + m.x1130 + 0.9975*m.x1514 - m.x1515 - m.x1610 >= 154.15) m.c1914 = Constraint(expr= m.x795 + m.x843 + m.x891 + m.x939 + m.x987 + m.x1035 + m.x1083 + m.x1131 + 0.9975*m.x1515 - m.x1516 - m.x1611 >= 155.56) m.c1915 = Constraint(expr= m.x796 + m.x844 + m.x892 + m.x940 + m.x988 + m.x1036 + m.x1084 + m.x1132 + 0.9975*m.x1516 - m.x1517 - m.x1612 >= 156.98) m.c1916 = Constraint(expr= m.x797 + m.x845 + m.x893 + m.x941 + m.x989 + m.x1037 + m.x1085 + m.x1133 + 0.9975*m.x1517 - m.x1518 - m.x1613 >= 156.98) m.c1917 = Constraint(expr= m.x798 + m.x846 + m.x894 + m.x942 + m.x990 + m.x1038 + m.x1086 + m.x1134 + 0.9975*m.x1518 - m.x1519 - m.x1614 >= 155.56) m.c1918 = Constraint(expr= m.x799 + m.x847 + m.x895 + m.x943 + m.x991 + m.x1039 + m.x1087 + m.x1135 + 0.9975*m.x1519 - m.x1520 - m.x1615 >= 168.57) m.c1919 = Constraint(expr= m.x800 + m.x848 + m.x896 + m.x944 + m.x992 + m.x1040 + m.x1088 + m.x1136 + 0.9975*m.x1520 - m.x1521 - m.x1616 >= 171.29) m.c1920 = Constraint(expr= m.x801 + m.x849 + m.x897 + m.x945 + m.x993 + m.x1041 + m.x1089 + m.x1137 + 0.9975*m.x1521 - m.x1522 - m.x1617 >= 141.38) m.c1921 = Constraint(expr= m.x802 + m.x850 + m.x898 + m.x946 + m.x994 + m.x1042 + m.x1090 + m.x1138 + 0.9975*m.x1522 - m.x1523 - m.x1618 >= 139.11) m.c1922 = Constraint(expr= m.x803 + m.x851 + m.x899 + m.x947 + m.x995 + m.x1043 + m.x1091 + m.x1139 + 0.9975*m.x1523 - m.x1524 - m.x1619 >= 136.4) m.c1923 = Constraint(expr= m.x804 + m.x852 + m.x900 + m.x948 + m.x996 + m.x1044 + m.x1092 + m.x1140 + 0.9975*m.x1524 - m.x1525 - m.x1620 >= 133.57) m.c1924 = Constraint(expr= m.x805 + m.x853 + m.x901 + m.x949 + m.x997 + m.x1045 + m.x1093 + m.x1141 + 0.9975*m.x1525 - m.x1526 - m.x1621 >= 127.23) m.c1925 = Constraint(expr= m.x806 + m.x854 + m.x902 + m.x950 + m.x998 + m.x1046 + m.x1094 + m.x1142 + 0.9975*m.x1526 - m.x1527 - m.x1622 >= 123.92) m.c1926 = Constraint(expr= m.x807 + m.x855 + m.x903 + m.x951 + m.x999 + m.x1047 + m.x1095 + m.x1143 + 0.9975*m.x1527 - m.x1528 - m.x1623 >= 119.3) m.c1927 = Constraint(expr= m.x808 + m.x856 + m.x904 + m.x952 + m.x1000 + m.x1048 + m.x1096 + m.x1144 + 0.9975*m.x1528 - m.x1529 - m.x1624 >= 120.58) m.c1928 = Constraint(expr= m.x809 + m.x857 + m.x905 + m.x953 + m.x1001 + m.x1049 + m.x1097 + m.x1145 + 0.9975*m.x1529 - m.x1530 - m.x1625 >= 122.88) m.c1929 = Constraint(expr= m.x810 + m.x858 + m.x906 + m.x954 + m.x1002 + m.x1050 + m.x1098 + m.x1146 + 0.9975*m.x1530 - m.x1531 - m.x1626 >= 126.71) m.c1930 = Constraint(expr= m.x811 + m.x859 + m.x907 + m.x955 + m.x1003 + m.x1051 + m.x1099 + m.x1147 + 0.9975*m.x1531 - m.x1532 - m.x1627 >= 128.65) m.c1931 = Constraint(expr= m.x812 + m.x860 + m.x908 + m.x956 + m.x1004 + m.x1052 + m.x1100 + m.x1148 + 0.9975*m.x1532 - m.x1533 - m.x1628 >= 136.78) m.c1932 = Constraint(expr= m.x813 + m.x861 + m.x909 + m.x957 + m.x1005 + m.x1053 + m.x1101 + m.x1149 + 0.9975*m.x1533 - m.x1534 - m.x1629 >= 143.94) m.c1933 = Constraint(expr= m.x814 + m.x862 + m.x910 + m.x958 + m.x1006 + m.x1054 + m.x1102 + m.x1150 + 0.9975*m.x1534 - m.x1535 - m.x1630 >= 144.06) m.c1934 = Constraint(expr= m.x815 + m.x863 + m.x911 + m.x959 + m.x1007 + m.x1055 + m.x1103 + m.x1151 + 0.9975*m.x1535 - m.x1536 - m.x1631 >= 146.68) m.c1935 = Constraint(expr= m.x816 + m.x864 + m.x912 + m.x960 + m.x1008 + m.x1056 + m.x1104 + m.x1152 + 0.9975*m.x1536 - m.x1537 - m.x1632 >= 134.97) m.c1936 = Constraint(expr= m.x770 + m.x818 + m.x866 + m.x914 + m.x962 + m.x1010 + m.x1058 + m.x1106 + 0.9975*m.x1490 - m.x1491 - m.x1586 <= 86.284) m.c1937 = Constraint(expr= m.x771 + m.x819 + m.x867 + m.x915 + m.x963 + m.x1011 + m.x1059 + m.x1107 + 0.9975*m.x1491 - m.x1492 - m.x1587 <= 87.164) m.c1938 = Constraint(expr= m.x772 + m.x820 + m.x868 + m.x916 + m.x964 + m.x1012 + m.x1060 + m.x1108 + 0.9975*m.x1492 - m.x1493 - m.x1588 <= 90.024) m.c1939 = Constraint(expr= m.x773 + m.x821 + m.x869 + m.x917 + m.x965 + m.x1013 + m.x1061 + m.x1109 + 0.9975*m.x1493 - m.x1494 - m.x1589 <= 92.664) m.c1940 = Constraint(expr= m.x774 + m.x822 + m.x870 + m.x918 + m.x966 + m.x1014 + m.x1062 + m.x1110 + 0.9975*m.x1494 - m.x1495 - m.x1590 <= 95.964) m.c1941 = Constraint(expr= m.x775 + m.x823 + m.x871 + m.x919 + m.x967 + m.x1015 + m.x1063 + m.x1111 + 0.9975*m.x1495 - m.x1496 - m.x1591 <= 99.275) m.c1942 = Constraint(expr= m.x776 + m.x824 + m.x872 + m.x920 + m.x968 + m.x1016 + m.x1064 + m.x1112 + 0.9975*m.x1496 - m.x1497 - m.x1592 <= 102.135) m.c1943 = Constraint(expr= m.x777 + m.x825 + m.x873 + m.x921 + m.x969 + m.x1017 + m.x1065 + m.x1113 + 0.9975*m.x1497 - m.x1498 - m.x1593 <= 103.235) m.c1944 = Constraint(expr= m.x778 + m.x826 + m.x874 + m.x922 + m.x970 + m.x1018 + m.x1066 + m.x1114 + 0.9975*m.x1498 - m.x1499 - m.x1594 <= 103.235) m.c1945 = Constraint(expr= m.x779 + m.x827 + m.x875 + m.x923 + m.x971 + m.x1019 + m.x1067 + m.x1115 + 0.9975*m.x1499 - m.x1500 - m.x1595 <= 101.695) m.c1946 = Constraint(expr= m.x780 + m.x828 + m.x876 + m.x924 + m.x972 + m.x1020 + m.x1068 + m.x1116 + 0.9975*m.x1500 - m.x1501 - m.x1596 <= 99.935) m.c1947 = Constraint(expr= m.x781 + m.x829 + m.x877 + m.x925 + m.x973 + m.x1021 + m.x1069 + m.x1117 + 0.9975*m.x1501 - m.x1502 - m.x1597 <= 96.415) m.c1948 = Constraint(expr= m.x782 + m.x830 + m.x878 + m.x926 + m.x974 + m.x1022 + m.x1070 + m.x1118 + 0.9975*m.x1502 - m.x1503 - m.x1598 <= 96.184) m.c1949 = Constraint(expr= m.x783 + m.x831 + m.x879 + m.x927 + m.x975 + m.x1023 + m.x1071 + m.x1119 + 0.9975*m.x1503 - m.x1504 - m.x1599 <= 97.955) m.c1950 = Constraint(expr= m.x784 + m.x832 + m.x880 + m.x928 + m.x976 + m.x1024 + m.x1072 + m.x1120 + 0.9975*m.x1504 - m.x1505 - m.x1600 <= 99.715) m.c1951 = Constraint(expr= m.x785 + m.x833 + m.x881 + m.x929 + m.x977 + m.x1025 + m.x1073 + m.x1121 + 0.9975*m.x1505 - m.x1506 - m.x1601 <= 99.935) m.c1952 = Constraint(expr= m.x786 + m.x834 + m.x882 + m.x930 + m.x978 + m.x1026 + m.x1074 + m.x1122 + 0.9975*m.x1506 - m.x1507 - m.x1602 <= 99.715) m.c1953 = Constraint(expr= m.x787 + m.x835 + m.x883 + m.x931 + m.x979 + m.x1027 + m.x1075 + m.x1123 + 0.9975*m.x1507 - m.x1508 - m.x1603 <= 98.395) m.c1954 = Constraint(expr= m.x788 + m.x836 + m.x884 + m.x932 + m.x980 + m.x1028 + m.x1076 + m.x1124 + 0.9975*m.x1508 - m.x1509 - m.x1604 <= 97.075) m.c1955 = Constraint(expr= m.x789 + m.x837 + m.x885 + m.x933 + m.x981 + m.x1029 + m.x1077 + m.x1125 + 0.9975*m.x1509 - m.x1510 - m.x1605 <= 95.744) m.c1956 = Constraint(expr= m.x790 + m.x838 + m.x886 + m.x934 + m.x982 + m.x1030 + m.x1078 + m.x1126 + 0.9975*m.x1510 - m.x1511 - m.x1606 <= 94.424) m.c1957 = Constraint(expr= m.x791 + m.x839 + m.x887 + m.x935 + m.x983 + m.x1031 + m.x1079 + m.x1127 + 0.9975*m.x1511 - m.x1512 - m.x1607 <= 90.904) m.c1958 = Constraint(expr= m.x792 + m.x840 + m.x888 + m.x936 + m.x984 + m.x1032 + m.x1080 + m.x1128 + 0.9975*m.x1512 - m.x1513 - m.x1608 <= 86.944) m.c1959 = Constraint(expr= m.x794 + m.x842 + m.x890 + m.x938 + m.x986 + m.x1034 + m.x1082 + m.x1130 + 0.9975*m.x1514 - m.x1515 - m.x1610 <= 169.565) m.c1960 = Constraint(expr= m.x795 + m.x843 + m.x891 + m.x939 + m.x987 + m.x1035 + m.x1083 + m.x1131 + 0.9975*m.x1515 - m.x1516 - m.x1611 <= 171.116) m.c1961 = Constraint(expr= m.x796 + m.x844 + m.x892 + m.x940 + m.x988 + m.x1036 + m.x1084 + m.x1132 + 0.9975*m.x1516 - m.x1517 - m.x1612 <= 172.678) m.c1962 = Constraint(expr= m.x797 + m.x845 + m.x893 + m.x941 + m.x989 + m.x1037 + m.x1085 + m.x1133 + 0.9975*m.x1517 - m.x1518 - m.x1613 <= 172.678) m.c1963 = Constraint(expr= m.x798 + m.x846 + m.x894 + m.x942 + m.x990 + m.x1038 + m.x1086 + m.x1134 + 0.9975*m.x1518 - m.x1519 - m.x1614 <= 171.116) m.c1964 = Constraint(expr= m.x799 + m.x847 + m.x895 + m.x943 + m.x991 + m.x1039 + m.x1087 + m.x1135 + 0.9975*m.x1519 - m.x1520 - m.x1615 <= 185.427) m.c1965 = Constraint(expr= m.x800 + m.x848 + m.x896 + m.x944 + m.x992 + m.x1040 + m.x1088 + m.x1136 + 0.9975*m.x1520 - m.x1521 - m.x1616 <= 188.419) m.c1966 = Constraint(expr= m.x801 + m.x849 + m.x897 + m.x945 + m.x993 + m.x1041 + m.x1089 + m.x1137 + 0.9975*m.x1521 - m.x1522 - m.x1617 <= 155.518) m.c1967 = Constraint(expr= m.x802 + m.x850 + m.x898 + m.x946 + m.x994 + m.x1042 + m.x1090 + m.x1138 + 0.9975*m.x1522 - m.x1523 - m.x1618 <= 153.021) m.c1968 = Constraint(expr= m.x803 + m.x851 + m.x899 + m.x947 + m.x995 + m.x1043 + m.x1091 + m.x1139 + 0.9975*m.x1523 - m.x1524 - m.x1619 <= 150.04) m.c1969 = Constraint(expr= m.x804 + m.x852 + m.x900 + m.x948 + m.x996 + m.x1044 + m.x1092 + m.x1140 + 0.9975*m.x1524 - m.x1525 - m.x1620 <= 146.927) m.c1970 = Constraint(expr= m.x805 + m.x853 + m.x901 + m.x949 + m.x997 + m.x1045 + m.x1093 + m.x1141 + 0.9975*m.x1525 - m.x1526 - m.x1621 <= 139.953) m.c1971 = Constraint(expr= m.x806 + m.x854 + m.x902 + m.x950 + m.x998 + m.x1046 + m.x1094 + m.x1142 + 0.9975*m.x1526 - m.x1527 - m.x1622 <= 136.312) m.c1972 = Constraint(expr= m.x807 + m.x855 + m.x903 + m.x951 + m.x999 + m.x1047 + m.x1095 + m.x1143 + 0.9975*m.x1527 - m.x1528 - m.x1623 <= 131.23) m.c1973 = Constraint(expr= m.x808 + m.x856 + m.x904 + m.x952 + m.x1000 + m.x1048 + m.x1096 + m.x1144 + 0.9975*m.x1528 - m.x1529 - m.x1624 <= 132.638) m.c1974 = Constraint(expr= m.x809 + m.x857 + m.x905 + m.x953 + m.x1001 + m.x1049 + m.x1097 + m.x1145 + 0.9975*m.x1529 - m.x1530 - m.x1625 <= 135.168) m.c1975 = Constraint(expr= m.x810 + m.x858 + m.x906 + m.x954 + m.x1002 + m.x1050 + m.x1098 + m.x1146 + 0.9975*m.x1530 - m.x1531 - m.x1626 <= 139.381) m.c1976 = Constraint(expr= m.x811 + m.x859 + m.x907 + m.x955 + m.x1003 + m.x1051 + m.x1099 + m.x1147 + 0.9975*m.x1531 - m.x1532 - m.x1627 <= 141.515) m.c1977 = Constraint(expr= m.x812 + m.x860 + m.x908 + m.x956 + m.x1004 + m.x1052 + m.x1100 + m.x1148 + 0.9975*m.x1532 - m.x1533 - m.x1628 <= 150.458) m.c1978 = Constraint(expr= m.x813 + m.x861 + m.x909 + m.x957 + m.x1005 + m.x1053 + m.x1101 + m.x1149 + 0.9975*m.x1533 - m.x1534 - m.x1629 <= 158.334) m.c1979 = Constraint(expr= m.x814 + m.x862 + m.x910 + m.x958 + m.x1006 + m.x1054 + m.x1102 + m.x1150 + 0.9975*m.x1534 - m.x1535 - m.x1630 <= 158.466) m.c1980 = Constraint(expr= m.x815 + m.x863 + m.x911 + m.x959 + m.x1007 + m.x1055 + m.x1103 + m.x1151 + 0.9975*m.x1535 - m.x1536 - m.x1631 <= 161.348) m.c1981 = Constraint(expr= m.x816 + m.x864 + m.x912 + m.x960 + m.x1008 + m.x1056 + m.x1104 + m.x1152 + 0.9975*m.x1536 - m.x1537 - m.x1632 <= 148.467) m.c1982 = Constraint(expr= m.x793 + m.x841 + m.x889 + m.x937 + m.x985 + m.x1033 + m.x1081 + m.x1129 + 0.9975*m.x1513 - m.x1514 - m.x1609 >= 75.24) m.c1983 = Constraint(expr= m.x817 + m.x865 + m.x913 + m.x961 + m.x1009 + m.x1057 + m.x1105 + m.x1153 - m.x1490 + 0.9975*m.x1537 - m.x1633 >= 150.55) m.c1984 = Constraint(expr= m.x1154 + m.x1202 + m.x1250 + m.x1298 + m.x1346 + m.x1394 + 0.9975*m.x1442 - m.x1443 + m.x1586 >= 0) m.c1985 = Constraint(expr= m.x1155 + m.x1203 + m.x1251 + m.x1299 + m.x1347 + m.x1395 + 0.9975*m.x1443 - m.x1444 + m.x1587 >= 0) m.c1986 = Constraint(expr= m.x1156 + m.x1204 + m.x1252 + m.x1300 + m.x1348 + m.x1396 + 0.9975*m.x1444 - m.x1445 + m.x1588 >= 0) m.c1987 = Constraint(expr= m.x1157 + m.x1205 + m.x1253 + m.x1301 + m.x1349 + m.x1397 + 0.9975*m.x1445 - m.x1446 + m.x1589 >= 0) m.c1988 = Constraint(expr= m.x1158 + m.x1206 + m.x1254 + m.x1302 + m.x1350 + m.x1398 + 0.9975*m.x1446 - m.x1447 + m.x1590 >= 0) m.c1989 = Constraint(expr= m.x1159 + m.x1207 + m.x1255 + m.x1303 + m.x1351 + m.x1399 + 0.9975*m.x1447 - m.x1448 + m.x1591 >= 0) m.c1990 = Constraint(expr= m.x1160 + m.x1208 + m.x1256 + m.x1304 + m.x1352 + m.x1400 + 0.9975*m.x1448 - m.x1449 + m.x1592 >= 0) m.c1991 = Constraint(expr= m.x1161 + m.x1209 + m.x1257 + m.x1305 + m.x1353 + m.x1401 + 0.9975*m.x1449 - m.x1450 + m.x1593 >= 0) m.c1992 = Constraint(expr= m.x1162 + m.x1210 + m.x1258 + m.x1306 + m.x1354 + m.x1402 + 0.9975*m.x1450 - m.x1451 + m.x1594 >= 0) m.c1993 = Constraint(expr= m.x1163 + m.x1211 + m.x1259 + m.x1307 + m.x1355 + m.x1403 + 0.9975*m.x1451 - m.x1452 + m.x1595 >= 0) m.c1994 = Constraint(expr= m.x1164 + m.x1212 + m.x1260 + m.x1308 + m.x1356 + m.x1404 + 0.9975*m.x1452 - m.x1453 + m.x1596 >= 0) m.c1995 = Constraint(expr= m.x1165 + m.x1213 + m.x1261 + m.x1309 + m.x1357 + m.x1405 + 0.9975*m.x1453 - m.x1454 + m.x1597 >= 0) m.c1996 = Constraint(expr= m.x1166 + m.x1214 + m.x1262 + m.x1310 + m.x1358 + m.x1406 + 0.9975*m.x1454 - m.x1455 + m.x1598 >= 0) m.c1997 = Constraint(expr= m.x1167 + m.x1215 + m.x1263 + m.x1311 + m.x1359 + m.x1407 + 0.9975*m.x1455 - m.x1456 + m.x1599 >= 0) m.c1998 = Constraint(expr= m.x1168 + m.x1216 + m.x1264 + m.x1312 + m.x1360 + m.x1408 + 0.9975*m.x1456 - m.x1457 + m.x1600 >= 0) m.c1999 = Constraint(expr= m.x1169 + m.x1217 + m.x1265 + m.x1313 + m.x1361 + m.x1409 + 0.9975*m.x1457 - m.x1458 + m.x1601 >= 0) m.c2000 = Constraint(expr= m.x1170 + m.x1218 + m.x1266 + m.x1314 + m.x1362 + m.x1410 + 0.9975*m.x1458 - m.x1459 + m.x1602 >= 0) m.c2001 = Constraint(expr= m.x1171 + m.x1219 + m.x1267 + m.x1315 + m.x1363 + m.x1411 + 0.9975*m.x1459 - m.x1460 + m.x1603 >= 0) m.c2002 = Constraint(expr= m.x1172 + m.x1220 + m.x1268 + m.x1316 + m.x1364 + m.x1412 + 0.9975*m.x1460 - m.x1461 + m.x1604 >= 0) m.c2003 = Constraint(expr= m.x1173 + m.x1221 + m.x1269 + m.x1317 + m.x1365 + m.x1413 + 0.9975*m.x1461 - m.x1462 + m.x1605 >= 0) m.c2004 = Constraint(expr= m.x1174 + m.x1222 + m.x1270 + m.x1318 + m.x1366 + m.x1414 + 0.9975*m.x1462 - m.x1463 + m.x1606 >= 0) m.c2005 = Constraint(expr= m.x1175 + m.x1223 + m.x1271 + m.x1319 + m.x1367 + m.x1415 + 0.9975*m.x1463 - m.x1464 + m.x1607 >= 0) m.c2006 = Constraint(expr= m.x1176 + m.x1224 + m.x1272 + m.x1320 + m.x1368 + m.x1416 + 0.9975*m.x1464 - m.x1465 + m.x1608 >= 0) m.c2007 = Constraint(expr= m.x1178 + m.x1226 + m.x1274 + m.x1322 + m.x1370 + m.x1418 + 0.9975*m.x1466 - m.x1467 + m.x1610 >= 0) m.c2008 = Constraint(expr= m.x1179 + m.x1227 + m.x1275 + m.x1323 + m.x1371 + m.x1419 + 0.9975*m.x1467 - m.x1468 + m.x1611 >= 0) m.c2009 = Constraint(expr= m.x1180 + m.x1228 + m.x1276 + m.x1324 + m.x1372 + m.x1420 + 0.9975*m.x1468 - m.x1469 + m.x1612 >= 0) m.c2010 = Constraint(expr= m.x1181 + m.x1229 + m.x1277 + m.x1325 + m.x1373 + m.x1421 + 0.9975*m.x1469 - m.x1470 + m.x1613 >= 0) m.c2011 = Constraint(expr= m.x1182 + m.x1230 + m.x1278 + m.x1326 + m.x1374 + m.x1422 + 0.9975*m.x1470 - m.x1471 + m.x1614 >= 0) m.c2012 = Constraint(expr= m.x1183 + m.x1231 + m.x1279 + m.x1327 + m.x1375 + m.x1423 + 0.9975*m.x1471 - m.x1472 + m.x1615 >= 0) m.c2013 = Constraint(expr= m.x1184 + m.x1232 + m.x1280 + m.x1328 + m.x1376 + m.x1424 + 0.9975*m.x1472 - m.x1473 + m.x1616 >= 0) m.c2014 = Constraint(expr= m.x1185 + m.x1233 + m.x1281 + m.x1329 + m.x1377 + m.x1425 + 0.9975*m.x1473 - m.x1474 + m.x1617 >= 0) m.c2015 = Constraint(expr= m.x1186 + m.x1234 + m.x1282 + m.x1330 + m.x1378 + m.x1426 + 0.9975*m.x1474 - m.x1475 + m.x1618 >= 0) m.c2016 = Constraint(expr= m.x1187 + m.x1235 + m.x1283 + m.x1331 + m.x1379 + m.x1427 + 0.9975*m.x1475 - m.x1476 + m.x1619 >= 0) m.c2017 = Constraint(expr= m.x1188 + m.x1236 + m.x1284 + m.x1332 + m.x1380 + m.x1428 + 0.9975*m.x1476 - m.x1477 + m.x1620 >= 0) m.c2018 = Constraint(expr= m.x1189 + m.x1237 + m.x1285 + m.x1333 + m.x1381 + m.x1429 + 0.9975*m.x1477 - m.x1478 + m.x1621 >= 0) m.c2019 = Constraint(expr= m.x1190 + m.x1238 + m.x1286 + m.x1334 + m.x1382 + m.x1430 + 0.9975*m.x1478 - m.x1479 + m.x1622 >= 0) m.c2020 = Constraint(expr= m.x1191 + m.x1239 + m.x1287 + m.x1335 + m.x1383 + m.x1431 + 0.9975*m.x1479 - m.x1480 + m.x1623 >= 0) m.c2021 = Constraint(expr= m.x1192 + m.x1240 + m.x1288 + m.x1336 + m.x1384 + m.x1432 + 0.9975*m.x1480 - m.x1481 + m.x1624 >= 0) m.c2022 = Constraint(expr= m.x1193 + m.x1241 + m.x1289 + m.x1337 + m.x1385 + m.x1433 + 0.9975*m.x1481 - m.x1482 + m.x1625 >= 0) m.c2023 = Constraint(expr= m.x1194 + m.x1242 + m.x1290 + m.x1338 + m.x1386 + m.x1434 + 0.9975*m.x1482 - m.x1483 + m.x1626 >= 0) m.c2024 = Constraint(expr= m.x1195 + m.x1243 + m.x1291 + m.x1339 + m.x1387 + m.x1435 + 0.9975*m.x1483 - m.x1484 + m.x1627 >= 0) m.c2025 = Constraint(expr= m.x1196 + m.x1244 + m.x1292 + m.x1340 + m.x1388 + m.x1436 + 0.9975*m.x1484 - m.x1485 + m.x1628 >= 0) m.c2026 = Constraint(expr= m.x1197 + m.x1245 + m.x1293 + m.x1341 + m.x1389 + m.x1437 + 0.9975*m.x1485 - m.x1486 + m.x1629 >= 0) m.c2027 = Constraint(expr= m.x1198 + m.x1246 + m.x1294 + m.x1342 + m.x1390 + m.x1438 + 0.9975*m.x1486 - m.x1487 + m.x1630 >= 0) m.c2028 = Constraint(expr= m.x1199 + m.x1247 + m.x1295 + m.x1343 + m.x1391 + m.x1439 + 0.9975*m.x1487 - m.x1488 + m.x1631 >= 0) m.c2029 = Constraint(expr= m.x1200 + m.x1248 + m.x1296 + m.x1344 + m.x1392 + m.x1440 + 0.9975*m.x1488 - m.x1489 + m.x1632 >= 0) m.c2030 = Constraint(expr= m.x1177 + m.x1225 + m.x1273 + m.x1321 + m.x1369 + m.x1417 + 0.9975*m.x1465 - m.x1466 + m.x1609 >= 0) m.c2031 = Constraint(expr= m.x1201 + m.x1249 + m.x1297 + m.x1345 + m.x1393 + m.x1441 - m.x1442 + 0.9975*m.x1489 + m.x1633 >= 0) m.c2032 = Constraint(expr= - m.x386 + m.x434 + m.x482 + m.x530 + m.x578 + m.x626 + m.x674 + m.x722 == 0) m.c2033 = Constraint(expr= - m.x387 + m.x435 + m.x483 + m.x531 + m.x579 + m.x627 + m.x675 + m.x723 == 0) m.c2034 = Constraint(expr= - m.x388 + m.x436 + m.x484 + m.x532 + m.x580 + m.x628 + m.x676 + m.x724 == 0) m.c2035 = Constraint(expr= - m.x389 + m.x437 + m.x485 + m.x533 + m.x581 + m.x629 + m.x677 + m.x725 == 0) m.c2036 = Constraint(expr= - m.x390 + m.x438 + m.x486 + m.x534 + m.x582 + m.x630 + m.x678 + m.x726 == 0) m.c2037 = Constraint(expr= - m.x391 + m.x439 + m.x487 + m.x535 + m.x583 + m.x631 + m.x679 + m.x727 == 0) m.c2038 = Constraint(expr= - m.x392 + m.x440 + m.x488 + m.x536 + m.x584 + m.x632 + m.x680 + m.x728 == 0) m.c2039 = Constraint(expr= - m.x393 + m.x441 + m.x489 + m.x537 + m.x585 + m.x633 + m.x681 + m.x729 == 0) m.c2040 = Constraint(expr= - m.x394 + m.x442 + m.x490 + m.x538 + m.x586 + m.x634 + m.x682 + m.x730 == 0) m.c2041 = Constraint(expr= - m.x395 + m.x443 + m.x491 + m.x539 + m.x587 + m.x635 + m.x683 + m.x731 == 0) m.c2042 = Constraint(expr= - m.x396 + m.x444 + m.x492 + m.x540 + m.x588 + m.x636 + m.x684 + m.x732 == 0) m.c2043 = Constraint(expr= - m.x397 + m.x445 + m.x493 + m.x541 + m.x589 + m.x637 + m.x685 + m.x733 == 0) m.c2044 = Constraint(expr= - m.x398 + m.x446 + m.x494 + m.x542 + m.x590 + m.x638 + m.x686 + m.x734 == 0) m.c2045 = Constraint(expr= - m.x399 + m.x447 + m.x495 + m.x543 + m.x591 + m.x639 + m.x687 + m.x735 == 0) m.c2046 = Constraint(expr= - m.x400 + m.x448 + m.x496 + m.x544 + m.x592 + m.x640 + m.x688 + m.x736 == 0) m.c2047 = Constraint(expr= - m.x401 + m.x449 + m.x497 + m.x545 + m.x593 + m.x641 + m.x689 + m.x737 == 0) m.c2048 = Constraint(expr= - m.x402 + m.x450 + m.x498 + m.x546 + m.x594 + m.x642 + m.x690 + m.x738 == 0) m.c2049 = Constraint(expr= - m.x403 + m.x451 + m.x499 + m.x547 + m.x595 + m.x643 + m.x691 + m.x739 == 0) m.c2050 = Constraint(expr= - m.x404 + m.x452 + m.x500 + m.x548 + m.x596 + m.x644 + m.x692 + m.x740 == 0) m.c2051 = Constraint(expr= - m.x405 + m.x453 + m.x501 + m.x549 + m.x597 + m.x645 + m.x693 + m.x741 == 0) m.c2052 = Constraint(expr= - m.x406 + m.x454 + m.x502 + m.x550 + m.x598 + m.x646 + m.x694 + m.x742 == 0) m.c2053 = Constraint(expr= - m.x407 + m.x455 + m.x503 + m.x551 + m.x599 + m.x647 + m.x695 + m.x743 == 0) m.c2054 = Constraint(expr= - m.x408 + m.x456 + m.x504 + m.x552 + m.x600 + m.x648 + m.x696 + m.x744 == 0) m.c2055 = Constraint(expr= - m.x409 + m.x457 + m.x505 + m.x553 + m.x601 + m.x649 + m.x697 + m.x745 == 0) m.c2056 = Constraint(expr= - m.x410 + m.x458 + m.x506 + m.x554 + m.x602 + m.x650 + m.x698 + m.x746 == 0) m.c2057 = Constraint(expr= - m.x411 + m.x459 + m.x507 + m.x555 + m.x603 + m.x651 + m.x699 + m.x747 == 0) m.c2058 = Constraint(expr= - m.x412 + m.x460 + m.x508 + m.x556 + m.x604 + m.x652 + m.x700 + m.x748 == 0) m.c2059 = Constraint(expr= - m.x413 + m.x461 + m.x509 + m.x557 + m.x605 + m.x653 + m.x701 + m.x749 == 0) m.c2060 = Constraint(expr= - m.x414 + m.x462 + m.x510 + m.x558 + m.x606 + m.x654 + m.x702 + m.x750 == 0) m.c2061 = Constraint(expr= - m.x415 + m.x463 + m.x511 + m.x559 + m.x607 + m.x655 + m.x703 + m.x751 == 0) m.c2062 = Constraint(expr= - m.x416 + m.x464 + m.x512 + m.x560 + m.x608 + m.x656 + m.x704 + m.x752 == 0) m.c2063 = Constraint(expr= - m.x417 + m.x465 + m.x513 + m.x561 + m.x609 + m.x657 + m.x705 + m.x753 == 0) m.c2064 = Constraint(expr= - m.x418 + m.x466 + m.x514 + m.x562 + m.x610 + m.x658 + m.x706 + m.x754 == 0) m.c2065 = Constraint(expr= - m.x419 + m.x467 + m.x515 + m.x563 + m.x611 + m.x659 + m.x707 + m.x755 == 0) m.c2066 = Constraint(expr= - m.x420 + m.x468 + m.x516 + m.x564 + m.x612 + m.x660 + m.x708 + m.x756 == 0) m.c2067 = Constraint(expr= - m.x421 + m.x469 + m.x517 + m.x565 + m.x613 + m.x661 + m.x709 + m.x757 == 0) m.c2068 = Constraint(expr= - m.x422 + m.x470 + m.x518 + m.x566 + m.x614 + m.x662 + m.x710 + m.x758 == 0) m.c2069 = Constraint(expr= - m.x423 + m.x471 + m.x519 + m.x567 + m.x615 + m.x663 + m.x711 + m.x759 == 0) m.c2070 = Constraint(expr= - m.x424 + m.x472 + m.x520 + m.x568 + m.x616 + m.x664 + m.x712 + m.x760 == 0) m.c2071 = Constraint(expr= - m.x425 + m.x473 + m.x521 + m.x569 + m.x617 + m.x665 + m.x713 + m.x761 == 0) m.c2072 = Constraint(expr= - m.x426 + m.x474 + m.x522 + m.x570 + m.x618 + m.x666 + m.x714 + m.x762 == 0) m.c2073 = Constraint(expr= - m.x427 + m.x475 + m.x523 + m.x571 + m.x619 + m.x667 + m.x715 + m.x763 == 0) m.c2074 = Constraint(expr= - m.x428 + m.x476 + m.x524 + m.x572 + m.x620 + m.x668 + m.x716 + m.x764 == 0) m.c2075 = Constraint(expr= - m.x429 + m.x477 + m.x525 + m.x573 + m.x621 + m.x669 + m.x717 + m.x765 == 0) m.c2076 = Constraint(expr= - m.x430 + m.x478 + m.x526 + m.x574 + m.x622 + m.x670 + m.x718 + m.x766 == 0) m.c2077 = Constraint(expr= - m.x431 + m.x479 + m.x527 + m.x575 + m.x623 + m.x671 + m.x719 + m.x767 == 0) m.c2078 = Constraint(expr= - m.x432 + m.x480 + m.x528 + m.x576 + m.x624 + m.x672 + m.x720 + m.x768 == 0) m.c2079 = Constraint(expr= - m.x433 + m.x481 + m.x529 + m.x577 + m.x625 + m.x673 + m.x721 + m.x769 == 0) m.c2080 = Constraint(expr= 0.997*m.x1538 - m.x1539 >= 0) m.c2081 = Constraint(expr= 0.997*m.x1539 - m.x1540 >= 0) m.c2082 = Constraint(expr= 0.997*m.x1540 - m.x1541 >= 0) m.c2083 = Constraint(expr= 0.997*m.x1541 - m.x1542 >= 0) m.c2084 = Constraint(expr= 0.997*m.x1542 - m.x1543 >= 0) m.c2085 = Constraint(expr= 0.997*m.x1543 - m.x1544 >= 0) m.c2086 = Constraint(expr= 0.997*m.x1544 - m.x1545 >= 0) m.c2087 = Constraint(expr= 0.997*m.x1545 - m.x1546 >= 0) m.c2088 = Constraint(expr= 0.997*m.x1546 - m.x1547 >= 0) m.c2089 = Constraint(expr= 0.997*m.x1547 - m.x1548 >= 0) m.c2090 = Constraint(expr= 0.997*m.x1548 - m.x1549 >= 0) m.c2091 = Constraint(expr= 0.997*m.x1549 - m.x1550 >= 0) m.c2092 = Constraint(expr= 0.997*m.x1550 - m.x1551 >= 0) m.c2093 = Constraint(expr= 0.997*m.x1551 - m.x1552 >= 0) m.c2094 = Constraint(expr= 0.997*m.x1552 - m.x1553 >= 0) m.c2095 = Constraint(expr= 0.997*m.x1553 - m.x1554 >= 0) m.c2096 = Constraint(expr= 0.997*m.x1554 - m.x1555 >= 0) m.c2097 = Constraint(expr= 0.997*m.x1555 - m.x1556 >= 0) m.c2098 = Constraint(expr= 0.997*m.x1556 - m.x1557 >= 0) m.c2099 = Constraint(expr= 0.997*m.x1557 - m.x1558 >= 0) m.c2100 = Constraint(expr= 0.997*m.x1558 - m.x1559 >= 0) m.c2101 = Constraint(expr= 0.997*m.x1559 - m.x1560 >= 0) m.c2102 = Constraint(expr= 0.997*m.x1560 - m.x1561 >= 0) m.c2103 = Constraint(expr= 0.997*m.x1562 - m.x1563 >= 0) m.c2104 = Constraint(expr= 0.997*m.x1563 - m.x1564 >= 0) m.c2105 = Constraint(expr= 0.997*m.x1564 - m.x1565 >= 0) m.c2106 = Constraint(expr= 0.997*m.x1565 - m.x1566 >= 0) m.c2107 = Constraint(expr= 0.997*m.x1566 - m.x1567 >= 0) m.c2108 = Constraint(expr= 0.997*m.x1567 - m.x1568 >= 0) m.c2109 = Constraint(expr= 0.997*m.x1568 - m.x1569 >= 0) m.c2110 = Constraint(expr= 0.997*m.x1569 - m.x1570 >= 0) m.c2111 = Constraint(expr= 0.997*m.x1570 - m.x1571 >= 0) m.c2112 = Constraint(expr= 0.997*m.x1571 - m.x1572 >= 0) m.c2113 = Constraint(expr= 0.997*m.x1572 - m.x1573 >= 0) m.c2114 = Constraint(expr= 0.997*m.x1573 - m.x1574 >= 0) m.c2115 = Constraint(expr= 0.997*m.x1574 - m.x1575 >= 0) m.c2116 = Constraint(expr= 0.997*m.x1575 - m.x1576 >= 0) m.c2117 = Constraint(expr= 0.997*m.x1576 - m.x1577 >= 0) m.c2118 = Constraint(expr= 0.997*m.x1577 - m.x1578 >= 0) m.c2119 = Constraint(expr= 0.997*m.x1578 - m.x1579 >= 0) m.c2120 = Constraint(expr= 0.997*m.x1579 - m.x1580 >= 0) m.c2121 = Constraint(expr= 0.997*m.x1580 - m.x1581 >= 0) m.c2122 = Constraint(expr= 0.997*m.x1581 - m.x1582 >= 0) m.c2123 = Constraint(expr= 0.997*m.x1582 - m.x1583 >= 0) m.c2124 = Constraint(expr= 0.997*m.x1583 - m.x1584 >= 0) m.c2125 = Constraint(expr= 0.997*m.x1584 - m.x1585 >= 0) m.c2126 = Constraint(expr= 0.997*m.x1561 - m.x1562 >= 0) m.c2127 = Constraint(expr= - m.x1538 + 0.997*m.x1585 >= 0) m.c2128 = Constraint(expr= - m.x2 + m.b2306 <= 0) m.c2129 = Constraint(expr= - m.x3 + m.b2307 <= 0) m.c2130 = Constraint(expr= - m.x4 + m.b2308 <= 0) m.c2131 = Constraint(expr= - m.x5 + m.b2309 <= 0) m.c2132 = Constraint(expr= - m.x6 + m.b2310 <= 0) m.c2133 = Constraint(expr= - m.x7 + m.b2311 <= 0) m.c2134 = Constraint(expr= - m.x8 + m.b2312 <= 0) m.c2135 = Constraint(expr= - m.x9 + m.b2313 <= 0) m.c2136 = Constraint(expr= - m.x10 + m.b2314 <= 0) m.c2137 = Constraint(expr= - m.x11 + m.b2315 <= 0) m.c2138 = Constraint(expr= - m.x12 + m.b2316 <= 0) m.c2139 = Constraint(expr= - m.x13 + m.b2317 <= 0) m.c2140 = Constraint(expr= - m.x14 + m.b2318 <= 0) m.c2141 = Constraint(expr= - m.x15 + m.b2319 <= 0) m.c2142 = Constraint(expr= - m.x16 + m.b2320 <= 0) m.c2143 = Constraint(expr= - m.x17 + m.b2321 <= 0) m.c2144 = Constraint(expr= - m.x18 + m.b2322 <= 0) m.c2145 = Constraint(expr= - m.x19 + m.b2323 <= 0) m.c2146 = Constraint(expr= - m.x20 + m.b2324 <= 0) m.c2147 = Constraint(expr= - m.x21 + m.b2325 <= 0) m.c2148 = Constraint(expr= - m.x22 + m.b2326 <= 0) m.c2149 = Constraint(expr= - m.x23 + m.b2327 <= 0) m.c2150 = Constraint(expr= - m.x24 + m.b2328 <= 0) m.c2151 = Constraint(expr= - m.x25 + m.b2329 <= 0) m.c2152 = Constraint(expr= - m.x26 + m.b2330 <= 0) m.c2153 = Constraint(expr= - m.x27 + m.b2331 <= 0) m.c2154 = Constraint(expr= - m.x28 + m.b2332 <= 0) m.c2155 = Constraint(expr= - m.x29 + m.b2333 <= 0) m.c2156 = Constraint(expr= - m.x30 + m.b2334 <= 0) m.c2157 = Constraint(expr= - m.x31 + m.b2335 <= 0) m.c2158 = Constraint(expr= - m.x32 + m.b2336 <= 0) m.c2159 = Constraint(expr= - m.x33 + m.b2337 <= 0) m.c2160 = Constraint(expr= - m.x34 + m.b2338 <= 0) m.c2161 = Constraint(expr= - m.x35 + m.b2339 <= 0) m.c2162 = Constraint(expr= - m.x36 + m.b2340 <= 0) m.c2163 = Constraint(expr= - m.x37 + m.b2341 <= 0) m.c2164 = Constraint(expr= - m.x38 + m.b2342 <= 0) m.c2165 = Constraint(expr= - m.x39 + m.b2343 <= 0) m.c2166 = Constraint(expr= - m.x40 + m.b2344 <= 0) m.c2167 = Constraint(expr= - m.x41 + m.b2345 <= 0) m.c2168 = Constraint(expr= - m.x42 + m.b2346 <= 0) m.c2169 = Constraint(expr= - m.x43 + m.b2347 <= 0) m.c2170 = Constraint(expr= - m.x44 + m.b2348 <= 0) m.c2171 = Constraint(expr= - m.x45 + m.b2349 <= 0) m.c2172 = Constraint(expr= - m.x46 + m.b2350 <= 0) m.c2173 = Constraint(expr= - m.x47 + m.b2351 <= 0) m.c2174 = Constraint(expr= - m.x48 + m.b2352 <= 0) m.c2175 = Constraint(expr= - m.x49 + m.b2353 <= 0) m.c2176 = Constraint(expr= - m.x50 + m.b2354 <= 0) m.c2177 = Constraint(expr= - m.x51 + m.b2355 <= 0) m.c2178 = Constraint(expr= - m.x52 + m.b2356 <= 0) m.c2179 = Constraint(expr= - m.x53 + m.b2357 <= 0) m.c2180 = Constraint(expr= - m.x54 + m.b2358 <= 0) m.c2181 = Constraint(expr= - m.x55 + m.b2359 <= 0) m.c2182 = Constraint(expr= - m.x56 + m.b2360 <= 0) m.c2183 = Constraint(expr= - m.x57 + m.b2361 <= 0) m.c2184 = Constraint(expr= - m.x58 + m.b2362 <= 0) m.c2185 = Constraint(expr= - m.x59 + m.b2363 <= 0) m.c2186 = Constraint(expr= - m.x60 + m.b2364 <= 0) m.c2187 = Constraint(expr= - m.x61 + m.b2365 <= 0) m.c2188 = Constraint(expr= - m.x62 + m.b2366 <= 0) m.c2189 = Constraint(expr= - m.x63 + m.b2367 <= 0) m.c2190 = Constraint(expr= - m.x64 + m.b2368 <= 0) m.c2191 = Constraint(expr= - m.x65 + m.b2369 <= 0) m.c2192 = Constraint(expr= - m.x66 + m.b2370 <= 0) m.c2193 = Constraint(expr= - m.x67 + m.b2371 <= 0) m.c2194 = Constraint(expr= - m.x68 + m.b2372 <= 0) m.c2195 = Constraint(expr= - m.x69 + m.b2373 <= 0) m.c2196 = Constraint(expr= - m.x70 + m.b2374 <= 0) m.c2197 = Constraint(expr= - m.x71 + m.b2375 <= 0) m.c2198 = Constraint(expr= - m.x72 + m.b2376 <= 0) m.c2199 = Constraint(expr= - m.x73 + m.b2377 <= 0) m.c2200 = Constraint(expr= - m.x74 + m.b2378 <= 0) m.c2201 = Constraint(expr= - m.x75 + m.b2379 <= 0) m.c2202 = Constraint(expr= - m.x76 + m.b2380 <= 0) m.c2203 = Constraint(expr= - m.x77 + m.b2381 <= 0) m.c2204 = Constraint(expr= - m.x78 + m.b2382 <= 0) m.c2205 = Constraint(expr= - m.x79 + m.b2383 <= 0) m.c2206 = Constraint(expr= - m.x80 + m.b2384 <= 0) m.c2207 = Constraint(expr= - m.x81 + m.b2385 <= 0) m.c2208 = Constraint(expr= - m.x82 + m.b2386 <= 0) m.c2209 = Constraint(expr= - m.x83 + m.b2387 <= 0) m.c2210 = Constraint(expr= - m.x84 + m.b2388 <= 0) m.c2211 = Constraint(expr= - m.x85 + m.b2389 <= 0) m.c2212 = Constraint(expr= - m.x86 + m.b2390 <= 0) m.c2213 = Constraint(expr= - m.x87 + m.b2391 <= 0) m.c2214 = Constraint(expr= - m.x88 + m.b2392 <= 0) m.c2215 = Constraint(expr= - m.x89 + m.b2393 <= 0) m.c2216 = Constraint(expr= - m.x90 + m.b2394 <= 0) m.c2217 = Constraint(expr= - m.x91 + m.b2395 <= 0) m.c2218 = Constraint(expr= - m.x92 + m.b2396 <= 0) m.c2219 = Constraint(expr= - m.x93 + m.b2397 <= 0) m.c2220 = Constraint(expr= - m.x94 + m.b2398 <= 0) m.c2221 = Constraint(expr= - m.x95 + m.b2399 <= 0) m.c2222 = Constraint(expr= - m.x96 + m.b2400 <= 0) m.c2223 = Constraint(expr= - m.x97 + m.b2401 <= 0) m.c2224 = Constraint(expr= - m.x98 + 48*m.b2210 <= 0) m.c2225 = Constraint(expr= - m.x99 + 48*m.b2211 <= 0) m.c2226 = Constraint(expr= - m.x100 + 48*m.b2212 <= 0) m.c2227 = Constraint(expr= - m.x101 + 48*m.b2213 <= 0) m.c2228 = Constraint(expr= - m.x102 + 48*m.b2214 <= 0) m.c2229 = Constraint(expr= - m.x103 + 48*m.b2215 <= 0) m.c2230 = Constraint(expr= - m.x104 + 48*m.b2216 <= 0) m.c2231 = Constraint(expr= - m.x105 + 48*m.b2217 <= 0) m.c2232 = Constraint(expr= - m.x106 + 48*m.b2218 <= 0) m.c2233 = Constraint(expr= - m.x107 + 48*m.b2219 <= 0) m.c2234 = Constraint(expr= - m.x108 + 48*m.b2220 <= 0) m.c2235 = Constraint(expr= - m.x109 + 48*m.b2221 <= 0) m.c2236 = Constraint(expr= - m.x110 + 48*m.b2222 <= 0) m.c2237 = Constraint(expr= - m.x111 + 48*m.b2223 <= 0) m.c2238 = Constraint(expr= - m.x112 + 48*m.b2224 <= 0) m.c2239 = Constraint(expr= - m.x113 + 48*m.b2225 <= 0) m.c2240 = Constraint(expr= - m.x114 + 48*m.b2226 <= 0) m.c2241 = Constraint(expr= - m.x115 + 48*m.b2227 <= 0) m.c2242 = Constraint(expr= - m.x116 + 48*m.b2228 <= 0) m.c2243 = Constraint(expr= - m.x117 + 48*m.b2229 <= 0) m.c2244 = Constraint(expr= - m.x118 + 48*m.b2230 <= 0) m.c2245 = Constraint(expr= - m.x119 + 48*m.b2231 <= 0) m.c2246 = Constraint(expr= - m.x120 + 48*m.b2232 <= 0) m.c2247 = Constraint(expr= - m.x121 + 48*m.b2233 <= 0) m.c2248 = Constraint(expr= - m.x122 + 48*m.b2234 <= 0) m.c2249 = Constraint(expr= - m.x123 + 48*m.b2235 <= 0) m.c2250 = Constraint(expr= - m.x124 + 48*m.b2236 <= 0) m.c2251 = Constraint(expr= - m.x125 + 48*m.b2237 <= 0) m.c2252 = Constraint(expr= - m.x126 + 48*m.b2238 <= 0) m.c2253 = Constraint(expr= - m.x127 + 48*m.b2239 <= 0) m.c2254 = Constraint(expr= - m.x128 + 48*m.b2240 <= 0) m.c2255 = Constraint(expr= - m.x129 + 48*m.b2241 <= 0) m.c2256 = Constraint(expr= - m.x130 + 48*m.b2242 <= 0) m.c2257 = Constraint(expr= - m.x131 + 48*m.b2243 <= 0) m.c2258 = Constraint(expr= - m.x132 + 48*m.b2244 <= 0) m.c2259 = Constraint(expr= - m.x133 + 48*m.b2245 <= 0) m.c2260 = Constraint(expr= - m.x134 + 48*m.b2246 <= 0) m.c2261 = Constraint(expr= - m.x135 + 48*m.b2247 <= 0) m.c2262 = Constraint(expr= - m.x136 + 48*m.b2248 <= 0) m.c2263 = Constraint(expr= - m.x137 + 48*m.b2249 <= 0) m.c2264 = Constraint(expr= - m.x138 + 48*m.b2250 <= 0) m.c2265 = Constraint(expr= - m.x139 + 48*m.b2251 <= 0) m.c2266 = Constraint(expr= - m.x140 + 48*m.b2252 <= 0) m.c2267 = Constraint(expr= - m.x141 + 48*m.b2253 <= 0) m.c2268 = Constraint(expr= - m.x142 + 48*m.b2254 <= 0) m.c2269 = Constraint(expr= - m.x143 + 48*m.b2255 <= 0) m.c2270 = Constraint(expr= - m.x144 + 48*m.b2256 <= 0) m.c2271 = Constraint(expr= - m.x145 + 48*m.b2257 <= 0) m.c2272 = Constraint(expr= - m.x146 + 48*m.b2258 <= 0) m.c2273 = Constraint(expr= - m.x147 + 48*m.b2259 <= 0) m.c2274 = Constraint(expr= - m.x148 + 48*m.b2260 <= 0) m.c2275 = Constraint(expr= - m.x149 + 48*m.b2261 <= 0) m.c2276 = Constraint(expr= - m.x150 + 48*m.b2262 <= 0) m.c2277 = Constraint(expr= - m.x151 + 48*m.b2263 <= 0) m.c2278 = Constraint(expr= - m.x152 + 48*m.b2264 <= 0) m.c2279 = Constraint(expr= - m.x153 + 48*m.b2265 <= 0) m.c2280 = Constraint(expr= - m.x154 + 48*m.b2266 <= 0) m.c2281 = Constraint(expr= - m.x155 + 48*m.b2267 <= 0) m.c2282 = Constraint(expr= - m.x156 + 48*m.b2268 <= 0) m.c2283 = Constraint(expr= - m.x157 + 48*m.b2269 <= 0) m.c2284 = Constraint(expr= - m.x158 + 48*m.b2270 <= 0) m.c2285 = Constraint(expr= - m.x159 + 48*m.b2271 <= 0) m.c2286 = Constraint(expr= - m.x160 + 48*m.b2272 <= 0) m.c2287 = Constraint(expr= - m.x161 + 48*m.b2273 <= 0) m.c2288 = Constraint(expr= - m.x162 + 48*m.b2274 <= 0) m.c2289 = Constraint(expr= - m.x163 + 48*m.b2275 <= 0) m.c2290 = Constraint(expr= - m.x164 + 48*m.b2276 <= 0) m.c2291 = Constraint(expr= - m.x165 + 48*m.b2277 <= 0) m.c2292 = Constraint(expr= - m.x166 + 48*m.b2278 <= 0) m.c2293 = Constraint(expr= - m.x167 + 48*m.b2279 <= 0) m.c2294 = Constraint(expr= - m.x168 + 48*m.b2280 <= 0) m.c2295 = Constraint(expr= - m.x169 + 48*m.b2281 <= 0) m.c2296 = Constraint(expr= - m.x170 + 48*m.b2282 <= 0) m.c2297 = Constraint(expr= - m.x171 + 48*m.b2283 <= 0) m.c2298 = Constraint(expr= - m.x172 + 48*m.b2284 <= 0) m.c2299 = Constraint(expr= - m.x173 + 48*m.b2285 <= 0) m.c2300 = Constraint(expr= - m.x174 + 48*m.b2286 <= 0) m.c2301 = Constraint(expr= - m.x175 + 48*m.b2287 <= 0) m.c2302 = Constraint(expr= - m.x176 + 48*m.b2288 <= 0) m.c2303 = Constraint(expr= - m.x177 + 48*m.b2289 <= 0) m.c2304 = Constraint(expr= - m.x178 + 48*m.b2290 <= 0) m.c2305 = Constraint(expr= - m.x179 + 48*m.b2291 <= 0) m.c2306 = Constraint(expr= - m.x180 + 48*m.b2292 <= 0) m.c2307 = Constraint(expr= - m.x181 + 48*m.b2293 <= 0) m.c2308 = Constraint(expr= - m.x182 + 48*m.b2294 <= 0) m.c2309 = Constraint(expr= - m.x183 + 48*m.b2295 <= 0) m.c2310 = Constraint(expr= - m.x184 + 48*m.b2296 <= 0) m.c2311 = Constraint(expr= - m.x185 + 48*m.b2297 <= 0) m.c2312 = Constraint(expr= - m.x186 + 48*m.b2298 <= 0) m.c2313 = Constraint(expr= - m.x187 + 48*m.b2299 <= 0) m.c2314 = Constraint(expr= - m.x188 + 48*m.b2300 <= 0) m.c2315 = Constraint(expr= - m.x189 + 48*m.b2301 <= 0) m.c2316 = Constraint(expr= - m.x190 + 48*m.b2302 <= 0) m.c2317 = Constraint(expr= - m.x191 + 48*m.b2303 <= 0) m.c2318 = Constraint(expr= - m.x192 + 48*m.b2304 <= 0) m.c2319 = Constraint(expr= - m.x193 + 48*m.b2305 <= 0) m.c2320 = Constraint(expr= - m.x194 + 9*m.b2018 <= 0) m.c2321 = Constraint(expr= - m.x195 + 9*m.b2019 <= 0) m.c2322 = Constraint(expr= - m.x196 + 9*m.b2020 <= 0) m.c2323 = Constraint(expr= - m.x197 + 9*m.b2021 <= 0) m.c2324 = Constraint(expr= - m.x198 + 9*m.b2022 <= 0) m.c2325 = Constraint(expr= - m.x199 + 9*m.b2023 <= 0) m.c2326 = Constraint(expr= - m.x200 + 9*m.b2024 <= 0) m.c2327 = Constraint(expr= - m.x201 + 9*m.b2025 <= 0) m.c2328 = Constraint(expr= - m.x202 + 9*m.b2026 <= 0) m.c2329 = Constraint(expr= - m.x203 + 9*m.b2027 <= 0) m.c2330 = Constraint(expr= - m.x204 + 9*m.b2028 <= 0) m.c2331 = Constraint(expr= - m.x205 + 9*m.b2029 <= 0) m.c2332 = Constraint(expr= - m.x206 + 9*m.b2030 <= 0) m.c2333 = Constraint(expr= - m.x207 + 9*m.b2031 <= 0) m.c2334 = Constraint(expr= - m.x208 + 9*m.b2032 <= 0) m.c2335 = Constraint(expr= - m.x209 + 9*m.b2033 <= 0) m.c2336 = Constraint(expr= - m.x210 + 9*m.b2034 <= 0) m.c2337 = Constraint(expr= - m.x211 + 9*m.b2035 <= 0) m.c2338 = Constraint(expr= - m.x212 + 9*m.b2036 <= 0) m.c2339 = Constraint(expr= - m.x213 + 9*m.b2037 <= 0) m.c2340 = Constraint(expr= - m.x214 + 9*m.b2038 <= 0) m.c2341 = Constraint(expr= - m.x215 + 9*m.b2039 <= 0) m.c2342 = Constraint(expr= - m.x216 + 9*m.b2040 <= 0) m.c2343 = Constraint(expr= - m.x217 + 9*m.b2041 <= 0) m.c2344 = Constraint(expr= - m.x218 + 9*m.b2042 <= 0) m.c2345 = Constraint(expr= - m.x219 + 9*m.b2043 <= 0) m.c2346 = Constraint(expr= - m.x220 + 9*m.b2044 <= 0) m.c2347 = Constraint(expr= - m.x221 + 9*m.b2045 <= 0) m.c2348 = Constraint(expr= - m.x222 + 9*m.b2046 <= 0) m.c2349 = Constraint(expr= - m.x223 + 9*m.b2047 <= 0) m.c2350 = Constraint(expr= - m.x224 + 9*m.b2048 <= 0) m.c2351 = Constraint(expr= - m.x225 + 9*m.b2049 <= 0) m.c2352 = Constraint(expr= - m.x226 + 9*m.b2050 <= 0) m.c2353 = Constraint(expr= - m.x227 + 9*m.b2051 <= 0) m.c2354 = Constraint(expr= - m.x228 + 9*m.b2052 <= 0) m.c2355 = Constraint(expr= - m.x229 + 9*m.b2053 <= 0) m.c2356 = Constraint(expr= - m.x230 + 9*m.b2054 <= 0) m.c2357 = Constraint(expr= - m.x231 + 9*m.b2055 <= 0) m.c2358 = Constraint(expr= - m.x232 + 9*m.b2056 <= 0) m.c2359 = Constraint(expr= - m.x233 + 9*m.b2057 <= 0) m.c2360 = Constraint(expr= - m.x234 + 9*m.b2058 <= 0) m.c2361 = Constraint(expr= - m.x235 + 9*m.b2059 <= 0) m.c2362 = Constraint(expr= - m.x236 + 9*m.b2060 <= 0) m.c2363 = Constraint(expr= - m.x237 + 9*m.b2061 <= 0) m.c2364 = Constraint(expr= - m.x238 + 9*m.b2062 <= 0) m.c2365 = Constraint(expr= - m.x239 + 9*m.b2063 <= 0) m.c2366 = Constraint(expr= - m.x240 + 9*m.b2064 <= 0) m.c2367 = Constraint(expr= - m.x241 + 9*m.b2065 <= 0) m.c2368 = Constraint(expr= - m.x242 + 9*m.b2066 <= 0) m.c2369 = Constraint(expr= - m.x243 + 9*m.b2067 <= 0) m.c2370 = Constraint(expr= - m.x244 + 9*m.b2068 <= 0) m.c2371 = Constraint(expr= - m.x245 + 9*m.b2069 <= 0) m.c2372 = Constraint(expr= - m.x246 + 9*m.b2070 <= 0) m.c2373 = Constraint(expr= - m.x247 + 9*m.b2071 <= 0) m.c2374 = Constraint(expr= - m.x248 + 9*m.b2072 <= 0) m.c2375 = Constraint(expr= - m.x249 + 9*m.b2073 <= 0) m.c2376 = Constraint(expr= - m.x250 + 9*m.b2074 <= 0) m.c2377 = Constraint(expr= - m.x251 + 9*m.b2075 <= 0) m.c2378 = Constraint(expr= - m.x252 + 9*m.b2076 <= 0) m.c2379 = Constraint(expr= - m.x253 + 9*m.b2077 <= 0) m.c2380 = Constraint(expr= - m.x254 + 9*m.b2078 <= 0) m.c2381 = Constraint(expr= - m.x255 + 9*m.b2079 <= 0) m.c2382 = Constraint(expr= - m.x256 + 9*m.b2080 <= 0) m.c2383 = Constraint(expr= - m.x257 + 9*m.b2081 <= 0) m.c2384 = Constraint(expr= - m.x258 + 9*m.b2082 <= 0) m.c2385 = Constraint(expr= - m.x259 + 9*m.b2083 <= 0) m.c2386 = Constraint(expr= - m.x260 + 9*m.b2084 <= 0) m.c2387 = Constraint(expr= - m.x261 + 9*m.b2085 <= 0) m.c2388 = Constraint(expr= - m.x262 + 9*m.b2086 <= 0) m.c2389 = Constraint(expr= - m.x263 + 9*m.b2087 <= 0) m.c2390 = Constraint(expr= - m.x264 + 9*m.b2088 <= 0) m.c2391 = Constraint(expr= - m.x265 + 9*m.b2089 <= 0) m.c2392 = Constraint(expr= - m.x266 + 9*m.b2090 <= 0) m.c2393 = Constraint(expr= - m.x267 + 9*m.b2091 <= 0) m.c2394 = Constraint(expr= - m.x268 + 9*m.b2092 <= 0) m.c2395 = Constraint(expr= - m.x269 + 9*m.b2093 <= 0) m.c2396 = Constraint(expr= - m.x270 + 9*m.b2094 <= 0) m.c2397 = Constraint(expr= - m.x271 + 9*m.b2095 <= 0) m.c2398 = Constraint(expr= - m.x272 + 9*m.b2096 <= 0) m.c2399 = Constraint(expr= - m.x273 + 9*m.b2097 <= 0) m.c2400 = Constraint(expr= - m.x274 + 9*m.b2098 <= 0) m.c2401 = Constraint(expr= - m.x275 + 9*m.b2099 <= 0) m.c2402 = Constraint(expr= - m.x276 + 9*m.b2100 <= 0) m.c2403 = Constraint(expr= - m.x277 + 9*m.b2101 <= 0) m.c2404 = Constraint(expr= - m.x278 + 9*m.b2102 <= 0) m.c2405 = Constraint(expr= - m.x279 + 9*m.b2103 <= 0) m.c2406 = Constraint(expr= - m.x280 + 9*m.b2104 <= 0) m.c2407 = Constraint(expr= - m.x281 + 9*m.b2105 <= 0) m.c2408 = Constraint(expr= - m.x282 + 9*m.b2106 <= 0) m.c2409 = Constraint(expr= - m.x283 + 9*m.b2107 <= 0) m.c2410 = Constraint(expr= - m.x284 + 9*m.b2108 <= 0) m.c2411 = Constraint(expr= - m.x285 + 9*m.b2109 <= 0) m.c2412 = Constraint(expr= - m.x286 + 9*m.b2110 <= 0) m.c2413 = Constraint(expr= - m.x287 + 9*m.b2111 <= 0) m.c2414 = Constraint(expr= - m.x288 + 9*m.b2112 <= 0) m.c2415 = Constraint(expr= - m.x289 + 9*m.b2113 <= 0) m.c2416 = Constraint(expr= - m.x290 + 9*m.b2114 <= 0) m.c2417 = Constraint(expr= - m.x291 + 9*m.b2115 <= 0) m.c2418 = Constraint(expr= - m.x292 + 9*m.b2116 <= 0) m.c2419 = Constraint(expr= - m.x293 + 9*m.b2117 <= 0) m.c2420 = Constraint(expr= - m.x294 + 9*m.b2118 <= 0) m.c2421 = Constraint(expr= - m.x295 + 9*m.b2119 <= 0) m.c2422 = Constraint(expr= - m.x296 + 9*m.b2120 <= 0) m.c2423 = Constraint(expr= - m.x297 + 9*m.b2121 <= 0) m.c2424 = Constraint(expr= - m.x298 + 9*m.b2122 <= 0) m.c2425 = Constraint(expr= - m.x299 + 9*m.b2123 <= 0) m.c2426 = Constraint(expr= - m.x300 + 9*m.b2124 <= 0) m.c2427 = Constraint(expr= - m.x301 + 9*m.b2125 <= 0) m.c2428 = Constraint(expr= - m.x302 + 9*m.b2126 <= 0) m.c2429 = Constraint(expr= - m.x303 + 9*m.b2127 <= 0) m.c2430 = Constraint(expr= - m.x304 + 9*m.b2128 <= 0) m.c2431 = Constraint(expr= - m.x305 + 9*m.b2129 <= 0) m.c2432 = Constraint(expr= - m.x306 + 9*m.b2130 <= 0) m.c2433 = Constraint(expr= - m.x307 + 9*m.b2131 <= 0) m.c2434 = Constraint(expr= - m.x308 + 9*m.b2132 <= 0) m.c2435 = Constraint(expr= - m.x309 + 9*m.b2133 <= 0) m.c2436 = Constraint(expr= - m.x310 + 9*m.b2134 <= 0) m.c2437 = Constraint(expr= - m.x311 + 9*m.b2135 <= 0) m.c2438 = Constraint(expr= - m.x312 + 9*m.b2136 <= 0) m.c2439 = Constraint(expr= - m.x313 + 9*m.b2137 <= 0) m.c2440 = Constraint(expr= - m.x314 + 9*m.b2138 <= 0) m.c2441 = Constraint(expr= - m.x315 + 9*m.b2139 <= 0) m.c2442 = Constraint(expr= - m.x316 + 9*m.b2140 <= 0) m.c2443 = Constraint(expr= - m.x317 + 9*m.b2141 <= 0) m.c2444 = Constraint(expr= - m.x318 + 9*m.b2142 <= 0) m.c2445 = Constraint(expr= - m.x319 + 9*m.b2143 <= 0) m.c2446 = Constraint(expr= - m.x320 + 9*m.b2144 <= 0) m.c2447 = Constraint(expr= - m.x321 + 9*m.b2145 <= 0) m.c2448 = Constraint(expr= - m.x322 + 9*m.b2146 <= 0) m.c2449 = Constraint(expr= - m.x323 + 9*m.b2147 <= 0) m.c2450 = Constraint(expr= - m.x324 + 9*m.b2148 <= 0) m.c2451 = Constraint(expr= - m.x325 + 9*m.b2149 <= 0) m.c2452 = Constraint(expr= - m.x326 + 9*m.b2150 <= 0) m.c2453 = Constraint(expr= - m.x327 + 9*m.b2151 <= 0) m.c2454 = Constraint(expr= - m.x328 + 9*m.b2152 <= 0) m.c2455 = Constraint(expr= - m.x329 + 9*m.b2153 <= 0) m.c2456 = Constraint(expr= - m.x330 + 9*m.b2154 <= 0) m.c2457 = Constraint(expr= - m.x331 + 9*m.b2155 <= 0) m.c2458 = Constraint(expr= - m.x332 + 9*m.b2156 <= 0) m.c2459 = Constraint(expr= - m.x333 + 9*m.b2157 <= 0) m.c2460 = Constraint(expr= - m.x334 + 9*m.b2158 <= 0) m.c2461 = Constraint(expr= - m.x335 + 9*m.b2159 <= 0) m.c2462 = Constraint(expr= - m.x336 + 9*m.b2160 <= 0) m.c2463 = Constraint(expr= - m.x337 + 9*m.b2161 <= 0) m.c2464 = Constraint(expr= - m.x338 + 9*m.b2162 <= 0) m.c2465 = Constraint(expr= - m.x339 + 9*m.b2163 <= 0) m.c2466 = Constraint(expr= - m.x340 + 9*m.b2164 <= 0) m.c2467 = Constraint(expr= - m.x341 + 9*m.b2165 <= 0) m.c2468 = Constraint(expr= - m.x342 + 9*m.b2166 <= 0) m.c2469 = Constraint(expr= - m.x343 + 9*m.b2167 <= 0) m.c2470 = Constraint(expr= - m.x344 + 9*m.b2168 <= 0) m.c2471 = Constraint(expr= - m.x345 + 9*m.b2169 <= 0) m.c2472 = Constraint(expr= - m.x346 + 9*m.b2170 <= 0) m.c2473 = Constraint(expr= - m.x347 + 9*m.b2171 <= 0) m.c2474 = Constraint(expr= - m.x348 + 9*m.b2172 <= 0) m.c2475 = Constraint(expr= - m.x349 + 9*m.b2173 <= 0) m.c2476 = Constraint(expr= - m.x350 + 9*m.b2174 <= 0) m.c2477 = Constraint(expr= - m.x351 + 9*m.b2175 <= 0) m.c2478 = Constraint(expr= - m.x352 + 9*m.b2176 <= 0) m.c2479 = Constraint(expr= - m.x353 + 9*m.b2177 <= 0) m.c2480 = Constraint(expr= - m.x354 + 9*m.b2178 <= 0) m.c2481 = Constraint(expr= - m.x355 + 9*m.b2179 <= 0) m.c2482 = Constraint(expr= - m.x356 + 9*m.b2180 <= 0) m.c2483 = Constraint(expr= - m.x357 + 9*m.b2181 <= 0) m.c2484 = Constraint(expr= - m.x358 + 9*m.b2182 <= 0) m.c2485 = Constraint(expr= - m.x359 + 9*m.b2183 <= 0) m.c2486 = Constraint(expr= - m.x360 + 9*m.b2184 <= 0) m.c2487 = Constraint(expr= - m.x361 + 9*m.b2185 <= 0) m.c2488 = Constraint(expr= - m.x362 + 9*m.b2186 <= 0) m.c2489 = Constraint(expr= - m.x363 + 9*m.b2187 <= 0) m.c2490 = Constraint(expr= - m.x364 + 9*m.b2188 <= 0) m.c2491 = Constraint(expr= - m.x365 + 9*m.b2189 <= 0) m.c2492 = Constraint(expr= - m.x366 + 9*m.b2190 <= 0) m.c2493 = Constraint(expr= - m.x367 + 9*m.b2191 <= 0) m.c2494 = Constraint(expr= - m.x368 + 9*m.b2192 <= 0) m.c2495 = Constraint(expr= - m.x369 + 9*m.b2193 <= 0) m.c2496 = Constraint(expr= - m.x370 + 9*m.b2194 <= 0) m.c2497 = Constraint(expr= - m.x371 + 9*m.b2195 <= 0) m.c2498 = Constraint(expr= - m.x372 + 9*m.b2196 <= 0) m.c2499 = Constraint(expr= - m.x373 + 9*m.b2197 <= 0) m.c2500 = Constraint(expr= - m.x374 + 9*m.b2198 <= 0) m.c2501 = Constraint(expr= - m.x375 + 9*m.b2199 <= 0) m.c2502 = Constraint(expr= - m.x376 + 9*m.b2200 <= 0) m.c2503 = Constraint(expr= - m.x377 + 9*m.b2201 <= 0) m.c2504 = Constraint(expr= - m.x378 + 9*m.b2202 <= 0) m.c2505 = Constraint(expr= - m.x379 + 9*m.b2203 <= 0) m.c2506 = Constraint(expr= - m.x380 + 9*m.b2204 <= 0) m.c2507 = Constraint(expr= - m.x381 + 9*m.b2205 <= 0) m.c2508 = Constraint(expr= - m.x382 + 9*m.b2206 <= 0) m.c2509 = Constraint(expr= - m.x383 + 9*m.b2207 <= 0) m.c2510 = Constraint(expr= - m.x384 + 9*m.b2208 <= 0) m.c2511 = Constraint(expr= - m.x385 + 9*m.b2209 <= 0) m.c2512 = Constraint(expr= m.x2 - 45*m.b2306 <= 0) m.c2513 = Constraint(expr= m.x3 - 45*m.b2307 <= 0) m.c2514 = Constraint(expr= m.x4 - 45*m.b2308 <= 0) m.c2515 = Constraint(expr= m.x5 - 45*m.b2309 <= 0) m.c2516 = Constraint(expr= m.x6 - 45*m.b2310 <= 0) m.c2517 = Constraint(expr= m.x7 - 45*m.b2311 <= 0) m.c2518 = Constraint(expr= m.x8 - 45*m.b2312 <= 0) m.c2519 = Constraint(expr= m.x9 - 45*m.b2313 <= 0) m.c2520 = Constraint(expr= m.x10 - 45*m.b2314 <= 0) m.c2521 = Constraint(expr= m.x11 - 45*m.b2315 <= 0) m.c2522 = Constraint(expr= m.x12 - 45*m.b2316 <= 0) m.c2523 = Constraint(expr= m.x13 - 45*m.b2317 <= 0) m.c2524 = Constraint(expr= m.x14 - 45*m.b2318 <= 0) m.c2525 = Constraint(expr= m.x15 - 45*m.b2319 <= 0) m.c2526 = Constraint(expr= m.x16 - 45*m.b2320 <= 0) m.c2527 = Constraint(expr= m.x17 - 45*m.b2321 <= 0) m.c2528 = Constraint(expr= m.x18 - 45*m.b2322 <= 0) m.c2529 = Constraint(expr= m.x19 - 45*m.b2323 <= 0) m.c2530 = Constraint(expr= m.x20 - 45*m.b2324 <= 0) m.c2531 = Constraint(expr= m.x21 - 45*m.b2325 <= 0) m.c2532 = Constraint(expr= m.x22 - 45*m.b2326 <= 0) m.c2533 = Constraint(expr= m.x23 - 45*m.b2327 <= 0) m.c2534 = Constraint(expr= m.x24 - 45*m.b2328 <= 0) m.c2535 = Constraint(expr= m.x25 - 45*m.b2329 <= 0) m.c2536 = Constraint(expr= m.x26 - 45*m.b2330 <= 0) m.c2537 = Constraint(expr= m.x27 - 45*m.b2331 <= 0) m.c2538 = Constraint(expr= m.x28 - 45*m.b2332 <= 0) m.c2539 = Constraint(expr= m.x29 - 45*m.b2333 <= 0) m.c2540 = Constraint(expr= m.x30 - 45*m.b2334 <= 0) m.c2541 = Constraint(expr= m.x31 - 45*m.b2335 <= 0) m.c2542 = Constraint(expr= m.x32 - 45*m.b2336 <= 0) m.c2543 = Constraint(expr= m.x33 - 45*m.b2337 <= 0) m.c2544 = Constraint(expr= m.x34 - 45*m.b2338 <= 0) m.c2545 = Constraint(expr= m.x35 - 45*m.b2339 <= 0) m.c2546 = Constraint(expr= m.x36 - 45*m.b2340 <= 0) m.c2547 = Constraint(expr= m.x37 - 45*m.b2341 <= 0) m.c2548 = Constraint(expr= m.x38 - 45*m.b2342 <= 0) m.c2549 = Constraint(expr= m.x39 - 45*m.b2343 <= 0) m.c2550 = Constraint(expr= m.x40 - 45*m.b2344 <= 0) m.c2551 = Constraint(expr= m.x41 - 45*m.b2345 <= 0) m.c2552 = Constraint(expr= m.x42 - 45*m.b2346 <= 0) m.c2553 = Constraint(expr= m.x43 - 45*m.b2347 <= 0) m.c2554 = Constraint(expr= m.x44 - 45*m.b2348 <= 0) m.c2555 = Constraint(expr= m.x45 - 45*m.b2349 <= 0) m.c2556 = Constraint(expr= m.x46 - 45*m.b2350 <= 0) m.c2557 = Constraint(expr= m.x47 - 45*m.b2351 <= 0) m.c2558 = Constraint(expr= m.x48 - 45*m.b2352 <= 0) m.c2559 = Constraint(expr= m.x49 - 45*m.b2353 <= 0) m.c2560 = Constraint(expr= m.x50 - 45*m.b2354 <= 0) m.c2561 = Constraint(expr= m.x51 - 45*m.b2355 <= 0) m.c2562 = Constraint(expr= m.x52 - 45*m.b2356 <= 0) m.c2563 = Constraint(expr= m.x53 - 45*m.b2357 <= 0) m.c2564 = Constraint(expr= m.x54 - 45*m.b2358 <= 0) m.c2565 = Constraint(expr= m.x55 - 45*m.b2359 <= 0) m.c2566 = Constraint(expr= m.x56 - 45*m.b2360 <= 0) m.c2567 = Constraint(expr= m.x57 - 45*m.b2361 <= 0) m.c2568 = Constraint(expr= m.x58 - 45*m.b2362 <= 0) m.c2569 = Constraint(expr= m.x59 - 45*m.b2363 <= 0) m.c2570 = Constraint(expr= m.x60 - 45*m.b2364 <= 0) m.c2571 = Constraint(expr= m.x61 - 45*m.b2365 <= 0) m.c2572 = Constraint(expr= m.x62 - 45*m.b2366 <= 0) m.c2573 = Constraint(expr= m.x63 - 45*m.b2367 <= 0) m.c2574 = Constraint(expr= m.x64 - 45*m.b2368 <= 0) m.c2575 = Constraint(expr= m.x65 - 45*m.b2369 <= 0) m.c2576 = Constraint(expr= m.x66 - 45*m.b2370 <= 0) m.c2577 = Constraint(expr= m.x67 - 45*m.b2371 <= 0) m.c2578 = Constraint(expr= m.x68 - 45*m.b2372 <= 0) m.c2579 = Constraint(expr= m.x69 - 45*m.b2373 <= 0) m.c2580 = Constraint(expr= m.x70 - 45*m.b2374 <= 0) m.c2581 = Constraint(expr= m.x71 - 45*m.b2375 <= 0) m.c2582 = Constraint(expr= m.x72 - 45*m.b2376 <= 0) m.c2583 = Constraint(expr= m.x73 - 45*m.b2377 <= 0) m.c2584 = Constraint(expr= m.x74 - 45*m.b2378 <= 0) m.c2585 = Constraint(expr= m.x75 - 45*m.b2379 <= 0) m.c2586 = Constraint(expr= m.x76 - 45*m.b2380 <= 0) m.c2587 = Constraint(expr= m.x77 - 45*m.b2381 <= 0) m.c2588 = Constraint(expr= m.x78 - 45*m.b2382 <= 0) m.c2589 = Constraint(expr= m.x79 - 45*m.b2383 <= 0) m.c2590 = Constraint(expr= m.x80 - 45*m.b2384 <= 0) m.c2591 = Constraint(expr= m.x81 - 45*m.b2385 <= 0) m.c2592 = Constraint(expr= m.x82 - 45*m.b2386 <= 0) m.c2593 = Constraint(expr= m.x83 - 45*m.b2387 <= 0) m.c2594 = Constraint(expr= m.x84 - 45*m.b2388 <= 0) m.c2595 = Constraint(expr= m.x85 - 45*m.b2389 <= 0) m.c2596 = Constraint(expr= m.x86 - 45*m.b2390 <= 0) m.c2597 = Constraint(expr= m.x87 - 45*m.b2391 <= 0) m.c2598 = Constraint(expr= m.x88 - 45*m.b2392 <= 0) m.c2599 = Constraint(expr= m.x89 - 45*m.b2393 <= 0) m.c2600 = Constraint(expr= m.x90 - 45*m.b2394 <= 0) m.c2601 = Constraint(expr= m.x91 - 45*m.b2395 <= 0) m.c2602 = Constraint(expr= m.x92 - 45*m.b2396 <= 0) m.c2603 = Constraint(expr= m.x93 - 45*m.b2397 <= 0) m.c2604 = Constraint(expr= m.x94 - 45*m.b2398 <= 0) m.c2605 = Constraint(expr= m.x95 - 45*m.b2399 <= 0) m.c2606 = Constraint(expr= m.x96 - 45*m.b2400 <= 0) m.c2607 = Constraint(expr= m.x97 - 45*m.b2401 <= 0) m.c2608 = Constraint(expr= m.x98 - 97*m.b2210 <= 0) m.c2609 = Constraint(expr= m.x99 - 97*m.b2211 <= 0) m.c2610 = Constraint(expr= m.x100 - 97*m.b2212 <= 0) m.c2611 = Constraint(expr= m.x101 - 97*m.b2213 <= 0) m.c2612 = Constraint(expr= m.x102 - 97*m.b2214 <= 0) m.c2613 = Constraint(expr= m.x103 - 97*m.b2215 <= 0) m.c2614 = Constraint(expr= m.x104 - 97*m.b2216 <= 0) m.c2615 = Constraint(expr= m.x105 - 97*m.b2217 <= 0) m.c2616 = Constraint(expr= m.x106 - 97*m.b2218 <= 0) m.c2617 = Constraint(expr= m.x107 - 97*m.b2219 <= 0) m.c2618 = Constraint(expr= m.x108 - 97*m.b2220 <= 0) m.c2619 = Constraint(expr= m.x109 - 97*m.b2221 <= 0) m.c2620 = Constraint(expr= m.x110 - 97*m.b2222 <= 0) m.c2621 = Constraint(expr= m.x111 - 97*m.b2223 <= 0) m.c2622 = Constraint(expr= m.x112 - 97*m.b2224 <= 0) m.c2623 = Constraint(expr= m.x113 - 97*m.b2225 <= 0) m.c2624 = Constraint(expr= m.x114 - 97*m.b2226 <= 0) m.c2625 = Constraint(expr= m.x115 - 97*m.b2227 <= 0) m.c2626 = Constraint(expr= m.x116 - 97*m.b2228 <= 0) m.c2627 = Constraint(expr= m.x117 - 97*m.b2229 <= 0) m.c2628 = Constraint(expr= m.x118 - 97*m.b2230 <= 0) m.c2629 = Constraint(expr= m.x119 - 97*m.b2231 <= 0) m.c2630 = Constraint(expr= m.x120 - 97*m.b2232 <= 0) m.c2631 = Constraint(expr= m.x121 - 97*m.b2233 <= 0) m.c2632 = Constraint(expr= m.x122 - 97*m.b2234 <= 0) m.c2633 = Constraint(expr= m.x123 - 97*m.b2235 <= 0) m.c2634 = Constraint(expr= m.x124 - 97*m.b2236 <= 0) m.c2635 = Constraint(expr= m.x125 - 97*m.b2237 <= 0) m.c2636 = Constraint(expr= m.x126 - 97*m.b2238 <= 0) m.c2637 = Constraint(expr= m.x127 - 97*m.b2239 <= 0) m.c2638 = Constraint(expr= m.x128 - 97*m.b2240 <= 0) m.c2639 = Constraint(expr= m.x129 - 97*m.b2241 <= 0) m.c2640 = Constraint(expr= m.x130 - 97*m.b2242 <= 0) m.c2641 = Constraint(expr= m.x131 - 97*m.b2243 <= 0) m.c2642 = Constraint(expr= m.x132 - 97*m.b2244 <= 0) m.c2643 = Constraint(expr= m.x133 - 97*m.b2245 <= 0) m.c2644 = Constraint(expr= m.x134 - 97*m.b2246 <= 0) m.c2645 = Constraint(expr= m.x135 - 97*m.b2247 <= 0) m.c2646 = Constraint(expr= m.x136 - 97*m.b2248 <= 0) m.c2647 = Constraint(expr= m.x137 - 97*m.b2249 <= 0) m.c2648 = Constraint(expr= m.x138 - 97*m.b2250 <= 0) m.c2649 = Constraint(expr= m.x139 - 97*m.b2251 <= 0) m.c2650 = Constraint(expr= m.x140 - 97*m.b2252 <= 0) m.c2651 = Constraint(expr= m.x141 - 97*m.b2253 <= 0) m.c2652 = Constraint(expr= m.x142 - 97*m.b2254 <= 0) m.c2653 = Constraint(expr= m.x143 - 97*m.b2255 <= 0) m.c2654 = Constraint(expr= m.x144 - 97*m.b2256 <= 0) m.c2655 = Constraint(expr= m.x145 - 97*m.b2257 <= 0) m.c2656 = Constraint(expr= m.x146 - 97*m.b2258 <= 0) m.c2657 = Constraint(expr= m.x147 - 97*m.b2259 <= 0) m.c2658 = Constraint(expr= m.x148 - 97*m.b2260 <= 0) m.c2659 = Constraint(expr= m.x149 - 97*m.b2261 <= 0) m.c2660 = Constraint(expr= m.x150 - 97*m.b2262 <= 0) m.c2661 = Constraint(expr= m.x151 - 97*m.b2263 <= 0) m.c2662 = Constraint(expr= m.x152 - 97*m.b2264 <= 0) m.c2663 = Constraint(expr= m.x153 - 97*m.b2265 <= 0) m.c2664 = Constraint(expr= m.x154 - 97*m.b2266 <= 0) m.c2665 = Constraint(expr= m.x155 - 97*m.b2267 <= 0) m.c2666 = Constraint(expr= m.x156 - 97*m.b2268 <= 0) m.c2667 = Constraint(expr= m.x157 - 97*m.b2269 <= 0) m.c2668 = Constraint(expr= m.x158 - 97*m.b2270 <= 0) m.c2669 = Constraint(expr= m.x159 - 97*m.b2271 <= 0) m.c2670 = Constraint(expr= m.x160 - 97*m.b2272 <= 0) m.c2671 = Constraint(expr= m.x161 - 97*m.b2273 <= 0) m.c2672 = Constraint(expr= m.x162 - 97*m.b2274 <= 0) m.c2673 = Constraint(expr= m.x163 - 97*m.b2275 <= 0) m.c2674 = Constraint(expr= m.x164 - 97*m.b2276 <= 0) m.c2675 = Constraint(expr= m.x165 - 97*m.b2277 <= 0) m.c2676 = Constraint(expr= m.x166 - 97*m.b2278 <= 0) m.c2677 = Constraint(expr= m.x167 - 97*m.b2279 <= 0) m.c2678 = Constraint(expr= m.x168 - 97*m.b2280 <= 0) m.c2679 = Constraint(expr= m.x169 - 97*m.b2281 <= 0) m.c2680 = Constraint(expr= m.x170 - 97*m.b2282 <= 0) m.c2681 = Constraint(expr= m.x171 - 97*m.b2283 <= 0) m.c2682 = Constraint(expr= m.x172 - 97*m.b2284 <= 0) m.c2683 = Constraint(expr= m.x173 - 97*m.b2285 <= 0) m.c2684 = Constraint(expr= m.x174 - 97*m.b2286 <= 0) m.c2685 = Constraint(expr= m.x175 - 97*m.b2287 <= 0) m.c2686 = Constraint(expr= m.x176 - 97*m.b2288 <= 0) m.c2687 = Constraint(expr= m.x177 - 97*m.b2289 <= 0) m.c2688 = Constraint(expr= m.x178 - 97*m.b2290 <= 0) m.c2689 = Constraint(expr= m.x179 - 97*m.b2291 <= 0) m.c2690 = Constraint(expr= m.x180 - 97*m.b2292 <= 0) m.c2691 = Constraint(expr= m.x181 - 97*m.b2293 <= 0) m.c2692 = Constraint(expr= m.x182 - 97*m.b2294 <= 0) m.c2693 = Constraint(expr= m.x183 - 97*m.b2295 <= 0) m.c2694 = Constraint(expr= m.x184 - 97*m.b2296 <= 0) m.c2695 = Constraint(expr= m.x185 - 97*m.b2297 <= 0) m.c2696 = Constraint(expr= m.x186 - 97*m.b2298 <= 0) m.c2697 = Constraint(expr= m.x187 - 97*m.b2299 <= 0) m.c2698 = Constraint(expr= m.x188 - 97*m.b2300 <= 0) m.c2699 = Constraint(expr= m.x189 - 97*m.b2301 <= 0) m.c2700 = Constraint(expr= m.x190 - 97*m.b2302 <= 0) m.c2701 = Constraint(expr= m.x191 - 97*m.b2303 <= 0) m.c2702 = Constraint(expr= m.x192 - 97*m.b2304 <= 0) m.c2703 = Constraint(expr= m.x193 - 97*m.b2305 <= 0) m.c2704 = Constraint(expr= m.x194 - 19*m.b2018 <= 0) m.c2705 = Constraint(expr= m.x195 - 19*m.b2019 <= 0) m.c2706 = Constraint(expr= m.x196 - 19*m.b2020 <= 0) m.c2707 = Constraint(expr= m.x197 - 19*m.b2021 <= 0) m.c2708 = Constraint(expr= m.x198 - 19*m.b2022 <= 0) m.c2709 = Constraint(expr= m.x199 - 19*m.b2023 <= 0) m.c2710 = Constraint(expr= m.x200 - 19*m.b2024 <= 0) m.c2711 = Constraint(expr= m.x201 - 19*m.b2025 <= 0) m.c2712 = Constraint(expr= m.x202 - 19*m.b2026 <= 0) m.c2713 = Constraint(expr= m.x203 - 19*m.b2027 <= 0) m.c2714 = Constraint(expr= m.x204 - 19*m.b2028 <= 0) m.c2715 = Constraint(expr= m.x205 - 19*m.b2029 <= 0) m.c2716 = Constraint(expr= m.x206 - 19*m.b2030 <= 0) m.c2717 = Constraint(expr= m.x207 - 19*m.b2031 <= 0) m.c2718 = Constraint(expr= m.x208 - 19*m.b2032 <= 0) m.c2719 = Constraint(expr= m.x209 - 19*m.b2033 <= 0) m.c2720 = Constraint(expr= m.x210 - 19*m.b2034 <= 0) m.c2721 = Constraint(expr= m.x211 - 19*m.b2035 <= 0) m.c2722 = Constraint(expr= m.x212 - 19*m.b2036 <= 0) m.c2723 = Constraint(expr= m.x213 - 19*m.b2037 <= 0) m.c2724 = Constraint(expr= m.x214 - 19*m.b2038 <= 0) m.c2725 = Constraint(expr= m.x215 - 19*m.b2039 <= 0) m.c2726 = Constraint(expr= m.x216 - 19*m.b2040 <= 0) m.c2727 = Constraint(expr= m.x217 - 19*m.b2041 <= 0) m.c2728 = Constraint(expr= m.x218 - 19*m.b2042 <= 0) m.c2729 = Constraint(expr= m.x219 - 19*m.b2043 <= 0) m.c2730 = Constraint(expr= m.x220 - 19*m.b2044 <= 0) m.c2731 = Constraint(expr= m.x221 - 19*m.b2045 <= 0) m.c2732 = Constraint(expr= m.x222 - 19*m.b2046 <= 0) m.c2733 = Constraint(expr= m.x223 - 19*m.b2047 <= 0) m.c2734 = Constraint(expr= m.x224 - 19*m.b2048 <= 0) m.c2735 = Constraint(expr= m.x225 - 19*m.b2049 <= 0) m.c2736 = Constraint(expr= m.x226 - 19*m.b2050 <= 0) m.c2737 = Constraint(expr= m.x227 - 19*m.b2051 <= 0) m.c2738 = Constraint(expr= m.x228 - 19*m.b2052 <= 0) m.c2739 = Constraint(expr= m.x229 - 19*m.b2053 <= 0) m.c2740 = Constraint(expr= m.x230 - 19*m.b2054 <= 0) m.c2741 = Constraint(expr= m.x231 - 19*m.b2055 <= 0) m.c2742 = Constraint(expr= m.x232 - 19*m.b2056 <= 0) m.c2743 = Constraint(expr= m.x233 - 19*m.b2057 <= 0) m.c2744 = Constraint(expr= m.x234 - 19*m.b2058 <= 0) m.c2745 = Constraint(expr= m.x235 - 19*m.b2059 <= 0) m.c2746 = Constraint(expr= m.x236 - 19*m.b2060 <= 0) m.c2747 = Constraint(expr= m.x237 - 19*m.b2061 <= 0) m.c2748 = Constraint(expr= m.x238 - 19*m.b2062 <= 0) m.c2749 = Constraint(expr= m.x239 - 19*m.b2063 <= 0) m.c2750 = Constraint(expr= m.x240 - 19*m.b2064 <= 0) m.c2751 = Constraint(expr= m.x241 - 19*m.b2065 <= 0) m.c2752 = Constraint(expr= m.x242 - 19*m.b2066 <= 0) m.c2753 = Constraint(expr= m.x243 - 19*m.b2067 <= 0) m.c2754 = Constraint(expr= m.x244 - 19*m.b2068 <= 0) m.c2755 = Constraint(expr= m.x245 - 19*m.b2069 <= 0) m.c2756 = Constraint(expr= m.x246 - 19*m.b2070 <= 0) m.c2757 = Constraint(expr= m.x247 - 19*m.b2071 <= 0) m.c2758 = Constraint(expr= m.x248 - 19*m.b2072 <= 0) m.c2759 = Constraint(expr= m.x249 - 19*m.b2073 <= 0) m.c2760 = Constraint(expr= m.x250 - 19*m.b2074 <= 0) m.c2761 = Constraint(expr= m.x251 - 19*m.b2075 <= 0) m.c2762 = Constraint(expr= m.x252 - 19*m.b2076 <= 0) m.c2763 = Constraint(expr= m.x253 - 19*m.b2077 <= 0) m.c2764 = Constraint(expr= m.x254 - 19*m.b2078 <= 0) m.c2765 = Constraint(expr= m.x255 - 19*m.b2079 <= 0) m.c2766 = Constraint(expr= m.x256 - 19*m.b2080 <= 0) m.c2767 = Constraint(expr= m.x257 - 19*m.b2081 <= 0) m.c2768 = Constraint(expr= m.x258 - 19*m.b2082 <= 0) m.c2769 = Constraint(expr= m.x259 - 19*m.b2083 <= 0) m.c2770 = Constraint(expr= m.x260 - 19*m.b2084 <= 0) m.c2771 = Constraint(expr= m.x261 - 19*m.b2085 <= 0) m.c2772 = Constraint(expr= m.x262 - 19*m.b2086 <= 0) m.c2773 = Constraint(expr= m.x263 - 19*m.b2087 <= 0) m.c2774 = Constraint(expr= m.x264 - 19*m.b2088 <= 0) m.c2775 = Constraint(expr= m.x265 - 19*m.b2089 <= 0) m.c2776 = Constraint(expr= m.x266 - 19*m.b2090 <= 0) m.c2777 = Constraint(expr= m.x267 - 19*m.b2091 <= 0) m.c2778 = Constraint(expr= m.x268 - 19*m.b2092 <= 0) m.c2779 = Constraint(expr= m.x269 - 19*m.b2093 <= 0) m.c2780 = Constraint(expr= m.x270 - 19*m.b2094 <= 0) m.c2781 = Constraint(expr= m.x271 - 19*m.b2095 <= 0) m.c2782 = Constraint(expr= m.x272 - 19*m.b2096 <= 0) m.c2783 = Constraint(expr= m.x273 - 19*m.b2097 <= 0) m.c2784 = Constraint(expr= m.x274 - 19*m.b2098 <= 0) m.c2785 = Constraint(expr= m.x275 - 19*m.b2099 <= 0) m.c2786 = Constraint(expr= m.x276 - 19*m.b2100 <= 0) m.c2787 = Constraint(expr= m.x277 - 19*m.b2101 <= 0) m.c2788 = Constraint(expr= m.x278 - 19*m.b2102 <= 0) m.c2789 = Constraint(expr= m.x279 - 19*m.b2103 <= 0) m.c2790 = Constraint(expr= m.x280 - 19*m.b2104 <= 0) m.c2791 = Constraint(expr= m.x281 - 19*m.b2105 <= 0) m.c2792 = Constraint(expr= m.x282 - 19*m.b2106 <= 0) m.c2793 = Constraint(expr= m.x283 - 19*m.b2107 <= 0) m.c2794 = Constraint(expr= m.x284 - 19*m.b2108 <= 0) m.c2795 = Constraint(expr= m.x285 - 19*m.b2109 <= 0) m.c2796 = Constraint(expr= m.x286 - 19*m.b2110 <= 0) m.c2797 = Constraint(expr= m.x287 - 19*m.b2111 <= 0) m.c2798 = Constraint(expr= m.x288 - 19*m.b2112 <= 0) m.c2799 = Constraint(expr= m.x289 - 19*m.b2113 <= 0) m.c2800 = Constraint(expr= m.x290 - 19*m.b2114 <= 0) m.c2801 = Constraint(expr= m.x291 - 19*m.b2115 <= 0) m.c2802 = Constraint(expr= m.x292 - 19*m.b2116 <= 0) m.c2803 = Constraint(expr= m.x293 - 19*m.b2117 <= 0) m.c2804 = Constraint(expr= m.x294 - 19*m.b2118 <= 0) m.c2805 = Constraint(expr= m.x295 - 19*m.b2119 <= 0) m.c2806 = Constraint(expr= m.x296 - 19*m.b2120 <= 0) m.c2807 = Constraint(expr= m.x297 - 19*m.b2121 <= 0) m.c2808 = Constraint(expr= m.x298 - 19*m.b2122 <= 0) m.c2809 = Constraint(expr= m.x299 - 19*m.b2123 <= 0) m.c2810 = Constraint(expr= m.x300 - 19*m.b2124 <= 0) m.c2811 = Constraint(expr= m.x301 - 19*m.b2125 <= 0) m.c2812 = Constraint(expr= m.x302 - 19*m.b2126 <= 0) m.c2813 = Constraint(expr= m.x303 - 19*m.b2127 <= 0) m.c2814 = Constraint(expr= m.x304 - 19*m.b2128 <= 0) m.c2815 = Constraint(expr= m.x305 - 19*m.b2129 <= 0) m.c2816 = Constraint(expr= m.x306 - 19*m.b2130 <= 0) m.c2817 = Constraint(expr= m.x307 - 19*m.b2131 <= 0) m.c2818 = Constraint(expr= m.x308 - 19*m.b2132 <= 0) m.c2819 = Constraint(expr= m.x309 - 19*m.b2133 <= 0) m.c2820 = Constraint(expr= m.x310 - 19*m.b2134 <= 0) m.c2821 = Constraint(expr= m.x311 - 19*m.b2135 <= 0) m.c2822 = Constraint(expr= m.x312 - 19*m.b2136 <= 0) m.c2823 = Constraint(expr= m.x313 - 19*m.b2137 <= 0) m.c2824 = Constraint(expr= m.x314 - 19*m.b2138 <= 0) m.c2825 = Constraint(expr= m.x315 - 19*m.b2139 <= 0) m.c2826 = Constraint(expr= m.x316 - 19*m.b2140 <= 0) m.c2827 = Constraint(expr= m.x317 - 19*m.b2141 <= 0) m.c2828 = Constraint(expr= m.x318 - 19*m.b2142 <= 0) m.c2829 = Constraint(expr= m.x319 - 19*m.b2143 <= 0) m.c2830 = Constraint(expr= m.x320 - 19*m.b2144 <= 0) m.c2831 = Constraint(expr= m.x321 - 19*m.b2145 <= 0) m.c2832 = Constraint(expr= m.x322 - 19*m.b2146 <= 0) m.c2833 = Constraint(expr= m.x323 - 19*m.b2147 <= 0) m.c2834 = Constraint(expr= m.x324 - 19*m.b2148 <= 0) m.c2835 = Constraint(expr= m.x325 - 19*m.b2149 <= 0) m.c2836 = Constraint(expr= m.x326 - 19*m.b2150 <= 0) m.c2837 = Constraint(expr= m.x327 - 19*m.b2151 <= 0) m.c2838 = Constraint(expr= m.x328 - 19*m.b2152 <= 0) m.c2839 = Constraint(expr= m.x329 - 19*m.b2153 <= 0) m.c2840 = Constraint(expr= m.x330 - 19*m.b2154 <= 0) m.c2841 = Constraint(expr= m.x331 - 19*m.b2155 <= 0) m.c2842 = Constraint(expr= m.x332 - 19*m.b2156 <= 0) m.c2843 = Constraint(expr= m.x333 - 19*m.b2157 <= 0) m.c2844 = Constraint(expr= m.x334 - 19*m.b2158 <= 0) m.c2845 = Constraint(expr= m.x335 - 19*m.b2159 <= 0) m.c2846 = Constraint(expr= m.x336 - 19*m.b2160 <= 0) m.c2847 = Constraint(expr= m.x337 - 19*m.b2161 <= 0) m.c2848 = Constraint(expr= m.x338 - 19*m.b2162 <= 0) m.c2849 = Constraint(expr= m.x339 - 19*m.b2163 <= 0) m.c2850 = Constraint(expr= m.x340 - 19*m.b2164 <= 0) m.c2851 = Constraint(expr= m.x341 - 19*m.b2165 <= 0) m.c2852 = Constraint(expr= m.x342 - 19*m.b2166 <= 0) m.c2853 = Constraint(expr= m.x343 - 19*m.b2167 <= 0) m.c2854 = Constraint(expr= m.x344 - 19*m.b2168 <= 0) m.c2855 = Constraint(expr= m.x345 - 19*m.b2169 <= 0) m.c2856 = Constraint(expr= m.x346 - 19*m.b2170 <= 0) m.c2857 = Constraint(expr= m.x347 - 19*m.b2171 <= 0) m.c2858 = Constraint(expr= m.x348 - 19*m.b2172 <= 0) m.c2859 = Constraint(expr= m.x349 - 19*m.b2173 <= 0) m.c2860 = Constraint(expr= m.x350 - 19*m.b2174 <= 0) m.c2861 = Constraint(expr= m.x351 - 19*m.b2175 <= 0) m.c2862 = Constraint(expr= m.x352 - 19*m.b2176 <= 0) m.c2863 = Constraint(expr= m.x353 - 19*m.b2177 <= 0) m.c2864 = Constraint(expr= m.x354 - 19*m.b2178 <= 0) m.c2865 = Constraint(expr= m.x355 - 19*m.b2179 <= 0) m.c2866 = Constraint(expr= m.x356 - 19*m.b2180 <= 0) m.c2867 = Constraint(expr= m.x357 - 19*m.b2181 <= 0) m.c2868 = Constraint(expr= m.x358 - 19*m.b2182 <= 0) m.c2869 = Constraint(expr= m.x359 - 19*m.b2183 <= 0) m.c2870 = Constraint(expr= m.x360 - 19*m.b2184 <= 0) m.c2871 = Constraint(expr= m.x361 - 19*m.b2185 <= 0) m.c2872 = Constraint(expr= m.x362 - 19*m.b2186 <= 0) m.c2873 = Constraint(expr= m.x363 - 19*m.b2187 <= 0) m.c2874 = Constraint(expr= m.x364 - 19*m.b2188 <= 0) m.c2875 = Constraint(expr= m.x365 - 19*m.b2189 <= 0) m.c2876 = Constraint(expr= m.x366 - 19*m.b2190 <= 0) m.c2877 = Constraint(expr= m.x367 - 19*m.b2191 <= 0) m.c2878 = Constraint(expr= m.x368 - 19*m.b2192 <= 0) m.c2879 = Constraint(expr= m.x369 - 19*m.b2193 <= 0) m.c2880 = Constraint(expr= m.x370 - 19*m.b2194 <= 0) m.c2881 = Constraint(expr= m.x371 - 19*m.b2195 <= 0) m.c2882 = Constraint(expr= m.x372 - 19*m.b2196 <= 0) m.c2883 = Constraint(expr= m.x373 - 19*m.b2197 <= 0) m.c2884 = Constraint(expr= m.x374 - 19*m.b2198 <= 0) m.c2885 = Constraint(expr= m.x375 - 19*m.b2199 <= 0) m.c2886 = Constraint(expr= m.x376 - 19*m.b2200 <= 0) m.c2887 = Constraint(expr= m.x377 - 19*m.b2201 <= 0) m.c2888 = Constraint(expr= m.x378 - 19*m.b2202 <= 0) m.c2889 = Constraint(expr= m.x379 - 19*m.b2203 <= 0) m.c2890 = Constraint(expr= m.x380 - 19*m.b2204 <= 0) m.c2891 = Constraint(expr= m.x381 - 19*m.b2205 <= 0) m.c2892 = Constraint(expr= m.x382 - 19*m.b2206 <= 0) m.c2893 = Constraint(expr= m.x383 - 19*m.b2207 <= 0) m.c2894 = Constraint(expr= m.x384 - 19*m.b2208 <= 0) m.c2895 = Constraint(expr= m.x385 - 19*m.b2209 <= 0) m.c2896 = Constraint(expr= - m.x482 + 7.23816*m.b2210 <= 0) m.c2897 = Constraint(expr= - m.x483 + 7.22483*m.b2211 <= 0) m.c2898 = Constraint(expr= - m.x484 + 7.21817*m.b2212 <= 0) m.c2899 = Constraint(expr= - m.x485 + 7.20485*m.b2213 <= 0) m.c2900 = Constraint(expr= - m.x486 + 7.19819*m.b2214 <= 0) m.c2901 = Constraint(expr= - m.x487 + 7.19153*m.b2215 <= 0) m.c2902 = Constraint(expr= - m.x488 + 7.19819*m.b2216 <= 0) m.c2903 = Constraint(expr= - m.x489 + 7.21151*m.b2217 <= 0) m.c2904 = Constraint(expr= - m.x490 + 7.24482*m.b2218 <= 0) m.c2905 = Constraint(expr= - m.x491 + 7.31142*m.b2219 <= 0) m.c2906 = Constraint(expr= - m.x492 + 7.418*m.b2220 <= 0) m.c2907 = Constraint(expr= - m.x493 + 7.53789*m.b2221 <= 0) m.c2908 = Constraint(expr= - m.x494 + 7.67777*m.b2222 <= 0) m.c2909 = Constraint(expr= - m.x495 + 7.71107*m.b2223 <= 0) m.c2910 = Constraint(expr= - m.x496 + 7.61116*m.b2224 <= 0) m.c2911 = Constraint(expr= - m.x497 + 7.58452*m.b2225 <= 0) m.c2912 = Constraint(expr= - m.x498 + 7.53123*m.b2226 <= 0) m.c2913 = Constraint(expr= - m.x499 + 7.44464*m.b2227 <= 0) m.c2914 = Constraint(expr= - m.x500 + 7.39135*m.b2228 <= 0) m.c2915 = Constraint(expr= - m.x501 + 7.36471*m.b2229 <= 0) m.c2916 = Constraint(expr= - m.x502 + 7.33807*m.b2230 <= 0) m.c2917 = Constraint(expr= - m.x503 + 7.31142*m.b2231 <= 0) m.c2918 = Constraint(expr= - m.x504 + 7.29144*m.b2232 <= 0) m.c2919 = Constraint(expr= - m.x505 + 7.27146*m.b2233 <= 0) m.c2920 = Constraint(expr= - m.x506 + 7.37137*m.b2234 <= 0) m.c2921 = Constraint(expr= - m.x507 + 7.42466*m.b2235 <= 0) m.c2922 = Constraint(expr= - m.x508 + 7.48461*m.b2236 <= 0) m.c2923 = Constraint(expr= - m.x509 + 7.53789*m.b2237 <= 0) m.c2924 = Constraint(expr= - m.x510 + 7.59784*m.b2238 <= 0) m.c2925 = Constraint(expr= - m.x511 + 7.59118*m.b2239 <= 0) m.c2926 = Constraint(expr= - m.x512 + 7.59784*m.b2240 <= 0) m.c2927 = Constraint(expr= - m.x513 + 7.67777*m.b2241 <= 0) m.c2928 = Constraint(expr= - m.x514 + 7.71107*m.b2242 <= 0) m.c2929 = Constraint(expr= - m.x515 + 7.84429*m.b2243 <= 0) m.c2930 = Constraint(expr= - m.x516 + 7.88425*m.b2244 <= 0) m.c2931 = Constraint(expr= - m.x517 + 7.93754*m.b2245 <= 0) m.c2932 = Constraint(expr= - m.x518 + 8.07742*m.b2246 <= 0) m.c2933 = Constraint(expr= - m.x519 + 8.17733*m.b2247 <= 0) m.c2934 = Constraint(expr= - m.x520 + 8.14403*m.b2248 <= 0) m.c2935 = Constraint(expr= - m.x521 + 8.05078*m.b2249 <= 0) m.c2936 = Constraint(expr= - m.x522 + 7.99749*m.b2250 <= 0) m.c2937 = Constraint(expr= - m.x523 + 7.84429*m.b2251 <= 0) m.c2938 = Constraint(expr= - m.x524 + 7.72439*m.b2252 <= 0) m.c2939 = Constraint(expr= - m.x525 + 7.69775*m.b2253 <= 0) m.c2940 = Constraint(expr= - m.x526 + 7.6045*m.b2254 <= 0) m.c2941 = Constraint(expr= - m.x527 + 7.64447*m.b2255 <= 0) m.c2942 = Constraint(expr= - m.x528 + 7.62448*m.b2256 <= 0) m.c2943 = Constraint(expr= - m.x529 + 7.27146*m.b2257 <= 0) m.c2944 = Constraint(expr= - m.x530 + 7.23816*m.b2258 <= 0) m.c2945 = Constraint(expr= - m.x531 + 7.22483*m.b2259 <= 0) m.c2946 = Constraint(expr= - m.x532 + 7.21817*m.b2260 <= 0) m.c2947 = Constraint(expr= - m.x533 + 7.20485*m.b2261 <= 0) m.c2948 = Constraint(expr= - m.x534 + 7.19819*m.b2262 <= 0) m.c2949 = Constraint(expr= - m.x535 + 7.19153*m.b2263 <= 0) m.c2950 = Constraint(expr= - m.x536 + 7.19819*m.b2264 <= 0) m.c2951 = Constraint(expr= - m.x537 + 7.21151*m.b2265 <= 0) m.c2952 = Constraint(expr= - m.x538 + 7.24482*m.b2266 <= 0) m.c2953 = Constraint(expr= - m.x539 + 7.31142*m.b2267 <= 0) m.c2954 = Constraint(expr= - m.x540 + 7.418*m.b2268 <= 0) m.c2955 = Constraint(expr= - m.x541 + 7.53789*m.b2269 <= 0) m.c2956 = Constraint(expr= - m.x542 + 7.67777*m.b2270 <= 0) m.c2957 = Constraint(expr= - m.x543 + 7.71107*m.b2271 <= 0) m.c2958 = Constraint(expr= - m.x544 + 7.61116*m.b2272 <= 0) m.c2959 = Constraint(expr= - m.x545 + 7.58452*m.b2273 <= 0) m.c2960 = Constraint(expr= - m.x546 + 7.53123*m.b2274 <= 0) m.c2961 = Constraint(expr= - m.x547 + 7.44464*m.b2275 <= 0) m.c2962 = Constraint(expr= - m.x548 + 7.39135*m.b2276 <= 0) m.c2963 = Constraint(expr= - m.x549 + 7.36471*m.b2277 <= 0) m.c2964 = Constraint(expr= - m.x550 + 7.33807*m.b2278 <= 0) m.c2965 = Constraint(expr= - m.x551 + 7.31142*m.b2279 <= 0) m.c2966 = Constraint(expr= - m.x552 + 7.29144*m.b2280 <= 0) m.c2967 = Constraint(expr= - m.x553 + 7.27146*m.b2281 <= 0) m.c2968 = Constraint(expr= - m.x554 + 7.37137*m.b2282 <= 0) m.c2969 = Constraint(expr= - m.x555 + 7.42466*m.b2283 <= 0) m.c2970 = Constraint(expr= - m.x556 + 7.48461*m.b2284 <= 0) m.c2971 = Constraint(expr= - m.x557 + 7.53789*m.b2285 <= 0) m.c2972 = Constraint(expr= - m.x558 + 7.59784*m.b2286 <= 0) m.c2973 = Constraint(expr= - m.x559 + 7.59118*m.b2287 <= 0) m.c2974 = Constraint(expr= - m.x560 + 7.59784*m.b2288 <= 0) m.c2975 = Constraint(expr= - m.x561 + 7.67777*m.b2289 <= 0) m.c2976 = Constraint(expr= - m.x562 + 7.71107*m.b2290 <= 0) m.c2977 = Constraint(expr= - m.x563 + 7.84429*m.b2291 <= 0) m.c2978 = Constraint(expr= - m.x564 + 7.88425*m.b2292 <= 0) m.c2979 = Constraint(expr= - m.x565 + 7.93754*m.b2293 <= 0) m.c2980 = Constraint(expr= - m.x566 + 8.07742*m.b2294 <= 0) m.c2981 = Constraint(expr= - m.x567 + 8.17733*m.b2295 <= 0) m.c2982 = Constraint(expr= - m.x568 + 8.14403*m.b2296 <= 0) m.c2983 = Constraint(expr= - m.x569 + 8.05078*m.b2297 <= 0) m.c2984 = Constraint(expr= - m.x570 + 7.99749*m.b2298 <= 0) m.c2985 = Constraint(expr= - m.x571 + 7.84429*m.b2299 <= 0) m.c2986 = Constraint(expr= - m.x572 + 7.72439*m.b2300 <= 0) m.c2987 = Constraint(expr= - m.x573 + 7.69775*m.b2301 <= 0) m.c2988 = Constraint(expr= - m.x574 + 7.6045*m.b2302 <= 0) m.c2989 = Constraint(expr= - m.x575 + 7.64447*m.b2303 <= 0) m.c2990 = Constraint(expr= - m.x576 + 7.62448*m.b2304 <= 0) m.c2991 = Constraint(expr= - m.x577 + 7.27146*m.b2305 <= 0) m.c2992 = Constraint(expr= - m.x578 + 2.17406*m.b2018 <= 0) m.c2993 = Constraint(expr= - m.x579 + 2.17396*m.b2019 <= 0) m.c2994 = Constraint(expr= - m.x580 + 2.1739*m.b2020 <= 0) m.c2995 = Constraint(expr= - m.x581 + 2.1738*m.b2021 <= 0) m.c2996 = Constraint(expr= - m.x582 + 2.17375*m.b2022 <= 0) m.c2997 = Constraint(expr= - m.x583 + 2.17369*m.b2023 <= 0) m.c2998 = Constraint(expr= - m.x584 + 2.17375*m.b2024 <= 0) m.c2999 = Constraint(expr= - m.x585 + 2.17385*m.b2025 <= 0) m.c3000 = Constraint(expr= - m.x586 + 2.17411*m.b2026 <= 0) m.c3001 = Constraint(expr= - m.x587 + 2.17464*m.b2027 <= 0) m.c3002 = Constraint(expr= - m.x588 + 2.17549*m.b2028 <= 0) m.c3003 = Constraint(expr= - m.x589 + 2.17644*m.b2029 <= 0) m.c3004 = Constraint(expr= - m.x590 + 2.17755*m.b2030 <= 0) m.c3005 = Constraint(expr= - m.x591 + 2.17781*m.b2031 <= 0) m.c3006 = Constraint(expr= - m.x592 + 2.17702*m.b2032 <= 0) m.c3007 = Constraint(expr= - m.x593 + 2.17681*m.b2033 <= 0) m.c3008 = Constraint(expr= - m.x594 + 2.17639*m.b2034 <= 0) m.c3009 = Constraint(expr= - m.x595 + 2.1757*m.b2035 <= 0) m.c3010 = Constraint(expr= - m.x596 + 2.17528*m.b2036 <= 0) m.c3011 = Constraint(expr= - m.x597 + 2.17507*m.b2037 <= 0) m.c3012 = Constraint(expr= - m.x598 + 2.17485*m.b2038 <= 0) m.c3013 = Constraint(expr= - m.x599 + 2.17464*m.b2039 <= 0) m.c3014 = Constraint(expr= - m.x600 + 2.17448*m.b2040 <= 0) m.c3015 = Constraint(expr= - m.x601 + 2.17433*m.b2041 <= 0) m.c3016 = Constraint(expr= - m.x602 + 2.17512*m.b2042 <= 0) m.c3017 = Constraint(expr= - m.x603 + 2.17554*m.b2043 <= 0) m.c3018 = Constraint(expr= - m.x604 + 2.17602*m.b2044 <= 0) m.c3019 = Constraint(expr= - m.x605 + 2.17644*m.b2045 <= 0) m.c3020 = Constraint(expr= - m.x606 + 2.17691*m.b2046 <= 0) m.c3021 = Constraint(expr= - m.x607 + 2.17686*m.b2047 <= 0) m.c3022 = Constraint(expr= - m.x608 + 2.17691*m.b2048 <= 0) m.c3023 = Constraint(expr= - m.x609 + 2.17755*m.b2049 <= 0) m.c3024 = Constraint(expr= - m.x610 + 2.17781*m.b2050 <= 0) m.c3025 = Constraint(expr= - m.x611 + 2.17887*m.b2051 <= 0) m.c3026 = Constraint(expr= - m.x612 + 2.17919*m.b2052 <= 0) m.c3027 = Constraint(expr= - m.x613 + 2.17961*m.b2053 <= 0) m.c3028 = Constraint(expr= - m.x614 + 2.18072*m.b2054 <= 0) m.c3029 = Constraint(expr= - m.x615 + 2.18151*m.b2055 <= 0) m.c3030 = Constraint(expr= - m.x616 + 2.18125*m.b2056 <= 0) m.c3031 = Constraint(expr= - m.x617 + 2.18051*m.b2057 <= 0) m.c3032 = Constraint(expr= - m.x618 + 2.18008*m.b2058 <= 0) m.c3033 = Constraint(expr= - m.x619 + 2.17887*m.b2059 <= 0) m.c3034 = Constraint(expr= - m.x620 + 2.17792*m.b2060 <= 0) m.c3035 = Constraint(expr= - m.x621 + 2.17771*m.b2061 <= 0) m.c3036 = Constraint(expr= - m.x622 + 2.17697*m.b2062 <= 0) m.c3037 = Constraint(expr= - m.x623 + 2.17728*m.b2063 <= 0) m.c3038 = Constraint(expr= - m.x624 + 2.17713*m.b2064 <= 0) m.c3039 = Constraint(expr= - m.x625 + 2.17433*m.b2065 <= 0) m.c3040 = Constraint(expr= - m.x626 + 2.17406*m.b2066 <= 0) m.c3041 = Constraint(expr= - m.x627 + 2.17396*m.b2067 <= 0) m.c3042 = Constraint(expr= - m.x628 + 2.1739*m.b2068 <= 0) m.c3043 = Constraint(expr= - m.x629 + 2.1738*m.b2069 <= 0) m.c3044 = Constraint(expr= - m.x630 + 2.17375*m.b2070 <= 0) m.c3045 = Constraint(expr= - m.x631 + 2.17369*m.b2071 <= 0) m.c3046 = Constraint(expr= - m.x632 + 2.17375*m.b2072 <= 0) m.c3047 = Constraint(expr= - m.x633 + 2.17385*m.b2073 <= 0) m.c3048 = Constraint(expr= - m.x634 + 2.17411*m.b2074 <= 0) m.c3049 = Constraint(expr= - m.x635 + 2.17464*m.b2075 <= 0) m.c3050 = Constraint(expr= - m.x636 + 2.17549*m.b2076 <= 0) m.c3051 = Constraint(expr= - m.x637 + 2.17644*m.b2077 <= 0) m.c3052 = Constraint(expr= - m.x638 + 2.17755*m.b2078 <= 0) m.c3053 = Constraint(expr= - m.x639 + 2.17781*m.b2079 <= 0) m.c3054 = Constraint(expr= - m.x640 + 2.17702*m.b2080 <= 0) m.c3055 = Constraint(expr= - m.x641 + 2.17681*m.b2081 <= 0) m.c3056 = Constraint(expr= - m.x642 + 2.17639*m.b2082 <= 0) m.c3057 = Constraint(expr= - m.x643 + 2.1757*m.b2083 <= 0) m.c3058 = Constraint(expr= - m.x644 + 2.17528*m.b2084 <= 0) m.c3059 = Constraint(expr= - m.x645 + 2.17507*m.b2085 <= 0) m.c3060 = Constraint(expr= - m.x646 + 2.17485*m.b2086 <= 0) m.c3061 = Constraint(expr= - m.x647 + 2.17464*m.b2087 <= 0) m.c3062 = Constraint(expr= - m.x648 + 2.17448*m.b2088 <= 0) m.c3063 = Constraint(expr= - m.x649 + 2.17433*m.b2089 <= 0) m.c3064 = Constraint(expr= - m.x650 + 2.17512*m.b2090 <= 0) m.c3065 = Constraint(expr= - m.x651 + 2.17554*m.b2091 <= 0) m.c3066 = Constraint(expr= - m.x652 + 2.17602*m.b2092 <= 0) m.c3067 = Constraint(expr= - m.x653 + 2.17644*m.b2093 <= 0) m.c3068 = Constraint(expr= - m.x654 + 2.17691*m.b2094 <= 0) m.c3069 = Constraint(expr= - m.x655 + 2.17686*m.b2095 <= 0) m.c3070 = Constraint(expr= - m.x656 + 2.17691*m.b2096 <= 0) m.c3071 = Constraint(expr= - m.x657 + 2.17755*m.b2097 <= 0) m.c3072 = Constraint(expr= - m.x658 + 2.17781*m.b2098 <= 0) m.c3073 = Constraint(expr= - m.x659 + 2.17887*m.b2099 <= 0) m.c3074 = Constraint(expr= - m.x660 + 2.17919*m.b2100 <= 0) m.c3075 = Constraint(expr= - m.x661 + 2.17961*m.b2101 <= 0) m.c3076 = Constraint(expr= - m.x662 + 2.18072*m.b2102 <= 0) m.c3077 = Constraint(expr= - m.x663 + 2.18151*m.b2103 <= 0) m.c3078 = Constraint(expr= - m.x664 + 2.18125*m.b2104 <= 0) m.c3079 = Constraint(expr= - m.x665 + 2.18051*m.b2105 <= 0) m.c3080 = Constraint(expr= - m.x666 + 2.18008*m.b2106 <= 0) m.c3081 = Constraint(expr= - m.x667 + 2.17887*m.b2107 <= 0) m.c3082 = Constraint(expr= - m.x668 + 2.17792*m.b2108 <= 0) m.c3083 = Constraint(expr= - m.x669 + 2.17771*m.b2109 <= 0) m.c3084 = Constraint(expr= - m.x670 + 2.17697*m.b2110 <= 0) m.c3085 = Constraint(expr= - m.x671 + 2.17728*m.b2111 <= 0) m.c3086 = Constraint(expr= - m.x672 + 2.17713*m.b2112 <= 0) m.c3087 = Constraint(expr= - m.x673 + 2.17433*m.b2113 <= 0) m.c3088 = Constraint(expr= - m.x674 + 2.17406*m.b2114 <= 0) m.c3089 = Constraint(expr= - m.x675 + 2.17396*m.b2115 <= 0) m.c3090 = Constraint(expr= - m.x676 + 2.1739*m.b2116 <= 0) m.c3091 = Constraint(expr= - m.x677 + 2.1738*m.b2117 <= 0) m.c3092 = Constraint(expr= - m.x678 + 2.17375*m.b2118 <= 0) m.c3093 = Constraint(expr= - m.x679 + 2.17369*m.b2119 <= 0) m.c3094 = Constraint(expr= - m.x680 + 2.17375*m.b2120 <= 0) m.c3095 = Constraint(expr= - m.x681 + 2.17385*m.b2121 <= 0) m.c3096 = Constraint(expr= - m.x682 + 2.17411*m.b2122 <= 0) m.c3097 = Constraint(expr= - m.x683 + 2.17464*m.b2123 <= 0) m.c3098 = Constraint(expr= - m.x684 + 2.17549*m.b2124 <= 0) m.c3099 = Constraint(expr= - m.x685 + 2.17644*m.b2125 <= 0) m.c3100 = Constraint(expr= - m.x686 + 2.17755*m.b2126 <= 0) m.c3101 = Constraint(expr= - m.x687 + 2.17781*m.b2127 <= 0) m.c3102 = Constraint(expr= - m.x688 + 2.17702*m.b2128 <= 0) m.c3103 = Constraint(expr= - m.x689 + 2.17681*m.b2129 <= 0) m.c3104 = Constraint(expr= - m.x690 + 2.17639*m.b2130 <= 0) m.c3105 = Constraint(expr= - m.x691 + 2.1757*m.b2131 <= 0) m.c3106 = Constraint(expr= - m.x692 + 2.17528*m.b2132 <= 0) m.c3107 = Constraint(expr= - m.x693 + 2.17507*m.b2133 <= 0) m.c3108 = Constraint(expr= - m.x694 + 2.17485*m.b2134 <= 0) m.c3109 = Constraint(expr= - m.x695 + 2.17464*m.b2135 <= 0) m.c3110 = Constraint(expr= - m.x696 + 2.17448*m.b2136 <= 0) m.c3111 = Constraint(expr= - m.x697 + 2.17433*m.b2137 <= 0) m.c3112 = Constraint(expr= - m.x698 + 2.17512*m.b2138 <= 0) m.c3113 = Constraint(expr= - m.x699 + 2.17554*m.b2139 <= 0) m.c3114 = Constraint(expr= - m.x700 + 2.17602*m.b2140 <= 0) m.c3115 = Constraint(expr= - m.x701 + 2.17644*m.b2141 <= 0) m.c3116 = Constraint(expr= - m.x702 + 2.17691*m.b2142 <= 0) m.c3117 = Constraint(expr= - m.x703 + 2.17686*m.b2143 <= 0) m.c3118 = Constraint(expr= - m.x704 + 2.17691*m.b2144 <= 0) m.c3119 = Constraint(expr= - m.x705 + 2.17755*m.b2145 <= 0) m.c3120 = Constraint(expr= - m.x706 + 2.17781*m.b2146 <= 0) m.c3121 = Constraint(expr= - m.x707 + 2.17887*m.b2147 <= 0) m.c3122 = Constraint(expr= - m.x708 + 2.17919*m.b2148 <= 0) m.c3123 = Constraint(expr= - m.x709 + 2.17961*m.b2149 <= 0) m.c3124 = Constraint(expr= - m.x710 + 2.18072*m.b2150 <= 0) m.c3125 = Constraint(expr= - m.x711 + 2.18151*m.b2151 <= 0) m.c3126 = Constraint(expr= - m.x712 + 2.18125*m.b2152 <= 0) m.c3127 = Constraint(expr= - m.x713 + 2.18051*m.b2153 <= 0) m.c3128 = Constraint(expr= - m.x714 + 2.18008*m.b2154 <= 0) m.c3129 = Constraint(expr= - m.x715 + 2.17887*m.b2155 <= 0) m.c3130 = Constraint(expr= - m.x716 + 2.17792*m.b2156 <= 0) m.c3131 = Constraint(expr= - m.x717 + 2.17771*m.b2157 <= 0) m.c3132 = Constraint(expr= - m.x718 + 2.17697*m.b2158 <= 0) m.c3133 = Constraint(expr= - m.x719 + 2.17728*m.b2159 <= 0) m.c3134 = Constraint(expr= - m.x720 + 2.17713*m.b2160 <= 0) m.c3135 = Constraint(expr= - m.x721 + 2.17433*m.b2161 <= 0) m.c3136 = Constraint(expr= - m.x722 + 2.17406*m.b2162 <= 0) m.c3137 = Constraint(expr= - m.x723 + 2.17396*m.b2163 <= 0) m.c3138 = Constraint(expr= - m.x724 + 2.1739*m.b2164 <= 0) m.c3139 = Constraint(expr= - m.x725 + 2.1738*m.b2165 <= 0) m.c3140 = Constraint(expr= - m.x726 + 2.17375*m.b2166 <= 0) m.c3141 = Constraint(expr= - m.x727 + 2.17369*m.b2167 <= 0) m.c3142 = Constraint(expr= - m.x728 + 2.17375*m.b2168 <= 0) m.c3143 = Constraint(expr= - m.x729 + 2.17385*m.b2169 <= 0) m.c3144 = Constraint(expr= - m.x730 + 2.17411*m.b2170 <= 0) m.c3145 = Constraint(expr= - m.x731 + 2.17464*m.b2171 <= 0) m.c3146 = Constraint(expr= - m.x732 + 2.17549*m.b2172 <= 0) m.c3147 = Constraint(expr= - m.x733 + 2.17644*m.b2173 <= 0) m.c3148 = Constraint(expr= - m.x734 + 2.17755*m.b2174 <= 0) m.c3149 = Constraint(expr= - m.x735 + 2.17781*m.b2175 <= 0) m.c3150 = Constraint(expr= - m.x736 + 2.17702*m.b2176 <= 0) m.c3151 = Constraint(expr= - m.x737 + 2.17681*m.b2177 <= 0) m.c3152 = Constraint(expr= - m.x738 + 2.17639*m.b2178 <= 0) m.c3153 = Constraint(expr= - m.x739 + 2.1757*m.b2179 <= 0) m.c3154 = Constraint(expr= - m.x740 + 2.17528*m.b2180 <= 0) m.c3155 = Constraint(expr= - m.x741 + 2.17507*m.b2181 <= 0) m.c3156 = Constraint(expr= - m.x742 + 2.17485*m.b2182 <= 0) m.c3157 = Constraint(expr= - m.x743 + 2.17464*m.b2183 <= 0) m.c3158 = Constraint(expr= - m.x744 + 2.17448*m.b2184 <= 0) m.c3159 = Constraint(expr= - m.x745 + 2.17433*m.b2185 <= 0) m.c3160 = Constraint(expr= - m.x746 + 2.17512*m.b2186 <= 0) m.c3161 = Constraint(expr= - m.x747 + 2.17554*m.b2187 <= 0) m.c3162 = Constraint(expr= - m.x748 + 2.17602*m.b2188 <= 0) m.c3163 = Constraint(expr= - m.x749 + 2.17644*m.b2189 <= 0) m.c3164 = Constraint(expr= - m.x750 + 2.17691*m.b2190 <= 0) m.c3165 = Constraint(expr= - m.x751 + 2.17686*m.b2191 <= 0) m.c3166 = Constraint(expr= - m.x752 + 2.17691*m.b2192 <= 0) m.c3167 = Constraint(expr= - m.x753 + 2.17755*m.b2193 <= 0) m.c3168 = Constraint(expr= - m.x754 + 2.17781*m.b2194 <= 0) m.c3169 = Constraint(expr= - m.x755 + 2.17887*m.b2195 <= 0) m.c3170 = Constraint(expr= - m.x756 + 2.17919*m.b2196 <= 0) m.c3171 = Constraint(expr= - m.x757 + 2.17961*m.b2197 <= 0) m.c3172 = Constraint(expr= - m.x758 + 2.18072*m.b2198 <= 0) m.c3173 = Constraint(expr= - m.x759 + 2.18151*m.b2199 <= 0) m.c3174 = Constraint(expr= - m.x760 + 2.18125*m.b2200 <= 0) m.c3175 = Constraint(expr= - m.x761 + 2.18051*m.b2201 <= 0) m.c3176 = Constraint(expr= - m.x762 + 2.18008*m.b2202 <= 0) m.c3177 = Constraint(expr= - m.x763 + 2.17887*m.b2203 <= 0) m.c3178 = Constraint(expr= - m.x764 + 2.17792*m.b2204 <= 0) m.c3179 = Constraint(expr= - m.x765 + 2.17771*m.b2205 <= 0) m.c3180 = Constraint(expr= - m.x766 + 2.17697*m.b2206 <= 0) m.c3181 = Constraint(expr= - m.x767 + 2.17728*m.b2207 <= 0) m.c3182 = Constraint(expr= - m.x768 + 2.17713*m.b2208 <= 0) m.c3183 = Constraint(expr= - m.x769 + 2.17433*m.b2209 <= 0) m.c3184 = Constraint(expr= m.x482 - 17.3082*m.b2210 <= 0) m.c3185 = Constraint(expr= m.x483 - 17.303*m.b2211 <= 0) m.c3186 = Constraint(expr= m.x484 - 17.3004*m.b2212 <= 0) m.c3187 = Constraint(expr= m.x485 - 17.2951*m.b2213 <= 0) m.c3188 = Constraint(expr= m.x486 - 17.2925*m.b2214 <= 0) m.c3189 = Constraint(expr= m.x487 - 17.2899*m.b2215 <= 0) m.c3190 = Constraint(expr= m.x488 - 17.2925*m.b2216 <= 0) m.c3191 = Constraint(expr= m.x489 - 17.2978*m.b2217 <= 0) m.c3192 = Constraint(expr= m.x490 - 17.3109*m.b2218 <= 0) m.c3193 = Constraint(expr= m.x491 - 17.3371*m.b2219 <= 0) m.c3194 = Constraint(expr= m.x492 - 17.379*m.b2220 <= 0) m.c3195 = Constraint(expr= m.x493 - 17.4262*m.b2221 <= 0) m.c3196 = Constraint(expr= m.x494 - 17.4812*m.b2222 <= 0) m.c3197 = Constraint(expr= m.x495 - 17.4943*m.b2223 <= 0) m.c3198 = Constraint(expr= m.x496 - 17.455*m.b2224 <= 0) m.c3199 = Constraint(expr= m.x497 - 17.4445*m.b2225 <= 0) m.c3200 = Constraint(expr= m.x498 - 17.4236*m.b2226 <= 0) m.c3201 = Constraint(expr= m.x499 - 17.3895*m.b2227 <= 0) m.c3202 = Constraint(expr= m.x500 - 17.3685*m.b2228 <= 0) m.c3203 = Constraint(expr= m.x501 - 17.358*m.b2229 <= 0) m.c3204 = Constraint(expr= m.x502 - 17.3476*m.b2230 <= 0) m.c3205 = Constraint(expr= m.x503 - 17.3371*m.b2231 <= 0) m.c3206 = Constraint(expr= m.x504 - 17.3292*m.b2232 <= 0) m.c3207 = Constraint(expr= m.x505 - 17.3213*m.b2233 <= 0) m.c3208 = Constraint(expr= m.x506 - 17.3607*m.b2234 <= 0) m.c3209 = Constraint(expr= m.x507 - 17.3816*m.b2235 <= 0) m.c3210 = Constraint(expr= m.x508 - 17.4052*m.b2236 <= 0) m.c3211 = Constraint(expr= m.x509 - 17.4262*m.b2237 <= 0) m.c3212 = Constraint(expr= m.x510 - 17.4498*m.b2238 <= 0) m.c3213 = Constraint(expr= m.x511 - 17.4472*m.b2239 <= 0) m.c3214 = Constraint(expr= m.x512 - 17.4498*m.b2240 <= 0) m.c3215 = Constraint(expr= m.x513 - 17.4812*m.b2241 <= 0) m.c3216 = Constraint(expr= m.x514 - 17.4943*m.b2242 <= 0) m.c3217 = Constraint(expr= m.x515 - 17.5468*m.b2243 <= 0) m.c3218 = Constraint(expr= m.x516 - 17.5625*m.b2244 <= 0) m.c3219 = Constraint(expr= m.x517 - 17.5834*m.b2245 <= 0) m.c3220 = Constraint(expr= m.x518 - 17.6385*m.b2246 <= 0) m.c3221 = Constraint(expr= m.x519 - 17.6778*m.b2247 <= 0) m.c3222 = Constraint(expr= m.x520 - 17.6647*m.b2248 <= 0) m.c3223 = Constraint(expr= m.x521 - 17.628*m.b2249 <= 0) m.c3224 = Constraint(expr= m.x522 - 17.607*m.b2250 <= 0) m.c3225 = Constraint(expr= m.x523 - 17.5468*m.b2251 <= 0) m.c3226 = Constraint(expr= m.x524 - 17.4996*m.b2252 <= 0) m.c3227 = Constraint(expr= m.x525 - 17.4891*m.b2253 <= 0) m.c3228 = Constraint(expr= m.x526 - 17.4524*m.b2254 <= 0) m.c3229 = Constraint(expr= m.x527 - 17.4681*m.b2255 <= 0) m.c3230 = Constraint(expr= m.x528 - 17.4603*m.b2256 <= 0) m.c3231 = Constraint(expr= m.x529 - 17.3213*m.b2257 <= 0) m.c3232 = Constraint(expr= m.x530 - 17.3082*m.b2258 <= 0) m.c3233 = Constraint(expr= m.x531 - 17.303*m.b2259 <= 0) m.c3234 = Constraint(expr= m.x532 - 17.3004*m.b2260 <= 0) m.c3235 = Constraint(expr= m.x533 - 17.2951*m.b2261 <= 0) m.c3236 = Constraint(expr= m.x534 - 17.2925*m.b2262 <= 0) m.c3237 = Constraint(expr= m.x535 - 17.2899*m.b2263 <= 0) m.c3238 = Constraint(expr= m.x536 - 17.2925*m.b2264 <= 0) m.c3239 = Constraint(expr= m.x537 - 17.2978*m.b2265 <= 0) m.c3240 = Constraint(expr= m.x538 - 17.3109*m.b2266 <= 0) m.c3241 = Constraint(expr= m.x539 - 17.3371*m.b2267 <= 0) m.c3242 = Constraint(expr= m.x540 - 17.379*m.b2268 <= 0) m.c3243 = Constraint(expr= m.x541 - 17.4262*m.b2269 <= 0) m.c3244 = Constraint(expr= m.x542 - 17.4812*m.b2270 <= 0) m.c3245 = Constraint(expr= m.x543 - 17.4943*m.b2271 <= 0) m.c3246 = Constraint(expr= m.x544 - 17.455*m.b2272 <= 0) m.c3247 = Constraint(expr= m.x545 - 17.4445*m.b2273 <= 0) m.c3248 = Constraint(expr= m.x546 - 17.4236*m.b2274 <= 0) m.c3249 = Constraint(expr= m.x547 - 17.3895*m.b2275 <= 0) m.c3250 = Constraint(expr= m.x548 - 17.3685*m.b2276 <= 0) m.c3251 = Constraint(expr= m.x549 - 17.358*m.b2277 <= 0) m.c3252 = Constraint(expr= m.x550 - 17.3476*m.b2278 <= 0) m.c3253 = Constraint(expr= m.x551 - 17.3371*m.b2279 <= 0) m.c3254 = Constraint(expr= m.x552 - 17.3292*m.b2280 <= 0) m.c3255 = Constraint(expr= m.x553 - 17.3213*m.b2281 <= 0) m.c3256 = Constraint(expr= m.x554 - 17.3607*m.b2282 <= 0) m.c3257 = Constraint(expr= m.x555 - 17.3816*m.b2283 <= 0) m.c3258 = Constraint(expr= m.x556 - 17.4052*m.b2284 <= 0) m.c3259 = Constraint(expr= m.x557 - 17.4262*m.b2285 <= 0) m.c3260 = Constraint(expr= m.x558 - 17.4498*m.b2286 <= 0) m.c3261 = Constraint(expr= m.x559 - 17.4472*m.b2287 <= 0) m.c3262 = Constraint(expr= m.x560 - 17.4498*m.b2288 <= 0) m.c3263 = Constraint(expr= m.x561 - 17.4812*m.b2289 <= 0) m.c3264 = Constraint(expr= m.x562 - 17.4943*m.b2290 <= 0) m.c3265 = Constraint(expr= m.x563 - 17.5468*m.b2291 <= 0) m.c3266 = Constraint(expr= m.x564 - 17.5625*m.b2292 <= 0) m.c3267 = Constraint(expr= m.x565 - 17.5834*m.b2293 <= 0) m.c3268 = Constraint(expr= m.x566 - 17.6385*m.b2294 <= 0) m.c3269 = Constraint(expr= m.x567 - 17.6778*m.b2295 <= 0) m.c3270 = Constraint(expr= m.x568 - 17.6647*m.b2296 <= 0) m.c3271 = Constraint(expr= m.x569 - 17.628*m.b2297 <= 0) m.c3272 = Constraint(expr= m.x570 - 17.607*m.b2298 <= 0) m.c3273 = Constraint(expr= m.x571 - 17.5468*m.b2299 <= 0) m.c3274 = Constraint(expr= m.x572 - 17.4996*m.b2300 <= 0) m.c3275 = Constraint(expr= m.x573 - 17.4891*m.b2301 <= 0) m.c3276 = Constraint(expr= m.x574 - 17.4524*m.b2302 <= 0) m.c3277 = Constraint(expr= m.x575 - 17.4681*m.b2303 <= 0) m.c3278 = Constraint(expr= m.x576 - 17.4603*m.b2304 <= 0) m.c3279 = Constraint(expr= m.x577 - 17.3213*m.b2305 <= 0) m.c3280 = Constraint(expr= m.x578 - 7.00999*m.b2018 <= 0) m.c3281 = Constraint(expr= m.x579 - 7.00904*m.b2019 <= 0) m.c3282 = Constraint(expr= m.x580 - 7.00857*m.b2020 <= 0) m.c3283 = Constraint(expr= m.x581 - 7.00762*m.b2021 <= 0) m.c3284 = Constraint(expr= m.x582 - 7.00714*m.b2022 <= 0) m.c3285 = Constraint(expr= m.x583 - 7.00667*m.b2023 <= 0) m.c3286 = Constraint(expr= m.x584 - 7.00714*m.b2024 <= 0) m.c3287 = Constraint(expr= m.x585 - 7.00809*m.b2025 <= 0) m.c3288 = Constraint(expr= m.x586 - 7.01047*m.b2026 <= 0) m.c3289 = Constraint(expr= m.x587 - 7.01522*m.b2027 <= 0) m.c3290 = Constraint(expr= m.x588 - 7.02282*m.b2028 <= 0) m.c3291 = Constraint(expr= m.x589 - 7.03137*m.b2029 <= 0) m.c3292 = Constraint(expr= m.x590 - 7.04134*m.b2030 <= 0) m.c3293 = Constraint(expr= m.x591 - 7.04371*m.b2031 <= 0) m.c3294 = Constraint(expr= m.x592 - 7.03659*m.b2032 <= 0) m.c3295 = Constraint(expr= m.x593 - 7.03469*m.b2033 <= 0) m.c3296 = Constraint(expr= m.x594 - 7.03089*m.b2034 <= 0) m.c3297 = Constraint(expr= m.x595 - 7.02472*m.b2035 <= 0) m.c3298 = Constraint(expr= m.x596 - 7.02092*m.b2036 <= 0) m.c3299 = Constraint(expr= m.x597 - 7.01902*m.b2037 <= 0) m.c3300 = Constraint(expr= m.x598 - 7.01712*m.b2038 <= 0) m.c3301 = Constraint(expr= m.x599 - 7.01522*m.b2039 <= 0) m.c3302 = Constraint(expr= m.x600 - 7.01379*m.b2040 <= 0) m.c3303 = Constraint(expr= m.x601 - 7.01237*m.b2041 <= 0) m.c3304 = Constraint(expr= m.x602 - 7.01949*m.b2042 <= 0) m.c3305 = Constraint(expr= m.x603 - 7.02329*m.b2043 <= 0) m.c3306 = Constraint(expr= m.x604 - 7.02757*m.b2044 <= 0) m.c3307 = Constraint(expr= m.x605 - 7.03137*m.b2045 <= 0) m.c3308 = Constraint(expr= m.x606 - 7.03564*m.b2046 <= 0) m.c3309 = Constraint(expr= m.x607 - 7.03516*m.b2047 <= 0) m.c3310 = Constraint(expr= m.x608 - 7.03564*m.b2048 <= 0) m.c3311 = Constraint(expr= m.x609 - 7.04134*m.b2049 <= 0) m.c3312 = Constraint(expr= m.x610 - 7.04371*m.b2050 <= 0) m.c3313 = Constraint(expr= m.x611 - 7.05321*m.b2051 <= 0) m.c3314 = Constraint(expr= m.x612 - 7.05606*m.b2052 <= 0) m.c3315 = Constraint(expr= m.x613 - 7.05986*m.b2053 <= 0) m.c3316 = Constraint(expr= m.x614 - 7.06983*m.b2054 <= 0) m.c3317 = Constraint(expr= m.x615 - 7.07696*m.b2055 <= 0) m.c3318 = Constraint(expr= m.x616 - 7.07458*m.b2056 <= 0) m.c3319 = Constraint(expr= m.x617 - 7.06793*m.b2057 <= 0) m.c3320 = Constraint(expr= m.x618 - 7.06413*m.b2058 <= 0) m.c3321 = Constraint(expr= m.x619 - 7.05321*m.b2059 <= 0) m.c3322 = Constraint(expr= m.x620 - 7.04466*m.b2060 <= 0) m.c3323 = Constraint(expr= m.x621 - 7.04276*m.b2061 <= 0) m.c3324 = Constraint(expr= m.x622 - 7.03611*m.b2062 <= 0) m.c3325 = Constraint(expr= m.x623 - 7.03896*m.b2063 <= 0) m.c3326 = Constraint(expr= m.x624 - 7.03754*m.b2064 <= 0) m.c3327 = Constraint(expr= m.x625 - 7.01237*m.b2065 <= 0) m.c3328 = Constraint(expr= m.x626 - 7.00999*m.b2066 <= 0) m.c3329 = Constraint(expr= m.x627 - 7.00904*m.b2067 <= 0) m.c3330 = Constraint(expr= m.x628 - 7.00857*m.b2068 <= 0) m.c3331 = Constraint(expr= m.x629 - 7.00762*m.b2069 <= 0) m.c3332 = Constraint(expr= m.x630 - 7.00714*m.b2070 <= 0) m.c3333 = Constraint(expr= m.x631 - 7.00667*m.b2071 <= 0) m.c3334 = Constraint(expr= m.x632 - 7.00714*m.b2072 <= 0) m.c3335 = Constraint(expr= m.x633 - 7.00809*m.b2073 <= 0) m.c3336 = Constraint(expr= m.x634 - 7.01047*m.b2074 <= 0) m.c3337 = Constraint(expr= m.x635 - 7.01522*m.b2075 <= 0) m.c3338 = Constraint(expr= m.x636 - 7.02282*m.b2076 <= 0) m.c3339 = Constraint(expr= m.x637 - 7.03137*m.b2077 <= 0) m.c3340 = Constraint(expr= m.x638 - 7.04134*m.b2078 <= 0) m.c3341 = Constraint(expr= m.x639 - 7.04371*m.b2079 <= 0) m.c3342 = Constraint(expr= m.x640 - 7.03659*m.b2080 <= 0) m.c3343 = Constraint(expr= m.x641 - 7.03469*m.b2081 <= 0) m.c3344 = Constraint(expr= m.x642 - 7.03089*m.b2082 <= 0) m.c3345 = Constraint(expr= m.x643 - 7.02472*m.b2083 <= 0) m.c3346 = Constraint(expr= m.x644 - 7.02092*m.b2084 <= 0) m.c3347 = Constraint(expr= m.x645 - 7.01902*m.b2085 <= 0) m.c3348 = Constraint(expr= m.x646 - 7.01712*m.b2086 <= 0) m.c3349 = Constraint(expr= m.x647 - 7.01522*m.b2087 <= 0) m.c3350 = Constraint(expr= m.x648 - 7.01379*m.b2088 <= 0) m.c3351 = Constraint(expr= m.x649 - 7.01237*m.b2089 <= 0) m.c3352 = Constraint(expr= m.x650 - 7.01949*m.b2090 <= 0) m.c3353 = Constraint(expr= m.x651 - 7.02329*m.b2091 <= 0) m.c3354 = Constraint(expr= m.x652 - 7.02757*m.b2092 <= 0) m.c3355 = Constraint(expr= m.x653 - 7.03137*m.b2093 <= 0) m.c3356 = Constraint(expr= m.x654 - 7.03564*m.b2094 <= 0) m.c3357 = Constraint(expr= m.x655 - 7.03516*m.b2095 <= 0) m.c3358 = Constraint(expr= m.x656 - 7.03564*m.b2096 <= 0) m.c3359 = Constraint(expr= m.x657 - 7.04134*m.b2097 <= 0) m.c3360 = Constraint(expr= m.x658 - 7.04371*m.b2098 <= 0) m.c3361 = Constraint(expr= m.x659 - 7.05321*m.b2099 <= 0) m.c3362 = Constraint(expr= m.x660 - 7.05606*m.b2100 <= 0) m.c3363 = Constraint(expr= m.x661 - 7.05986*m.b2101 <= 0) m.c3364 = Constraint(expr= m.x662 - 7.06983*m.b2102 <= 0) m.c3365 = Constraint(expr= m.x663 - 7.07696*m.b2103 <= 0) m.c3366 = Constraint(expr= m.x664 - 7.07458*m.b2104 <= 0) m.c3367 = Constraint(expr= m.x665 - 7.06793*m.b2105 <= 0) m.c3368 = Constraint(expr= m.x666 - 7.06413*m.b2106 <= 0) m.c3369 = Constraint(expr= m.x667 - 7.05321*m.b2107 <= 0) m.c3370 = Constraint(expr= m.x668 - 7.04466*m.b2108 <= 0) m.c3371 = Constraint(expr= m.x669 - 7.04276*m.b2109 <= 0) m.c3372 = Constraint(expr= m.x670 - 7.03611*m.b2110 <= 0) m.c3373 = Constraint(expr= m.x671 - 7.03896*m.b2111 <= 0) m.c3374 = Constraint(expr= m.x672 - 7.03754*m.b2112 <= 0) m.c3375 = Constraint(expr= m.x673 - 7.01237*m.b2113 <= 0) m.c3376 = Constraint(expr= m.x674 - 7.00999*m.b2114 <= 0) m.c3377 = Constraint(expr= m.x675 - 7.00904*m.b2115 <= 0) m.c3378 = Constraint(expr= m.x676 - 7.00857*m.b2116 <= 0) m.c3379 = Constraint(expr= m.x677 - 7.00762*m.b2117 <= 0) m.c3380 = Constraint(expr= m.x678 - 7.00714*m.b2118 <= 0) m.c3381 = Constraint(expr= m.x679 - 7.00667*m.b2119 <= 0) m.c3382 = Constraint(expr= m.x680 - 7.00714*m.b2120 <= 0) m.c3383 = Constraint(expr= m.x681 - 7.00809*m.b2121 <= 0) m.c3384 = Constraint(expr= m.x682 - 7.01047*m.b2122 <= 0) m.c3385 = Constraint(expr= m.x683 - 7.01522*m.b2123 <= 0) m.c3386 = Constraint(expr= m.x684 - 7.02282*m.b2124 <= 0) m.c3387 = Constraint(expr= m.x685 - 7.03137*m.b2125 <= 0) m.c3388 = Constraint(expr= m.x686 - 7.04134*m.b2126 <= 0) m.c3389 = Constraint(expr= m.x687 - 7.04371*m.b2127 <= 0) m.c3390 = Constraint(expr= m.x688 - 7.03659*m.b2128 <= 0) m.c3391 = Constraint(expr= m.x689 - 7.03469*m.b2129 <= 0) m.c3392 = Constraint(expr= m.x690 - 7.03089*m.b2130 <= 0) m.c3393 = Constraint(expr= m.x691 - 7.02472*m.b2131 <= 0) m.c3394 = Constraint(expr= m.x692 - 7.02092*m.b2132 <= 0) m.c3395 = Constraint(expr= m.x693 - 7.01902*m.b2133 <= 0) m.c3396 = Constraint(expr= m.x694 - 7.01712*m.b2134 <= 0) m.c3397 = Constraint(expr= m.x695 - 7.01522*m.b2135 <= 0) m.c3398 = Constraint(expr= m.x696 - 7.01379*m.b2136 <= 0) m.c3399 = Constraint(expr= m.x697 - 7.01237*m.b2137 <= 0) m.c3400 = Constraint(expr= m.x698 - 7.01949*m.b2138 <= 0) m.c3401 = Constraint(expr= m.x699 - 7.02329*m.b2139 <= 0) m.c3402 = Constraint(expr= m.x700 - 7.02757*m.b2140 <= 0) m.c3403 = Constraint(expr= m.x701 - 7.03137*m.b2141 <= 0) m.c3404 = Constraint(expr= m.x702 - 7.03564*m.b2142 <= 0) m.c3405 = Constraint(expr= m.x703 - 7.03516*m.b2143 <= 0) m.c3406 = Constraint(expr= m.x704 - 7.03564*m.b2144 <= 0) m.c3407 = Constraint(expr= m.x705 - 7.04134*m.b2145 <= 0) m.c3408 = Constraint(expr= m.x706 - 7.04371*m.b2146 <= 0) m.c3409 = Constraint(expr= m.x707 - 7.05321*m.b2147 <= 0) m.c3410 = Constraint(expr= m.x708 - 7.05606*m.b2148 <= 0) m.c3411 = Constraint(expr= m.x709 - 7.05986*m.b2149 <= 0) m.c3412 = Constraint(expr= m.x710 - 7.06983*m.b2150 <= 0) m.c3413 = Constraint(expr= m.x711 - 7.07696*m.b2151 <= 0) m.c3414 = Constraint(expr= m.x712 - 7.07458*m.b2152 <= 0) m.c3415 = Constraint(expr= m.x713 - 7.06793*m.b2153 <= 0) m.c3416 = Constraint(expr= m.x714 - 7.06413*m.b2154 <= 0) m.c3417 = Constraint(expr= m.x715 - 7.05321*m.b2155 <= 0) m.c3418 = Constraint(expr= m.x716 - 7.04466*m.b2156 <= 0) m.c3419 = Constraint(expr= m.x717 - 7.04276*m.b2157 <= 0) m.c3420 = Constraint(expr= m.x718 - 7.03611*m.b2158 <= 0) m.c3421 = Constraint(expr= m.x719 - 7.03896*m.b2159 <= 0) m.c3422 = Constraint(expr= m.x720 - 7.03754*m.b2160 <= 0) m.c3423 = Constraint(expr= m.x721 - 7.01237*m.b2161 <= 0) m.c3424 = Constraint(expr= m.x722 - 7.00999*m.b2162 <= 0) m.c3425 = Constraint(expr= m.x723 - 7.00904*m.b2163 <= 0) m.c3426 = Constraint(expr= m.x724 - 7.00857*m.b2164 <= 0) m.c3427 = Constraint(expr= m.x725 - 7.00762*m.b2165 <= 0) m.c3428 = Constraint(expr= m.x726 - 7.00714*m.b2166 <= 0) m.c3429 = Constraint(expr= m.x727 - 7.00667*m.b2167 <= 0) m.c3430 = Constraint(expr= m.x728 - 7.00714*m.b2168 <= 0) m.c3431 = Constraint(expr= m.x729 - 7.00809*m.b2169 <= 0) m.c3432 = Constraint(expr= m.x730 - 7.01047*m.b2170 <= 0) m.c3433 = Constraint(expr= m.x731 - 7.01522*m.b2171 <= 0) m.c3434 = Constraint(expr= m.x732 - 7.02282*m.b2172 <= 0) m.c3435 = Constraint(expr= m.x733 - 7.03137*m.b2173 <= 0) m.c3436 = Constraint(expr= m.x734 - 7.04134*m.b2174 <= 0) m.c3437 = Constraint(expr= m.x735 - 7.04371*m.b2175 <= 0) m.c3438 = Constraint(expr= m.x736 - 7.03659*m.b2176 <= 0) m.c3439 = Constraint(expr= m.x737 - 7.03469*m.b2177 <= 0) m.c3440 = Constraint(expr= m.x738 - 7.03089*m.b2178 <= 0) m.c3441 = Constraint(expr= m.x739 - 7.02472*m.b2179 <= 0) m.c3442 = Constraint(expr= m.x740 - 7.02092*m.b2180 <= 0) m.c3443 = Constraint(expr= m.x741 - 7.01902*m.b2181 <= 0) m.c3444 = Constraint(expr= m.x742 - 7.01712*m.b2182 <= 0) m.c3445 = Constraint(expr= m.x743 - 7.01522*m.b2183 <= 0) m.c3446 = Constraint(expr= m.x744 - 7.01379*m.b2184 <= 0) m.c3447 = Constraint(expr= m.x745 - 7.01237*m.b2185 <= 0) m.c3448 = Constraint(expr= m.x746 - 7.01949*m.b2186 <= 0) m.c3449 = Constraint(expr= m.x747 - 7.02329*m.b2187 <= 0) m.c3450 = Constraint(expr= m.x748 - 7.02757*m.b2188 <= 0) m.c3451 = Constraint(expr= m.x749 - 7.03137*m.b2189 <= 0) m.c3452 = Constraint(expr= m.x750 - 7.03564*m.b2190 <= 0) m.c3453 = Constraint(expr= m.x751 - 7.03516*m.b2191 <= 0) m.c3454 = Constraint(expr= m.x752 - 7.03564*m.b2192 <= 0) m.c3455 = Constraint(expr= m.x753 - 7.04134*m.b2193 <= 0) m.c3456 = Constraint(expr= m.x754 - 7.04371*m.b2194 <= 0) m.c3457 = Constraint(expr= m.x755 - 7.05321*m.b2195 <= 0) m.c3458 = Constraint(expr= m.x756 - 7.05606*m.b2196 <= 0) m.c3459 = Constraint(expr= m.x757 - 7.05986*m.b2197 <= 0) m.c3460 = Constraint(expr= m.x758 - 7.06983*m.b2198 <= 0) m.c3461 = Constraint(expr= m.x759 - 7.07696*m.b2199 <= 0) m.c3462 = Constraint(expr= m.x760 - 7.07458*m.b2200 <= 0) m.c3463 = Constraint(expr= m.x761 - 7.06793*m.b2201 <= 0) m.c3464 = Constraint(expr= m.x762 - 7.06413*m.b2202 <= 0) m.c3465 = Constraint(expr= m.x763 - 7.05321*m.b2203 <= 0) m.c3466 = Constraint(expr= m.x764 - 7.04466*m.b2204 <= 0) m.c3467 = Constraint(expr= m.x765 - 7.04276*m.b2205 <= 0) m.c3468 = Constraint(expr= m.x766 - 7.03611*m.b2206 <= 0) m.c3469 = Constraint(expr= m.x767 - 7.03896*m.b2207 <= 0) m.c3470 = Constraint(expr= m.x768 - 7.03754*m.b2208 <= 0) m.c3471 = Constraint(expr= m.x769 - 7.01237*m.b2209 <= 0) m.c3472 = Constraint(expr= - m.x1154 <= 0) m.c3473 = Constraint(expr= - m.x1155 <= 0) m.c3474 = Constraint(expr= - m.x1156 <= 0) m.c3475 = Constraint(expr= - m.x1157 <= 0) m.c3476 = Constraint(expr= - m.x1158 <= 0) m.c3477 = Constraint(expr= - m.x1159 <= 0) m.c3478 = Constraint(expr= - m.x1160 <= 0) m.c3479 = Constraint(expr= - m.x1161 <= 0) m.c3480 = Constraint(expr= - m.x1162 <= 0) m.c3481 = Constraint(expr= - m.x1163 <= 0) m.c3482 = Constraint(expr= - m.x1164 <= 0) m.c3483 = Constraint(expr= - m.x1165 <= 0) m.c3484 = Constraint(expr= - m.x1166 <= 0) m.c3485 = Constraint(expr= - m.x1167 <= 0) m.c3486 = Constraint(expr= - m.x1168 <= 0) m.c3487 = Constraint(expr= - m.x1169 <= 0) m.c3488 = Constraint(expr= - m.x1170 <= 0) m.c3489 = Constraint(expr= - m.x1171 <= 0) m.c3490 = Constraint(expr= - m.x1172 <= 0) m.c3491 = Constraint(expr= - m.x1173 <= 0) m.c3492 = Constraint(expr= - m.x1174 <= 0) m.c3493 = Constraint(expr= - m.x1175 <= 0) m.c3494 = Constraint(expr= - m.x1176 <= 0) m.c3495 = Constraint(expr= - m.x1177 <= 0) m.c3496 = Constraint(expr= - m.x1178 <= 0) m.c3497 = Constraint(expr= - m.x1179 <= 0) m.c3498 = Constraint(expr= - m.x1180 <= 0) m.c3499 = Constraint(expr= - m.x1181 <= 0) m.c3500 = Constraint(expr= - m.x1182 <= 0) m.c3501 = Constraint(expr= - m.x1183 <= 0) m.c3502 = Constraint(expr= - m.x1184 <= 0) m.c3503 = Constraint(expr= - m.x1185 <= 0) m.c3504 = Constraint(expr= - m.x1186 <= 0) m.c3505 = Constraint(expr= - m.x1187 <= 0) m.c3506 = Constraint(expr= - m.x1188 <= 0) m.c3507 = Constraint(expr= - m.x1189 <= 0) m.c3508 = Constraint(expr= - m.x1190 <= 0) m.c3509 = Constraint(expr= - m.x1191 <= 0) m.c3510 = Constraint(expr= - m.x1192 <= 0) m.c3511 = Constraint(expr= - m.x1193 <= 0) m.c3512 = Constraint(expr= - m.x1194 <= 0) m.c3513 = Constraint(expr= - m.x1195 <= 0) m.c3514 = Constraint(expr= - m.x1196 <= 0) m.c3515 = Constraint(expr= - m.x1197 <= 0) m.c3516 = Constraint(expr= - m.x1198 <= 0) m.c3517 = Constraint(expr= - m.x1199 <= 0) m.c3518 = Constraint(expr= - m.x1200 <= 0) m.c3519 = Constraint(expr= - m.x1201 <= 0) m.c3520 = Constraint(expr= - m.x1202 <= 0) m.c3521 = Constraint(expr= - m.x1203 <= 0) m.c3522 = Constraint(expr= - m.x1204 <= 0) m.c3523 = Constraint(expr= - m.x1205 <= 0) m.c3524 = Constraint(expr= - m.x1206 <= 0) m.c3525 = Constraint(expr= - m.x1207 <= 0) m.c3526 = Constraint(expr= - m.x1208 <= 0) m.c3527 = Constraint(expr= - m.x1209 <= 0) m.c3528 = Constraint(expr= - m.x1210 <= 0) m.c3529 = Constraint(expr= - m.x1211 <= 0) m.c3530 = Constraint(expr= - m.x1212 <= 0) m.c3531 = Constraint(expr= - m.x1213 <= 0) m.c3532 = Constraint(expr= - m.x1214 <= 0) m.c3533 = Constraint(expr= - m.x1215 <= 0) m.c3534 = Constraint(expr= - m.x1216 <= 0) m.c3535 = Constraint(expr= - m.x1217 <= 0) m.c3536 = Constraint(expr= - m.x1218 <= 0) m.c3537 = Constraint(expr= - m.x1219 <= 0) m.c3538 = Constraint(expr= - m.x1220 <= 0) m.c3539 = Constraint(expr= - m.x1221 <= 0) m.c3540 = Constraint(expr= - m.x1222 <= 0) m.c3541 = Constraint(expr= - m.x1223 <= 0) m.c3542 = Constraint(expr= - m.x1224 <= 0) m.c3543 = Constraint(expr= - m.x1225 <= 0) m.c3544 = Constraint(expr= - m.x1226 <= 0) m.c3545 = Constraint(expr= - m.x1227 <= 0) m.c3546 = Constraint(expr= - m.x1228 <= 0) m.c3547 = Constraint(expr= - m.x1229 <= 0) m.c3548 = Constraint(expr= - m.x1230 <= 0) m.c3549 = Constraint(expr= - m.x1231 <= 0) m.c3550 = Constraint(expr= - m.x1232 <= 0) m.c3551 = Constraint(expr= - m.x1233 <= 0) m.c3552 = Constraint(expr= - m.x1234 <= 0) m.c3553 = Constraint(expr= - m.x1235 <= 0) m.c3554 = Constraint(expr= - m.x1236 <= 0) m.c3555 = Constraint(expr= - m.x1237 <= 0) m.c3556 = Constraint(expr= - m.x1238 <= 0) m.c3557 = Constraint(expr= - m.x1239 <= 0) m.c3558 = Constraint(expr= - m.x1240 <= 0) m.c3559 = Constraint(expr= - m.x1241 <= 0) m.c3560 = Constraint(expr= - m.x1242 <= 0) m.c3561 = Constraint(expr= - m.x1243 <= 0) m.c3562 = Constraint(expr= - m.x1244 <= 0) m.c3563 = Constraint(expr= - m.x1245 <= 0) m.c3564 = Constraint(expr= - m.x1246 <= 0) m.c3565 = Constraint(expr= - m.x1247 <= 0) m.c3566 = Constraint(expr= - m.x1248 <= 0) m.c3567 = Constraint(expr= - m.x1249 <= 0) m.c3568 = Constraint(expr= - m.x1250 <= 0) m.c3569 = Constraint(expr= - m.x1251 <= 0) m.c3570 = Constraint(expr= - m.x1252 <= 0) m.c3571 = Constraint(expr= - m.x1253 <= 0) m.c3572 = Constraint(expr= - m.x1254 <= 0) m.c3573 = Constraint(expr= - m.x1255 <= 0) m.c3574 = Constraint(expr= - m.x1256 <= 0) m.c3575 = Constraint(expr= - m.x1257 <= 0) m.c3576 = Constraint(expr= - m.x1258 <= 0) m.c3577 = Constraint(expr= - m.x1259 <= 0) m.c3578 = Constraint(expr= - m.x1260 <= 0) m.c3579 = Constraint(expr= - m.x1261 <= 0) m.c3580 = Constraint(expr= - m.x1262 <= 0) m.c3581 = Constraint(expr= - m.x1263 <= 0) m.c3582 = Constraint(expr= - m.x1264 <= 0) m.c3583 = Constraint(expr= - m.x1265 <= 0) m.c3584 = Constraint(expr= - m.x1266 <= 0) m.c3585 = Constraint(expr= - m.x1267 <= 0) m.c3586 = Constraint(expr= - m.x1268 <= 0) m.c3587 = Constraint(expr= - m.x1269 <= 0) m.c3588 = Constraint(expr= - m.x1270 <= 0) m.c3589 = Constraint(expr= - m.x1271 <= 0) m.c3590 = Constraint(expr= - m.x1272 <= 0) m.c3591 = Constraint(expr= - m.x1273 <= 0) m.c3592 = Constraint(expr= - m.x1274 <= 0) m.c3593 = Constraint(expr= - m.x1275 <= 0) m.c3594 = Constraint(expr= - m.x1276 <= 0) m.c3595 = Constraint(expr= - m.x1277 <= 0) m.c3596 = Constraint(expr= - m.x1278 <= 0) m.c3597 = Constraint(expr= - m.x1279 <= 0) m.c3598 = Constraint(expr= - m.x1280 <= 0) m.c3599 = Constraint(expr= - m.x1281 <= 0) m.c3600 = Constraint(expr= - m.x1282 <= 0) m.c3601 = Constraint(expr= - m.x1283 <= 0) m.c3602 = Constraint(expr= - m.x1284 <= 0) m.c3603 = Constraint(expr= - m.x1285 <= 0) m.c3604 = Constraint(expr= - m.x1286 <= 0) m.c3605 = Constraint(expr= - m.x1287 <= 0) m.c3606 = Constraint(expr= - m.x1288 <= 0) m.c3607 = Constraint(expr= - m.x1289 <= 0) m.c3608 = Constraint(expr= - m.x1290 <= 0) m.c3609 = Constraint(expr= - m.x1291 <= 0) m.c3610 = Constraint(expr= - m.x1292 <= 0) m.c3611 = Constraint(expr= - m.x1293 <= 0) m.c3612 = Constraint(expr= - m.x1294 <= 0) m.c3613 = Constraint(expr= - m.x1295 <= 0) m.c3614 = Constraint(expr= - m.x1296 <= 0) m.c3615 = Constraint(expr= - m.x1297 <= 0) m.c3616 = Constraint(expr= - m.x1298 <= 0) m.c3617 = Constraint(expr= - m.x1299 <= 0) m.c3618 = Constraint(expr= - m.x1300 <= 0) m.c3619 = Constraint(expr= - m.x1301 <= 0) m.c3620 = Constraint(expr= - m.x1302 <= 0) m.c3621 = Constraint(expr= - m.x1303 <= 0) m.c3622 = Constraint(expr= - m.x1304 <= 0) m.c3623 = Constraint(expr= - m.x1305 <= 0) m.c3624 = Constraint(expr= - m.x1306 <= 0) m.c3625 = Constraint(expr= - m.x1307 <= 0) m.c3626 = Constraint(expr= - m.x1308 <= 0) m.c3627 = Constraint(expr= - m.x1309 <= 0) m.c3628 = Constraint(expr= - m.x1310 <= 0) m.c3629 = Constraint(expr= - m.x1311 <= 0) m.c3630 = Constraint(expr= - m.x1312 <= 0) m.c3631 = Constraint(expr= - m.x1313 <= 0) m.c3632 = Constraint(expr= - m.x1314 <= 0) m.c3633 = Constraint(expr= - m.x1315 <= 0) m.c3634 = Constraint(expr= - m.x1316 <= 0) m.c3635 = Constraint(expr= - m.x1317 <= 0) m.c3636 = Constraint(expr= - m.x1318 <= 0) m.c3637 = Constraint(expr= - m.x1319 <= 0) m.c3638 = Constraint(expr= - m.x1320 <= 0) m.c3639 = Constraint(expr= - m.x1321 <= 0) m.c3640 = Constraint(expr= - m.x1322 <= 0) m.c3641 = Constraint(expr= - m.x1323 <= 0) m.c3642 = Constraint(expr= - m.x1324 <= 0) m.c3643 = Constraint(expr= - m.x1325 <= 0) m.c3644 = Constraint(expr= - m.x1326 <= 0) m.c3645 = Constraint(expr= - m.x1327 <= 0) m.c3646 = Constraint(expr= - m.x1328 <= 0) m.c3647 = Constraint(expr= - m.x1329 <= 0) m.c3648 = Constraint(expr= - m.x1330 <= 0) m.c3649 = Constraint(expr= - m.x1331 <= 0) m.c3650 = Constraint(expr= - m.x1332 <= 0) m.c3651 = Constraint(expr= - m.x1333 <= 0) m.c3652 = Constraint(expr= - m.x1334 <= 0) m.c3653 = Constraint(expr= - m.x1335 <= 0) m.c3654 = Constraint(expr= - m.x1336 <= 0) m.c3655 = Constraint(expr= - m.x1337 <= 0) m.c3656 = Constraint(expr= - m.x1338 <= 0) m.c3657 = Constraint(expr= - m.x1339 <= 0) m.c3658 = Constraint(expr= - m.x1340 <= 0) m.c3659 = Constraint(expr= - m.x1341 <= 0) m.c3660 = Constraint(expr= - m.x1342 <= 0) m.c3661 = Constraint(expr= - m.x1343 <= 0) m.c3662 = Constraint(expr= - m.x1344 <= 0) m.c3663 = Constraint(expr= - m.x1345 <= 0) m.c3664 = Constraint(expr= - m.x1346 <= 0) m.c3665 = Constraint(expr= - m.x1347 <= 0) m.c3666 = Constraint(expr= - m.x1348 <= 0) m.c3667 = Constraint(expr= - m.x1349 <= 0) m.c3668 = Constraint(expr= - m.x1350 <= 0) m.c3669 = Constraint(expr= - m.x1351 <= 0) m.c3670 = Constraint(expr= - m.x1352 <= 0) m.c3671 = Constraint(expr= - m.x1353 <= 0) m.c3672 = Constraint(expr= - m.x1354 <= 0) m.c3673 = Constraint(expr= - m.x1355 <= 0) m.c3674 = Constraint(expr= - m.x1356 <= 0) m.c3675 = Constraint(expr= - m.x1357 <= 0) m.c3676 = Constraint(expr= - m.x1358 <= 0) m.c3677 = Constraint(expr= - m.x1359 <= 0) m.c3678 = Constraint(expr= - m.x1360 <= 0) m.c3679 = Constraint(expr= - m.x1361 <= 0) m.c3680 = Constraint(expr= - m.x1362 <= 0) m.c3681 = Constraint(expr= - m.x1363 <= 0) m.c3682 = Constraint(expr= - m.x1364 <= 0) m.c3683 = Constraint(expr= - m.x1365 <= 0) m.c3684 = Constraint(expr= - m.x1366 <= 0) m.c3685 = Constraint(expr= - m.x1367 <= 0) m.c3686 = Constraint(expr= - m.x1368 <= 0) m.c3687 = Constraint(expr= - m.x1369 <= 0) m.c3688 = Constraint(expr= - m.x1370 <= 0) m.c3689 = Constraint(expr= - m.x1371 <= 0) m.c3690 = Constraint(expr= - m.x1372 <= 0) m.c3691 = Constraint(expr= - m.x1373 <= 0) m.c3692 = Constraint(expr= - m.x1374 <= 0) m.c3693 = Constraint(expr= - m.x1375 <= 0) m.c3694 = Constraint(expr= - m.x1376 <= 0) m.c3695 = Constraint(expr= - m.x1377 <= 0) m.c3696 = Constraint(expr= - m.x1378 <= 0) m.c3697 = Constraint(expr= - m.x1379 <= 0) m.c3698 = Constraint(expr= - m.x1380 <= 0) m.c3699 = Constraint(expr= - m.x1381 <= 0) m.c3700 = Constraint(expr= - m.x1382 <= 0) m.c3701 = Constraint(expr= - m.x1383 <= 0) m.c3702 = Constraint(expr= - m.x1384 <= 0) m.c3703 = Constraint(expr= - m.x1385 <= 0) m.c3704 = Constraint(expr= - m.x1386 <= 0) m.c3705 = Constraint(expr= - m.x1387 <= 0) m.c3706 = Constraint(expr= - m.x1388 <= 0) m.c3707 = Constraint(expr= - m.x1389 <= 0) m.c3708 = Constraint(expr= - m.x1390 <= 0) m.c3709 = Constraint(expr= - m.x1391 <= 0) m.c3710 = Constraint(expr= - m.x1392 <= 0) m.c3711 = Constraint(expr= - m.x1393 <= 0) m.c3712 = Constraint(expr= - m.x1394 <= 0) m.c3713 = Constraint(expr= - m.x1395 <= 0) m.c3714 = Constraint(expr= - m.x1396 <= 0) m.c3715 = Constraint(expr= - m.x1397 <= 0) m.c3716 = Constraint(expr= - m.x1398 <= 0) m.c3717 = Constraint(expr= - m.x1399 <= 0) m.c3718 = Constraint(expr= - m.x1400 <= 0) m.c3719 = Constraint(expr= - m.x1401 <= 0) m.c3720 = Constraint(expr= - m.x1402 <= 0) m.c3721 = Constraint(expr= - m.x1403 <= 0) m.c3722 = Constraint(expr= - m.x1404 <= 0) m.c3723 = Constraint(expr= - m.x1405 <= 0) m.c3724 = Constraint(expr= - m.x1406 <= 0) m.c3725 = Constraint(expr= - m.x1407 <= 0) m.c3726 = Constraint(expr= - m.x1408 <= 0) m.c3727 = Constraint(expr= - m.x1409 <= 0) m.c3728 = Constraint(expr= - m.x1410 <= 0) m.c3729 = Constraint(expr= - m.x1411 <= 0) m.c3730 = Constraint(expr= - m.x1412 <= 0) m.c3731 = Constraint(expr= - m.x1413 <= 0) m.c3732 = Constraint(expr= - m.x1414 <= 0) m.c3733 = Constraint(expr= - m.x1415 <= 0) m.c3734 = Constraint(expr= - m.x1416 <= 0) m.c3735 = Constraint(expr= - m.x1417 <= 0) m.c3736 = Constraint(expr= - m.x1418 <= 0) m.c3737 = Constraint(expr= - m.x1419 <= 0) m.c3738 = Constraint(expr= - m.x1420 <= 0) m.c3739 = Constraint(expr= - m.x1421 <= 0) m.c3740 = Constraint(expr= - m.x1422 <= 0) m.c3741 = Constraint(expr= - m.x1423 <= 0) m.c3742 = Constraint(expr= - m.x1424 <= 0) m.c3743 = Constraint(expr= - m.x1425 <= 0) m.c3744 = Constraint(expr= - m.x1426 <= 0) m.c3745 = Constraint(expr= - m.x1427 <= 0) m.c3746 = Constraint(expr= - m.x1428 <= 0) m.c3747 = Constraint(expr= - m.x1429 <= 0) m.c3748 = Constraint(expr= - m.x1430 <= 0) m.c3749 = Constraint(expr= - m.x1431 <= 0) m.c3750 = Constraint(expr= - m.x1432 <= 0) m.c3751 = Constraint(expr= - m.x1433 <= 0) m.c3752 = Constraint(expr= - m.x1434 <= 0) m.c3753 = Constraint(expr= - m.x1435 <= 0) m.c3754 = Constraint(expr= - m.x1436 <= 0) m.c3755 = Constraint(expr= - m.x1437 <= 0) m.c3756 = Constraint(expr= - m.x1438 <= 0) m.c3757 = Constraint(expr= - m.x1439 <= 0) m.c3758 = Constraint(expr= - m.x1440 <= 0) m.c3759 = Constraint(expr= - m.x1441 <= 0) m.c3760 = Constraint(expr= m.x1154 <= 0) m.c3761 = Constraint(expr= m.x1155 <= 0) m.c3762 = Constraint(expr= m.x1156 <= 0) m.c3763 = Constraint(expr= m.x1157 <= 0) m.c3764 = Constraint(expr= m.x1158 <= 0) m.c3765 = Constraint(expr= m.x1159 <= 0) m.c3766 = Constraint(expr= m.x1160 <= 0) m.c3767 = Constraint(expr= m.x1161 <= 0) m.c3768 = Constraint(expr= m.x1162 <= 0) m.c3769 = Constraint(expr= m.x1163 <= 0) m.c3770 = Constraint(expr= m.x1164 <= 0) m.c3771 = Constraint(expr= m.x1165 <= 0) m.c3772 = Constraint(expr= m.x1166 <= 0) m.c3773 = Constraint(expr= m.x1167 <= 0) m.c3774 = Constraint(expr= m.x1168 <= 0) m.c3775 = Constraint(expr= m.x1169 <= 0) m.c3776 = Constraint(expr= m.x1170 <= 0) m.c3777 = Constraint(expr= m.x1171 <= 0) m.c3778 = Constraint(expr= m.x1172 <= 0) m.c3779 = Constraint(expr= m.x1173 <= 0) m.c3780 = Constraint(expr= m.x1174 <= 0) m.c3781 = Constraint(expr= m.x1175 <= 0) m.c3782 = Constraint(expr= m.x1176 <= 0) m.c3783 = Constraint(expr= m.x1177 <= 0) m.c3784 = Constraint(expr= m.x1178 <= 0) m.c3785 = Constraint(expr= m.x1179 <= 0) m.c3786 = Constraint(expr= m.x1180 <= 0) m.c3787 = Constraint(expr= m.x1181 <= 0) m.c3788 = Constraint(expr= m.x1182 <= 0) m.c3789 = Constraint(expr= m.x1183 <= 0) m.c3790 = Constraint(expr= m.x1184 <= 0) m.c3791 = Constraint(expr= m.x1185 <= 0) m.c3792 = Constraint(expr= m.x1186 <= 0) m.c3793 = Constraint(expr= m.x1187 <= 0) m.c3794 = Constraint(expr= m.x1188 <= 0) m.c3795 = Constraint(expr= m.x1189 <= 0) m.c3796 = Constraint(expr= m.x1190 <= 0) m.c3797 = Constraint(expr= m.x1191 <= 0) m.c3798 = Constraint(expr= m.x1192 <= 0) m.c3799 = Constraint(expr= m.x1193 <= 0) m.c3800 = Constraint(expr= m.x1194 <= 0) m.c3801 = Constraint(expr= m.x1195 <= 0) m.c3802 = Constraint(expr= m.x1196 <= 0) m.c3803 = Constraint(expr= m.x1197 <= 0) m.c3804 = Constraint(expr= m.x1198 <= 0) m.c3805 = Constraint(expr= m.x1199 <= 0) m.c3806 = Constraint(expr= m.x1200 <= 0) m.c3807 = Constraint(expr= m.x1201 <= 0) m.c3808 = Constraint(expr= m.x1202 <= 0) m.c3809 = Constraint(expr= m.x1203 <= 0) m.c3810 = Constraint(expr= m.x1204 <= 0) m.c3811 = Constraint(expr= m.x1205 <= 0) m.c3812 = Constraint(expr= m.x1206 <= 0) m.c3813 = Constraint(expr= m.x1207 <= 0) m.c3814 = Constraint(expr= m.x1208 <= 0) m.c3815 = Constraint(expr= m.x1209 <= 0) m.c3816 = Constraint(expr= m.x1210 <= 0) m.c3817 = Constraint(expr= m.x1211 <= 0) m.c3818 = Constraint(expr= m.x1212 <= 0) m.c3819 = Constraint(expr= m.x1213 <= 0) m.c3820 = Constraint(expr= m.x1214 <= 0) m.c3821 = Constraint(expr= m.x1215 <= 0) m.c3822 = Constraint(expr= m.x1216 <= 0) m.c3823 = Constraint(expr= m.x1217 <= 0) m.c3824 = Constraint(expr= m.x1218 <= 0) m.c3825 = Constraint(expr= m.x1219 <= 0) m.c3826 = Constraint(expr= m.x1220 <= 0) m.c3827 = Constraint(expr= m.x1221 <= 0) m.c3828 = Constraint(expr= m.x1222 <= 0) m.c3829 = Constraint(expr= m.x1223 <= 0) m.c3830 = Constraint(expr= m.x1224 <= 0) m.c3831 = Constraint(expr= m.x1225 <= 0) m.c3832 = Constraint(expr= m.x1226 <= 0) m.c3833 = Constraint(expr= m.x1227 <= 0) m.c3834 = Constraint(expr= m.x1228 <= 0) m.c3835 = Constraint(expr= m.x1229 <= 0) m.c3836 = Constraint(expr= m.x1230 <= 0) m.c3837 = Constraint(expr= m.x1231 <= 0) m.c3838 = Constraint(expr= m.x1232 <= 0) m.c3839 = Constraint(expr= m.x1233 <= 0) m.c3840 = Constraint(expr= m.x1234 <= 0) m.c3841 = Constraint(expr= m.x1235 <= 0) m.c3842 = Constraint(expr= m.x1236 <= 0) m.c3843 = Constraint(expr= m.x1237 <= 0) m.c3844 = Constraint(expr= m.x1238 <= 0) m.c3845 = Constraint(expr= m.x1239 <= 0) m.c3846 = Constraint(expr= m.x1240 <= 0) m.c3847 = Constraint(expr= m.x1241 <= 0) m.c3848 = Constraint(expr= m.x1242 <= 0) m.c3849 = Constraint(expr= m.x1243 <= 0) m.c3850 = Constraint(expr= m.x1244 <= 0) m.c3851 = Constraint(expr= m.x1245 <= 0) m.c3852 = Constraint(expr= m.x1246 <= 0) m.c3853 = Constraint(expr= m.x1247 <= 0) m.c3854 = Constraint(expr= m.x1248 <= 0) m.c3855 = Constraint(expr= m.x1249 <= 0) m.c3856 = Constraint(expr= m.x1250 <= 0) m.c3857 = Constraint(expr= m.x1251 <= 0) m.c3858 = Constraint(expr= m.x1252 <= 0) m.c3859 = Constraint(expr= m.x1253 <= 0) m.c3860 = Constraint(expr= m.x1254 <= 0) m.c3861 = Constraint(expr= m.x1255 <= 0) m.c3862 = Constraint(expr= m.x1256 <= 0) m.c3863 = Constraint(expr= m.x1257 <= 0) m.c3864 = Constraint(expr= m.x1258 <= 0) m.c3865 = Constraint(expr= m.x1259 <= 0) m.c3866 = Constraint(expr= m.x1260 <= 0) m.c3867 = Constraint(expr= m.x1261 <= 0) m.c3868 = Constraint(expr= m.x1262 <= 0) m.c3869 = Constraint(expr= m.x1263 <= 0) m.c3870 = Constraint(expr= m.x1264 <= 0) m.c3871 = Constraint(expr= m.x1265 <= 0) m.c3872 = Constraint(expr= m.x1266 <= 0) m.c3873 = Constraint(expr= m.x1267 <= 0) m.c3874 = Constraint(expr= m.x1268 <= 0) m.c3875 = Constraint(expr= m.x1269 <= 0) m.c3876 = Constraint(expr= m.x1270 <= 0) m.c3877 = Constraint(expr= m.x1271 <= 0) m.c3878 = Constraint(expr= m.x1272 <= 0) m.c3879 = Constraint(expr= m.x1273 <= 0) m.c3880 = Constraint(expr= m.x1274 <= 0) m.c3881 = Constraint(expr= m.x1275 <= 0) m.c3882 = Constraint(expr= m.x1276 <= 0) m.c3883 = Constraint(expr= m.x1277 <= 0) m.c3884 = Constraint(expr= m.x1278 <= 0) m.c3885 = Constraint(expr= m.x1279 <= 0) m.c3886 = Constraint(expr= m.x1280 <= 0) m.c3887 = Constraint(expr= m.x1281 <= 0) m.c3888 = Constraint(expr= m.x1282 <= 0) m.c3889 = Constraint(expr= m.x1283 <= 0) m.c3890 = Constraint(expr= m.x1284 <= 0) m.c3891 = Constraint(expr= m.x1285 <= 0) m.c3892 = Constraint(expr= m.x1286 <= 0) m.c3893 = Constraint(expr= m.x1287 <= 0) m.c3894 = Constraint(expr= m.x1288 <= 0) m.c3895 = Constraint(expr= m.x1289 <= 0) m.c3896 = Constraint(expr= m.x1290 <= 0) m.c3897 = Constraint(expr= m.x1291 <= 0) m.c3898 = Constraint(expr= m.x1292 <= 0) m.c3899 = Constraint(expr= m.x1293 <= 0) m.c3900 = Constraint(expr= m.x1294 <= 0) m.c3901 = Constraint(expr= m.x1295 <= 0) m.c3902 = Constraint(expr= m.x1296 <= 0) m.c3903 = Constraint(expr= m.x1297 <= 0) m.c3904 = Constraint(expr= m.x1298 <= 0) m.c3905 = Constraint(expr= m.x1299 <= 0) m.c3906 = Constraint(expr= m.x1300 <= 0) m.c3907 = Constraint(expr= m.x1301 <= 0) m.c3908 = Constraint(expr= m.x1302 <= 0) m.c3909 = Constraint(expr= m.x1303 <= 0) m.c3910 = Constraint(expr= m.x1304 <= 0) m.c3911 = Constraint(expr= m.x1305 <= 0) m.c3912 = Constraint(expr= m.x1306 <= 0) m.c3913 = Constraint(expr= m.x1307 <= 0) m.c3914 = Constraint(expr= m.x1308 <= 0) m.c3915 = Constraint(expr= m.x1309 <= 0) m.c3916 = Constraint(expr= m.x1310 <= 0) m.c3917 = Constraint(expr= m.x1311 <= 0) m.c3918 = Constraint(expr= m.x1312 <= 0) m.c3919 = Constraint(expr= m.x1313 <= 0) m.c3920 = Constraint(expr= m.x1314 <= 0) m.c3921 = Constraint(expr= m.x1315 <= 0) m.c3922 = Constraint(expr= m.x1316 <= 0) m.c3923 = Constraint(expr= m.x1317 <= 0) m.c3924 = Constraint(expr= m.x1318 <= 0) m.c3925 = Constraint(expr= m.x1319 <= 0) m.c3926 = Constraint(expr= m.x1320 <= 0) m.c3927 = Constraint(expr= m.x1321 <= 0) m.c3928 = Constraint(expr= m.x1322 <= 0) m.c3929 = Constraint(expr= m.x1323 <= 0) m.c3930 = Constraint(expr= m.x1324 <= 0) m.c3931 = Constraint(expr= m.x1325 <= 0) m.c3932 = Constraint(expr= m.x1326 <= 0) m.c3933 = Constraint(expr= m.x1327 <= 0) m.c3934 = Constraint(expr= m.x1328 <= 0) m.c3935 = Constraint(expr= m.x1329 <= 0) m.c3936 = Constraint(expr= m.x1330 <= 0) m.c3937 = Constraint(expr= m.x1331 <= 0) m.c3938 = Constraint(expr= m.x1332 <= 0) m.c3939 = Constraint(expr= m.x1333 <= 0) m.c3940 = Constraint(expr= m.x1334 <= 0) m.c3941 = Constraint(expr= m.x1335 <= 0) m.c3942 = Constraint(expr= m.x1336 <= 0) m.c3943 = Constraint(expr= m.x1337 <= 0) m.c3944 = Constraint(expr= m.x1338 <= 0) m.c3945 = Constraint(expr= m.x1339 <= 0) m.c3946 = Constraint(expr= m.x1340 <= 0) m.c3947 = Constraint(expr= m.x1341 <= 0) m.c3948 = Constraint(expr= m.x1342 <= 0) m.c3949 = Constraint(expr= m.x1343 <= 0) m.c3950 = Constraint(expr= m.x1344 <= 0) m.c3951 = Constraint(expr= m.x1345 <= 0) m.c3952 = Constraint(expr= m.x1346 <= 0) m.c3953 = Constraint(expr= m.x1347 <= 0) m.c3954 = Constraint(expr= m.x1348 <= 0) m.c3955 = Constraint(expr= m.x1349 <= 0) m.c3956 = Constraint(expr= m.x1350 <= 0) m.c3957 = Constraint(expr= m.x1351 <= 0) m.c3958 = Constraint(expr= m.x1352 <= 0) m.c3959 = Constraint(expr= m.x1353 <= 0) m.c3960 = Constraint(expr= m.x1354 <= 0) m.c3961 = Constraint(expr= m.x1355 <= 0) m.c3962 = Constraint(expr= m.x1356 <= 0) m.c3963 = Constraint(expr= m.x1357 <= 0) m.c3964 = Constraint(expr= m.x1358 <= 0) m.c3965 = Constraint(expr= m.x1359 <= 0) m.c3966 = Constraint(expr= m.x1360 <= 0) m.c3967 = Constraint(expr= m.x1361 <= 0) m.c3968 = Constraint(expr= m.x1362 <= 0) m.c3969 = Constraint(expr= m.x1363 <= 0) m.c3970 = Constraint(expr= m.x1364 <= 0) m.c3971 = Constraint(expr= m.x1365 <= 0) m.c3972 = Constraint(expr= m.x1366 <= 0) m.c3973 = Constraint(expr= m.x1367 <= 0) m.c3974 = Constraint(expr= m.x1368 <= 0) m.c3975 = Constraint(expr= m.x1369 <= 0) m.c3976 = Constraint(expr= m.x1370 <= 0) m.c3977 = Constraint(expr= m.x1371 <= 0) m.c3978 = Constraint(expr= m.x1372 <= 0) m.c3979 = Constraint(expr= m.x1373 <= 0) m.c3980 = Constraint(expr= m.x1374 <= 0) m.c3981 = Constraint(expr= m.x1375 <= 0) m.c3982 = Constraint(expr= m.x1376 <= 0) m.c3983 = Constraint(expr= m.x1377 <= 0) m.c3984 = Constraint(expr= m.x1378 <= 0) m.c3985 = Constraint(expr= m.x1379 <= 0) m.c3986 = Constraint(expr= m.x1380 <= 0) m.c3987 = Constraint(expr= m.x1381 <= 0) m.c3988 = Constraint(expr= m.x1382 <= 0) m.c3989 = Constraint(expr= m.x1383 <= 0) m.c3990 = Constraint(expr= m.x1384 <= 0) m.c3991 = Constraint(expr= m.x1385 <= 0) m.c3992 = Constraint(expr= m.x1386 <= 0) m.c3993 = Constraint(expr= m.x1387 <= 0) m.c3994 = Constraint(expr= m.x1388 <= 0) m.c3995 = Constraint(expr= m.x1389 <= 0) m.c3996 = Constraint(expr= m.x1390 <= 0) m.c3997 = Constraint(expr= m.x1391 <= 0) m.c3998 = Constraint(expr= m.x1392 <= 0) m.c3999 = Constraint(expr= m.x1393 <= 0) m.c4000 = Constraint(expr= m.x1394 <= 0) m.c4001 = Constraint(expr= m.x1395 <= 0) m.c4002 = Constraint(expr= m.x1396 <= 0) m.c4003 = Constraint(expr= m.x1397 <= 0) m.c4004 = Constraint(expr= m.x1398 <= 0) m.c4005 = Constraint(expr= m.x1399 <= 0) m.c4006 = Constraint(expr= m.x1400 <= 0) m.c4007 = Constraint(expr= m.x1401 <= 0) m.c4008 = Constraint(expr= m.x1402 <= 0) m.c4009 = Constraint(expr= m.x1403 <= 0) m.c4010 = Constraint(expr= m.x1404 <= 0) m.c4011 = Constraint(expr= m.x1405 <= 0) m.c4012 = Constraint(expr= m.x1406 <= 0) m.c4013 = Constraint(expr= m.x1407 <= 0) m.c4014 = Constraint(expr= m.x1408 <= 0) m.c4015 = Constraint(expr= m.x1409 <= 0) m.c4016 = Constraint(expr= m.x1410 <= 0) m.c4017 = Constraint(expr= m.x1411 <= 0) m.c4018 = Constraint(expr= m.x1412 <= 0) m.c4019 = Constraint(expr= m.x1413 <= 0) m.c4020 = Constraint(expr= m.x1414 <= 0) m.c4021 = Constraint(expr= m.x1415 <= 0) m.c4022 = Constraint(expr= m.x1416 <= 0) m.c4023 = Constraint(expr= m.x1417 <= 0) m.c4024 = Constraint(expr= m.x1418 <= 0) m.c4025 = Constraint(expr= m.x1419 <= 0) m.c4026 = Constraint(expr= m.x1420 <= 0) m.c4027 = Constraint(expr= m.x1421 <= 0) m.c4028 = Constraint(expr= m.x1422 <= 0) m.c4029 = Constraint(expr= m.x1423 <= 0) m.c4030 = Constraint(expr= m.x1424 <= 0) m.c4031 = Constraint(expr= m.x1425 <= 0) m.c4032 = Constraint(expr= m.x1426 <= 0) m.c4033 = Constraint(expr= m.x1427 <= 0) m.c4034 = Constraint(expr= m.x1428 <= 0) m.c4035 = Constraint(expr= m.x1429 <= 0) m.c4036 = Constraint(expr= m.x1430 <= 0) m.c4037 = Constraint(expr= m.x1431 <= 0) m.c4038 = Constraint(expr= m.x1432 <= 0) m.c4039 = Constraint(expr= m.x1433 <= 0) m.c4040 = Constraint(expr= m.x1434 <= 0) m.c4041 = Constraint(expr= m.x1435 <= 0) m.c4042 = Constraint(expr= m.x1436 <= 0) m.c4043 = Constraint(expr= m.x1437 <= 0) m.c4044 = Constraint(expr= m.x1438 <= 0) m.c4045 = Constraint(expr= m.x1439 <= 0) m.c4046 = Constraint(expr= m.x1440 <= 0) m.c4047 = Constraint(expr= m.x1441 <= 0) m.c4048 = Constraint(expr= - m.x770 + 0.0231802*m.b2306 <= 0) m.c4049 = Constraint(expr= - m.x771 + 0.0231802*m.b2307 <= 0) m.c4050 = Constraint(expr= - m.x772 + 0.0231802*m.b2308 <= 0) m.c4051 = Constraint(expr= - m.x773 + 0.0231802*m.b2309 <= 0) m.c4052 = Constraint(expr= - m.x774 + 0.0231802*m.b2310 <= 0) m.c4053 = Constraint(expr= - m.x775 + 0.0231802*m.b2311 <= 0) m.c4054 = Constraint(expr= - m.x776 + 0.0231802*m.b2312 <= 0) m.c4055 = Constraint(expr= - m.x777 + 0.0231802*m.b2313 <= 0) m.c4056 = Constraint(expr= - m.x778 + 0.0231802*m.b2314 <= 0) m.c4057 = Constraint(expr= - m.x779 + 0.0231802*m.b2315 <= 0) m.c4058 = Constraint(expr= - m.x780 + 0.0231802*m.b2316 <= 0) m.c4059 = Constraint(expr= - m.x781 + 0.0231802*m.b2317 <= 0) m.c4060 = Constraint(expr= - m.x782 + 0.0231802*m.b2318 <= 0) m.c4061 = Constraint(expr= - m.x783 + 0.0231802*m.b2319 <= 0) m.c4062 = Constraint(expr= - m.x784 + 0.0231802*m.b2320 <= 0) m.c4063 = Constraint(expr= - m.x785 + 0.0231802*m.b2321 <= 0) m.c4064 = Constraint(expr= - m.x786 + 0.0231802*m.b2322 <= 0) m.c4065 = Constraint(expr= - m.x787 + 0.0231802*m.b2323 <= 0) m.c4066 = Constraint(expr= - m.x788 + 0.0231802*m.b2324 <= 0) m.c4067 = Constraint(expr= - m.x789 + 0.0231802*m.b2325 <= 0) m.c4068 = Constraint(expr= - m.x790 + 0.0231802*m.b2326 <= 0) m.c4069 = Constraint(expr= - m.x791 + 0.0231802*m.b2327 <= 0) m.c4070 = Constraint(expr= - m.x792 + 0.0231802*m.b2328 <= 0) m.c4071 = Constraint(expr= - m.x793 + 0.0231802*m.b2329 <= 0) m.c4072 = Constraint(expr= - m.x794 + 0.0231802*m.b2330 <= 0) m.c4073 = Constraint(expr= - m.x795 + 0.0231802*m.b2331 <= 0) m.c4074 = Constraint(expr= - m.x796 + 0.0231802*m.b2332 <= 0) m.c4075 = Constraint(expr= - m.x797 + 0.0231802*m.b2333 <= 0) m.c4076 = Constraint(expr= - m.x798 + 0.0231802*m.b2334 <= 0) m.c4077 = Constraint(expr= - m.x799 + 0.0231802*m.b2335 <= 0) m.c4078 = Constraint(expr= - m.x800 + 0.0231802*m.b2336 <= 0) m.c4079 = Constraint(expr= - m.x801 + 0.0231802*m.b2337 <= 0) m.c4080 = Constraint(expr= - m.x802 + 0.0231802*m.b2338 <= 0) m.c4081 = Constraint(expr= - m.x803 + 0.0231802*m.b2339 <= 0) m.c4082 = Constraint(expr= - m.x804 + 0.0231802*m.b2340 <= 0) m.c4083 = Constraint(expr= - m.x805 + 0.0231802*m.b2341 <= 0) m.c4084 = Constraint(expr= - m.x806 + 0.0231802*m.b2342 <= 0) m.c4085 = Constraint(expr= - m.x807 + 0.0231802*m.b2343 <= 0) m.c4086 = Constraint(expr= - m.x808 + 0.0231802*m.b2344 <= 0) m.c4087 = Constraint(expr= - m.x809 + 0.0231802*m.b2345 <= 0) m.c4088 = Constraint(expr= - m.x810 + 0.0231802*m.b2346 <= 0) m.c4089 = Constraint(expr= - m.x811 + 0.0231802*m.b2347 <= 0) m.c4090 = Constraint(expr= - m.x812 + 0.0231802*m.b2348 <= 0) m.c4091 = Constraint(expr= - m.x813 + 0.0231802*m.b2349 <= 0) m.c4092 = Constraint(expr= - m.x814 + 0.0231802*m.b2350 <= 0) m.c4093 = Constraint(expr= - m.x815 + 0.0231802*m.b2351 <= 0) m.c4094 = Constraint(expr= - m.x816 + 0.0231802*m.b2352 <= 0) m.c4095 = Constraint(expr= - m.x817 + 0.0231802*m.b2353 <= 0) m.c4096 = Constraint(expr= - m.x818 + 0.0231802*m.b2354 <= 0) m.c4097 = Constraint(expr= - m.x819 + 0.0231802*m.b2355 <= 0) m.c4098 = Constraint(expr= - m.x820 + 0.0231802*m.b2356 <= 0) m.c4099 = Constraint(expr= - m.x821 + 0.0231802*m.b2357 <= 0) m.c4100 = Constraint(expr= - m.x822 + 0.0231802*m.b2358 <= 0) m.c4101 = Constraint(expr= - m.x823 + 0.0231802*m.b2359 <= 0) m.c4102 = Constraint(expr= - m.x824 + 0.0231802*m.b2360 <= 0) m.c4103 = Constraint(expr= - m.x825 + 0.0231802*m.b2361 <= 0) m.c4104 = Constraint(expr= - m.x826 + 0.0231802*m.b2362 <= 0) m.c4105 = Constraint(expr= - m.x827 + 0.0231802*m.b2363 <= 0) m.c4106 = Constraint(expr= - m.x828 + 0.0231802*m.b2364 <= 0) m.c4107 = Constraint(expr= - m.x829 + 0.0231802*m.b2365 <= 0) m.c4108 = Constraint(expr= - m.x830 + 0.0231802*m.b2366 <= 0) m.c4109 = Constraint(expr= - m.x831 + 0.0231802*m.b2367 <= 0) m.c4110 = Constraint(expr= - m.x832 + 0.0231802*m.b2368 <= 0) m.c4111 = Constraint(expr= - m.x833 + 0.0231802*m.b2369 <= 0) m.c4112 = Constraint(expr= - m.x834 + 0.0231802*m.b2370 <= 0) m.c4113 = Constraint(expr= - m.x835 + 0.0231802*m.b2371 <= 0) m.c4114 = Constraint(expr= - m.x836 + 0.0231802*m.b2372 <= 0) m.c4115 = Constraint(expr= - m.x837 + 0.0231802*m.b2373 <= 0) m.c4116 = Constraint(expr= - m.x838 + 0.0231802*m.b2374 <= 0) m.c4117 = Constraint(expr= - m.x839 + 0.0231802*m.b2375 <= 0) m.c4118 = Constraint(expr= - m.x840 + 0.0231802*m.b2376 <= 0) m.c4119 = Constraint(expr= - m.x841 + 0.0231802*m.b2377 <= 0) m.c4120 = Constraint(expr= - m.x842 + 0.0231802*m.b2378 <= 0) m.c4121 = Constraint(expr= - m.x843 + 0.0231802*m.b2379 <= 0) m.c4122 = Constraint(expr= - m.x844 + 0.0231802*m.b2380 <= 0) m.c4123 = Constraint(expr= - m.x845 + 0.0231802*m.b2381 <= 0) m.c4124 = Constraint(expr= - m.x846 + 0.0231802*m.b2382 <= 0) m.c4125 = Constraint(expr= - m.x847 + 0.0231802*m.b2383 <= 0) m.c4126 = Constraint(expr= - m.x848 + 0.0231802*m.b2384 <= 0) m.c4127 = Constraint(expr= - m.x849 + 0.0231802*m.b2385 <= 0) m.c4128 = Constraint(expr= - m.x850 + 0.0231802*m.b2386 <= 0) m.c4129 = Constraint(expr= - m.x851 + 0.0231802*m.b2387 <= 0) m.c4130 = Constraint(expr= - m.x852 + 0.0231802*m.b2388 <= 0) m.c4131 = Constraint(expr= - m.x853 + 0.0231802*m.b2389 <= 0) m.c4132 = Constraint(expr= - m.x854 + 0.0231802*m.b2390 <= 0) m.c4133 = Constraint(expr= - m.x855 + 0.0231802*m.b2391 <= 0) m.c4134 = Constraint(expr= - m.x856 + 0.0231802*m.b2392 <= 0) m.c4135 = Constraint(expr= - m.x857 + 0.0231802*m.b2393 <= 0) m.c4136 = Constraint(expr= - m.x858 + 0.0231802*m.b2394 <= 0) m.c4137 = Constraint(expr= - m.x859 + 0.0231802*m.b2395 <= 0) m.c4138 = Constraint(expr= - m.x860 + 0.0231802*m.b2396 <= 0) m.c4139 = Constraint(expr= - m.x861 + 0.0231802*m.b2397 <= 0) m.c4140 = Constraint(expr= - m.x862 + 0.0231802*m.b2398 <= 0) m.c4141 = Constraint(expr= - m.x863 + 0.0231802*m.b2399 <= 0) m.c4142 = Constraint(expr= - m.x864 + 0.0231802*m.b2400 <= 0) m.c4143 = Constraint(expr= - m.x865 + 0.0231802*m.b2401 <= 0) m.c4144 = Constraint(expr= - m.x866 + 10.8589*m.b2210 <= 0) m.c4145 = Constraint(expr= - m.x867 + 10.83*m.b2211 <= 0) m.c4146 = Constraint(expr= - m.x868 + 10.8155*m.b2212 <= 0) m.c4147 = Constraint(expr= - m.x869 + 10.7866*m.b2213 <= 0) m.c4148 = Constraint(expr= - m.x870 + 10.7721*m.b2214 <= 0) m.c4149 = Constraint(expr= - m.x871 + 10.7576*m.b2215 <= 0) m.c4150 = Constraint(expr= - m.x872 + 10.7721*m.b2216 <= 0) m.c4151 = Constraint(expr= - m.x873 + 10.801*m.b2217 <= 0) m.c4152 = Constraint(expr= - m.x874 + 10.8734*m.b2218 <= 0) m.c4153 = Constraint(expr= - m.x875 + 11.018*m.b2219 <= 0) m.c4154 = Constraint(expr= - m.x876 + 11.2495*m.b2220 <= 0) m.c4155 = Constraint(expr= - m.x877 + 11.5099*m.b2221 <= 0) m.c4156 = Constraint(expr= - m.x878 + 11.8136*m.b2222 <= 0) m.c4157 = Constraint(expr= - m.x879 + 11.886*m.b2223 <= 0) m.c4158 = Constraint(expr= - m.x880 + 11.669*m.b2224 <= 0) m.c4159 = Constraint(expr= - m.x881 + 11.6111*m.b2225 <= 0) m.c4160 = Constraint(expr= - m.x882 + 11.4954*m.b2226 <= 0) m.c4161 = Constraint(expr= - m.x883 + 11.3073*m.b2227 <= 0) m.c4162 = Constraint(expr= - m.x884 + 11.1916*m.b2228 <= 0) m.c4163 = Constraint(expr= - m.x885 + 11.1337*m.b2229 <= 0) m.c4164 = Constraint(expr= - m.x886 + 11.0759*m.b2230 <= 0) m.c4165 = Constraint(expr= - m.x887 + 11.018*m.b2231 <= 0) m.c4166 = Constraint(expr= - m.x888 + 10.9746*m.b2232 <= 0) m.c4167 = Constraint(expr= - m.x889 + 10.9312*m.b2233 <= 0) m.c4168 = Constraint(expr= - m.x890 + 11.1482*m.b2234 <= 0) m.c4169 = Constraint(expr= - m.x891 + 11.2639*m.b2235 <= 0) m.c4170 = Constraint(expr= - m.x892 + 11.3941*m.b2236 <= 0) m.c4171 = Constraint(expr= - m.x893 + 11.5099*m.b2237 <= 0) m.c4172 = Constraint(expr= - m.x894 + 11.64*m.b2238 <= 0) m.c4173 = Constraint(expr= - m.x895 + 11.6256*m.b2239 <= 0) m.c4174 = Constraint(expr= - m.x896 + 11.64*m.b2240 <= 0) m.c4175 = Constraint(expr= - m.x897 + 11.8136*m.b2241 <= 0) m.c4176 = Constraint(expr= - m.x898 + 11.886*m.b2242 <= 0) m.c4177 = Constraint(expr= - m.x899 + 12.1753*m.b2243 <= 0) m.c4178 = Constraint(expr= - m.x900 + 12.2621*m.b2244 <= 0) m.c4179 = Constraint(expr= - m.x901 + 12.3778*m.b2245 <= 0) m.c4180 = Constraint(expr= - m.x902 + 12.6815*m.b2246 <= 0) m.c4181 = Constraint(expr= - m.x903 + 12.8985*m.b2247 <= 0) m.c4182 = Constraint(expr= - m.x904 + 12.8262*m.b2248 <= 0) m.c4183 = Constraint(expr= - m.x905 + 12.6237*m.b2249 <= 0) m.c4184 = Constraint(expr= - m.x906 + 12.508*m.b2250 <= 0) m.c4185 = Constraint(expr= - m.x907 + 12.1753*m.b2251 <= 0) m.c4186 = Constraint(expr= - m.x908 + 11.9149*m.b2252 <= 0) m.c4187 = Constraint(expr= - m.x909 + 11.857*m.b2253 <= 0) m.c4188 = Constraint(expr= - m.x910 + 11.6545*m.b2254 <= 0) m.c4189 = Constraint(expr= - m.x911 + 11.7413*m.b2255 <= 0) m.c4190 = Constraint(expr= - m.x912 + 11.6979*m.b2256 <= 0) m.c4191 = Constraint(expr= - m.x913 + 10.9312*m.b2257 <= 0) m.c4192 = Constraint(expr= - m.x914 + 10.8589*m.b2258 <= 0) m.c4193 = Constraint(expr= - m.x915 + 10.83*m.b2259 <= 0) m.c4194 = Constraint(expr= - m.x916 + 10.8155*m.b2260 <= 0) m.c4195 = Constraint(expr= - m.x917 + 10.7866*m.b2261 <= 0) m.c4196 = Constraint(expr= - m.x918 + 10.7721*m.b2262 <= 0) m.c4197 = Constraint(expr= - m.x919 + 10.7576*m.b2263 <= 0) m.c4198 = Constraint(expr= - m.x920 + 10.7721*m.b2264 <= 0) m.c4199 = Constraint(expr= - m.x921 + 10.801*m.b2265 <= 0) m.c4200 = Constraint(expr= - m.x922 + 10.8734*m.b2266 <= 0) m.c4201 = Constraint(expr= - m.x923 + 11.018*m.b2267 <= 0) m.c4202 = Constraint(expr= - m.x924 + 11.2495*m.b2268 <= 0) m.c4203 = Constraint(expr= - m.x925 + 11.5099*m.b2269 <= 0) m.c4204 = Constraint(expr= - m.x926 + 11.8136*m.b2270 <= 0) m.c4205 = Constraint(expr= - m.x927 + 11.886*m.b2271 <= 0) m.c4206 = Constraint(expr= - m.x928 + 11.669*m.b2272 <= 0) m.c4207 = Constraint(expr= - m.x929 + 11.6111*m.b2273 <= 0) m.c4208 = Constraint(expr= - m.x930 + 11.4954*m.b2274 <= 0) m.c4209 = Constraint(expr= - m.x931 + 11.3073*m.b2275 <= 0) m.c4210 = Constraint(expr= - m.x932 + 11.1916*m.b2276 <= 0) m.c4211 = Constraint(expr= - m.x933 + 11.1337*m.b2277 <= 0) m.c4212 = Constraint(expr= - m.x934 + 11.0759*m.b2278 <= 0) m.c4213 = Constraint(expr= - m.x935 + 11.018*m.b2279 <= 0) m.c4214 = Constraint(expr= - m.x936 + 10.9746*m.b2280 <= 0) m.c4215 = Constraint(expr= - m.x937 + 10.9312*m.b2281 <= 0) m.c4216 = Constraint(expr= - m.x938 + 11.1482*m.b2282 <= 0) m.c4217 = Constraint(expr= - m.x939 + 11.2639*m.b2283 <= 0) m.c4218 = Constraint(expr= - m.x940 + 11.3941*m.b2284 <= 0) m.c4219 = Constraint(expr= - m.x941 + 11.5099*m.b2285 <= 0) m.c4220 = Constraint(expr= - m.x942 + 11.64*m.b2286 <= 0) m.c4221 = Constraint(expr= - m.x943 + 11.6256*m.b2287 <= 0) m.c4222 = Constraint(expr= - m.x944 + 11.64*m.b2288 <= 0) m.c4223 = Constraint(expr= - m.x945 + 11.8136*m.b2289 <= 0) m.c4224 = Constraint(expr= - m.x946 + 11.886*m.b2290 <= 0) m.c4225 = Constraint(expr= - m.x947 + 12.1753*m.b2291 <= 0) m.c4226 = Constraint(expr= - m.x948 + 12.2621*m.b2292 <= 0) m.c4227 = Constraint(expr= - m.x949 + 12.3778*m.b2293 <= 0) m.c4228 = Constraint(expr= - m.x950 + 12.6815*m.b2294 <= 0) m.c4229 = Constraint(expr= - m.x951 + 12.8985*m.b2295 <= 0) m.c4230 = Constraint(expr= - m.x952 + 12.8262*m.b2296 <= 0) m.c4231 = Constraint(expr= - m.x953 + 12.6237*m.b2297 <= 0) m.c4232 = Constraint(expr= - m.x954 + 12.508*m.b2298 <= 0) m.c4233 = Constraint(expr= - m.x955 + 12.1753*m.b2299 <= 0) m.c4234 = Constraint(expr= - m.x956 + 11.9149*m.b2300 <= 0) m.c4235 = Constraint(expr= - m.x957 + 11.857*m.b2301 <= 0) m.c4236 = Constraint(expr= - m.x958 + 11.6545*m.b2302 <= 0) m.c4237 = Constraint(expr= - m.x959 + 11.7413*m.b2303 <= 0) m.c4238 = Constraint(expr= - m.x960 + 11.6979*m.b2304 <= 0) m.c4239 = Constraint(expr= - m.x961 + 10.9312*m.b2305 <= 0) m.c4240 = Constraint(expr= - m.x962 + 5.3342*m.b2018 <= 0) m.c4241 = Constraint(expr= - m.x963 + 5.33199*m.b2019 <= 0) m.c4242 = Constraint(expr= - m.x964 + 5.33088*m.b2020 <= 0) m.c4243 = Constraint(expr= - m.x965 + 5.32866*m.b2021 <= 0) m.c4244 = Constraint(expr= - m.x966 + 5.32755*m.b2022 <= 0) m.c4245 = Constraint(expr= - m.x967 + 5.32644*m.b2023 <= 0) m.c4246 = Constraint(expr= - m.x968 + 5.32755*m.b2024 <= 0) m.c4247 = Constraint(expr= - m.x969 + 5.32977*m.b2025 <= 0) m.c4248 = Constraint(expr= - m.x970 + 5.33531*m.b2026 <= 0) m.c4249 = Constraint(expr= - m.x971 + 5.34641*m.b2027 <= 0) m.c4250 = Constraint(expr= - m.x972 + 5.36416*m.b2028 <= 0) m.c4251 = Constraint(expr= - m.x973 + 5.38413*m.b2029 <= 0) m.c4252 = Constraint(expr= - m.x974 + 5.40742*m.b2030 <= 0) m.c4253 = Constraint(expr= - m.x975 + 5.41297*m.b2031 <= 0) m.c4254 = Constraint(expr= - m.x976 + 5.39633*m.b2032 <= 0) m.c4255 = Constraint(expr= - m.x977 + 5.39189*m.b2033 <= 0) m.c4256 = Constraint(expr= - m.x978 + 5.38302*m.b2034 <= 0) m.c4257 = Constraint(expr= - m.x979 + 5.36859*m.b2035 <= 0) m.c4258 = Constraint(expr= - m.x980 + 5.35972*m.b2036 <= 0) m.c4259 = Constraint(expr= - m.x981 + 5.35528*m.b2037 <= 0) m.c4260 = Constraint(expr= - m.x982 + 5.35084*m.b2038 <= 0) m.c4261 = Constraint(expr= - m.x983 + 5.34641*m.b2039 <= 0) m.c4262 = Constraint(expr= - m.x984 + 5.34308*m.b2040 <= 0) m.c4263 = Constraint(expr= - m.x985 + 5.33975*m.b2041 <= 0) m.c4264 = Constraint(expr= - m.x986 + 5.35639*m.b2042 <= 0) m.c4265 = Constraint(expr= - m.x987 + 5.36527*m.b2043 <= 0) m.c4266 = Constraint(expr= - m.x988 + 5.37525*m.b2044 <= 0) m.c4267 = Constraint(expr= - m.x989 + 5.38413*m.b2045 <= 0) m.c4268 = Constraint(expr= - m.x990 + 5.39411*m.b2046 <= 0) m.c4269 = Constraint(expr= - m.x991 + 5.393*m.b2047 <= 0) m.c4270 = Constraint(expr= - m.x992 + 5.39411*m.b2048 <= 0) m.c4271 = Constraint(expr= - m.x993 + 5.40742*m.b2049 <= 0) m.c4272 = Constraint(expr= - m.x994 + 5.41297*m.b2050 <= 0) m.c4273 = Constraint(expr= - m.x995 + 5.43516*m.b2051 <= 0) m.c4274 = Constraint(expr= - m.x996 + 5.44181*m.b2052 <= 0) m.c4275 = Constraint(expr= - m.x997 + 5.45069*m.b2053 <= 0) m.c4276 = Constraint(expr= - m.x998 + 5.47398*m.b2054 <= 0) m.c4277 = Constraint(expr= - m.x999 + 5.49063*m.b2055 <= 0) m.c4278 = Constraint(expr= - m.x1000 + 5.48508*m.b2056 <= 0) m.c4279 = Constraint(expr= - m.x1001 + 5.46955*m.b2057 <= 0) m.c4280 = Constraint(expr= - m.x1002 + 5.46067*m.b2058 <= 0) m.c4281 = Constraint(expr= - m.x1003 + 5.43516*m.b2059 <= 0) m.c4282 = Constraint(expr= - m.x1004 + 5.41519*m.b2060 <= 0) m.c4283 = Constraint(expr= - m.x1005 + 5.41075*m.b2061 <= 0) m.c4284 = Constraint(expr= - m.x1006 + 5.39522*m.b2062 <= 0) m.c4285 = Constraint(expr= - m.x1007 + 5.40188*m.b2063 <= 0) m.c4286 = Constraint(expr= - m.x1008 + 5.39855*m.b2064 <= 0) m.c4287 = Constraint(expr= - m.x1009 + 5.33975*m.b2065 <= 0) m.c4288 = Constraint(expr= - m.x1010 + 5.3342*m.b2066 <= 0) m.c4289 = Constraint(expr= - m.x1011 + 5.33199*m.b2067 <= 0) m.c4290 = Constraint(expr= - m.x1012 + 5.33088*m.b2068 <= 0) m.c4291 = Constraint(expr= - m.x1013 + 5.32866*m.b2069 <= 0) m.c4292 = Constraint(expr= - m.x1014 + 5.32755*m.b2070 <= 0) m.c4293 = Constraint(expr= - m.x1015 + 5.32644*m.b2071 <= 0) m.c4294 = Constraint(expr= - m.x1016 + 5.32755*m.b2072 <= 0) m.c4295 = Constraint(expr= - m.x1017 + 5.32977*m.b2073 <= 0) m.c4296 = Constraint(expr= - m.x1018 + 5.33531*m.b2074 <= 0) m.c4297 = Constraint(expr= - m.x1019 + 5.34641*m.b2075 <= 0) m.c4298 = Constraint(expr= - m.x1020 + 5.36416*m.b2076 <= 0) m.c4299 = Constraint(expr= - m.x1021 + 5.38413*m.b2077 <= 0) m.c4300 = Constraint(expr= - m.x1022 + 5.40742*m.b2078 <= 0) m.c4301 = Constraint(expr= - m.x1023 + 5.41297*m.b2079 <= 0) m.c4302 = Constraint(expr= - m.x1024 + 5.39633*m.b2080 <= 0) m.c4303 = Constraint(expr= - m.x1025 + 5.39189*m.b2081 <= 0) m.c4304 = Constraint(expr= - m.x1026 + 5.38302*m.b2082 <= 0) m.c4305 = Constraint(expr= - m.x1027 + 5.36859*m.b2083 <= 0) m.c4306 = Constraint(expr= - m.x1028 + 5.35972*m.b2084 <= 0) m.c4307 = Constraint(expr= - m.x1029 + 5.35528*m.b2085 <= 0) m.c4308 = Constraint(expr= - m.x1030 + 5.35084*m.b2086 <= 0) m.c4309 = Constraint(expr= - m.x1031 + 5.34641*m.b2087 <= 0) m.c4310 = Constraint(expr= - m.x1032 + 5.34308*m.b2088 <= 0) m.c4311 = Constraint(expr= - m.x1033 + 5.33975*m.b2089 <= 0) m.c4312 = Constraint(expr= - m.x1034 + 5.35639*m.b2090 <= 0) m.c4313 = Constraint(expr= - m.x1035 + 5.36527*m.b2091 <= 0) m.c4314 = Constraint(expr= - m.x1036 + 5.37525*m.b2092 <= 0) m.c4315 = Constraint(expr= - m.x1037 + 5.38413*m.b2093 <= 0) m.c4316 = Constraint(expr= - m.x1038 + 5.39411*m.b2094 <= 0) m.c4317 = Constraint(expr= - m.x1039 + 5.393*m.b2095 <= 0) m.c4318 = Constraint(expr= - m.x1040 + 5.39411*m.b2096 <= 0) m.c4319 = Constraint(expr= - m.x1041 + 5.40742*m.b2097 <= 0) m.c4320 = Constraint(expr= - m.x1042 + 5.41297*m.b2098 <= 0) m.c4321 = Constraint(expr= - m.x1043 + 5.43516*m.b2099 <= 0) m.c4322 = Constraint(expr= - m.x1044 + 5.44181*m.b2100 <= 0) m.c4323 = Constraint(expr= - m.x1045 + 5.45069*m.b2101 <= 0) m.c4324 = Constraint(expr= - m.x1046 + 5.47398*m.b2102 <= 0) m.c4325 = Constraint(expr= - m.x1047 + 5.49063*m.b2103 <= 0) m.c4326 = Constraint(expr= - m.x1048 + 5.48508*m.b2104 <= 0) m.c4327 = Constraint(expr= - m.x1049 + 5.46955*m.b2105 <= 0) m.c4328 = Constraint(expr= - m.x1050 + 5.46067*m.b2106 <= 0) m.c4329 = Constraint(expr= - m.x1051 + 5.43516*m.b2107 <= 0) m.c4330 = Constraint(expr= - m.x1052 + 5.41519*m.b2108 <= 0) m.c4331 = Constraint(expr= - m.x1053 + 5.41075*m.b2109 <= 0) m.c4332 = Constraint(expr= - m.x1054 + 5.39522*m.b2110 <= 0) m.c4333 = Constraint(expr= - m.x1055 + 5.40188*m.b2111 <= 0) m.c4334 = Constraint(expr= - m.x1056 + 5.39855*m.b2112 <= 0) m.c4335 = Constraint(expr= - m.x1057 + 5.33975*m.b2113 <= 0) m.c4336 = Constraint(expr= - m.x1058 + 5.3342*m.b2114 <= 0) m.c4337 = Constraint(expr= - m.x1059 + 5.33199*m.b2115 <= 0) m.c4338 = Constraint(expr= - m.x1060 + 5.33088*m.b2116 <= 0) m.c4339 = Constraint(expr= - m.x1061 + 5.32866*m.b2117 <= 0) m.c4340 = Constraint(expr= - m.x1062 + 5.32755*m.b2118 <= 0) m.c4341 = Constraint(expr= - m.x1063 + 5.32644*m.b2119 <= 0) m.c4342 = Constraint(expr= - m.x1064 + 5.32755*m.b2120 <= 0) m.c4343 = Constraint(expr= - m.x1065 + 5.32977*m.b2121 <= 0) m.c4344 = Constraint(expr= - m.x1066 + 5.33531*m.b2122 <= 0) m.c4345 = Constraint(expr= - m.x1067 + 5.34641*m.b2123 <= 0) m.c4346 = Constraint(expr= - m.x1068 + 5.36416*m.b2124 <= 0) m.c4347 = Constraint(expr= - m.x1069 + 5.38413*m.b2125 <= 0) m.c4348 = Constraint(expr= - m.x1070 + 5.40742*m.b2126 <= 0) m.c4349 = Constraint(expr= - m.x1071 + 5.41297*m.b2127 <= 0) m.c4350 = Constraint(expr= - m.x1072 + 5.39633*m.b2128 <= 0) m.c4351 = Constraint(expr= - m.x1073 + 5.39189*m.b2129 <= 0) m.c4352 = Constraint(expr= - m.x1074 + 5.38302*m.b2130 <= 0) m.c4353 = Constraint(expr= - m.x1075 + 5.36859*m.b2131 <= 0) m.c4354 = Constraint(expr= - m.x1076 + 5.35972*m.b2132 <= 0) m.c4355 = Constraint(expr= - m.x1077 + 5.35528*m.b2133 <= 0) m.c4356 = Constraint(expr= - m.x1078 + 5.35084*m.b2134 <= 0) m.c4357 = Constraint(expr= - m.x1079 + 5.34641*m.b2135 <= 0) m.c4358 = Constraint(expr= - m.x1080 + 5.34308*m.b2136 <= 0) m.c4359 = Constraint(expr= - m.x1081 + 5.33975*m.b2137 <= 0) m.c4360 = Constraint(expr= - m.x1082 + 5.35639*m.b2138 <= 0) m.c4361 = Constraint(expr= - m.x1083 + 5.36527*m.b2139 <= 0) m.c4362 = Constraint(expr= - m.x1084 + 5.37525*m.b2140 <= 0) m.c4363 = Constraint(expr= - m.x1085 + 5.38413*m.b2141 <= 0) m.c4364 = Constraint(expr= - m.x1086 + 5.39411*m.b2142 <= 0) m.c4365 = Constraint(expr= - m.x1087 + 5.393*m.b2143 <= 0) m.c4366 = Constraint(expr= - m.x1088 + 5.39411*m.b2144 <= 0) m.c4367 = Constraint(expr= - m.x1089 + 5.40742*m.b2145 <= 0) m.c4368 = Constraint(expr= - m.x1090 + 5.41297*m.b2146 <= 0) m.c4369 = Constraint(expr= - m.x1091 + 5.43516*m.b2147 <= 0) m.c4370 = Constraint(expr= - m.x1092 + 5.44181*m.b2148 <= 0) m.c4371 = Constraint(expr= - m.x1093 + 5.45069*m.b2149 <= 0) m.c4372 = Constraint(expr= - m.x1094 + 5.47398*m.b2150 <= 0) m.c4373 = Constraint(expr= - m.x1095 + 5.49063*m.b2151 <= 0) m.c4374 = Constraint(expr= - m.x1096 + 5.48508*m.b2152 <= 0) m.c4375 = Constraint(expr= - m.x1097 + 5.46955*m.b2153 <= 0) m.c4376 = Constraint(expr= - m.x1098 + 5.46067*m.b2154 <= 0) m.c4377 = Constraint(expr= - m.x1099 + 5.43516*m.b2155 <= 0) m.c4378 = Constraint(expr= - m.x1100 + 5.41519*m.b2156 <= 0) m.c4379 = Constraint(expr= - m.x1101 + 5.41075*m.b2157 <= 0) m.c4380 = Constraint(expr= - m.x1102 + 5.39522*m.b2158 <= 0) m.c4381 = Constraint(expr= - m.x1103 + 5.40188*m.b2159 <= 0) m.c4382 = Constraint(expr= - m.x1104 + 5.39855*m.b2160 <= 0) m.c4383 = Constraint(expr= - m.x1105 + 5.33975*m.b2161 <= 0) m.c4384 = Constraint(expr= - m.x1106 + 5.3342*m.b2162 <= 0) m.c4385 = Constraint(expr= - m.x1107 + 5.33199*m.b2163 <= 0) m.c4386 = Constraint(expr= - m.x1108 + 5.33088*m.b2164 <= 0) m.c4387 = Constraint(expr= - m.x1109 + 5.32866*m.b2165 <= 0) m.c4388 = Constraint(expr= - m.x1110 + 5.32755*m.b2166 <= 0) m.c4389 = Constraint(expr= - m.x1111 + 5.32644*m.b2167 <= 0) m.c4390 = Constraint(expr= - m.x1112 + 5.32755*m.b2168 <= 0) m.c4391 = Constraint(expr= - m.x1113 + 5.32977*m.b2169 <= 0) m.c4392 = Constraint(expr= - m.x1114 + 5.33531*m.b2170 <= 0) m.c4393 = Constraint(expr= - m.x1115 + 5.34641*m.b2171 <= 0) m.c4394 = Constraint(expr= - m.x1116 + 5.36416*m.b2172 <= 0) m.c4395 = Constraint(expr= - m.x1117 + 5.38413*m.b2173 <= 0) m.c4396 = Constraint(expr= - m.x1118 + 5.40742*m.b2174 <= 0) m.c4397 = Constraint(expr= - m.x1119 + 5.41297*m.b2175 <= 0) m.c4398 = Constraint(expr= - m.x1120 + 5.39633*m.b2176 <= 0) m.c4399 = Constraint(expr= - m.x1121 + 5.39189*m.b2177 <= 0) m.c4400 = Constraint(expr= - m.x1122 + 5.38302*m.b2178 <= 0) m.c4401 = Constraint(expr= - m.x1123 + 5.36859*m.b2179 <= 0) m.c4402 = Constraint(expr= - m.x1124 + 5.35972*m.b2180 <= 0) m.c4403 = Constraint(expr= - m.x1125 + 5.35528*m.b2181 <= 0) m.c4404 = Constraint(expr= - m.x1126 + 5.35084*m.b2182 <= 0) m.c4405 = Constraint(expr= - m.x1127 + 5.34641*m.b2183 <= 0) m.c4406 = Constraint(expr= - m.x1128 + 5.34308*m.b2184 <= 0) m.c4407 = Constraint(expr= - m.x1129 + 5.33975*m.b2185 <= 0) m.c4408 = Constraint(expr= - m.x1130 + 5.35639*m.b2186 <= 0) m.c4409 = Constraint(expr= - m.x1131 + 5.36527*m.b2187 <= 0) m.c4410 = Constraint(expr= - m.x1132 + 5.37525*m.b2188 <= 0) m.c4411 = Constraint(expr= - m.x1133 + 5.38413*m.b2189 <= 0) m.c4412 = Constraint(expr= - m.x1134 + 5.39411*m.b2190 <= 0) m.c4413 = Constraint(expr= - m.x1135 + 5.393*m.b2191 <= 0) m.c4414 = Constraint(expr= - m.x1136 + 5.39411*m.b2192 <= 0) m.c4415 = Constraint(expr= - m.x1137 + 5.40742*m.b2193 <= 0) m.c4416 = Constraint(expr= - m.x1138 + 5.41297*m.b2194 <= 0) m.c4417 = Constraint(expr= - m.x1139 + 5.43516*m.b2195 <= 0) m.c4418 = Constraint(expr= - m.x1140 + 5.44181*m.b2196 <= 0) m.c4419 = Constraint(expr= - m.x1141 + 5.45069*m.b2197 <= 0) m.c4420 = Constraint(expr= - m.x1142 + 5.47398*m.b2198 <= 0) m.c4421 = Constraint(expr= - m.x1143 + 5.49063*m.b2199 <= 0) m.c4422 = Constraint(expr= - m.x1144 + 5.48508*m.b2200 <= 0) m.c4423 = Constraint(expr= - m.x1145 + 5.46955*m.b2201 <= 0) m.c4424 = Constraint(expr= - m.x1146 + 5.46067*m.b2202 <= 0) m.c4425 = Constraint(expr= - m.x1147 + 5.43516*m.b2203 <= 0) m.c4426 = Constraint(expr= - m.x1148 + 5.41519*m.b2204 <= 0) m.c4427 = Constraint(expr= - m.x1149 + 5.41075*m.b2205 <= 0) m.c4428 = Constraint(expr= - m.x1150 + 5.39522*m.b2206 <= 0) m.c4429 = Constraint(expr= - m.x1151 + 5.40188*m.b2207 <= 0) m.c4430 = Constraint(expr= - m.x1152 + 5.39855*m.b2208 <= 0) m.c4431 = Constraint(expr= - m.x1153 + 5.33975*m.b2209 <= 0) m.c4432 = Constraint(expr= m.x770 - 27.932*m.b2306 <= 0) m.c4433 = Constraint(expr= m.x771 - 27.932*m.b2307 <= 0) m.c4434 = Constraint(expr= m.x772 - 27.932*m.b2308 <= 0) m.c4435 = Constraint(expr= m.x773 - 27.932*m.b2309 <= 0) m.c4436 = Constraint(expr= m.x774 - 27.932*m.b2310 <= 0) m.c4437 = Constraint(expr= m.x775 - 27.932*m.b2311 <= 0) m.c4438 = Constraint(expr= m.x776 - 27.932*m.b2312 <= 0) m.c4439 = Constraint(expr= m.x777 - 27.932*m.b2313 <= 0) m.c4440 = Constraint(expr= m.x778 - 27.932*m.b2314 <= 0) m.c4441 = Constraint(expr= m.x779 - 27.932*m.b2315 <= 0) m.c4442 = Constraint(expr= m.x780 - 27.932*m.b2316 <= 0) m.c4443 = Constraint(expr= m.x781 - 27.932*m.b2317 <= 0) m.c4444 = Constraint(expr= m.x782 - 27.932*m.b2318 <= 0) m.c4445 = Constraint(expr= m.x783 - 27.932*m.b2319 <= 0) m.c4446 = Constraint(expr= m.x784 - 27.932*m.b2320 <= 0) m.c4447 = Constraint(expr= m.x785 - 27.932*m.b2321 <= 0) m.c4448 = Constraint(expr= m.x786 - 27.932*m.b2322 <= 0) m.c4449 = Constraint(expr= m.x787 - 27.932*m.b2323 <= 0) m.c4450 = Constraint(expr= m.x788 - 27.932*m.b2324 <= 0) m.c4451 = Constraint(expr= m.x789 - 27.932*m.b2325 <= 0) m.c4452 = Constraint(expr= m.x790 - 27.932*m.b2326 <= 0) m.c4453 = Constraint(expr= m.x791 - 27.932*m.b2327 <= 0) m.c4454 = Constraint(expr= m.x792 - 27.932*m.b2328 <= 0) m.c4455 = Constraint(expr= m.x793 - 27.932*m.b2329 <= 0) m.c4456 = Constraint(expr= m.x794 - 27.932*m.b2330 <= 0) m.c4457 = Constraint(expr= m.x795 - 27.932*m.b2331 <= 0) m.c4458 = Constraint(expr= m.x796 - 27.932*m.b2332 <= 0) m.c4459 = Constraint(expr= m.x797 - 27.932*m.b2333 <= 0) m.c4460 = Constraint(expr= m.x798 - 27.932*m.b2334 <= 0) m.c4461 = Constraint(expr= m.x799 - 27.932*m.b2335 <= 0) m.c4462 = Constraint(expr= m.x800 - 27.932*m.b2336 <= 0) m.c4463 = Constraint(expr= m.x801 - 27.932*m.b2337 <= 0) m.c4464 = Constraint(expr= m.x802 - 27.932*m.b2338 <= 0) m.c4465 = Constraint(expr= m.x803 - 27.932*m.b2339 <= 0) m.c4466 = Constraint(expr= m.x804 - 27.932*m.b2340 <= 0) m.c4467 = Constraint(expr= m.x805 - 27.932*m.b2341 <= 0) m.c4468 = Constraint(expr= m.x806 - 27.932*m.b2342 <= 0) m.c4469 = Constraint(expr= m.x807 - 27.932*m.b2343 <= 0) m.c4470 = Constraint(expr= m.x808 - 27.932*m.b2344 <= 0) m.c4471 = Constraint(expr= m.x809 - 27.932*m.b2345 <= 0) m.c4472 = Constraint(expr= m.x810 - 27.932*m.b2346 <= 0) m.c4473 = Constraint(expr= m.x811 - 27.932*m.b2347 <= 0) m.c4474 = Constraint(expr= m.x812 - 27.932*m.b2348 <= 0) m.c4475 = Constraint(expr= m.x813 - 27.932*m.b2349 <= 0) m.c4476 = Constraint(expr= m.x814 - 27.932*m.b2350 <= 0) m.c4477 = Constraint(expr= m.x815 - 27.932*m.b2351 <= 0) m.c4478 = Constraint(expr= m.x816 - 27.932*m.b2352 <= 0) m.c4479 = Constraint(expr= m.x817 - 27.932*m.b2353 <= 0) m.c4480 = Constraint(expr= m.x818 - 27.932*m.b2354 <= 0) m.c4481 = Constraint(expr= m.x819 - 27.932*m.b2355 <= 0) m.c4482 = Constraint(expr= m.x820 - 27.932*m.b2356 <= 0) m.c4483 = Constraint(expr= m.x821 - 27.932*m.b2357 <= 0) m.c4484 = Constraint(expr= m.x822 - 27.932*m.b2358 <= 0) m.c4485 = Constraint(expr= m.x823 - 27.932*m.b2359 <= 0) m.c4486 = Constraint(expr= m.x824 - 27.932*m.b2360 <= 0) m.c4487 = Constraint(expr= m.x825 - 27.932*m.b2361 <= 0) m.c4488 = Constraint(expr= m.x826 - 27.932*m.b2362 <= 0) m.c4489 = Constraint(expr= m.x827 - 27.932*m.b2363 <= 0) m.c4490 = Constraint(expr= m.x828 - 27.932*m.b2364 <= 0) m.c4491 = Constraint(expr= m.x829 - 27.932*m.b2365 <= 0) m.c4492 = Constraint(expr= m.x830 - 27.932*m.b2366 <= 0) m.c4493 = Constraint(expr= m.x831 - 27.932*m.b2367 <= 0) m.c4494 = Constraint(expr= m.x832 - 27.932*m.b2368 <= 0) m.c4495 = Constraint(expr= m.x833 - 27.932*m.b2369 <= 0) m.c4496 = Constraint(expr= m.x834 - 27.932*m.b2370 <= 0) m.c4497 = Constraint(expr= m.x835 - 27.932*m.b2371 <= 0) m.c4498 = Constraint(expr= m.x836 - 27.932*m.b2372 <= 0) m.c4499 = Constraint(expr= m.x837 - 27.932*m.b2373 <= 0) m.c4500 = Constraint(expr= m.x838 - 27.932*m.b2374 <= 0) m.c4501 = Constraint(expr= m.x839 - 27.932*m.b2375 <= 0) m.c4502 = Constraint(expr= m.x840 - 27.932*m.b2376 <= 0) m.c4503 = Constraint(expr= m.x841 - 27.932*m.b2377 <= 0) m.c4504 = Constraint(expr= m.x842 - 27.932*m.b2378 <= 0) m.c4505 = Constraint(expr= m.x843 - 27.932*m.b2379 <= 0) m.c4506 = Constraint(expr= m.x844 - 27.932*m.b2380 <= 0) m.c4507 = Constraint(expr= m.x845 - 27.932*m.b2381 <= 0) m.c4508 = Constraint(expr= m.x846 - 27.932*m.b2382 <= 0) m.c4509 = Constraint(expr= m.x847 - 27.932*m.b2383 <= 0) m.c4510 = Constraint(expr= m.x848 - 27.932*m.b2384 <= 0) m.c4511 = Constraint(expr= m.x849 - 27.932*m.b2385 <= 0) m.c4512 = Constraint(expr= m.x850 - 27.932*m.b2386 <= 0) m.c4513 = Constraint(expr= m.x851 - 27.932*m.b2387 <= 0) m.c4514 = Constraint(expr= m.x852 - 27.932*m.b2388 <= 0) m.c4515 = Constraint(expr= m.x853 - 27.932*m.b2389 <= 0) m.c4516 = Constraint(expr= m.x854 - 27.932*m.b2390 <= 0) m.c4517 = Constraint(expr= m.x855 - 27.932*m.b2391 <= 0) m.c4518 = Constraint(expr= m.x856 - 27.932*m.b2392 <= 0) m.c4519 = Constraint(expr= m.x857 - 27.932*m.b2393 <= 0) m.c4520 = Constraint(expr= m.x858 - 27.932*m.b2394 <= 0) m.c4521 = Constraint(expr= m.x859 - 27.932*m.b2395 <= 0) m.c4522 = Constraint(expr= m.x860 - 27.932*m.b2396 <= 0) m.c4523 = Constraint(expr= m.x861 - 27.932*m.b2397 <= 0) m.c4524 = Constraint(expr= m.x862 - 27.932*m.b2398 <= 0) m.c4525 = Constraint(expr= m.x863 - 27.932*m.b2399 <= 0) m.c4526 = Constraint(expr= m.x864 - 27.932*m.b2400 <= 0) m.c4527 = Constraint(expr= m.x865 - 27.932*m.b2401 <= 0) m.c4528 = Constraint(expr= m.x866 - 20.4748*m.b2210 <= 0) m.c4529 = Constraint(expr= m.x867 - 20.4596*m.b2211 <= 0) m.c4530 = Constraint(expr= m.x868 - 20.4521*m.b2212 <= 0) m.c4531 = Constraint(expr= m.x869 - 20.4369*m.b2213 <= 0) m.c4532 = Constraint(expr= m.x870 - 20.4293*m.b2214 <= 0) m.c4533 = Constraint(expr= m.x871 - 20.4217*m.b2215 <= 0) m.c4534 = Constraint(expr= m.x872 - 20.4293*m.b2216 <= 0) m.c4535 = Constraint(expr= m.x873 - 20.4445*m.b2217 <= 0) m.c4536 = Constraint(expr= m.x874 - 20.4824*m.b2218 <= 0) m.c4537 = Constraint(expr= m.x875 - 20.5581*m.b2219 <= 0) m.c4538 = Constraint(expr= m.x876 - 20.6794*m.b2220 <= 0) m.c4539 = Constraint(expr= m.x877 - 20.8158*m.b2221 <= 0) m.c4540 = Constraint(expr= m.x878 - 20.975*m.b2222 <= 0) m.c4541 = Constraint(expr= m.x879 - 21.0128*m.b2223 <= 0) m.c4542 = Constraint(expr= m.x880 - 20.8992*m.b2224 <= 0) m.c4543 = Constraint(expr= m.x881 - 20.8689*m.b2225 <= 0) m.c4544 = Constraint(expr= m.x882 - 20.8082*m.b2226 <= 0) m.c4545 = Constraint(expr= m.x883 - 20.7097*m.b2227 <= 0) m.c4546 = Constraint(expr= m.x884 - 20.6491*m.b2228 <= 0) m.c4547 = Constraint(expr= m.x885 - 20.6188*m.b2229 <= 0) m.c4548 = Constraint(expr= m.x886 - 20.5885*m.b2230 <= 0) m.c4549 = Constraint(expr= m.x887 - 20.5581*m.b2231 <= 0) m.c4550 = Constraint(expr= m.x888 - 20.5354*m.b2232 <= 0) m.c4551 = Constraint(expr= m.x889 - 20.5127*m.b2233 <= 0) m.c4552 = Constraint(expr= m.x890 - 20.6264*m.b2234 <= 0) m.c4553 = Constraint(expr= m.x891 - 20.687*m.b2235 <= 0) m.c4554 = Constraint(expr= m.x892 - 20.7552*m.b2236 <= 0) m.c4555 = Constraint(expr= m.x893 - 20.8158*m.b2237 <= 0) m.c4556 = Constraint(expr= m.x894 - 20.884*m.b2238 <= 0) m.c4557 = Constraint(expr= m.x895 - 20.8764*m.b2239 <= 0) m.c4558 = Constraint(expr= m.x896 - 20.884*m.b2240 <= 0) m.c4559 = Constraint(expr= m.x897 - 20.975*m.b2241 <= 0) m.c4560 = Constraint(expr= m.x898 - 21.0128*m.b2242 <= 0) m.c4561 = Constraint(expr= m.x899 - 21.1644*m.b2243 <= 0) m.c4562 = Constraint(expr= m.x900 - 21.2099*m.b2244 <= 0) m.c4563 = Constraint(expr= m.x901 - 21.2705*m.b2245 <= 0) m.c4564 = Constraint(expr= m.x902 - 21.4297*m.b2246 <= 0) m.c4565 = Constraint(expr= m.x903 - 21.5433*m.b2247 <= 0) m.c4566 = Constraint(expr= m.x904 - 21.5054*m.b2248 <= 0) m.c4567 = Constraint(expr= m.x905 - 21.3993*m.b2249 <= 0) m.c4568 = Constraint(expr= m.x906 - 21.3387*m.b2250 <= 0) m.c4569 = Constraint(expr= m.x907 - 21.1644*m.b2251 <= 0) m.c4570 = Constraint(expr= m.x908 - 21.028*m.b2252 <= 0) m.c4571 = Constraint(expr= m.x909 - 20.9977*m.b2253 <= 0) m.c4572 = Constraint(expr= m.x910 - 20.8916*m.b2254 <= 0) m.c4573 = Constraint(expr= m.x911 - 20.9371*m.b2255 <= 0) m.c4574 = Constraint(expr= m.x912 - 20.9143*m.b2256 <= 0) m.c4575 = Constraint(expr= m.x913 - 20.5127*m.b2257 <= 0) m.c4576 = Constraint(expr= m.x914 - 20.4748*m.b2258 <= 0) m.c4577 = Constraint(expr= m.x915 - 20.4596*m.b2259 <= 0) m.c4578 = Constraint(expr= m.x916 - 20.4521*m.b2260 <= 0) m.c4579 = Constraint(expr= m.x917 - 20.4369*m.b2261 <= 0) m.c4580 = Constraint(expr= m.x918 - 20.4293*m.b2262 <= 0) m.c4581 = Constraint(expr= m.x919 - 20.4217*m.b2263 <= 0) m.c4582 = Constraint(expr= m.x920 - 20.4293*m.b2264 <= 0) m.c4583 = Constraint(expr= m.x921 - 20.4445*m.b2265 <= 0) m.c4584 = Constraint(expr= m.x922 - 20.4824*m.b2266 <= 0) m.c4585 = Constraint(expr= m.x923 - 20.5581*m.b2267 <= 0) m.c4586 = Constraint(expr= m.x924 - 20.6794*m.b2268 <= 0) m.c4587 = Constraint(expr= m.x925 - 20.8158*m.b2269 <= 0) m.c4588 = Constraint(expr= m.x926 - 20.975*m.b2270 <= 0) m.c4589 = Constraint(expr= m.x927 - 21.0128*m.b2271 <= 0) m.c4590 = Constraint(expr= m.x928 - 20.8992*m.b2272 <= 0) m.c4591 = Constraint(expr= m.x929 - 20.8689*m.b2273 <= 0) m.c4592 = Constraint(expr= m.x930 - 20.8082*m.b2274 <= 0) m.c4593 = Constraint(expr= m.x931 - 20.7097*m.b2275 <= 0) m.c4594 = Constraint(expr= m.x932 - 20.6491*m.b2276 <= 0) m.c4595 = Constraint(expr= m.x933 - 20.6188*m.b2277 <= 0) m.c4596 = Constraint(expr= m.x934 - 20.5885*m.b2278 <= 0) m.c4597 = Constraint(expr= m.x935 - 20.5581*m.b2279 <= 0) m.c4598 = Constraint(expr= m.x936 - 20.5354*m.b2280 <= 0) m.c4599 = Constraint(expr= m.x937 - 20.5127*m.b2281 <= 0) m.c4600 = Constraint(expr= m.x938 - 20.6264*m.b2282 <= 0) m.c4601 = Constraint(expr= m.x939 - 20.687*m.b2283 <= 0) m.c4602 = Constraint(expr= m.x940 - 20.7552*m.b2284 <= 0) m.c4603 = Constraint(expr= m.x941 - 20.8158*m.b2285 <= 0) m.c4604 = Constraint(expr= m.x942 - 20.884*m.b2286 <= 0) m.c4605 = Constraint(expr= m.x943 - 20.8764*m.b2287 <= 0) m.c4606 = Constraint(expr= m.x944 - 20.884*m.b2288 <= 0) m.c4607 = Constraint(expr= m.x945 - 20.975*m.b2289 <= 0) m.c4608 = Constraint(expr= m.x946 - 21.0128*m.b2290 <= 0) m.c4609 = Constraint(expr= m.x947 - 21.1644*m.b2291 <= 0) m.c4610 = Constraint(expr= m.x948 - 21.2099*m.b2292 <= 0) m.c4611 = Constraint(expr= m.x949 - 21.2705*m.b2293 <= 0) m.c4612 = Constraint(expr= m.x950 - 21.4297*m.b2294 <= 0) m.c4613 = Constraint(expr= m.x951 - 21.5433*m.b2295 <= 0) m.c4614 = Constraint(expr= m.x952 - 21.5054*m.b2296 <= 0) m.c4615 = Constraint(expr= m.x953 - 21.3993*m.b2297 <= 0) m.c4616 = Constraint(expr= m.x954 - 21.3387*m.b2298 <= 0) m.c4617 = Constraint(expr= m.x955 - 21.1644*m.b2299 <= 0) m.c4618 = Constraint(expr= m.x956 - 21.028*m.b2300 <= 0) m.c4619 = Constraint(expr= m.x957 - 20.9977*m.b2301 <= 0) m.c4620 = Constraint(expr= m.x958 - 20.8916*m.b2302 <= 0) m.c4621 = Constraint(expr= m.x959 - 20.9371*m.b2303 <= 0) m.c4622 = Constraint(expr= m.x960 - 20.9143*m.b2304 <= 0) m.c4623 = Constraint(expr= m.x961 - 20.5127*m.b2305 <= 0) m.c4624 = Constraint(expr= m.x962 - 9.12861*m.b2018 <= 0) m.c4625 = Constraint(expr= m.x963 - 9.12706*m.b2019 <= 0) m.c4626 = Constraint(expr= m.x964 - 9.12628*m.b2020 <= 0) m.c4627 = Constraint(expr= m.x965 - 9.12473*m.b2021 <= 0) m.c4628 = Constraint(expr= m.x966 - 9.12396*m.b2022 <= 0) m.c4629 = Constraint(expr= m.x967 - 9.12318*m.b2023 <= 0) m.c4630 = Constraint(expr= m.x968 - 9.12396*m.b2024 <= 0) m.c4631 = Constraint(expr= m.x969 - 9.12551*m.b2025 <= 0) m.c4632 = Constraint(expr= m.x970 - 9.12938*m.b2026 <= 0) m.c4633 = Constraint(expr= m.x971 - 9.13713*m.b2027 <= 0) m.c4634 = Constraint(expr= m.x972 - 9.14954*m.b2028 <= 0) m.c4635 = Constraint(expr= m.x973 - 9.16349*m.b2029 <= 0) m.c4636 = Constraint(expr= m.x974 - 9.17976*m.b2030 <= 0) m.c4637 = Constraint(expr= m.x975 - 9.18364*m.b2031 <= 0) m.c4638 = Constraint(expr= m.x976 - 9.17201*m.b2032 <= 0) m.c4639 = Constraint(expr= m.x977 - 9.16891*m.b2033 <= 0) m.c4640 = Constraint(expr= m.x978 - 9.16271*m.b2034 <= 0) m.c4641 = Constraint(expr= m.x979 - 9.15264*m.b2035 <= 0) m.c4642 = Constraint(expr= m.x980 - 9.14644*m.b2036 <= 0) m.c4643 = Constraint(expr= m.x981 - 9.14334*m.b2037 <= 0) m.c4644 = Constraint(expr= m.x982 - 9.14024*m.b2038 <= 0) m.c4645 = Constraint(expr= m.x983 - 9.13713*m.b2039 <= 0) m.c4646 = Constraint(expr= m.x984 - 9.13481*m.b2040 <= 0) m.c4647 = Constraint(expr= m.x985 - 9.13248*m.b2041 <= 0) m.c4648 = Constraint(expr= m.x986 - 9.14411*m.b2042 <= 0) m.c4649 = Constraint(expr= m.x987 - 9.15031*m.b2043 <= 0) m.c4650 = Constraint(expr= m.x988 - 9.15729*m.b2044 <= 0) m.c4651 = Constraint(expr= m.x989 - 9.16349*m.b2045 <= 0) m.c4652 = Constraint(expr= m.x990 - 9.17046*m.b2046 <= 0) m.c4653 = Constraint(expr= m.x991 - 9.16969*m.b2047 <= 0) m.c4654 = Constraint(expr= m.x992 - 9.17046*m.b2048 <= 0) m.c4655 = Constraint(expr= m.x993 - 9.17976*m.b2049 <= 0) m.c4656 = Constraint(expr= m.x994 - 9.18364*m.b2050 <= 0) m.c4657 = Constraint(expr= m.x995 - 9.19914*m.b2051 <= 0) m.c4658 = Constraint(expr= m.x996 - 9.20379*m.b2052 <= 0) m.c4659 = Constraint(expr= m.x997 - 9.20999*m.b2053 <= 0) m.c4660 = Constraint(expr= m.x998 - 9.22627*m.b2054 <= 0) m.c4661 = Constraint(expr= m.x999 - 9.2379*m.b2055 <= 0) m.c4662 = Constraint(expr= m.x1000 - 9.23402*m.b2056 <= 0) m.c4663 = Constraint(expr= m.x1001 - 9.22317*m.b2057 <= 0) m.c4664 = Constraint(expr= m.x1002 - 9.21697*m.b2058 <= 0) m.c4665 = Constraint(expr= m.x1003 - 9.19914*m.b2059 <= 0) m.c4666 = Constraint(expr= m.x1004 - 9.18519*m.b2060 <= 0) m.c4667 = Constraint(expr= m.x1005 - 9.18209*m.b2061 <= 0) m.c4668 = Constraint(expr= m.x1006 - 9.17124*m.b2062 <= 0) m.c4669 = Constraint(expr= m.x1007 - 9.17589*m.b2063 <= 0) m.c4670 = Constraint(expr= m.x1008 - 9.17356*m.b2064 <= 0) m.c4671 = Constraint(expr= m.x1009 - 9.13248*m.b2065 <= 0) m.c4672 = Constraint(expr= m.x1010 - 9.12861*m.b2066 <= 0) m.c4673 = Constraint(expr= m.x1011 - 9.12706*m.b2067 <= 0) m.c4674 = Constraint(expr= m.x1012 - 9.12628*m.b2068 <= 0) m.c4675 = Constraint(expr= m.x1013 - 9.12473*m.b2069 <= 0) m.c4676 = Constraint(expr= m.x1014 - 9.12396*m.b2070 <= 0) m.c4677 = Constraint(expr= m.x1015 - 9.12318*m.b2071 <= 0) m.c4678 = Constraint(expr= m.x1016 - 9.12396*m.b2072 <= 0) m.c4679 = Constraint(expr= m.x1017 - 9.12551*m.b2073 <= 0) m.c4680 = Constraint(expr= m.x1018 - 9.12938*m.b2074 <= 0) m.c4681 = Constraint(expr= m.x1019 - 9.13713*m.b2075 <= 0) m.c4682 = Constraint(expr= m.x1020 - 9.14954*m.b2076 <= 0) m.c4683 = Constraint(expr= m.x1021 - 9.16349*m.b2077 <= 0) m.c4684 = Constraint(expr= m.x1022 - 9.17976*m.b2078 <= 0) m.c4685 = Constraint(expr= m.x1023 - 9.18364*m.b2079 <= 0) m.c4686 = Constraint(expr= m.x1024 - 9.17201*m.b2080 <= 0) m.c4687 = Constraint(expr= m.x1025 - 9.16891*m.b2081 <= 0) m.c4688 = Constraint(expr= m.x1026 - 9.16271*m.b2082 <= 0) m.c4689 = Constraint(expr= m.x1027 - 9.15264*m.b2083 <= 0) m.c4690 = Constraint(expr= m.x1028 - 9.14644*m.b2084 <= 0) m.c4691 = Constraint(expr= m.x1029 - 9.14334*m.b2085 <= 0) m.c4692 = Constraint(expr= m.x1030 - 9.14024*m.b2086 <= 0) m.c4693 = Constraint(expr= m.x1031 - 9.13713*m.b2087 <= 0) m.c4694 = Constraint(expr= m.x1032 - 9.13481*m.b2088 <= 0) m.c4695 = Constraint(expr= m.x1033 - 9.13248*m.b2089 <= 0) m.c4696 = Constraint(expr= m.x1034 - 9.14411*m.b2090 <= 0) m.c4697 = Constraint(expr= m.x1035 - 9.15031*m.b2091 <= 0) m.c4698 = Constraint(expr= m.x1036 - 9.15729*m.b2092 <= 0) m.c4699 = Constraint(expr= m.x1037 - 9.16349*m.b2093 <= 0) m.c4700 = Constraint(expr= m.x1038 - 9.17046*m.b2094 <= 0) m.c4701 = Constraint(expr= m.x1039 - 9.16969*m.b2095 <= 0) m.c4702 = Constraint(expr= m.x1040 - 9.17046*m.b2096 <= 0) m.c4703 = Constraint(expr= m.x1041 - 9.17976*m.b2097 <= 0) m.c4704 = Constraint(expr= m.x1042 - 9.18364*m.b2098 <= 0) m.c4705 = Constraint(expr= m.x1043 - 9.19914*m.b2099 <= 0) m.c4706 = Constraint(expr= m.x1044 - 9.20379*m.b2100 <= 0) m.c4707 = Constraint(expr= m.x1045 - 9.20999*m.b2101 <= 0) m.c4708 = Constraint(expr= m.x1046 - 9.22627*m.b2102 <= 0) m.c4709 = Constraint(expr= m.x1047 - 9.2379*m.b2103 <= 0) m.c4710 = Constraint(expr= m.x1048 - 9.23402*m.b2104 <= 0) m.c4711 = Constraint(expr= m.x1049 - 9.22317*m.b2105 <= 0) m.c4712 = Constraint(expr= m.x1050 - 9.21697*m.b2106 <= 0) m.c4713 = Constraint(expr= m.x1051 - 9.19914*m.b2107 <= 0) m.c4714 = Constraint(expr= m.x1052 - 9.18519*m.b2108 <= 0) m.c4715 = Constraint(expr= m.x1053 - 9.18209*m.b2109 <= 0) m.c4716 = Constraint(expr= m.x1054 - 9.17124*m.b2110 <= 0) m.c4717 = Constraint(expr= m.x1055 - 9.17589*m.b2111 <= 0) m.c4718 = Constraint(expr= m.x1056 - 9.17356*m.b2112 <= 0) m.c4719 = Constraint(expr= m.x1057 - 9.13248*m.b2113 <= 0) m.c4720 = Constraint(expr= m.x1058 - 9.12861*m.b2114 <= 0) m.c4721 = Constraint(expr= m.x1059 - 9.12706*m.b2115 <= 0) m.c4722 = Constraint(expr= m.x1060 - 9.12628*m.b2116 <= 0) m.c4723 = Constraint(expr= m.x1061 - 9.12473*m.b2117 <= 0) m.c4724 = Constraint(expr= m.x1062 - 9.12396*m.b2118 <= 0) m.c4725 = Constraint(expr= m.x1063 - 9.12318*m.b2119 <= 0) m.c4726 = Constraint(expr= m.x1064 - 9.12396*m.b2120 <= 0) m.c4727 = Constraint(expr= m.x1065 - 9.12551*m.b2121 <= 0) m.c4728 = Constraint(expr= m.x1066 - 9.12938*m.b2122 <= 0) m.c4729 = Constraint(expr= m.x1067 - 9.13713*m.b2123 <= 0) m.c4730 = Constraint(expr= m.x1068 - 9.14954*m.b2124 <= 0) m.c4731 = Constraint(expr= m.x1069 - 9.16349*m.b2125 <= 0) m.c4732 = Constraint(expr= m.x1070 - 9.17976*m.b2126 <= 0) m.c4733 = Constraint(expr= m.x1071 - 9.18364*m.b2127 <= 0) m.c4734 = Constraint(expr= m.x1072 - 9.17201*m.b2128 <= 0) m.c4735 = Constraint(expr= m.x1073 - 9.16891*m.b2129 <= 0) m.c4736 = Constraint(expr= m.x1074 - 9.16271*m.b2130 <= 0) m.c4737 = Constraint(expr= m.x1075 - 9.15264*m.b2131 <= 0) m.c4738 = Constraint(expr= m.x1076 - 9.14644*m.b2132 <= 0) m.c4739 = Constraint(expr= m.x1077 - 9.14334*m.b2133 <= 0) m.c4740 = Constraint(expr= m.x1078 - 9.14024*m.b2134 <= 0) m.c4741 = Constraint(expr= m.x1079 - 9.13713*m.b2135 <= 0) m.c4742 = Constraint(expr= m.x1080 - 9.13481*m.b2136 <= 0) m.c4743 = Constraint(expr= m.x1081 - 9.13248*m.b2137 <= 0) m.c4744 = Constraint(expr= m.x1082 - 9.14411*m.b2138 <= 0) m.c4745 = Constraint(expr= m.x1083 - 9.15031*m.b2139 <= 0) m.c4746 = Constraint(expr= m.x1084 - 9.15729*m.b2140 <= 0) m.c4747 = Constraint(expr= m.x1085 - 9.16349*m.b2141 <= 0) m.c4748 = Constraint(expr= m.x1086 - 9.17046*m.b2142 <= 0) m.c4749 = Constraint(expr= m.x1087 - 9.16969*m.b2143 <= 0) m.c4750 = Constraint(expr= m.x1088 - 9.17046*m.b2144 <= 0) m.c4751 = Constraint(expr= m.x1089 - 9.17976*m.b2145 <= 0) m.c4752 = Constraint(expr= m.x1090 - 9.18364*m.b2146 <= 0) m.c4753 = Constraint(expr= m.x1091 - 9.19914*m.b2147 <= 0) m.c4754 = Constraint(expr= m.x1092 - 9.20379*m.b2148 <= 0) m.c4755 = Constraint(expr= m.x1093 - 9.20999*m.b2149 <= 0) m.c4756 = Constraint(expr= m.x1094 - 9.22627*m.b2150 <= 0) m.c4757 = Constraint(expr= m.x1095 - 9.2379*m.b2151 <= 0) m.c4758 = Constraint(expr= m.x1096 - 9.23402*m.b2152 <= 0) m.c4759 = Constraint(expr= m.x1097 - 9.22317*m.b2153 <= 0) m.c4760 = Constraint(expr= m.x1098 - 9.21697*m.b2154 <= 0) m.c4761 = Constraint(expr= m.x1099 - 9.19914*m.b2155 <= 0) m.c4762 = Constraint(expr= m.x1100 - 9.18519*m.b2156 <= 0) m.c4763 = Constraint(expr= m.x1101 - 9.18209*m.b2157 <= 0) m.c4764 = Constraint(expr= m.x1102 - 9.17124*m.b2158 <= 0) m.c4765 = Constraint(expr= m.x1103 - 9.17589*m.b2159 <= 0) m.c4766 = Constraint(expr= m.x1104 - 9.17356*m.b2160 <= 0) m.c4767 = Constraint(expr= m.x1105 - 9.13248*m.b2161 <= 0) m.c4768 = Constraint(expr= m.x1106 - 9.12861*m.b2162 <= 0) m.c4769 = Constraint(expr= m.x1107 - 9.12706*m.b2163 <= 0) m.c4770 = Constraint(expr= m.x1108 - 9.12628*m.b2164 <= 0) m.c4771 = Constraint(expr= m.x1109 - 9.12473*m.b2165 <= 0) m.c4772 = Constraint(expr= m.x1110 - 9.12396*m.b2166 <= 0) m.c4773 = Constraint(expr= m.x1111 - 9.12318*m.b2167 <= 0) m.c4774 = Constraint(expr= m.x1112 - 9.12396*m.b2168 <= 0) m.c4775 = Constraint(expr= m.x1113 - 9.12551*m.b2169 <= 0) m.c4776 = Constraint(expr= m.x1114 - 9.12938*m.b2170 <= 0) m.c4777 = Constraint(expr= m.x1115 - 9.13713*m.b2171 <= 0) m.c4778 = Constraint(expr= m.x1116 - 9.14954*m.b2172 <= 0) m.c4779 = Constraint(expr= m.x1117 - 9.16349*m.b2173 <= 0) m.c4780 = Constraint(expr= m.x1118 - 9.17976*m.b2174 <= 0) m.c4781 = Constraint(expr= m.x1119 - 9.18364*m.b2175 <= 0) m.c4782 = Constraint(expr= m.x1120 - 9.17201*m.b2176 <= 0) m.c4783 = Constraint(expr= m.x1121 - 9.16891*m.b2177 <= 0) m.c4784 = Constraint(expr= m.x1122 - 9.16271*m.b2178 <= 0) m.c4785 = Constraint(expr= m.x1123 - 9.15264*m.b2179 <= 0) m.c4786 = Constraint(expr= m.x1124 - 9.14644*m.b2180 <= 0) m.c4787 = Constraint(expr= m.x1125 - 9.14334*m.b2181 <= 0) m.c4788 = Constraint(expr= m.x1126 - 9.14024*m.b2182 <= 0) m.c4789 = Constraint(expr= m.x1127 - 9.13713*m.b2183 <= 0) m.c4790 = Constraint(expr= m.x1128 - 9.13481*m.b2184 <= 0) m.c4791 = Constraint(expr= m.x1129 - 9.13248*m.b2185 <= 0) m.c4792 = Constraint(expr= m.x1130 - 9.14411*m.b2186 <= 0) m.c4793 = Constraint(expr= m.x1131 - 9.15031*m.b2187 <= 0) m.c4794 = Constraint(expr= m.x1132 - 9.15729*m.b2188 <= 0) m.c4795 = Constraint(expr= m.x1133 - 9.16349*m.b2189 <= 0) m.c4796 = Constraint(expr= m.x1134 - 9.17046*m.b2190 <= 0) m.c4797 = Constraint(expr= m.x1135 - 9.16969*m.b2191 <= 0) m.c4798 = Constraint(expr= m.x1136 - 9.17046*m.b2192 <= 0) m.c4799 = Constraint(expr= m.x1137 - 9.17976*m.b2193 <= 0) m.c4800 = Constraint(expr= m.x1138 - 9.18364*m.b2194 <= 0) m.c4801 = Constraint(expr= m.x1139 - 9.19914*m.b2195 <= 0) m.c4802 = Constraint(expr= m.x1140 - 9.20379*m.b2196 <= 0) m.c4803 = Constraint(expr= m.x1141 - 9.20999*m.b2197 <= 0) m.c4804 = Constraint(expr= m.x1142 - 9.22627*m.b2198 <= 0) m.c4805 = Constraint(expr= m.x1143 - 9.2379*m.b2199 <= 0) m.c4806 = Constraint(expr= m.x1144 - 9.23402*m.b2200 <= 0) m.c4807 = Constraint(expr= m.x1145 - 9.22317*m.b2201 <= 0) m.c4808 = Constraint(expr= m.x1146 - 9.21697*m.b2202 <= 0) m.c4809 = Constraint(expr= m.x1147 - 9.19914*m.b2203 <= 0) m.c4810 = Constraint(expr= m.x1148 - 9.18519*m.b2204 <= 0) m.c4811 = Constraint(expr= m.x1149 - 9.18209*m.b2205 <= 0) m.c4812 = Constraint(expr= m.x1150 - 9.17124*m.b2206 <= 0) m.c4813 = Constraint(expr= m.x1151 - 9.17589*m.b2207 <= 0) m.c4814 = Constraint(expr= m.x1152 - 9.17356*m.b2208 <= 0) m.c4815 = Constraint(expr= m.x1153 - 9.13248*m.b2209 <= 0) m.c4816 = Constraint(expr= m.x1250 <= 0) m.c4817 = Constraint(expr= m.x1251 <= 0) m.c4818 = Constraint(expr= m.x1252 <= 0) m.c4819 = Constraint(expr= m.x1253 <= 0) m.c4820 = Constraint(expr= m.x1254 <= 0) m.c4821 = Constraint(expr= m.x1255 <= 0) m.c4822 = Constraint(expr= m.x1256 <= 0) m.c4823 = Constraint(expr= m.x1257 <= 0) m.c4824 = Constraint(expr= m.x1258 <= 0) m.c4825 = Constraint(expr= m.x1259 <= 0) m.c4826 = Constraint(expr= m.x1260 <= 0) m.c4827 = Constraint(expr= m.x1261 <= 0) m.c4828 = Constraint(expr= m.x1262 <= 0) m.c4829 = Constraint(expr= m.x1263 <= 0) m.c4830 = Constraint(expr= m.x1264 <= 0) m.c4831 = Constraint(expr= m.x1265 <= 0) m.c4832 = Constraint(expr= m.x1266 <= 0) m.c4833 = Constraint(expr= m.x1267 <= 0) m.c4834 = Constraint(expr= m.x1268 <= 0) m.c4835 = Constraint(expr= m.x1269 <= 0) m.c4836 = Constraint(expr= m.x1270 <= 0) m.c4837 = Constraint(expr= m.x1271 <= 0) m.c4838 = Constraint(expr= m.x1272 <= 0) m.c4839 = Constraint(expr= m.x1273 <= 0) m.c4840 = Constraint(expr= m.x1274 <= 0) m.c4841 = Constraint(expr= m.x1275 <= 0) m.c4842 = Constraint(expr= m.x1276 <= 0) m.c4843 = Constraint(expr= m.x1277 <= 0) m.c4844 = Constraint(expr= m.x1278 <= 0) m.c4845 = Constraint(expr= m.x1279 <= 0) m.c4846 = Constraint(expr= m.x1280 <= 0) m.c4847 = Constraint(expr= m.x1281 <= 0) m.c4848 = Constraint(expr= m.x1282 <= 0) m.c4849 = Constraint(expr= m.x1283 <= 0) m.c4850 = Constraint(expr= m.x1284 <= 0) m.c4851 = Constraint(expr= m.x1285 <= 0) m.c4852 = Constraint(expr= m.x1286 <= 0) m.c4853 = Constraint(expr= m.x1287 <= 0) m.c4854 = Constraint(expr= m.x1288 <= 0) m.c4855 = Constraint(expr= m.x1289 <= 0) m.c4856 = Constraint(expr= m.x1290 <= 0) m.c4857 = Constraint(expr= m.x1291 <= 0) m.c4858 = Constraint(expr= m.x1292 <= 0) m.c4859 = Constraint(expr= m.x1293 <= 0) m.c4860 = Constraint(expr= m.x1294 <= 0) m.c4861 = Constraint(expr= m.x1295 <= 0) m.c4862 = Constraint(expr= m.x1296 <= 0) m.c4863 = Constraint(expr= m.x1297 <= 0) m.c4864 = Constraint(expr= m.x1298 <= 0) m.c4865 = Constraint(expr= m.x1299 <= 0) m.c4866 = Constraint(expr= m.x1300 <= 0) m.c4867 = Constraint(expr= m.x1301 <= 0) m.c4868 = Constraint(expr= m.x1302 <= 0) m.c4869 = Constraint(expr= m.x1303 <= 0) m.c4870 = Constraint(expr= m.x1304 <= 0) m.c4871 = Constraint(expr= m.x1305 <= 0) m.c4872 = Constraint(expr= m.x1306 <= 0) m.c4873 = Constraint(expr= m.x1307 <= 0) m.c4874 = Constraint(expr= m.x1308 <= 0) m.c4875 = Constraint(expr= m.x1309 <= 0) m.c4876 = Constraint(expr= m.x1310 <= 0) m.c4877 = Constraint(expr= m.x1311 <= 0) m.c4878 = Constraint(expr= m.x1312 <= 0) m.c4879 = Constraint(expr= m.x1313 <= 0) m.c4880 = Constraint(expr= m.x1314 <= 0) m.c4881 = Constraint(expr= m.x1315 <= 0) m.c4882 = Constraint(expr= m.x1316 <= 0) m.c4883 = Constraint(expr= m.x1317 <= 0) m.c4884 = Constraint(expr= m.x1318 <= 0) m.c4885 = Constraint(expr= m.x1319 <= 0) m.c4886 = Constraint(expr= m.x1320 <= 0) m.c4887 = Constraint(expr= m.x1321 <= 0) m.c4888 = Constraint(expr= m.x1322 <= 0) m.c4889 = Constraint(expr= m.x1323 <= 0) m.c4890 = Constraint(expr= m.x1324 <= 0) m.c4891 = Constraint(expr= m.x1325 <= 0) m.c4892 = Constraint(expr= m.x1326 <= 0) m.c4893 = Constraint(expr= m.x1327 <= 0) m.c4894 = Constraint(expr= m.x1328 <= 0) m.c4895 = Constraint(expr= m.x1329 <= 0) m.c4896 = Constraint(expr= m.x1330 <= 0) m.c4897 = Constraint(expr= m.x1331 <= 0) m.c4898 = Constraint(expr= m.x1332 <= 0) m.c4899 = Constraint(expr= m.x1333 <= 0) m.c4900 = Constraint(expr= m.x1334 <= 0) m.c4901 = Constraint(expr= m.x1335 <= 0) m.c4902 = Constraint(expr= m.x1336 <= 0) m.c4903 = Constraint(expr= m.x1337 <= 0) m.c4904 = Constraint(expr= m.x1338 <= 0) m.c4905 = Constraint(expr= m.x1339 <= 0) m.c4906 = Constraint(expr= m.x1340 <= 0) m.c4907 = Constraint(expr= m.x1341 <= 0) m.c4908 = Constraint(expr= m.x1342 <= 0) m.c4909 = Constraint(expr= m.x1343 <= 0) m.c4910 = Constraint(expr= m.x1344 <= 0) m.c4911 = Constraint(expr= m.x1345 <= 0) m.c4912 = Constraint(expr= m.x1346 <= 0) m.c4913 = Constraint(expr= m.x1347 <= 0) m.c4914 = Constraint(expr= m.x1348 <= 0) m.c4915 = Constraint(expr= m.x1349 <= 0) m.c4916 = Constraint(expr= m.x1350 <= 0) m.c4917 = Constraint(expr= m.x1351 <= 0) m.c4918 = Constraint(expr= m.x1352 <= 0) m.c4919 = Constraint(expr= m.x1353 <= 0) m.c4920 = Constraint(expr= m.x1354 <= 0) m.c4921 = Constraint(expr= m.x1355 <= 0) m.c4922 = Constraint(expr= m.x1356 <= 0) m.c4923 = Constraint(expr= m.x1357 <= 0) m.c4924 = Constraint(expr= m.x1358 <= 0) m.c4925 = Constraint(expr= m.x1359 <= 0) m.c4926 = Constraint(expr= m.x1360 <= 0) m.c4927 = Constraint(expr= m.x1361 <= 0) m.c4928 = Constraint(expr= m.x1362 <= 0) m.c4929 = Constraint(expr= m.x1363 <= 0) m.c4930 = Constraint(expr= m.x1364 <= 0) m.c4931 = Constraint(expr= m.x1365 <= 0) m.c4932 = Constraint(expr= m.x1366 <= 0) m.c4933 = Constraint(expr= m.x1367 <= 0) m.c4934 = Constraint(expr= m.x1368 <= 0) m.c4935 = Constraint(expr= m.x1369 <= 0) m.c4936 = Constraint(expr= m.x1370 <= 0) m.c4937 = Constraint(expr= m.x1371 <= 0) m.c4938 = Constraint(expr= m.x1372 <= 0) m.c4939 = Constraint(expr= m.x1373 <= 0) m.c4940 = Constraint(expr= m.x1374 <= 0) m.c4941 = Constraint(expr= m.x1375 <= 0) m.c4942 = Constraint(expr= m.x1376 <= 0) m.c4943 = Constraint(expr= m.x1377 <= 0) m.c4944 = Constraint(expr= m.x1378 <= 0) m.c4945 = Constraint(expr= m.x1379 <= 0) m.c4946 = Constraint(expr= m.x1380 <= 0) m.c4947 = Constraint(expr= m.x1381 <= 0) m.c4948 = Constraint(expr= m.x1382 <= 0) m.c4949 = Constraint(expr= m.x1383 <= 0) m.c4950 = Constraint(expr= m.x1384 <= 0) m.c4951 = Constraint(expr= m.x1385 <= 0) m.c4952 = Constraint(expr= m.x1386 <= 0) m.c4953 = Constraint(expr= m.x1387 <= 0) m.c4954 = Constraint(expr= m.x1388 <= 0) m.c4955 = Constraint(expr= m.x1389 <= 0) m.c4956 = Constraint(expr= m.x1390 <= 0) m.c4957 = Constraint(expr= m.x1391 <= 0) m.c4958 = Constraint(expr= m.x1392 <= 0) m.c4959 = Constraint(expr= m.x1393 <= 0) m.c4960 = Constraint(expr= m.x1394 <= 0) m.c4961 = Constraint(expr= m.x1395 <= 0) m.c4962 = Constraint(expr= m.x1396 <= 0) m.c4963 = Constraint(expr= m.x1397 <= 0) m.c4964 = Constraint(expr= m.x1398 <= 0) m.c4965 = Constraint(expr= m.x1399 <= 0) m.c4966 = Constraint(expr= m.x1400 <= 0) m.c4967 = Constraint(expr= m.x1401 <= 0) m.c4968 = Constraint(expr= m.x1402 <= 0) m.c4969 = Constraint(expr= m.x1403 <= 0) m.c4970 = Constraint(expr= m.x1404 <= 0) m.c4971 = Constraint(expr= m.x1405 <= 0) m.c4972 = Constraint(expr= m.x1406 <= 0) m.c4973 = Constraint(expr= m.x1407 <= 0) m.c4974 = Constraint(expr= m.x1408 <= 0) m.c4975 = Constraint(expr= m.x1409 <= 0) m.c4976 = Constraint(expr= m.x1410 <= 0) m.c4977 = Constraint(expr= m.x1411 <= 0) m.c4978 = Constraint(expr= m.x1412 <= 0) m.c4979 = Constraint(expr= m.x1413 <= 0) m.c4980 = Constraint(expr= m.x1414 <= 0) m.c4981 = Constraint(expr= m.x1415 <= 0) m.c4982 = Constraint(expr= m.x1416 <= 0) m.c4983 = Constraint(expr= m.x1417 <= 0) m.c4984 = Constraint(expr= m.x1418 <= 0) m.c4985 = Constraint(expr= m.x1419 <= 0) m.c4986 = Constraint(expr= m.x1420 <= 0) m.c4987 = Constraint(expr= m.x1421 <= 0) m.c4988 = Constraint(expr= m.x1422 <= 0) m.c4989 = Constraint(expr= m.x1423 <= 0) m.c4990 = Constraint(expr= m.x1424 <= 0) m.c4991 = Constraint(expr= m.x1425 <= 0) m.c4992 = Constraint(expr= m.x1426 <= 0) m.c4993 = Constraint(expr= m.x1427 <= 0) m.c4994 = Constraint(expr= m.x1428 <= 0) m.c4995 = Constraint(expr= m.x1429 <= 0) m.c4996 = Constraint(expr= m.x1430 <= 0) m.c4997 = Constraint(expr= m.x1431 <= 0) m.c4998 = Constraint(expr= m.x1432 <= 0) m.c4999 = Constraint(expr= m.x1433 <= 0) m.c5000 = Constraint(expr= m.x1434 <= 0) m.c5001 = Constraint(expr= m.x1435 <= 0) m.c5002 = Constraint(expr= m.x1436 <= 0) m.c5003 = Constraint(expr= m.x1437 <= 0) m.c5004 = Constraint(expr= m.x1438 <= 0) m.c5005 = Constraint(expr= m.x1439 <= 0) m.c5006 = Constraint(expr= m.x1440 <= 0) m.c5007 = Constraint(expr= m.x1441 <= 0) m.c5008 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x194 - 0.00191656795755345*m.x194*m.x194)*m.b2018 + 0.0992753*m.x962 <= 0) m.c5009 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x195 - 0.00191656795755345*m.x195*m.x195)*m.b2019 + 0.0992753*m.x963 <= 0) m.c5010 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x196 - 0.00191656795755345*m.x196*m.x196)*m.b2020 + 0.0992753*m.x964 <= 0) m.c5011 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x197 - 0.00191656795755345*m.x197*m.x197)*m.b2021 + 0.0992753*m.x965 <= 0) m.c5012 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x198 - 0.00191656795755345*m.x198*m.x198)*m.b2022 + 0.0992753*m.x966 <= 0) m.c5013 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x199 - 0.00191656795755345*m.x199*m.x199)*m.b2023 + 0.0992753*m.x967 <= 0) m.c5014 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x200 - 0.00191656795755345*m.x200*m.x200)*m.b2024 + 0.0992753*m.x968 <= 0) m.c5015 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x201 - 0.00191656795755345*m.x201*m.x201)*m.b2025 + 0.0992753*m.x969 <= 0) m.c5016 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x202 - 0.00191656795755345*m.x202*m.x202)*m.b2026 + 0.0992753*m.x970 <= 0) m.c5017 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x203 - 0.00191656795755345*m.x203*m.x203)*m.b2027 + 0.0992753*m.x971 <= 0) m.c5018 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x204 - 0.00191656795755345*m.x204*m.x204)*m.b2028 + 0.0992753*m.x972 <= 0) m.c5019 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x205 - 0.00191656795755345*m.x205*m.x205)*m.b2029 + 0.0992753*m.x973 <= 0) m.c5020 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x206 - 0.00191656795755345*m.x206*m.x206)*m.b2030 + 0.0992753*m.x974 <= 0) m.c5021 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x207 - 0.00191656795755345*m.x207*m.x207)*m.b2031 + 0.0992753*m.x975 <= 0) m.c5022 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x208 - 0.00191656795755345*m.x208*m.x208)*m.b2032 + 0.0992753*m.x976 <= 0) m.c5023 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x209 - 0.00191656795755345*m.x209*m.x209)*m.b2033 + 0.0992753*m.x977 <= 0) m.c5024 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x210 - 0.00191656795755345*m.x210*m.x210)*m.b2034 + 0.0992753*m.x978 <= 0) m.c5025 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x211 - 0.00191656795755345*m.x211*m.x211)*m.b2035 + 0.0992753*m.x979 <= 0) m.c5026 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x212 - 0.00191656795755345*m.x212*m.x212)*m.b2036 + 0.0992753*m.x980 <= 0) m.c5027 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x213 - 0.00191656795755345*m.x213*m.x213)*m.b2037 + 0.0992753*m.x981 <= 0) m.c5028 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x214 - 0.00191656795755345*m.x214*m.x214)*m.b2038 + 0.0992753*m.x982 <= 0) m.c5029 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x215 - 0.00191656795755345*m.x215*m.x215)*m.b2039 + 0.0992753*m.x983 <= 0) m.c5030 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x216 - 0.00191656795755345*m.x216*m.x216)*m.b2040 + 0.0992753*m.x984 <= 0) m.c5031 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x217 - 0.00191656795755345*m.x217*m.x217)*m.b2041 + 0.0992753*m.x985 <= 0) m.c5032 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x218 - 0.00191656795755345*m.x218*m.x218)*m.b2042 + 0.0992753*m.x986 <= 0) m.c5033 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x219 - 0.00191656795755345*m.x219*m.x219)*m.b2043 + 0.0992753*m.x987 <= 0) m.c5034 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x220 - 0.00191656795755345*m.x220*m.x220)*m.b2044 + 0.0992753*m.x988 <= 0) m.c5035 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x221 - 0.00191656795755345*m.x221*m.x221)*m.b2045 + 0.0992753*m.x989 <= 0) m.c5036 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x222 - 0.00191656795755345*m.x222*m.x222)*m.b2046 + 0.0992753*m.x990 <= 0) m.c5037 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x223 - 0.00191656795755345*m.x223*m.x223)*m.b2047 + 0.0992753*m.x991 <= 0) m.c5038 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x224 - 0.00191656795755345*m.x224*m.x224)*m.b2048 + 0.0992753*m.x992 <= 0) m.c5039 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x225 - 0.00191656795755345*m.x225*m.x225)*m.b2049 + 0.0992753*m.x993 <= 0) m.c5040 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x226 - 0.00191656795755345*m.x226*m.x226)*m.b2050 + 0.0992753*m.x994 <= 0) m.c5041 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x227 - 0.00191656795755345*m.x227*m.x227)*m.b2051 + 0.0992753*m.x995 <= 0) m.c5042 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x228 - 0.00191656795755345*m.x228*m.x228)*m.b2052 + 0.0992753*m.x996 <= 0) m.c5043 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x229 - 0.00191656795755345*m.x229*m.x229)*m.b2053 + 0.0992753*m.x997 <= 0) m.c5044 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x230 - 0.00191656795755345*m.x230*m.x230)*m.b2054 + 0.0992753*m.x998 <= 0) m.c5045 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x231 - 0.00191656795755345*m.x231*m.x231)*m.b2055 + 0.0992753*m.x999 <= 0) m.c5046 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x232 - 0.00191656795755345*m.x232*m.x232)*m.b2056 + 0.0992753*m.x1000 <= 0) m.c5047 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x233 - 0.00191656795755345*m.x233*m.x233)*m.b2057 + 0.0992753*m.x1001 <= 0) m.c5048 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x234 - 0.00191656795755345*m.x234*m.x234)*m.b2058 + 0.0992753*m.x1002 <= 0) m.c5049 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x235 - 0.00191656795755345*m.x235*m.x235)*m.b2059 + 0.0992753*m.x1003 <= 0) m.c5050 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x236 - 0.00191656795755345*m.x236*m.x236)*m.b2060 + 0.0992753*m.x1004 <= 0) m.c5051 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x237 - 0.00191656795755345*m.x237*m.x237)*m.b2061 + 0.0992753*m.x1005 <= 0) m.c5052 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x238 - 0.00191656795755345*m.x238*m.x238)*m.b2062 + 0.0992753*m.x1006 <= 0) m.c5053 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x239 - 0.00191656795755345*m.x239*m.x239)*m.b2063 + 0.0992753*m.x1007 <= 0) m.c5054 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x240 - 0.00191656795755345*m.x240*m.x240)*m.b2064 + 0.0992753*m.x1008 <= 0) m.c5055 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x241 - 0.00191656795755345*m.x241*m.x241)*m.b2065 + 0.0992753*m.x1009 <= 0) m.c5056 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x242 - 0.00191656795755345*m.x242*m.x242)*m.b2066 + 0.0992753*m.x1010 <= 0) m.c5057 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x243 - 0.00191656795755345*m.x243*m.x243)*m.b2067 + 0.0992753*m.x1011 <= 0) m.c5058 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x244 - 0.00191656795755345*m.x244*m.x244)*m.b2068 + 0.0992753*m.x1012 <= 0) m.c5059 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x245 - 0.00191656795755345*m.x245*m.x245)*m.b2069 + 0.0992753*m.x1013 <= 0) m.c5060 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x246 - 0.00191656795755345*m.x246*m.x246)*m.b2070 + 0.0992753*m.x1014 <= 0) m.c5061 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x247 - 0.00191656795755345*m.x247*m.x247)*m.b2071 + 0.0992753*m.x1015 <= 0) m.c5062 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x248 - 0.00191656795755345*m.x248*m.x248)*m.b2072 + 0.0992753*m.x1016 <= 0) m.c5063 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x249 - 0.00191656795755345*m.x249*m.x249)*m.b2073 + 0.0992753*m.x1017 <= 0) m.c5064 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x250 - 0.00191656795755345*m.x250*m.x250)*m.b2074 + 0.0992753*m.x1018 <= 0) m.c5065 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x251 - 0.00191656795755345*m.x251*m.x251)*m.b2075 + 0.0992753*m.x1019 <= 0) m.c5066 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x252 - 0.00191656795755345*m.x252*m.x252)*m.b2076 + 0.0992753*m.x1020 <= 0) m.c5067 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x253 - 0.00191656795755345*m.x253*m.x253)*m.b2077 + 0.0992753*m.x1021 <= 0) m.c5068 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x254 - 0.00191656795755345*m.x254*m.x254)*m.b2078 + 0.0992753*m.x1022 <= 0) m.c5069 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x255 - 0.00191656795755345*m.x255*m.x255)*m.b2079 + 0.0992753*m.x1023 <= 0) m.c5070 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x256 - 0.00191656795755345*m.x256*m.x256)*m.b2080 + 0.0992753*m.x1024 <= 0) m.c5071 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x257 - 0.00191656795755345*m.x257*m.x257)*m.b2081 + 0.0992753*m.x1025 <= 0) m.c5072 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x258 - 0.00191656795755345*m.x258*m.x258)*m.b2082 + 0.0992753*m.x1026 <= 0) m.c5073 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x259 - 0.00191656795755345*m.x259*m.x259)*m.b2083 + 0.0992753*m.x1027 <= 0) m.c5074 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x260 - 0.00191656795755345*m.x260*m.x260)*m.b2084 + 0.0992753*m.x1028 <= 0) m.c5075 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x261 - 0.00191656795755345*m.x261*m.x261)*m.b2085 + 0.0992753*m.x1029 <= 0) m.c5076 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x262 - 0.00191656795755345*m.x262*m.x262)*m.b2086 + 0.0992753*m.x1030 <= 0) m.c5077 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x263 - 0.00191656795755345*m.x263*m.x263)*m.b2087 + 0.0992753*m.x1031 <= 0) m.c5078 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x264 - 0.00191656795755345*m.x264*m.x264)*m.b2088 + 0.0992753*m.x1032 <= 0) m.c5079 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x265 - 0.00191656795755345*m.x265*m.x265)*m.b2089 + 0.0992753*m.x1033 <= 0) m.c5080 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x266 - 0.00191656795755345*m.x266*m.x266)*m.b2090 + 0.0992753*m.x1034 <= 0) m.c5081 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x267 - 0.00191656795755345*m.x267*m.x267)*m.b2091 + 0.0992753*m.x1035 <= 0) m.c5082 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x268 - 0.00191656795755345*m.x268*m.x268)*m.b2092 + 0.0992753*m.x1036 <= 0) m.c5083 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x269 - 0.00191656795755345*m.x269*m.x269)*m.b2093 + 0.0992753*m.x1037 <= 0) m.c5084 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x270 - 0.00191656795755345*m.x270*m.x270)*m.b2094 + 0.0992753*m.x1038 <= 0) m.c5085 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x271 - 0.00191656795755345*m.x271*m.x271)*m.b2095 + 0.0992753*m.x1039 <= 0) m.c5086 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x272 - 0.00191656795755345*m.x272*m.x272)*m.b2096 + 0.0992753*m.x1040 <= 0) m.c5087 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x273 - 0.00191656795755345*m.x273*m.x273)*m.b2097 + 0.0992753*m.x1041 <= 0) m.c5088 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x274 - 0.00191656795755345*m.x274*m.x274)*m.b2098 + 0.0992753*m.x1042 <= 0) m.c5089 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x275 - 0.00191656795755345*m.x275*m.x275)*m.b2099 + 0.0992753*m.x1043 <= 0) m.c5090 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x276 - 0.00191656795755345*m.x276*m.x276)*m.b2100 + 0.0992753*m.x1044 <= 0) m.c5091 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x277 - 0.00191656795755345*m.x277*m.x277)*m.b2101 + 0.0992753*m.x1045 <= 0) m.c5092 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x278 - 0.00191656795755345*m.x278*m.x278)*m.b2102 + 0.0992753*m.x1046 <= 0) m.c5093 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x279 - 0.00191656795755345*m.x279*m.x279)*m.b2103 + 0.0992753*m.x1047 <= 0) m.c5094 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x280 - 0.00191656795755345*m.x280*m.x280)*m.b2104 + 0.0992753*m.x1048 <= 0) m.c5095 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x281 - 0.00191656795755345*m.x281*m.x281)*m.b2105 + 0.0992753*m.x1049 <= 0) m.c5096 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x282 - 0.00191656795755345*m.x282*m.x282)*m.b2106 + 0.0992753*m.x1050 <= 0) m.c5097 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x283 - 0.00191656795755345*m.x283*m.x283)*m.b2107 + 0.0992753*m.x1051 <= 0) m.c5098 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x284 - 0.00191656795755345*m.x284*m.x284)*m.b2108 + 0.0992753*m.x1052 <= 0) m.c5099 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x285 - 0.00191656795755345*m.x285*m.x285)*m.b2109 + 0.0992753*m.x1053 <= 0) m.c5100 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x286 - 0.00191656795755345*m.x286*m.x286)*m.b2110 + 0.0992753*m.x1054 <= 0) m.c5101 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x287 - 0.00191656795755345*m.x287*m.x287)*m.b2111 + 0.0992753*m.x1055 <= 0) m.c5102 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x288 - 0.00191656795755345*m.x288*m.x288)*m.b2112 + 0.0992753*m.x1056 <= 0) m.c5103 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x289 - 0.00191656795755345*m.x289*m.x289)*m.b2113 + 0.0992753*m.x1057 <= 0) m.c5104 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x290 - 0.00191656795755345*m.x290*m.x290)*m.b2114 + 0.0992753*m.x1058 <= 0) m.c5105 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x291 - 0.00191656795755345*m.x291*m.x291)*m.b2115 + 0.0992753*m.x1059 <= 0) m.c5106 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x292 - 0.00191656795755345*m.x292*m.x292)*m.b2116 + 0.0992753*m.x1060 <= 0) m.c5107 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x293 - 0.00191656795755345*m.x293*m.x293)*m.b2117 + 0.0992753*m.x1061 <= 0) m.c5108 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x294 - 0.00191656795755345*m.x294*m.x294)*m.b2118 + 0.0992753*m.x1062 <= 0) m.c5109 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x295 - 0.00191656795755345*m.x295*m.x295)*m.b2119 + 0.0992753*m.x1063 <= 0) m.c5110 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x296 - 0.00191656795755345*m.x296*m.x296)*m.b2120 + 0.0992753*m.x1064 <= 0) m.c5111 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x297 - 0.00191656795755345*m.x297*m.x297)*m.b2121 + 0.0992753*m.x1065 <= 0) m.c5112 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x298 - 0.00191656795755345*m.x298*m.x298)*m.b2122 + 0.0992753*m.x1066 <= 0) m.c5113 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x299 - 0.00191656795755345*m.x299*m.x299)*m.b2123 + 0.0992753*m.x1067 <= 0) m.c5114 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x300 - 0.00191656795755345*m.x300*m.x300)*m.b2124 + 0.0992753*m.x1068 <= 0) m.c5115 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x301 - 0.00191656795755345*m.x301*m.x301)*m.b2125 + 0.0992753*m.x1069 <= 0) m.c5116 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x302 - 0.00191656795755345*m.x302*m.x302)*m.b2126 + 0.0992753*m.x1070 <= 0) m.c5117 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x303 - 0.00191656795755345*m.x303*m.x303)*m.b2127 + 0.0992753*m.x1071 <= 0) m.c5118 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x304 - 0.00191656795755345*m.x304*m.x304)*m.b2128 + 0.0992753*m.x1072 <= 0) m.c5119 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x305 - 0.00191656795755345*m.x305*m.x305)*m.b2129 + 0.0992753*m.x1073 <= 0) m.c5120 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x306 - 0.00191656795755345*m.x306*m.x306)*m.b2130 + 0.0992753*m.x1074 <= 0) m.c5121 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x307 - 0.00191656795755345*m.x307*m.x307)*m.b2131 + 0.0992753*m.x1075 <= 0) m.c5122 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x308 - 0.00191656795755345*m.x308*m.x308)*m.b2132 + 0.0992753*m.x1076 <= 0) m.c5123 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x309 - 0.00191656795755345*m.x309*m.x309)*m.b2133 + 0.0992753*m.x1077 <= 0) m.c5124 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x310 - 0.00191656795755345*m.x310*m.x310)*m.b2134 + 0.0992753*m.x1078 <= 0) m.c5125 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x311 - 0.00191656795755345*m.x311*m.x311)*m.b2135 + 0.0992753*m.x1079 <= 0) m.c5126 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x312 - 0.00191656795755345*m.x312*m.x312)*m.b2136 + 0.0992753*m.x1080 <= 0) m.c5127 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x313 - 0.00191656795755345*m.x313*m.x313)*m.b2137 + 0.0992753*m.x1081 <= 0) m.c5128 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x314 - 0.00191656795755345*m.x314*m.x314)*m.b2138 + 0.0992753*m.x1082 <= 0) m.c5129 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x315 - 0.00191656795755345*m.x315*m.x315)*m.b2139 + 0.0992753*m.x1083 <= 0) m.c5130 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x316 - 0.00191656795755345*m.x316*m.x316)*m.b2140 + 0.0992753*m.x1084 <= 0) m.c5131 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x317 - 0.00191656795755345*m.x317*m.x317)*m.b2141 + 0.0992753*m.x1085 <= 0) m.c5132 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x318 - 0.00191656795755345*m.x318*m.x318)*m.b2142 + 0.0992753*m.x1086 <= 0) m.c5133 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x319 - 0.00191656795755345*m.x319*m.x319)*m.b2143 + 0.0992753*m.x1087 <= 0) m.c5134 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x320 - 0.00191656795755345*m.x320*m.x320)*m.b2144 + 0.0992753*m.x1088 <= 0) m.c5135 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x321 - 0.00191656795755345*m.x321*m.x321)*m.b2145 + 0.0992753*m.x1089 <= 0) m.c5136 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x322 - 0.00191656795755345*m.x322*m.x322)*m.b2146 + 0.0992753*m.x1090 <= 0) m.c5137 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x323 - 0.00191656795755345*m.x323*m.x323)*m.b2147 + 0.0992753*m.x1091 <= 0) m.c5138 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x324 - 0.00191656795755345*m.x324*m.x324)*m.b2148 + 0.0992753*m.x1092 <= 0) m.c5139 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x325 - 0.00191656795755345*m.x325*m.x325)*m.b2149 + 0.0992753*m.x1093 <= 0) m.c5140 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x326 - 0.00191656795755345*m.x326*m.x326)*m.b2150 + 0.0992753*m.x1094 <= 0) m.c5141 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x327 - 0.00191656795755345*m.x327*m.x327)*m.b2151 + 0.0992753*m.x1095 <= 0) m.c5142 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x328 - 0.00191656795755345*m.x328*m.x328)*m.b2152 + 0.0992753*m.x1096 <= 0) m.c5143 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x329 - 0.00191656795755345*m.x329*m.x329)*m.b2153 + 0.0992753*m.x1097 <= 0) m.c5144 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x330 - 0.00191656795755345*m.x330*m.x330)*m.b2154 + 0.0992753*m.x1098 <= 0) m.c5145 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x331 - 0.00191656795755345*m.x331*m.x331)*m.b2155 + 0.0992753*m.x1099 <= 0) m.c5146 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x332 - 0.00191656795755345*m.x332*m.x332)*m.b2156 + 0.0992753*m.x1100 <= 0) m.c5147 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x333 - 0.00191656795755345*m.x333*m.x333)*m.b2157 + 0.0992753*m.x1101 <= 0) m.c5148 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x334 - 0.00191656795755345*m.x334*m.x334)*m.b2158 + 0.0992753*m.x1102 <= 0) m.c5149 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x335 - 0.00191656795755345*m.x335*m.x335)*m.b2159 + 0.0992753*m.x1103 <= 0) m.c5150 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x336 - 0.00191656795755345*m.x336*m.x336)*m.b2160 + 0.0992753*m.x1104 <= 0) m.c5151 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x337 - 0.00191656795755345*m.x337*m.x337)*m.b2161 + 0.0992753*m.x1105 <= 0) m.c5152 = Constraint(expr=-(-0.1372 + 0.0913329646017699*m.x338 - 0.00191656795755345*m.x338*m.x338)*m.b2162 + 0.0992753*m.x1106 <= 0) m.c5153 = Constraint(expr=-(-0.13748 + 0.0913396017699115*m.x339 - 0.00191656795755345*m.x339*m.x339)*m.b2163 + 0.0992753*m.x1107 <= 0) m.c5154 = Constraint(expr=-(-0.13762 + 0.0913429203539823*m.x340 - 0.00191656795755345*m.x340*m.x340)*m.b2164 + 0.0992753*m.x1108 <= 0) m.c5155 = Constraint(expr=-(-0.1379 + 0.0913495575221239*m.x341 - 0.00191656795755345*m.x341*m.x341)*m.b2165 + 0.0992753*m.x1109 <= 0) m.c5156 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x342 - 0.00191656795755345*m.x342*m.x342)*m.b2166 + 0.0992753*m.x1110 <= 0) m.c5157 = Constraint(expr=-(-0.13818 + 0.0913561946902655*m.x343 - 0.00191656795755345*m.x343*m.x343)*m.b2167 + 0.0992753*m.x1111 <= 0) m.c5158 = Constraint(expr=-(-0.13804 + 0.0913528761061947*m.x344 - 0.00191656795755345*m.x344*m.x344)*m.b2168 + 0.0992753*m.x1112 <= 0) m.c5159 = Constraint(expr=-(-0.13776 + 0.0913462389380531*m.x345 - 0.00191656795755345*m.x345*m.x345)*m.b2169 + 0.0992753*m.x1113 <= 0) m.c5160 = Constraint(expr=-(-0.13706 + 0.0913296460176991*m.x346 - 0.00191656795755345*m.x346*m.x346)*m.b2170 + 0.0992753*m.x1114 <= 0) m.c5161 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x347 - 0.00191656795755345*m.x347*m.x347)*m.b2171 + 0.0992753*m.x1115 <= 0) m.c5162 = Constraint(expr=-(-0.13342 + 0.0912433628318584*m.x348 - 0.00191656795755345*m.x348*m.x348)*m.b2172 + 0.0992753*m.x1116 <= 0) m.c5163 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x349 - 0.00191656795755345*m.x349*m.x349)*m.b2173 + 0.0992753*m.x1117 <= 0) m.c5164 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x350 - 0.00191656795755345*m.x350*m.x350)*m.b2174 + 0.0992753*m.x1118 <= 0) m.c5165 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x351 - 0.00191656795755345*m.x351*m.x351)*m.b2175 + 0.0992753*m.x1119 <= 0) m.c5166 = Constraint(expr=-(-0.12936 + 0.0911471238938053*m.x352 - 0.00191656795755345*m.x352*m.x352)*m.b2176 + 0.0992753*m.x1120 <= 0) m.c5167 = Constraint(expr=-(-0.12992 + 0.0911603982300885*m.x353 - 0.00191656795755345*m.x353*m.x353)*m.b2177 + 0.0992753*m.x1121 <= 0) m.c5168 = Constraint(expr=-(-0.13104 + 0.0911869469026549*m.x354 - 0.00191656795755345*m.x354*m.x354)*m.b2178 + 0.0992753*m.x1122 <= 0) m.c5169 = Constraint(expr=-(-0.13286 + 0.0912300884955752*m.x355 - 0.00191656795755345*m.x355*m.x355)*m.b2179 + 0.0992753*m.x1123 <= 0) m.c5170 = Constraint(expr=-(-0.13398 + 0.0912566371681416*m.x356 - 0.00191656795755345*m.x356*m.x356)*m.b2180 + 0.0992753*m.x1124 <= 0) m.c5171 = Constraint(expr=-(-0.13454 + 0.0912699115044248*m.x357 - 0.00191656795755345*m.x357*m.x357)*m.b2181 + 0.0992753*m.x1125 <= 0) m.c5172 = Constraint(expr=-(-0.1351 + 0.091283185840708*m.x358 - 0.00191656795755345*m.x358*m.x358)*m.b2182 + 0.0992753*m.x1126 <= 0) m.c5173 = Constraint(expr=-(-0.13566 + 0.0912964601769911*m.x359 - 0.00191656795755345*m.x359*m.x359)*m.b2183 + 0.0992753*m.x1127 <= 0) m.c5174 = Constraint(expr=-(-0.13608 + 0.0913064159292035*m.x360 - 0.00191656795755345*m.x360*m.x360)*m.b2184 + 0.0992753*m.x1128 <= 0) m.c5175 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x361 - 0.00191656795755345*m.x361*m.x361)*m.b2185 + 0.0992753*m.x1129 <= 0) m.c5176 = Constraint(expr=-(-0.1344 + 0.091266592920354*m.x362 - 0.00191656795755345*m.x362*m.x362)*m.b2186 + 0.0992753*m.x1130 <= 0) m.c5177 = Constraint(expr=-(-0.13328 + 0.0912400442477876*m.x363 - 0.00191656795755345*m.x363*m.x363)*m.b2187 + 0.0992753*m.x1131 <= 0) m.c5178 = Constraint(expr=-(-0.13202 + 0.0912101769911504*m.x364 - 0.00191656795755345*m.x364*m.x364)*m.b2188 + 0.0992753*m.x1132 <= 0) m.c5179 = Constraint(expr=-(-0.1309 + 0.0911836283185841*m.x365 - 0.00191656795755345*m.x365*m.x365)*m.b2189 + 0.0992753*m.x1133 <= 0) m.c5180 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x366 - 0.00191656795755345*m.x366*m.x366)*m.b2190 + 0.0992753*m.x1134 <= 0) m.c5181 = Constraint(expr=-(-0.12978 + 0.0911570796460177*m.x367 - 0.00191656795755345*m.x367*m.x367)*m.b2191 + 0.0992753*m.x1135 <= 0) m.c5182 = Constraint(expr=-(-0.12964 + 0.0911537610619469*m.x368 - 0.00191656795755345*m.x368*m.x368)*m.b2192 + 0.0992753*m.x1136 <= 0) m.c5183 = Constraint(expr=-(-0.12796 + 0.0911139380530973*m.x369 - 0.00191656795755345*m.x369*m.x369)*m.b2193 + 0.0992753*m.x1137 <= 0) m.c5184 = Constraint(expr=-(-0.12726 + 0.0910973451327434*m.x370 - 0.00191656795755345*m.x370*m.x370)*m.b2194 + 0.0992753*m.x1138 <= 0) m.c5185 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x371 - 0.00191656795755345*m.x371*m.x371)*m.b2195 + 0.0992753*m.x1139 <= 0) m.c5186 = Constraint(expr=-(-0.12362 + 0.0910110619469026*m.x372 - 0.00191656795755345*m.x372*m.x372)*m.b2196 + 0.0992753*m.x1140 <= 0) m.c5187 = Constraint(expr=-(-0.1225 + 0.0909845132743363*m.x373 - 0.00191656795755345*m.x373*m.x373)*m.b2197 + 0.0992753*m.x1141 <= 0) m.c5188 = Constraint(expr=-(-0.11956 + 0.0909148230088496*m.x374 - 0.00191656795755345*m.x374*m.x374)*m.b2198 + 0.0992753*m.x1142 <= 0) m.c5189 = Constraint(expr=-(-0.11746 + 0.0908650442477876*m.x375 - 0.00191656795755345*m.x375*m.x375)*m.b2199 + 0.0992753*m.x1143 <= 0) m.c5190 = Constraint(expr=-(-0.11816 + 0.0908816371681416*m.x376 - 0.00191656795755345*m.x376*m.x376)*m.b2200 + 0.0992753*m.x1144 <= 0) m.c5191 = Constraint(expr=-(-0.12012 + 0.0909280973451327*m.x377 - 0.00191656795755345*m.x377*m.x377)*m.b2201 + 0.0992753*m.x1145 <= 0) m.c5192 = Constraint(expr=-(-0.12124 + 0.0909546460176991*m.x378 - 0.00191656795755345*m.x378*m.x378)*m.b2202 + 0.0992753*m.x1146 <= 0) m.c5193 = Constraint(expr=-(-0.12446 + 0.0910309734513274*m.x379 - 0.00191656795755345*m.x379*m.x379)*m.b2203 + 0.0992753*m.x1147 <= 0) m.c5194 = Constraint(expr=-(-0.12698 + 0.0910907079646018*m.x380 - 0.00191656795755345*m.x380*m.x380)*m.b2204 + 0.0992753*m.x1148 <= 0) m.c5195 = Constraint(expr=-(-0.12754 + 0.0911039823008849*m.x381 - 0.00191656795755345*m.x381*m.x381)*m.b2205 + 0.0992753*m.x1149 <= 0) m.c5196 = Constraint(expr=-(-0.1295 + 0.0911504424778761*m.x382 - 0.00191656795755345*m.x382*m.x382)*m.b2206 + 0.0992753*m.x1150 <= 0) m.c5197 = Constraint(expr=-(-0.12866 + 0.0911305309734513*m.x383 - 0.00191656795755345*m.x383*m.x383)*m.b2207 + 0.0992753*m.x1151 <= 0) m.c5198 = Constraint(expr=-(-0.12908 + 0.0911404867256637*m.x384 - 0.00191656795755345*m.x384*m.x384)*m.b2208 + 0.0992753*m.x1152 <= 0) m.c5199 = Constraint(expr=-(-0.1365 + 0.0913163716814159*m.x385 - 0.00191656795755345*m.x385*m.x385)*m.b2209 + 0.0992753*m.x1153 <= 0) m.c5200 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x194*m.x194 + 0.0405088495575221*m.x194)*m.b2018 + 0.183453*m.x578 <= 0) m.c5201 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x195*m.x195 + 0.0404933628318584*m.x195)*m.b2019 + 0.183453*m.x579 <= 0) m.c5202 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x196*m.x196 + 0.0404856194690265*m.x196)*m.b2020 + 0.183453*m.x580 <= 0) m.c5203 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x197*m.x197 + 0.0404701327433628*m.x197)*m.b2021 + 0.183453*m.x581 <= 0) m.c5204 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x198*m.x198 + 0.040462389380531*m.x198)*m.b2022 + 0.183453*m.x582 <= 0) m.c5205 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x199*m.x199 + 0.0404546460176991*m.x199)*m.b2023 + 0.183453*m.x583 <= 0) m.c5206 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x200*m.x200 + 0.040462389380531*m.x200)*m.b2024 + 0.183453*m.x584 <= 0) m.c5207 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x201*m.x201 + 0.0404778761061947*m.x201)*m.b2025 + 0.183453*m.x585 <= 0) m.c5208 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x202*m.x202 + 0.040516592920354*m.x202)*m.b2026 + 0.183453*m.x586 <= 0) m.c5209 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x203*m.x203 + 0.0405940265486726*m.x203)*m.b2027 + 0.183453*m.x587 <= 0) m.c5210 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x204*m.x204 + 0.0407179203539823*m.x204)*m.b2028 + 0.183453*m.x588 <= 0) m.c5211 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x205*m.x205 + 0.0408573008849558*m.x205)*m.b2029 + 0.183453*m.x589 <= 0) m.c5212 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x206*m.x206 + 0.0410199115044248*m.x206)*m.b2030 + 0.183453*m.x590 <= 0) m.c5213 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x207*m.x207 + 0.0410586283185841*m.x207)*m.b2031 + 0.183453*m.x591 <= 0) m.c5214 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x208*m.x208 + 0.0409424778761062*m.x208)*m.b2032 + 0.183453*m.x592 <= 0) m.c5215 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x209*m.x209 + 0.0409115044247788*m.x209)*m.b2033 + 0.183453*m.x593 <= 0) m.c5216 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x210*m.x210 + 0.0408495575221239*m.x210)*m.b2034 + 0.183453*m.x594 <= 0) m.c5217 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x211*m.x211 + 0.0407488938053097*m.x211)*m.b2035 + 0.183453*m.x595 <= 0) m.c5218 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x212*m.x212 + 0.0406869469026549*m.x212)*m.b2036 + 0.183453*m.x596 <= 0) m.c5219 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x213*m.x213 + 0.0406559734513274*m.x213)*m.b2037 + 0.183453*m.x597 <= 0) m.c5220 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x214*m.x214 + 0.040625*m.x214)*m.b2038 + 0.183453*m.x598 <= 0) m.c5221 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x215*m.x215 + 0.0405940265486726*m.x215)*m.b2039 + 0.183453*m.x599 <= 0) m.c5222 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x216*m.x216 + 0.040570796460177*m.x216)*m.b2040 + 0.183453*m.x600 <= 0) m.c5223 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x217*m.x217 + 0.0405475663716814*m.x217)*m.b2041 + 0.183453*m.x601 <= 0) m.c5224 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x218*m.x218 + 0.0406637168141593*m.x218)*m.b2042 + 0.183453*m.x602 <= 0) m.c5225 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x219*m.x219 + 0.0407256637168142*m.x219)*m.b2043 + 0.183453*m.x603 <= 0) m.c5226 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x220*m.x220 + 0.0407953539823009*m.x220)*m.b2044 + 0.183453*m.x604 <= 0) m.c5227 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x221*m.x221 + 0.0408573008849558*m.x221)*m.b2045 + 0.183453*m.x605 <= 0) m.c5228 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x222*m.x222 + 0.0409269911504425*m.x222)*m.b2046 + 0.183453*m.x606 <= 0) m.c5229 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x223*m.x223 + 0.0409192477876106*m.x223)*m.b2047 + 0.183453*m.x607 <= 0) m.c5230 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x224*m.x224 + 0.0409269911504425*m.x224)*m.b2048 + 0.183453*m.x608 <= 0) m.c5231 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x225*m.x225 + 0.0410199115044248*m.x225)*m.b2049 + 0.183453*m.x609 <= 0) m.c5232 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x226*m.x226 + 0.0410586283185841*m.x226)*m.b2050 + 0.183453*m.x610 <= 0) m.c5233 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x227*m.x227 + 0.0412134955752212*m.x227)*m.b2051 + 0.183453*m.x611 <= 0) m.c5234 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x228*m.x228 + 0.0412599557522124*m.x228)*m.b2052 + 0.183453*m.x612 <= 0) m.c5235 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x229*m.x229 + 0.0413219026548673*m.x229)*m.b2053 + 0.183453*m.x613 <= 0) m.c5236 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x230*m.x230 + 0.0414845132743363*m.x230)*m.b2054 + 0.183453*m.x614 <= 0) m.c5237 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x231*m.x231 + 0.0416006637168142*m.x231)*m.b2055 + 0.183453*m.x615 <= 0) m.c5238 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x232*m.x232 + 0.0415619469026549*m.x232)*m.b2056 + 0.183453*m.x616 <= 0) m.c5239 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x233*m.x233 + 0.0414535398230089*m.x233)*m.b2057 + 0.183453*m.x617 <= 0) m.c5240 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x234*m.x234 + 0.041391592920354*m.x234)*m.b2058 + 0.183453*m.x618 <= 0) m.c5241 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x235*m.x235 + 0.0412134955752212*m.x235)*m.b2059 + 0.183453*m.x619 <= 0) m.c5242 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x236*m.x236 + 0.0410741150442478*m.x236)*m.b2060 + 0.183453*m.x620 <= 0) m.c5243 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x237*m.x237 + 0.0410431415929204*m.x237)*m.b2061 + 0.183453*m.x621 <= 0) m.c5244 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x238*m.x238 + 0.0409347345132743*m.x238)*m.b2062 + 0.183453*m.x622 <= 0) m.c5245 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x239*m.x239 + 0.0409811946902655*m.x239)*m.b2063 + 0.183453*m.x623 <= 0) m.c5246 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x240*m.x240 + 0.0409579646017699*m.x240)*m.b2064 + 0.183453*m.x624 <= 0) m.c5247 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x241*m.x241 + 0.0405475663716814*m.x241)*m.b2065 + 0.183453*m.x625 <= 0) m.c5248 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x242*m.x242 + 0.0405088495575221*m.x242)*m.b2066 + 0.183453*m.x626 <= 0) m.c5249 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x243*m.x243 + 0.0404933628318584*m.x243)*m.b2067 + 0.183453*m.x627 <= 0) m.c5250 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x244*m.x244 + 0.0404856194690265*m.x244)*m.b2068 + 0.183453*m.x628 <= 0) m.c5251 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x245*m.x245 + 0.0404701327433628*m.x245)*m.b2069 + 0.183453*m.x629 <= 0) m.c5252 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x246*m.x246 + 0.040462389380531*m.x246)*m.b2070 + 0.183453*m.x630 <= 0) m.c5253 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x247*m.x247 + 0.0404546460176991*m.x247)*m.b2071 + 0.183453*m.x631 <= 0) m.c5254 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x248*m.x248 + 0.040462389380531*m.x248)*m.b2072 + 0.183453*m.x632 <= 0) m.c5255 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x249*m.x249 + 0.0404778761061947*m.x249)*m.b2073 + 0.183453*m.x633 <= 0) m.c5256 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x250*m.x250 + 0.040516592920354*m.x250)*m.b2074 + 0.183453*m.x634 <= 0) m.c5257 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x251*m.x251 + 0.0405940265486726*m.x251)*m.b2075 + 0.183453*m.x635 <= 0) m.c5258 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x252*m.x252 + 0.0407179203539823*m.x252)*m.b2076 + 0.183453*m.x636 <= 0) m.c5259 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x253*m.x253 + 0.0408573008849558*m.x253)*m.b2077 + 0.183453*m.x637 <= 0) m.c5260 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x254*m.x254 + 0.0410199115044248*m.x254)*m.b2078 + 0.183453*m.x638 <= 0) m.c5261 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x255*m.x255 + 0.0410586283185841*m.x255)*m.b2079 + 0.183453*m.x639 <= 0) m.c5262 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x256*m.x256 + 0.0409424778761062*m.x256)*m.b2080 + 0.183453*m.x640 <= 0) m.c5263 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x257*m.x257 + 0.0409115044247788*m.x257)*m.b2081 + 0.183453*m.x641 <= 0) m.c5264 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x258*m.x258 + 0.0408495575221239*m.x258)*m.b2082 + 0.183453*m.x642 <= 0) m.c5265 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x259*m.x259 + 0.0407488938053097*m.x259)*m.b2083 + 0.183453*m.x643 <= 0) m.c5266 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x260*m.x260 + 0.0406869469026549*m.x260)*m.b2084 + 0.183453*m.x644 <= 0) m.c5267 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x261*m.x261 + 0.0406559734513274*m.x261)*m.b2085 + 0.183453*m.x645 <= 0) m.c5268 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x262*m.x262 + 0.040625*m.x262)*m.b2086 + 0.183453*m.x646 <= 0) m.c5269 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x263*m.x263 + 0.0405940265486726*m.x263)*m.b2087 + 0.183453*m.x647 <= 0) m.c5270 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x264*m.x264 + 0.040570796460177*m.x264)*m.b2088 + 0.183453*m.x648 <= 0) m.c5271 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x265*m.x265 + 0.0405475663716814*m.x265)*m.b2089 + 0.183453*m.x649 <= 0) m.c5272 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x266*m.x266 + 0.0406637168141593*m.x266)*m.b2090 + 0.183453*m.x650 <= 0) m.c5273 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x267*m.x267 + 0.0407256637168142*m.x267)*m.b2091 + 0.183453*m.x651 <= 0) m.c5274 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x268*m.x268 + 0.0407953539823009*m.x268)*m.b2092 + 0.183453*m.x652 <= 0) m.c5275 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x269*m.x269 + 0.0408573008849558*m.x269)*m.b2093 + 0.183453*m.x653 <= 0) m.c5276 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x270*m.x270 + 0.0409269911504425*m.x270)*m.b2094 + 0.183453*m.x654 <= 0) m.c5277 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x271*m.x271 + 0.0409192477876106*m.x271)*m.b2095 + 0.183453*m.x655 <= 0) m.c5278 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x272*m.x272 + 0.0409269911504425*m.x272)*m.b2096 + 0.183453*m.x656 <= 0) m.c5279 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x273*m.x273 + 0.0410199115044248*m.x273)*m.b2097 + 0.183453*m.x657 <= 0) m.c5280 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x274*m.x274 + 0.0410586283185841*m.x274)*m.b2098 + 0.183453*m.x658 <= 0) m.c5281 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x275*m.x275 + 0.0412134955752212*m.x275)*m.b2099 + 0.183453*m.x659 <= 0) m.c5282 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x276*m.x276 + 0.0412599557522124*m.x276)*m.b2100 + 0.183453*m.x660 <= 0) m.c5283 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x277*m.x277 + 0.0413219026548673*m.x277)*m.b2101 + 0.183453*m.x661 <= 0) m.c5284 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x278*m.x278 + 0.0414845132743363*m.x278)*m.b2102 + 0.183453*m.x662 <= 0) m.c5285 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x279*m.x279 + 0.0416006637168142*m.x279)*m.b2103 + 0.183453*m.x663 <= 0) m.c5286 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x280*m.x280 + 0.0415619469026549*m.x280)*m.b2104 + 0.183453*m.x664 <= 0) m.c5287 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x281*m.x281 + 0.0414535398230089*m.x281)*m.b2105 + 0.183453*m.x665 <= 0) m.c5288 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x282*m.x282 + 0.041391592920354*m.x282)*m.b2106 + 0.183453*m.x666 <= 0) m.c5289 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x283*m.x283 + 0.0412134955752212*m.x283)*m.b2107 + 0.183453*m.x667 <= 0) m.c5290 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x284*m.x284 + 0.0410741150442478*m.x284)*m.b2108 + 0.183453*m.x668 <= 0) m.c5291 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x285*m.x285 + 0.0410431415929204*m.x285)*m.b2109 + 0.183453*m.x669 <= 0) m.c5292 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x286*m.x286 + 0.0409347345132743*m.x286)*m.b2110 + 0.183453*m.x670 <= 0) m.c5293 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x287*m.x287 + 0.0409811946902655*m.x287)*m.b2111 + 0.183453*m.x671 <= 0) m.c5294 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x288*m.x288 + 0.0409579646017699*m.x288)*m.b2112 + 0.183453*m.x672 <= 0) m.c5295 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x289*m.x289 + 0.0405475663716814*m.x289)*m.b2113 + 0.183453*m.x673 <= 0) m.c5296 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x290*m.x290 + 0.0405088495575221*m.x290)*m.b2114 + 0.183453*m.x674 <= 0) m.c5297 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x291*m.x291 + 0.0404933628318584*m.x291)*m.b2115 + 0.183453*m.x675 <= 0) m.c5298 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x292*m.x292 + 0.0404856194690265*m.x292)*m.b2116 + 0.183453*m.x676 <= 0) m.c5299 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x293*m.x293 + 0.0404701327433628*m.x293)*m.b2117 + 0.183453*m.x677 <= 0) m.c5300 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x294*m.x294 + 0.040462389380531*m.x294)*m.b2118 + 0.183453*m.x678 <= 0) m.c5301 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x295*m.x295 + 0.0404546460176991*m.x295)*m.b2119 + 0.183453*m.x679 <= 0) m.c5302 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x296*m.x296 + 0.040462389380531*m.x296)*m.b2120 + 0.183453*m.x680 <= 0) m.c5303 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x297*m.x297 + 0.0404778761061947*m.x297)*m.b2121 + 0.183453*m.x681 <= 0) m.c5304 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x298*m.x298 + 0.040516592920354*m.x298)*m.b2122 + 0.183453*m.x682 <= 0) m.c5305 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x299*m.x299 + 0.0405940265486726*m.x299)*m.b2123 + 0.183453*m.x683 <= 0) m.c5306 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x300*m.x300 + 0.0407179203539823*m.x300)*m.b2124 + 0.183453*m.x684 <= 0) m.c5307 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x301*m.x301 + 0.0408573008849558*m.x301)*m.b2125 + 0.183453*m.x685 <= 0) m.c5308 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x302*m.x302 + 0.0410199115044248*m.x302)*m.b2126 + 0.183453*m.x686 <= 0) m.c5309 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x303*m.x303 + 0.0410586283185841*m.x303)*m.b2127 + 0.183453*m.x687 <= 0) m.c5310 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x304*m.x304 + 0.0409424778761062*m.x304)*m.b2128 + 0.183453*m.x688 <= 0) m.c5311 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x305*m.x305 + 0.0409115044247788*m.x305)*m.b2129 + 0.183453*m.x689 <= 0) m.c5312 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x306*m.x306 + 0.0408495575221239*m.x306)*m.b2130 + 0.183453*m.x690 <= 0) m.c5313 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x307*m.x307 + 0.0407488938053097*m.x307)*m.b2131 + 0.183453*m.x691 <= 0) m.c5314 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x308*m.x308 + 0.0406869469026549*m.x308)*m.b2132 + 0.183453*m.x692 <= 0) m.c5315 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x309*m.x309 + 0.0406559734513274*m.x309)*m.b2133 + 0.183453*m.x693 <= 0) m.c5316 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x310*m.x310 + 0.040625*m.x310)*m.b2134 + 0.183453*m.x694 <= 0) m.c5317 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x311*m.x311 + 0.0405940265486726*m.x311)*m.b2135 + 0.183453*m.x695 <= 0) m.c5318 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x312*m.x312 + 0.040570796460177*m.x312)*m.b2136 + 0.183453*m.x696 <= 0) m.c5319 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x313*m.x313 + 0.0405475663716814*m.x313)*m.b2137 + 0.183453*m.x697 <= 0) m.c5320 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x314*m.x314 + 0.0406637168141593*m.x314)*m.b2138 + 0.183453*m.x698 <= 0) m.c5321 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x315*m.x315 + 0.0407256637168142*m.x315)*m.b2139 + 0.183453*m.x699 <= 0) m.c5322 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x316*m.x316 + 0.0407953539823009*m.x316)*m.b2140 + 0.183453*m.x700 <= 0) m.c5323 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x317*m.x317 + 0.0408573008849558*m.x317)*m.b2141 + 0.183453*m.x701 <= 0) m.c5324 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x318*m.x318 + 0.0409269911504425*m.x318)*m.b2142 + 0.183453*m.x702 <= 0) m.c5325 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x319*m.x319 + 0.0409192477876106*m.x319)*m.b2143 + 0.183453*m.x703 <= 0) m.c5326 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x320*m.x320 + 0.0409269911504425*m.x320)*m.b2144 + 0.183453*m.x704 <= 0) m.c5327 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x321*m.x321 + 0.0410199115044248*m.x321)*m.b2145 + 0.183453*m.x705 <= 0) m.c5328 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x322*m.x322 + 0.0410586283185841*m.x322)*m.b2146 + 0.183453*m.x706 <= 0) m.c5329 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x323*m.x323 + 0.0412134955752212*m.x323)*m.b2147 + 0.183453*m.x707 <= 0) m.c5330 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x324*m.x324 + 0.0412599557522124*m.x324)*m.b2148 + 0.183453*m.x708 <= 0) m.c5331 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x325*m.x325 + 0.0413219026548673*m.x325)*m.b2149 + 0.183453*m.x709 <= 0) m.c5332 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x326*m.x326 + 0.0414845132743363*m.x326)*m.b2150 + 0.183453*m.x710 <= 0) m.c5333 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x327*m.x327 + 0.0416006637168142*m.x327)*m.b2151 + 0.183453*m.x711 <= 0) m.c5334 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x328*m.x328 + 0.0415619469026549*m.x328)*m.b2152 + 0.183453*m.x712 <= 0) m.c5335 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x329*m.x329 + 0.0414535398230089*m.x329)*m.b2153 + 0.183453*m.x713 <= 0) m.c5336 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x330*m.x330 + 0.041391592920354*m.x330)*m.b2154 + 0.183453*m.x714 <= 0) m.c5337 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x331*m.x331 + 0.0412134955752212*m.x331)*m.b2155 + 0.183453*m.x715 <= 0) m.c5338 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x332*m.x332 + 0.0410741150442478*m.x332)*m.b2156 + 0.183453*m.x716 <= 0) m.c5339 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x333*m.x333 + 0.0410431415929204*m.x333)*m.b2157 + 0.183453*m.x717 <= 0) m.c5340 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x334*m.x334 + 0.0409347345132743*m.x334)*m.b2158 + 0.183453*m.x718 <= 0) m.c5341 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x335*m.x335 + 0.0409811946902655*m.x335)*m.b2159 + 0.183453*m.x719 <= 0) m.c5342 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x336*m.x336 + 0.0409579646017699*m.x336)*m.b2160 + 0.183453*m.x720 <= 0) m.c5343 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x337*m.x337 + 0.0405475663716814*m.x337)*m.b2161 + 0.183453*m.x721 <= 0) m.c5344 = Constraint(expr=-(-0.1052 + 0.00172169903672958*m.x338*m.x338 + 0.0405088495575221*m.x338)*m.b2162 + 0.183453*m.x722 <= 0) m.c5345 = Constraint(expr=-(-0.10508 + 0.00172169903672958*m.x339*m.x339 + 0.0404933628318584*m.x339)*m.b2163 + 0.183453*m.x723 <= 0) m.c5346 = Constraint(expr=-(-0.10502 + 0.00172169903672958*m.x340*m.x340 + 0.0404856194690265*m.x340)*m.b2164 + 0.183453*m.x724 <= 0) m.c5347 = Constraint(expr=-(-0.1049 + 0.00172169903672958*m.x341*m.x341 + 0.0404701327433628*m.x341)*m.b2165 + 0.183453*m.x725 <= 0) m.c5348 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x342*m.x342 + 0.040462389380531*m.x342)*m.b2166 + 0.183453*m.x726 <= 0) m.c5349 = Constraint(expr=-(-0.10478 + 0.00172169903672958*m.x343*m.x343 + 0.0404546460176991*m.x343)*m.b2167 + 0.183453*m.x727 <= 0) m.c5350 = Constraint(expr=-(-0.10484 + 0.00172169903672958*m.x344*m.x344 + 0.040462389380531*m.x344)*m.b2168 + 0.183453*m.x728 <= 0) m.c5351 = Constraint(expr=-(-0.10496 + 0.00172169903672958*m.x345*m.x345 + 0.0404778761061947*m.x345)*m.b2169 + 0.183453*m.x729 <= 0) m.c5352 = Constraint(expr=-(-0.10526 + 0.00172169903672958*m.x346*m.x346 + 0.040516592920354*m.x346)*m.b2170 + 0.183453*m.x730 <= 0) m.c5353 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x347*m.x347 + 0.0405940265486726*m.x347)*m.b2171 + 0.183453*m.x731 <= 0) m.c5354 = Constraint(expr=-(-0.10682 + 0.00172169903672958*m.x348*m.x348 + 0.0407179203539823*m.x348)*m.b2172 + 0.183453*m.x732 <= 0) m.c5355 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x349*m.x349 + 0.0408573008849558*m.x349)*m.b2173 + 0.183453*m.x733 <= 0) m.c5356 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x350*m.x350 + 0.0410199115044248*m.x350)*m.b2174 + 0.183453*m.x734 <= 0) m.c5357 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x351*m.x351 + 0.0410586283185841*m.x351)*m.b2175 + 0.183453*m.x735 <= 0) m.c5358 = Constraint(expr=-(-0.10856 + 0.00172169903672958*m.x352*m.x352 + 0.0409424778761062*m.x352)*m.b2176 + 0.183453*m.x736 <= 0) m.c5359 = Constraint(expr=-(-0.10832 + 0.00172169903672958*m.x353*m.x353 + 0.0409115044247788*m.x353)*m.b2177 + 0.183453*m.x737 <= 0) m.c5360 = Constraint(expr=-(-0.10784 + 0.00172169903672958*m.x354*m.x354 + 0.0408495575221239*m.x354)*m.b2178 + 0.183453*m.x738 <= 0) m.c5361 = Constraint(expr=-(-0.10706 + 0.00172169903672958*m.x355*m.x355 + 0.0407488938053097*m.x355)*m.b2179 + 0.183453*m.x739 <= 0) m.c5362 = Constraint(expr=-(-0.10658 + 0.00172169903672958*m.x356*m.x356 + 0.0406869469026549*m.x356)*m.b2180 + 0.183453*m.x740 <= 0) m.c5363 = Constraint(expr=-(-0.10634 + 0.00172169903672958*m.x357*m.x357 + 0.0406559734513274*m.x357)*m.b2181 + 0.183453*m.x741 <= 0) m.c5364 = Constraint(expr=-(-0.1061 + 0.00172169903672958*m.x358*m.x358 + 0.040625*m.x358)*m.b2182 + 0.183453*m.x742 <= 0) m.c5365 = Constraint(expr=-(-0.10586 + 0.00172169903672958*m.x359*m.x359 + 0.0405940265486726*m.x359)*m.b2183 + 0.183453*m.x743 <= 0) m.c5366 = Constraint(expr=-(-0.10568 + 0.00172169903672958*m.x360*m.x360 + 0.040570796460177*m.x360)*m.b2184 + 0.183453*m.x744 <= 0) m.c5367 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x361*m.x361 + 0.0405475663716814*m.x361)*m.b2185 + 0.183453*m.x745 <= 0) m.c5368 = Constraint(expr=-(-0.1064 + 0.00172169903672958*m.x362*m.x362 + 0.0406637168141593*m.x362)*m.b2186 + 0.183453*m.x746 <= 0) m.c5369 = Constraint(expr=-(-0.10688 + 0.00172169903672958*m.x363*m.x363 + 0.0407256637168142*m.x363)*m.b2187 + 0.183453*m.x747 <= 0) m.c5370 = Constraint(expr=-(-0.10742 + 0.00172169903672958*m.x364*m.x364 + 0.0407953539823009*m.x364)*m.b2188 + 0.183453*m.x748 <= 0) m.c5371 = Constraint(expr=-(-0.1079 + 0.00172169903672958*m.x365*m.x365 + 0.0408573008849558*m.x365)*m.b2189 + 0.183453*m.x749 <= 0) m.c5372 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x366*m.x366 + 0.0409269911504425*m.x366)*m.b2190 + 0.183453*m.x750 <= 0) m.c5373 = Constraint(expr=-(-0.10838 + 0.00172169903672958*m.x367*m.x367 + 0.0409192477876106*m.x367)*m.b2191 + 0.183453*m.x751 <= 0) m.c5374 = Constraint(expr=-(-0.10844 + 0.00172169903672958*m.x368*m.x368 + 0.0409269911504425*m.x368)*m.b2192 + 0.183453*m.x752 <= 0) m.c5375 = Constraint(expr=-(-0.10916 + 0.00172169903672958*m.x369*m.x369 + 0.0410199115044248*m.x369)*m.b2193 + 0.183453*m.x753 <= 0) m.c5376 = Constraint(expr=-(-0.10946 + 0.00172169903672958*m.x370*m.x370 + 0.0410586283185841*m.x370)*m.b2194 + 0.183453*m.x754 <= 0) m.c5377 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x371*m.x371 + 0.0412134955752212*m.x371)*m.b2195 + 0.183453*m.x755 <= 0) m.c5378 = Constraint(expr=-(-0.11102 + 0.00172169903672958*m.x372*m.x372 + 0.0412599557522124*m.x372)*m.b2196 + 0.183453*m.x756 <= 0) m.c5379 = Constraint(expr=-(-0.1115 + 0.00172169903672958*m.x373*m.x373 + 0.0413219026548673*m.x373)*m.b2197 + 0.183453*m.x757 <= 0) m.c5380 = Constraint(expr=-(-0.11276 + 0.00172169903672958*m.x374*m.x374 + 0.0414845132743363*m.x374)*m.b2198 + 0.183453*m.x758 <= 0) m.c5381 = Constraint(expr=-(-0.11366 + 0.00172169903672958*m.x375*m.x375 + 0.0416006637168142*m.x375)*m.b2199 + 0.183453*m.x759 <= 0) m.c5382 = Constraint(expr=-(-0.11336 + 0.00172169903672958*m.x376*m.x376 + 0.0415619469026549*m.x376)*m.b2200 + 0.183453*m.x760 <= 0) m.c5383 = Constraint(expr=-(-0.11252 + 0.00172169903672958*m.x377*m.x377 + 0.0414535398230089*m.x377)*m.b2201 + 0.183453*m.x761 <= 0) m.c5384 = Constraint(expr=-(-0.11204 + 0.00172169903672958*m.x378*m.x378 + 0.041391592920354*m.x378)*m.b2202 + 0.183453*m.x762 <= 0) m.c5385 = Constraint(expr=-(-0.11066 + 0.00172169903672958*m.x379*m.x379 + 0.0412134955752212*m.x379)*m.b2203 + 0.183453*m.x763 <= 0) m.c5386 = Constraint(expr=-(-0.10958 + 0.00172169903672958*m.x380*m.x380 + 0.0410741150442478*m.x380)*m.b2204 + 0.183453*m.x764 <= 0) m.c5387 = Constraint(expr=-(-0.10934 + 0.00172169903672958*m.x381*m.x381 + 0.0410431415929204*m.x381)*m.b2205 + 0.183453*m.x765 <= 0) m.c5388 = Constraint(expr=-(-0.1085 + 0.00172169903672958*m.x382*m.x382 + 0.0409347345132743*m.x382)*m.b2206 + 0.183453*m.x766 <= 0) m.c5389 = Constraint(expr=-(-0.10886 + 0.00172169903672958*m.x383*m.x383 + 0.0409811946902655*m.x383)*m.b2207 + 0.183453*m.x767 <= 0) m.c5390 = Constraint(expr=-(-0.10868 + 0.00172169903672958*m.x384*m.x384 + 0.0409579646017699*m.x384)*m.b2208 + 0.183453*m.x768 <= 0) m.c5391 = Constraint(expr=-(-0.1055 + 0.00172169903672958*m.x385*m.x385 + 0.0405475663716814*m.x385)*m.b2209 + 0.183453*m.x769 <= 0) m.c5392 = Constraint(expr= m.x1154 <= 0) m.c5393 = Constraint(expr= m.x1155 <= 0) m.c5394 = Constraint(expr= m.x1156 <= 0) m.c5395 = Constraint(expr= m.x1157 <= 0) m.c5396 = Constraint(expr= m.x1158 <= 0) m.c5397 = Constraint(expr= m.x1159 <= 0) m.c5398 = Constraint(expr= m.x1160 <= 0) m.c5399 = Constraint(expr= m.x1161 <= 0) m.c5400 = Constraint(expr= m.x1162 <= 0) m.c5401 = Constraint(expr= m.x1163 <= 0) m.c5402 = Constraint(expr= m.x1164 <= 0) m.c5403 = Constraint(expr= m.x1165 <= 0) m.c5404 = Constraint(expr= m.x1166 <= 0) m.c5405 = Constraint(expr= m.x1167 <= 0) m.c5406 = Constraint(expr= m.x1168 <= 0) m.c5407 = Constraint(expr= m.x1169 <= 0) m.c5408 = Constraint(expr= m.x1170 <= 0) m.c5409 = Constraint(expr= m.x1171 <= 0) m.c5410 = Constraint(expr= m.x1172 <= 0) m.c5411 = Constraint(expr= m.x1173 <= 0) m.c5412 = Constraint(expr= m.x1174 <= 0) m.c5413 = Constraint(expr= m.x1175 <= 0) m.c5414 = Constraint(expr= m.x1176 <= 0) m.c5415 = Constraint(expr= m.x1177 <= 0) m.c5416 = Constraint(expr= m.x1178 <= 0) m.c5417 = Constraint(expr= m.x1179 <= 0) m.c5418 = Constraint(expr= m.x1180 <= 0) m.c5419 = Constraint(expr= m.x1181 <= 0) m.c5420 = Constraint(expr= m.x1182 <= 0) m.c5421 = Constraint(expr= m.x1183 <= 0) m.c5422 = Constraint(expr= m.x1184 <= 0) m.c5423 = Constraint(expr= m.x1185 <= 0) m.c5424 = Constraint(expr= m.x1186 <= 0) m.c5425 = Constraint(expr= m.x1187 <= 0) m.c5426 = Constraint(expr= m.x1188 <= 0) m.c5427 = Constraint(expr= m.x1189 <= 0) m.c5428 = Constraint(expr= m.x1190 <= 0) m.c5429 = Constraint(expr= m.x1191 <= 0) m.c5430 = Constraint(expr= m.x1192 <= 0) m.c5431 = Constraint(expr= m.x1193 <= 0) m.c5432 = Constraint(expr= m.x1194 <= 0) m.c5433 = Constraint(expr= m.x1195 <= 0) m.c5434 = Constraint(expr= m.x1196 <= 0) m.c5435 = Constraint(expr= m.x1197 <= 0) m.c5436 = Constraint(expr= m.x1198 <= 0) m.c5437 = Constraint(expr= m.x1199 <= 0) m.c5438 = Constraint(expr= m.x1200 <= 0) m.c5439 = Constraint(expr= m.x1201 <= 0) m.c5440 = Constraint(expr= m.x1202 <= 0) m.c5441 = Constraint(expr= m.x1203 <= 0) m.c5442 = Constraint(expr= m.x1204 <= 0) m.c5443 = Constraint(expr= m.x1205 <= 0) m.c5444 = Constraint(expr= m.x1206 <= 0) m.c5445 = Constraint(expr= m.x1207 <= 0) m.c5446 = Constraint(expr= m.x1208 <= 0) m.c5447 = Constraint(expr= m.x1209 <= 0) m.c5448 = Constraint(expr= m.x1210 <= 0) m.c5449 = Constraint(expr= m.x1211 <= 0) m.c5450 = Constraint(expr= m.x1212 <= 0) m.c5451 = Constraint(expr= m.x1213 <= 0) m.c5452 = Constraint(expr= m.x1214 <= 0) m.c5453 = Constraint(expr= m.x1215 <= 0) m.c5454 = Constraint(expr= m.x1216 <= 0) m.c5455 = Constraint(expr= m.x1217 <= 0) m.c5456 = Constraint(expr= m.x1218 <= 0) m.c5457 = Constraint(expr= m.x1219 <= 0) m.c5458 = Constraint(expr= m.x1220 <= 0) m.c5459 = Constraint(expr= m.x1221 <= 0) m.c5460 = Constraint(expr= m.x1222 <= 0) m.c5461 = Constraint(expr= m.x1223 <= 0) m.c5462 = Constraint(expr= m.x1224 <= 0) m.c5463 = Constraint(expr= m.x1225 <= 0) m.c5464 = Constraint(expr= m.x1226 <= 0) m.c5465 = Constraint(expr= m.x1227 <= 0) m.c5466 = Constraint(expr= m.x1228 <= 0) m.c5467 = Constraint(expr= m.x1229 <= 0) m.c5468 = Constraint(expr= m.x1230 <= 0) m.c5469 = Constraint(expr= m.x1231 <= 0) m.c5470 = Constraint(expr= m.x1232 <= 0) m.c5471 = Constraint(expr= m.x1233 <= 0) m.c5472 = Constraint(expr= m.x1234 <= 0) m.c5473 = Constraint(expr= m.x1235 <= 0) m.c5474 = Constraint(expr= m.x1236 <= 0) m.c5475 = Constraint(expr= m.x1237 <= 0) m.c5476 = Constraint(expr= m.x1238 <= 0) m.c5477 = Constraint(expr= m.x1239 <= 0) m.c5478 = Constraint(expr= m.x1240 <= 0) m.c5479 = Constraint(expr= m.x1241 <= 0) m.c5480 = Constraint(expr= m.x1242 <= 0) m.c5481 = Constraint(expr= m.x1243 <= 0) m.c5482 = Constraint(expr= m.x1244 <= 0) m.c5483 = Constraint(expr= m.x1245 <= 0) m.c5484 = Constraint(expr= m.x1246 <= 0) m.c5485 = Constraint(expr= m.x1247 <= 0) m.c5486 = Constraint(expr= m.x1248 <= 0) m.c5487 = Constraint(expr= m.x1249 <= 0) m.c5488 = Constraint(expr=-(-0.66175 + 0.0286774761764095*m.x98 - 0.000152475248549441*m.x98*m.x98)*m.b2210 + 0.0334717*m.x866 <= 0) m.c5489 = Constraint(expr=-(-0.66317 + 0.0286868852638374*m.x99 - 0.000152475248549441*m.x99*m.x99)*m.b2211 + 0.0334717*m.x867 <= 0) m.c5490 = Constraint(expr=-(-0.66388 + 0.0286915898075513*m.x100 - 0.000152475248549441*m.x100*m.x100)*m.b2212 + 0.0334717*m.x868 <= 0) m.c5491 = Constraint(expr=-(-0.6653 + 0.0287009988949793*m.x101 - 0.000152475248549441*m.x101*m.x101)*m.b2213 + 0.0334717*m.x869 <= 0) m.c5492 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x102 - 0.000152475248549441*m.x102*m.x102)*m.b2214 + 0.0334717*m.x870 <= 0) m.c5493 = Constraint(expr=-(-0.66672 + 0.0287104079824072*m.x103 - 0.000152475248549441*m.x103*m.x103)*m.b2215 + 0.0334717*m.x871 <= 0) m.c5494 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x104 - 0.000152475248549441*m.x104*m.x104)*m.b2216 + 0.0334717*m.x872 <= 0) m.c5495 = Constraint(expr=-(-0.66459 + 0.0286962943512653*m.x105 - 0.000152475248549441*m.x105*m.x105)*m.b2217 + 0.0334717*m.x873 <= 0) m.c5496 = Constraint(expr=-(-0.66104 + 0.0286727716326955*m.x106 - 0.000152475248549441*m.x106*m.x106)*m.b2218 + 0.0334717*m.x874 <= 0) m.c5497 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x107 - 0.000152475248549441*m.x107*m.x107)*m.b2219 + 0.0334717*m.x875 <= 0) m.c5498 = Constraint(expr=-(-0.64258 + 0.0285504534961324*m.x108 - 0.000152475248549441*m.x108*m.x108)*m.b2220 + 0.0334717*m.x876 <= 0) m.c5499 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x109 - 0.000152475248549441*m.x109*m.x109)*m.b2221 + 0.0334717*m.x877 <= 0) m.c5500 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x110 - 0.000152475248549441*m.x110*m.x110)*m.b2222 + 0.0334717*m.x878 <= 0) m.c5501 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x111 - 0.000152475248549441*m.x111*m.x111)*m.b2223 + 0.0334717*m.x879 <= 0) m.c5502 = Constraint(expr=-(-0.62199 + 0.0284140217284275*m.x112 - 0.000152475248549441*m.x112*m.x112)*m.b2224 + 0.0334717*m.x880 <= 0) m.c5503 = Constraint(expr=-(-0.62483 + 0.0284328399032833*m.x113 - 0.000152475248549441*m.x113*m.x113)*m.b2225 + 0.0334717*m.x881 <= 0) m.c5504 = Constraint(expr=-(-0.63051 + 0.0284704762529951*m.x114 - 0.000152475248549441*m.x114*m.x114)*m.b2226 + 0.0334717*m.x882 <= 0) m.c5505 = Constraint(expr=-(-0.63974 + 0.0285316353212766*m.x115 - 0.000152475248549441*m.x115*m.x115)*m.b2227 + 0.0334717*m.x883 <= 0) m.c5506 = Constraint(expr=-(-0.64542 + 0.0285692716709883*m.x116 - 0.000152475248549441*m.x116*m.x116)*m.b2228 + 0.0334717*m.x884 <= 0) m.c5507 = Constraint(expr=-(-0.64826 + 0.0285880898458441*m.x117 - 0.000152475248549441*m.x117*m.x117)*m.b2229 + 0.0334717*m.x885 <= 0) m.c5508 = Constraint(expr=-(-0.6511 + 0.0286069080207*m.x118 - 0.000152475248549441*m.x118*m.x118)*m.b2230 + 0.0334717*m.x886 <= 0) m.c5509 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x119 - 0.000152475248549441*m.x119*m.x119)*m.b2231 + 0.0334717*m.x887 <= 0) m.c5510 = Constraint(expr=-(-0.65607 + 0.0286398398266977*m.x120 - 0.000152475248549441*m.x120*m.x120)*m.b2232 + 0.0334717*m.x888 <= 0) m.c5511 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x121 - 0.000152475248549441*m.x121*m.x121)*m.b2233 + 0.0334717*m.x889 <= 0) m.c5512 = Constraint(expr=-(-0.64755 + 0.0285833853021302*m.x122 - 0.000152475248549441*m.x122*m.x122)*m.b2234 + 0.0334717*m.x890 <= 0) m.c5513 = Constraint(expr=-(-0.64187 + 0.0285457489524185*m.x123 - 0.000152475248549441*m.x123*m.x123)*m.b2235 + 0.0334717*m.x891 <= 0) m.c5514 = Constraint(expr=-(-0.63548 + 0.0285034080589928*m.x124 - 0.000152475248549441*m.x124*m.x124)*m.b2236 + 0.0334717*m.x892 <= 0) m.c5515 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x125 - 0.000152475248549441*m.x125*m.x125)*m.b2237 + 0.0334717*m.x893 <= 0) m.c5516 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x126 - 0.000152475248549441*m.x126*m.x126)*m.b2238 + 0.0334717*m.x894 <= 0) m.c5517 = Constraint(expr=-(-0.62412 + 0.0284281353595694*m.x127 - 0.000152475248549441*m.x127*m.x127)*m.b2239 + 0.0334717*m.x895 <= 0) m.c5518 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x128 - 0.000152475248549441*m.x128*m.x128)*m.b2240 + 0.0334717*m.x896 <= 0) m.c5519 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x129 - 0.000152475248549441*m.x129*m.x129)*m.b2241 + 0.0334717*m.x897 <= 0) m.c5520 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x130 - 0.000152475248549441*m.x130*m.x130)*m.b2242 + 0.0334717*m.x898 <= 0) m.c5521 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x131 - 0.000152475248549441*m.x131*m.x131)*m.b2243 + 0.0334717*m.x899 <= 0) m.c5522 = Constraint(expr=-(-0.59288 + 0.028221135436155*m.x132 - 0.000152475248549441*m.x132*m.x132)*m.b2244 + 0.0334717*m.x900 <= 0) m.c5523 = Constraint(expr=-(-0.5872 + 0.0281834990864433*m.x133 - 0.000152475248549441*m.x133*m.x133)*m.b2245 + 0.0334717*m.x901 <= 0) m.c5524 = Constraint(expr=-(-0.57229 + 0.02808470366845*m.x134 - 0.000152475248549441*m.x134*m.x134)*m.b2246 + 0.0334717*m.x902 <= 0) m.c5525 = Constraint(expr=-(-0.56164 + 0.0280141355127406*m.x135 - 0.000152475248549441*m.x135*m.x135)*m.b2247 + 0.0334717*m.x903 <= 0) m.c5526 = Constraint(expr=-(-0.56519 + 0.0280376582313104*m.x136 - 0.000152475248549441*m.x136*m.x136)*m.b2248 + 0.0334717*m.x904 <= 0) m.c5527 = Constraint(expr=-(-0.57513 + 0.0281035218433059*m.x137 - 0.000152475248549441*m.x137*m.x137)*m.b2249 + 0.0334717*m.x905 <= 0) m.c5528 = Constraint(expr=-(-0.58081 + 0.0281411581930176*m.x138 - 0.000152475248549441*m.x138*m.x138)*m.b2250 + 0.0334717*m.x906 <= 0) m.c5529 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x139 - 0.000152475248549441*m.x139*m.x139)*m.b2251 + 0.0334717*m.x907 <= 0) m.c5530 = Constraint(expr=-(-0.60992 + 0.0283340444852901*m.x140 - 0.000152475248549441*m.x140*m.x140)*m.b2252 + 0.0334717*m.x908 <= 0) m.c5531 = Constraint(expr=-(-0.61276 + 0.028352862660146*m.x141 - 0.000152475248549441*m.x141*m.x141)*m.b2253 + 0.0334717*m.x909 <= 0) m.c5532 = Constraint(expr=-(-0.6227 + 0.0284187262721414*m.x142 - 0.000152475248549441*m.x142*m.x142)*m.b2254 + 0.0334717*m.x910 <= 0) m.c5533 = Constraint(expr=-(-0.61844 + 0.0283904990098577*m.x143 - 0.000152475248549441*m.x143*m.x143)*m.b2255 + 0.0334717*m.x911 <= 0) m.c5534 = Constraint(expr=-(-0.62057 + 0.0284046126409996*m.x144 - 0.000152475248549441*m.x144*m.x144)*m.b2256 + 0.0334717*m.x912 <= 0) m.c5535 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x145 - 0.000152475248549441*m.x145*m.x145)*m.b2257 + 0.0334717*m.x913 <= 0) m.c5536 = Constraint(expr=-(-0.66175 + 0.0286774761764095*m.x146 - 0.000152475248549441*m.x146*m.x146)*m.b2258 + 0.0334717*m.x914 <= 0) m.c5537 = Constraint(expr=-(-0.66317 + 0.0286868852638374*m.x147 - 0.000152475248549441*m.x147*m.x147)*m.b2259 + 0.0334717*m.x915 <= 0) m.c5538 = Constraint(expr=-(-0.66388 + 0.0286915898075513*m.x148 - 0.000152475248549441*m.x148*m.x148)*m.b2260 + 0.0334717*m.x916 <= 0) m.c5539 = Constraint(expr=-(-0.6653 + 0.0287009988949793*m.x149 - 0.000152475248549441*m.x149*m.x149)*m.b2261 + 0.0334717*m.x917 <= 0) m.c5540 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x150 - 0.000152475248549441*m.x150*m.x150)*m.b2262 + 0.0334717*m.x918 <= 0) m.c5541 = Constraint(expr=-(-0.66672 + 0.0287104079824072*m.x151 - 0.000152475248549441*m.x151*m.x151)*m.b2263 + 0.0334717*m.x919 <= 0) m.c5542 = Constraint(expr=-(-0.66601 + 0.0287057034386932*m.x152 - 0.000152475248549441*m.x152*m.x152)*m.b2264 + 0.0334717*m.x920 <= 0) m.c5543 = Constraint(expr=-(-0.66459 + 0.0286962943512653*m.x153 - 0.000152475248549441*m.x153*m.x153)*m.b2265 + 0.0334717*m.x921 <= 0) m.c5544 = Constraint(expr=-(-0.66104 + 0.0286727716326955*m.x154 - 0.000152475248549441*m.x154*m.x154)*m.b2266 + 0.0334717*m.x922 <= 0) m.c5545 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x155 - 0.000152475248549441*m.x155*m.x155)*m.b2267 + 0.0334717*m.x923 <= 0) m.c5546 = Constraint(expr=-(-0.64258 + 0.0285504534961324*m.x156 - 0.000152475248549441*m.x156*m.x156)*m.b2268 + 0.0334717*m.x924 <= 0) m.c5547 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x157 - 0.000152475248549441*m.x157*m.x157)*m.b2269 + 0.0334717*m.x925 <= 0) m.c5548 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x158 - 0.000152475248549441*m.x158*m.x158)*m.b2270 + 0.0334717*m.x926 <= 0) m.c5549 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x159 - 0.000152475248549441*m.x159*m.x159)*m.b2271 + 0.0334717*m.x927 <= 0) m.c5550 = Constraint(expr=-(-0.62199 + 0.0284140217284275*m.x160 - 0.000152475248549441*m.x160*m.x160)*m.b2272 + 0.0334717*m.x928 <= 0) m.c5551 = Constraint(expr=-(-0.62483 + 0.0284328399032833*m.x161 - 0.000152475248549441*m.x161*m.x161)*m.b2273 + 0.0334717*m.x929 <= 0) m.c5552 = Constraint(expr=-(-0.63051 + 0.0284704762529951*m.x162 - 0.000152475248549441*m.x162*m.x162)*m.b2274 + 0.0334717*m.x930 <= 0) m.c5553 = Constraint(expr=-(-0.63974 + 0.0285316353212766*m.x163 - 0.000152475248549441*m.x163*m.x163)*m.b2275 + 0.0334717*m.x931 <= 0) m.c5554 = Constraint(expr=-(-0.64542 + 0.0285692716709883*m.x164 - 0.000152475248549441*m.x164*m.x164)*m.b2276 + 0.0334717*m.x932 <= 0) m.c5555 = Constraint(expr=-(-0.64826 + 0.0285880898458441*m.x165 - 0.000152475248549441*m.x165*m.x165)*m.b2277 + 0.0334717*m.x933 <= 0) m.c5556 = Constraint(expr=-(-0.6511 + 0.0286069080207*m.x166 - 0.000152475248549441*m.x166*m.x166)*m.b2278 + 0.0334717*m.x934 <= 0) m.c5557 = Constraint(expr=-(-0.65394 + 0.0286257261955559*m.x167 - 0.000152475248549441*m.x167*m.x167)*m.b2279 + 0.0334717*m.x935 <= 0) m.c5558 = Constraint(expr=-(-0.65607 + 0.0286398398266977*m.x168 - 0.000152475248549441*m.x168*m.x168)*m.b2280 + 0.0334717*m.x936 <= 0) m.c5559 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x169 - 0.000152475248549441*m.x169*m.x169)*m.b2281 + 0.0334717*m.x937 <= 0) m.c5560 = Constraint(expr=-(-0.64755 + 0.0285833853021302*m.x170 - 0.000152475248549441*m.x170*m.x170)*m.b2282 + 0.0334717*m.x938 <= 0) m.c5561 = Constraint(expr=-(-0.64187 + 0.0285457489524185*m.x171 - 0.000152475248549441*m.x171*m.x171)*m.b2283 + 0.0334717*m.x939 <= 0) m.c5562 = Constraint(expr=-(-0.63548 + 0.0285034080589928*m.x172 - 0.000152475248549441*m.x172*m.x172)*m.b2284 + 0.0334717*m.x940 <= 0) m.c5563 = Constraint(expr=-(-0.6298 + 0.0284657717092811*m.x173 - 0.000152475248549441*m.x173*m.x173)*m.b2285 + 0.0334717*m.x941 <= 0) m.c5564 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x174 - 0.000152475248549441*m.x174*m.x174)*m.b2286 + 0.0334717*m.x942 <= 0) m.c5565 = Constraint(expr=-(-0.62412 + 0.0284281353595694*m.x175 - 0.000152475248549441*m.x175*m.x175)*m.b2287 + 0.0334717*m.x943 <= 0) m.c5566 = Constraint(expr=-(-0.62341 + 0.0284234308158554*m.x176 - 0.000152475248549441*m.x176*m.x176)*m.b2288 + 0.0334717*m.x944 <= 0) m.c5567 = Constraint(expr=-(-0.61489 + 0.0283669762912878*m.x177 - 0.000152475248549441*m.x177*m.x177)*m.b2289 + 0.0334717*m.x945 <= 0) m.c5568 = Constraint(expr=-(-0.61134 + 0.028343453572718*m.x178 - 0.000152475248549441*m.x178*m.x178)*m.b2290 + 0.0334717*m.x946 <= 0) m.c5569 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x179 - 0.000152475248549441*m.x179*m.x179)*m.b2291 + 0.0334717*m.x947 <= 0) m.c5570 = Constraint(expr=-(-0.59288 + 0.028221135436155*m.x180 - 0.000152475248549441*m.x180*m.x180)*m.b2292 + 0.0334717*m.x948 <= 0) m.c5571 = Constraint(expr=-(-0.5872 + 0.0281834990864433*m.x181 - 0.000152475248549441*m.x181*m.x181)*m.b2293 + 0.0334717*m.x949 <= 0) m.c5572 = Constraint(expr=-(-0.57229 + 0.02808470366845*m.x182 - 0.000152475248549441*m.x182*m.x182)*m.b2294 + 0.0334717*m.x950 <= 0) m.c5573 = Constraint(expr=-(-0.56164 + 0.0280141355127406*m.x183 - 0.000152475248549441*m.x183*m.x183)*m.b2295 + 0.0334717*m.x951 <= 0) m.c5574 = Constraint(expr=-(-0.56519 + 0.0280376582313104*m.x184 - 0.000152475248549441*m.x184*m.x184)*m.b2296 + 0.0334717*m.x952 <= 0) m.c5575 = Constraint(expr=-(-0.57513 + 0.0281035218433059*m.x185 - 0.000152475248549441*m.x185*m.x185)*m.b2297 + 0.0334717*m.x953 <= 0) m.c5576 = Constraint(expr=-(-0.58081 + 0.0281411581930176*m.x186 - 0.000152475248549441*m.x186*m.x186)*m.b2298 + 0.0334717*m.x954 <= 0) m.c5577 = Constraint(expr=-(-0.59714 + 0.0282493626984388*m.x187 - 0.000152475248549441*m.x187*m.x187)*m.b2299 + 0.0334717*m.x955 <= 0) m.c5578 = Constraint(expr=-(-0.60992 + 0.0283340444852901*m.x188 - 0.000152475248549441*m.x188*m.x188)*m.b2300 + 0.0334717*m.x956 <= 0) m.c5579 = Constraint(expr=-(-0.61276 + 0.028352862660146*m.x189 - 0.000152475248549441*m.x189*m.x189)*m.b2301 + 0.0334717*m.x957 <= 0) m.c5580 = Constraint(expr=-(-0.6227 + 0.0284187262721414*m.x190 - 0.000152475248549441*m.x190*m.x190)*m.b2302 + 0.0334717*m.x958 <= 0) m.c5581 = Constraint(expr=-(-0.61844 + 0.0283904990098577*m.x191 - 0.000152475248549441*m.x191*m.x191)*m.b2303 + 0.0334717*m.x959 <= 0) m.c5582 = Constraint(expr=-(-0.62057 + 0.0284046126409996*m.x192 - 0.000152475248549441*m.x192*m.x192)*m.b2304 + 0.0334717*m.x960 <= 0) m.c5583 = Constraint(expr=-(-0.6582 + 0.0286539534578396*m.x193 - 0.000152475248549441*m.x193*m.x193)*m.b2305 + 0.0334717*m.x961 <= 0) m.c5584 = Constraint(expr=-(-0.52165 + 0.0198575507926609*m.x98 - 9.55693503233427e-5*m.x98*m.x98)*m.b2210 + 0.0291954*m.x482 <= 0) m.c5585 = Constraint(expr=-(-0.52227 + 0.0198623647443682*m.x99 - 9.55693503233427e-5*m.x99*m.x99)*m.b2211 + 0.0291954*m.x483 <= 0) m.c5586 = Constraint(expr=-(-0.52258 + 0.0198647717202219*m.x100 - 9.55693503233427e-5*m.x100*m.x100)*m.b2212 + 0.0291954*m.x484 <= 0) m.c5587 = Constraint(expr=-(-0.5232 + 0.0198695856719292*m.x101 - 9.55693503233427e-5*m.x101*m.x101)*m.b2213 + 0.0291954*m.x485 <= 0) m.c5588 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x102 - 9.55693503233427e-5*m.x102*m.x102)*m.b2214 + 0.0291954*m.x486 <= 0) m.c5589 = Constraint(expr=-(-0.52382 + 0.0198743996236365*m.x103 - 9.55693503233427e-5*m.x103*m.x103)*m.b2215 + 0.0291954*m.x487 <= 0) m.c5590 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x104 - 9.55693503233427e-5*m.x104*m.x104)*m.b2216 + 0.0291954*m.x488 <= 0) m.c5591 = Constraint(expr=-(-0.52289 + 0.0198671786960755*m.x105 - 9.55693503233427e-5*m.x105*m.x105)*m.b2217 + 0.0291954*m.x489 <= 0) m.c5592 = Constraint(expr=-(-0.52134 + 0.0198551438168073*m.x106 - 9.55693503233427e-5*m.x106*m.x106)*m.b2218 + 0.0291954*m.x490 <= 0) m.c5593 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x107 - 9.55693503233427e-5*m.x107*m.x107)*m.b2219 + 0.0291954*m.x491 <= 0) m.c5594 = Constraint(expr=-(-0.51328 + 0.0197925624446122*m.x108 - 9.55693503233427e-5*m.x108*m.x108)*m.b2220 + 0.0291954*m.x492 <= 0) m.c5595 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x109 - 9.55693503233427e-5*m.x109*m.x109)*m.b2221 + 0.0291954*m.x493 <= 0) m.c5596 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x110 - 9.55693503233427e-5*m.x110*m.x110)*m.b2222 + 0.0291954*m.x494 <= 0) m.c5597 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x111 - 9.55693503233427e-5*m.x111*m.x111)*m.b2223 + 0.0291954*m.x495 <= 0) m.c5598 = Constraint(expr=-(-0.50429 + 0.0197227601448562*m.x112 - 9.55693503233427e-5*m.x112*m.x112)*m.b2224 + 0.0291954*m.x496 <= 0) m.c5599 = Constraint(expr=-(-0.50553 + 0.0197323880482708*m.x113 - 9.55693503233427e-5*m.x113*m.x113)*m.b2225 + 0.0291954*m.x497 <= 0) m.c5600 = Constraint(expr=-(-0.50801 + 0.0197516438551001*m.x114 - 9.55693503233427e-5*m.x114*m.x114)*m.b2226 + 0.0291954*m.x498 <= 0) m.c5601 = Constraint(expr=-(-0.51204 + 0.0197829345411976*m.x115 - 9.55693503233427e-5*m.x115*m.x115)*m.b2227 + 0.0291954*m.x499 <= 0) m.c5602 = Constraint(expr=-(-0.51452 + 0.0198021903480268*m.x116 - 9.55693503233427e-5*m.x116*m.x116)*m.b2228 + 0.0291954*m.x500 <= 0) m.c5603 = Constraint(expr=-(-0.51576 + 0.0198118182514414*m.x117 - 9.55693503233427e-5*m.x117*m.x117)*m.b2229 + 0.0291954*m.x501 <= 0) m.c5604 = Constraint(expr=-(-0.517 + 0.0198214461548561*m.x118 - 9.55693503233427e-5*m.x118*m.x118)*m.b2230 + 0.0291954*m.x502 <= 0) m.c5605 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x119 - 9.55693503233427e-5*m.x119*m.x119)*m.b2231 + 0.0291954*m.x503 <= 0) m.c5606 = Constraint(expr=-(-0.51917 + 0.0198382949858317*m.x120 - 9.55693503233427e-5*m.x120*m.x120)*m.b2232 + 0.0291954*m.x504 <= 0) m.c5607 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x121 - 9.55693503233427e-5*m.x121*m.x121)*m.b2233 + 0.0291954*m.x505 <= 0) m.c5608 = Constraint(expr=-(-0.51545 + 0.0198094112755878*m.x122 - 9.55693503233427e-5*m.x122*m.x122)*m.b2234 + 0.0291954*m.x506 <= 0) m.c5609 = Constraint(expr=-(-0.51297 + 0.0197901554687585*m.x123 - 9.55693503233427e-5*m.x123*m.x123)*m.b2235 + 0.0291954*m.x507 <= 0) m.c5610 = Constraint(expr=-(-0.51018 + 0.0197684926860756*m.x124 - 9.55693503233427e-5*m.x124*m.x124)*m.b2236 + 0.0291954*m.x508 <= 0) m.c5611 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x125 - 9.55693503233427e-5*m.x125*m.x125)*m.b2237 + 0.0291954*m.x509 <= 0) m.c5612 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x126 - 9.55693503233427e-5*m.x126*m.x126)*m.b2238 + 0.0291954*m.x510 <= 0) m.c5613 = Constraint(expr=-(-0.50522 + 0.0197299810724171*m.x127 - 9.55693503233427e-5*m.x127*m.x127)*m.b2239 + 0.0291954*m.x511 <= 0) m.c5614 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x128 - 9.55693503233427e-5*m.x128*m.x128)*m.b2240 + 0.0291954*m.x512 <= 0) m.c5615 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x129 - 9.55693503233427e-5*m.x129*m.x129)*m.b2241 + 0.0291954*m.x513 <= 0) m.c5616 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x130 - 9.55693503233427e-5*m.x130*m.x130)*m.b2242 + 0.0291954*m.x514 <= 0) m.c5617 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x131 - 9.55693503233427e-5*m.x131*m.x131)*m.b2243 + 0.0291954*m.x515 <= 0) m.c5618 = Constraint(expr=-(-0.49158 + 0.0196240741348563*m.x132 - 9.55693503233427e-5*m.x132*m.x132)*m.b2244 + 0.0291954*m.x516 <= 0) m.c5619 = Constraint(expr=-(-0.4891 + 0.019604818328027*m.x133 - 9.55693503233427e-5*m.x133*m.x133)*m.b2245 + 0.0291954*m.x517 <= 0) m.c5620 = Constraint(expr=-(-0.48259 + 0.0195542718351003*m.x134 - 9.55693503233427e-5*m.x134*m.x134)*m.b2246 + 0.0291954*m.x518 <= 0) m.c5621 = Constraint(expr=-(-0.47794 + 0.0195181671972954*m.x135 - 9.55693503233427e-5*m.x135*m.x135)*m.b2247 + 0.0291954*m.x519 <= 0) m.c5622 = Constraint(expr=-(-0.47949 + 0.0195302020765637*m.x136 - 9.55693503233427e-5*m.x136*m.x136)*m.b2248 + 0.0291954*m.x520 <= 0) m.c5623 = Constraint(expr=-(-0.48383 + 0.0195638997385149*m.x137 - 9.55693503233427e-5*m.x137*m.x137)*m.b2249 + 0.0291954*m.x521 <= 0) m.c5624 = Constraint(expr=-(-0.48631 + 0.0195831555453441*m.x138 - 9.55693503233427e-5*m.x138*m.x138)*m.b2250 + 0.0291954*m.x522 <= 0) m.c5625 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x139 - 9.55693503233427e-5*m.x139*m.x139)*m.b2251 + 0.0291954*m.x523 <= 0) m.c5626 = Constraint(expr=-(-0.49902 + 0.019681841555344*m.x140 - 9.55693503233427e-5*m.x140*m.x140)*m.b2252 + 0.0291954*m.x524 <= 0) m.c5627 = Constraint(expr=-(-0.50026 + 0.0196914694587587*m.x141 - 9.55693503233427e-5*m.x141*m.x141)*m.b2253 + 0.0291954*m.x525 <= 0) m.c5628 = Constraint(expr=-(-0.5046 + 0.0197251671207098*m.x142 - 9.55693503233427e-5*m.x142*m.x142)*m.b2254 + 0.0291954*m.x526 <= 0) m.c5629 = Constraint(expr=-(-0.50274 + 0.0197107252655879*m.x143 - 9.55693503233427e-5*m.x143*m.x143)*m.b2255 + 0.0291954*m.x527 <= 0) m.c5630 = Constraint(expr=-(-0.50367 + 0.0197179461931489*m.x144 - 9.55693503233427e-5*m.x144*m.x144)*m.b2256 + 0.0291954*m.x528 <= 0) m.c5631 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x145 - 9.55693503233427e-5*m.x145*m.x145)*m.b2257 + 0.0291954*m.x529 <= 0) m.c5632 = Constraint(expr=-(-0.52165 + 0.0198575507926609*m.x146 - 9.55693503233427e-5*m.x146*m.x146)*m.b2258 + 0.0291954*m.x530 <= 0) m.c5633 = Constraint(expr=-(-0.52227 + 0.0198623647443682*m.x147 - 9.55693503233427e-5*m.x147*m.x147)*m.b2259 + 0.0291954*m.x531 <= 0) m.c5634 = Constraint(expr=-(-0.52258 + 0.0198647717202219*m.x148 - 9.55693503233427e-5*m.x148*m.x148)*m.b2260 + 0.0291954*m.x532 <= 0) m.c5635 = Constraint(expr=-(-0.5232 + 0.0198695856719292*m.x149 - 9.55693503233427e-5*m.x149*m.x149)*m.b2261 + 0.0291954*m.x533 <= 0) m.c5636 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x150 - 9.55693503233427e-5*m.x150*m.x150)*m.b2262 + 0.0291954*m.x534 <= 0) m.c5637 = Constraint(expr=-(-0.52382 + 0.0198743996236365*m.x151 - 9.55693503233427e-5*m.x151*m.x151)*m.b2263 + 0.0291954*m.x535 <= 0) m.c5638 = Constraint(expr=-(-0.52351 + 0.0198719926477828*m.x152 - 9.55693503233427e-5*m.x152*m.x152)*m.b2264 + 0.0291954*m.x536 <= 0) m.c5639 = Constraint(expr=-(-0.52289 + 0.0198671786960755*m.x153 - 9.55693503233427e-5*m.x153*m.x153)*m.b2265 + 0.0291954*m.x537 <= 0) m.c5640 = Constraint(expr=-(-0.52134 + 0.0198551438168073*m.x154 - 9.55693503233427e-5*m.x154*m.x154)*m.b2266 + 0.0291954*m.x538 <= 0) m.c5641 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x155 - 9.55693503233427e-5*m.x155*m.x155)*m.b2267 + 0.0291954*m.x539 <= 0) m.c5642 = Constraint(expr=-(-0.51328 + 0.0197925624446122*m.x156 - 9.55693503233427e-5*m.x156*m.x156)*m.b2268 + 0.0291954*m.x540 <= 0) m.c5643 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x157 - 9.55693503233427e-5*m.x157*m.x157)*m.b2269 + 0.0291954*m.x541 <= 0) m.c5644 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x158 - 9.55693503233427e-5*m.x158*m.x158)*m.b2270 + 0.0291954*m.x542 <= 0) m.c5645 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x159 - 9.55693503233427e-5*m.x159*m.x159)*m.b2271 + 0.0291954*m.x543 <= 0) m.c5646 = Constraint(expr=-(-0.50429 + 0.0197227601448562*m.x160 - 9.55693503233427e-5*m.x160*m.x160)*m.b2272 + 0.0291954*m.x544 <= 0) m.c5647 = Constraint(expr=-(-0.50553 + 0.0197323880482708*m.x161 - 9.55693503233427e-5*m.x161*m.x161)*m.b2273 + 0.0291954*m.x545 <= 0) m.c5648 = Constraint(expr=-(-0.50801 + 0.0197516438551001*m.x162 - 9.55693503233427e-5*m.x162*m.x162)*m.b2274 + 0.0291954*m.x546 <= 0) m.c5649 = Constraint(expr=-(-0.51204 + 0.0197829345411976*m.x163 - 9.55693503233427e-5*m.x163*m.x163)*m.b2275 + 0.0291954*m.x547 <= 0) m.c5650 = Constraint(expr=-(-0.51452 + 0.0198021903480268*m.x164 - 9.55693503233427e-5*m.x164*m.x164)*m.b2276 + 0.0291954*m.x548 <= 0) m.c5651 = Constraint(expr=-(-0.51576 + 0.0198118182514414*m.x165 - 9.55693503233427e-5*m.x165*m.x165)*m.b2277 + 0.0291954*m.x549 <= 0) m.c5652 = Constraint(expr=-(-0.517 + 0.0198214461548561*m.x166 - 9.55693503233427e-5*m.x166*m.x166)*m.b2278 + 0.0291954*m.x550 <= 0) m.c5653 = Constraint(expr=-(-0.51824 + 0.0198310740582707*m.x167 - 9.55693503233427e-5*m.x167*m.x167)*m.b2279 + 0.0291954*m.x551 <= 0) m.c5654 = Constraint(expr=-(-0.51917 + 0.0198382949858317*m.x168 - 9.55693503233427e-5*m.x168*m.x168)*m.b2280 + 0.0291954*m.x552 <= 0) m.c5655 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x169 - 9.55693503233427e-5*m.x169*m.x169)*m.b2281 + 0.0291954*m.x553 <= 0) m.c5656 = Constraint(expr=-(-0.51545 + 0.0198094112755878*m.x170 - 9.55693503233427e-5*m.x170*m.x170)*m.b2282 + 0.0291954*m.x554 <= 0) m.c5657 = Constraint(expr=-(-0.51297 + 0.0197901554687585*m.x171 - 9.55693503233427e-5*m.x171*m.x171)*m.b2283 + 0.0291954*m.x555 <= 0) m.c5658 = Constraint(expr=-(-0.51018 + 0.0197684926860756*m.x172 - 9.55693503233427e-5*m.x172*m.x172)*m.b2284 + 0.0291954*m.x556 <= 0) m.c5659 = Constraint(expr=-(-0.5077 + 0.0197492368792464*m.x173 - 9.55693503233427e-5*m.x173*m.x173)*m.b2285 + 0.0291954*m.x557 <= 0) m.c5660 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x174 - 9.55693503233427e-5*m.x174*m.x174)*m.b2286 + 0.0291954*m.x558 <= 0) m.c5661 = Constraint(expr=-(-0.50522 + 0.0197299810724171*m.x175 - 9.55693503233427e-5*m.x175*m.x175)*m.b2287 + 0.0291954*m.x559 <= 0) m.c5662 = Constraint(expr=-(-0.50491 + 0.0197275740965635*m.x176 - 9.55693503233427e-5*m.x176*m.x176)*m.b2288 + 0.0291954*m.x560 <= 0) m.c5663 = Constraint(expr=-(-0.50119 + 0.0196986903863196*m.x177 - 9.55693503233427e-5*m.x177*m.x177)*m.b2289 + 0.0291954*m.x561 <= 0) m.c5664 = Constraint(expr=-(-0.49964 + 0.0196866555070513*m.x178 - 9.55693503233427e-5*m.x178*m.x178)*m.b2290 + 0.0291954*m.x562 <= 0) m.c5665 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x179 - 9.55693503233427e-5*m.x179*m.x179)*m.b2291 + 0.0291954*m.x563 <= 0) m.c5666 = Constraint(expr=-(-0.49158 + 0.0196240741348563*m.x180 - 9.55693503233427e-5*m.x180*m.x180)*m.b2292 + 0.0291954*m.x564 <= 0) m.c5667 = Constraint(expr=-(-0.4891 + 0.019604818328027*m.x181 - 9.55693503233427e-5*m.x181*m.x181)*m.b2293 + 0.0291954*m.x565 <= 0) m.c5668 = Constraint(expr=-(-0.48259 + 0.0195542718351003*m.x182 - 9.55693503233427e-5*m.x182*m.x182)*m.b2294 + 0.0291954*m.x566 <= 0) m.c5669 = Constraint(expr=-(-0.47794 + 0.0195181671972954*m.x183 - 9.55693503233427e-5*m.x183*m.x183)*m.b2295 + 0.0291954*m.x567 <= 0) m.c5670 = Constraint(expr=-(-0.47949 + 0.0195302020765637*m.x184 - 9.55693503233427e-5*m.x184*m.x184)*m.b2296 + 0.0291954*m.x568 <= 0) m.c5671 = Constraint(expr=-(-0.48383 + 0.0195638997385149*m.x185 - 9.55693503233427e-5*m.x185*m.x185)*m.b2297 + 0.0291954*m.x569 <= 0) m.c5672 = Constraint(expr=-(-0.48631 + 0.0195831555453441*m.x186 - 9.55693503233427e-5*m.x186*m.x186)*m.b2298 + 0.0291954*m.x570 <= 0) m.c5673 = Constraint(expr=-(-0.49344 + 0.0196385159899782*m.x187 - 9.55693503233427e-5*m.x187*m.x187)*m.b2299 + 0.0291954*m.x571 <= 0) m.c5674 = Constraint(expr=-(-0.49902 + 0.019681841555344*m.x188 - 9.55693503233427e-5*m.x188*m.x188)*m.b2300 + 0.0291954*m.x572 <= 0) m.c5675 = Constraint(expr=-(-0.50026 + 0.0196914694587587*m.x189 - 9.55693503233427e-5*m.x189*m.x189)*m.b2301 + 0.0291954*m.x573 <= 0) m.c5676 = Constraint(expr=-(-0.5046 + 0.0197251671207098*m.x190 - 9.55693503233427e-5*m.x190*m.x190)*m.b2302 + 0.0291954*m.x574 <= 0) m.c5677 = Constraint(expr=-(-0.50274 + 0.0197107252655879*m.x191 - 9.55693503233427e-5*m.x191*m.x191)*m.b2303 + 0.0291954*m.x575 <= 0) m.c5678 = Constraint(expr=-(-0.50367 + 0.0197179461931489*m.x192 - 9.55693503233427e-5*m.x192*m.x192)*m.b2304 + 0.0291954*m.x576 <= 0) m.c5679 = Constraint(expr=-(-0.5201 + 0.0198455159133926*m.x193 - 9.55693503233427e-5*m.x193*m.x193)*m.b2305 + 0.0291954*m.x577 <= 0) m.c5680 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x2 - 0.000204938271604938*m.x2*m.x2)*m.b2306 + 0.025*m.x770 <= 0) m.c5681 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x3 - 0.000204938271604938*m.x3*m.x3)*m.b2307 + 0.025*m.x771 <= 0) m.c5682 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x4 - 0.000204938271604938*m.x4*m.x4)*m.b2308 + 0.025*m.x772 <= 0) m.c5683 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x5 - 0.000204938271604938*m.x5*m.x5)*m.b2309 + 0.025*m.x773 <= 0) m.c5684 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x6 - 0.000204938271604938*m.x6*m.x6)*m.b2310 + 0.025*m.x774 <= 0) m.c5685 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x7 - 0.000204938271604938*m.x7*m.x7)*m.b2311 + 0.025*m.x775 <= 0) m.c5686 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x8 - 0.000204938271604938*m.x8*m.x8)*m.b2312 + 0.025*m.x776 <= 0) m.c5687 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x9 - 0.000204938271604938*m.x9*m.x9)*m.b2313 + 0.025*m.x777 <= 0) m.c5688 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x10 - 0.000204938271604938*m.x10*m.x10)*m.b2314 + 0.025*m.x778 <= 0) m.c5689 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x11 - 0.000204938271604938*m.x11*m.x11)*m.b2315 + 0.025*m.x779 <= 0) m.c5690 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x12 - 0.000204938271604938*m.x12*m.x12)*m.b2316 + 0.025*m.x780 <= 0) m.c5691 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x13 - 0.000204938271604938*m.x13*m.x13)*m.b2317 + 0.025*m.x781 <= 0) m.c5692 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x14 - 0.000204938271604938*m.x14*m.x14)*m.b2318 + 0.025*m.x782 <= 0) m.c5693 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x15 - 0.000204938271604938*m.x15*m.x15)*m.b2319 + 0.025*m.x783 <= 0) m.c5694 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x16 - 0.000204938271604938*m.x16*m.x16)*m.b2320 + 0.025*m.x784 <= 0) m.c5695 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x17 - 0.000204938271604938*m.x17*m.x17)*m.b2321 + 0.025*m.x785 <= 0) m.c5696 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x18 - 0.000204938271604938*m.x18*m.x18)*m.b2322 + 0.025*m.x786 <= 0) m.c5697 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x19 - 0.000204938271604938*m.x19*m.x19)*m.b2323 + 0.025*m.x787 <= 0) m.c5698 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x20 - 0.000204938271604938*m.x20*m.x20)*m.b2324 + 0.025*m.x788 <= 0) m.c5699 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x21 - 0.000204938271604938*m.x21*m.x21)*m.b2325 + 0.025*m.x789 <= 0) m.c5700 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x22 - 0.000204938271604938*m.x22*m.x22)*m.b2326 + 0.025*m.x790 <= 0) m.c5701 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x23 - 0.000204938271604938*m.x23*m.x23)*m.b2327 + 0.025*m.x791 <= 0) m.c5702 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x24 - 0.000204938271604938*m.x24*m.x24)*m.b2328 + 0.025*m.x792 <= 0) m.c5703 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x25 - 0.000204938271604938*m.x25*m.x25)*m.b2329 + 0.025*m.x793 <= 0) m.c5704 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x26 - 0.000204938271604938*m.x26*m.x26)*m.b2330 + 0.025*m.x794 <= 0) m.c5705 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x27 - 0.000204938271604938*m.x27*m.x27)*m.b2331 + 0.025*m.x795 <= 0) m.c5706 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x28 - 0.000204938271604938*m.x28*m.x28)*m.b2332 + 0.025*m.x796 <= 0) m.c5707 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x29 - 0.000204938271604938*m.x29*m.x29)*m.b2333 + 0.025*m.x797 <= 0) m.c5708 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x30 - 0.000204938271604938*m.x30*m.x30)*m.b2334 + 0.025*m.x798 <= 0) m.c5709 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x31 - 0.000204938271604938*m.x31*m.x31)*m.b2335 + 0.025*m.x799 <= 0) m.c5710 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x32 - 0.000204938271604938*m.x32*m.x32)*m.b2336 + 0.025*m.x800 <= 0) m.c5711 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x33 - 0.000204938271604938*m.x33*m.x33)*m.b2337 + 0.025*m.x801 <= 0) m.c5712 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x34 - 0.000204938271604938*m.x34*m.x34)*m.b2338 + 0.025*m.x802 <= 0) m.c5713 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x35 - 0.000204938271604938*m.x35*m.x35)*m.b2339 + 0.025*m.x803 <= 0) m.c5714 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x36 - 0.000204938271604938*m.x36*m.x36)*m.b2340 + 0.025*m.x804 <= 0) m.c5715 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x37 - 0.000204938271604938*m.x37*m.x37)*m.b2341 + 0.025*m.x805 <= 0) m.c5716 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x38 - 0.000204938271604938*m.x38*m.x38)*m.b2342 + 0.025*m.x806 <= 0) m.c5717 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x39 - 0.000204938271604938*m.x39*m.x39)*m.b2343 + 0.025*m.x807 <= 0) m.c5718 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x40 - 0.000204938271604938*m.x40*m.x40)*m.b2344 + 0.025*m.x808 <= 0) m.c5719 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x41 - 0.000204938271604938*m.x41*m.x41)*m.b2345 + 0.025*m.x809 <= 0) m.c5720 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x42 - 0.000204938271604938*m.x42*m.x42)*m.b2346 + 0.025*m.x810 <= 0) m.c5721 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x43 - 0.000204938271604938*m.x43*m.x43)*m.b2347 + 0.025*m.x811 <= 0) m.c5722 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x44 - 0.000204938271604938*m.x44*m.x44)*m.b2348 + 0.025*m.x812 <= 0) m.c5723 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x45 - 0.000204938271604938*m.x45*m.x45)*m.b2349 + 0.025*m.x813 <= 0) m.c5724 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x46 - 0.000204938271604938*m.x46*m.x46)*m.b2350 + 0.025*m.x814 <= 0) m.c5725 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x47 - 0.000204938271604938*m.x47*m.x47)*m.b2351 + 0.025*m.x815 <= 0) m.c5726 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x48 - 0.000204938271604938*m.x48*m.x48)*m.b2352 + 0.025*m.x816 <= 0) m.c5727 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x49 - 0.000204938271604938*m.x49*m.x49)*m.b2353 + 0.025*m.x817 <= 0) m.c5728 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x50 - 0.000204938271604938*m.x50*m.x50)*m.b2354 + 0.025*m.x818 <= 0) m.c5729 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x51 - 0.000204938271604938*m.x51*m.x51)*m.b2355 + 0.025*m.x819 <= 0) m.c5730 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x52 - 0.000204938271604938*m.x52*m.x52)*m.b2356 + 0.025*m.x820 <= 0) m.c5731 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x53 - 0.000204938271604938*m.x53*m.x53)*m.b2357 + 0.025*m.x821 <= 0) m.c5732 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x54 - 0.000204938271604938*m.x54*m.x54)*m.b2358 + 0.025*m.x822 <= 0) m.c5733 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x55 - 0.000204938271604938*m.x55*m.x55)*m.b2359 + 0.025*m.x823 <= 0) m.c5734 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x56 - 0.000204938271604938*m.x56*m.x56)*m.b2360 + 0.025*m.x824 <= 0) m.c5735 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x57 - 0.000204938271604938*m.x57*m.x57)*m.b2361 + 0.025*m.x825 <= 0) m.c5736 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x58 - 0.000204938271604938*m.x58*m.x58)*m.b2362 + 0.025*m.x826 <= 0) m.c5737 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x59 - 0.000204938271604938*m.x59*m.x59)*m.b2363 + 0.025*m.x827 <= 0) m.c5738 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x60 - 0.000204938271604938*m.x60*m.x60)*m.b2364 + 0.025*m.x828 <= 0) m.c5739 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x61 - 0.000204938271604938*m.x61*m.x61)*m.b2365 + 0.025*m.x829 <= 0) m.c5740 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x62 - 0.000204938271604938*m.x62*m.x62)*m.b2366 + 0.025*m.x830 <= 0) m.c5741 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x63 - 0.000204938271604938*m.x63*m.x63)*m.b2367 + 0.025*m.x831 <= 0) m.c5742 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x64 - 0.000204938271604938*m.x64*m.x64)*m.b2368 + 0.025*m.x832 <= 0) m.c5743 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x65 - 0.000204938271604938*m.x65*m.x65)*m.b2369 + 0.025*m.x833 <= 0) m.c5744 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x66 - 0.000204938271604938*m.x66*m.x66)*m.b2370 + 0.025*m.x834 <= 0) m.c5745 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x67 - 0.000204938271604938*m.x67*m.x67)*m.b2371 + 0.025*m.x835 <= 0) m.c5746 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x68 - 0.000204938271604938*m.x68*m.x68)*m.b2372 + 0.025*m.x836 <= 0) m.c5747 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x69 - 0.000204938271604938*m.x69*m.x69)*m.b2373 + 0.025*m.x837 <= 0) m.c5748 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x70 - 0.000204938271604938*m.x70*m.x70)*m.b2374 + 0.025*m.x838 <= 0) m.c5749 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x71 - 0.000204938271604938*m.x71*m.x71)*m.b2375 + 0.025*m.x839 <= 0) m.c5750 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x72 - 0.000204938271604938*m.x72*m.x72)*m.b2376 + 0.025*m.x840 <= 0) m.c5751 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x73 - 0.000204938271604938*m.x73*m.x73)*m.b2377 + 0.025*m.x841 <= 0) m.c5752 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x74 - 0.000204938271604938*m.x74*m.x74)*m.b2378 + 0.025*m.x842 <= 0) m.c5753 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x75 - 0.000204938271604938*m.x75*m.x75)*m.b2379 + 0.025*m.x843 <= 0) m.c5754 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x76 - 0.000204938271604938*m.x76*m.x76)*m.b2380 + 0.025*m.x844 <= 0) m.c5755 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x77 - 0.000204938271604938*m.x77*m.x77)*m.b2381 + 0.025*m.x845 <= 0) m.c5756 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x78 - 0.000204938271604938*m.x78*m.x78)*m.b2382 + 0.025*m.x846 <= 0) m.c5757 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x79 - 0.000204938271604938*m.x79*m.x79)*m.b2383 + 0.025*m.x847 <= 0) m.c5758 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x80 - 0.000204938271604938*m.x80*m.x80)*m.b2384 + 0.025*m.x848 <= 0) m.c5759 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x81 - 0.000204938271604938*m.x81*m.x81)*m.b2385 + 0.025*m.x849 <= 0) m.c5760 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x82 - 0.000204938271604938*m.x82*m.x82)*m.b2386 + 0.025*m.x850 <= 0) m.c5761 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x83 - 0.000204938271604938*m.x83*m.x83)*m.b2387 + 0.025*m.x851 <= 0) m.c5762 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x84 - 0.000204938271604938*m.x84*m.x84)*m.b2388 + 0.025*m.x852 <= 0) m.c5763 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x85 - 0.000204938271604938*m.x85*m.x85)*m.b2389 + 0.025*m.x853 <= 0) m.c5764 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x86 - 0.000204938271604938*m.x86*m.x86)*m.b2390 + 0.025*m.x854 <= 0) m.c5765 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x87 - 0.000204938271604938*m.x87*m.x87)*m.b2391 + 0.025*m.x855 <= 0) m.c5766 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x88 - 0.000204938271604938*m.x88*m.x88)*m.b2392 + 0.025*m.x856 <= 0) m.c5767 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x89 - 0.000204938271604938*m.x89*m.x89)*m.b2393 + 0.025*m.x857 <= 0) m.c5768 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x90 - 0.000204938271604938*m.x90*m.x90)*m.b2394 + 0.025*m.x858 <= 0) m.c5769 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x91 - 0.000204938271604938*m.x91*m.x91)*m.b2395 + 0.025*m.x859 <= 0) m.c5770 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x92 - 0.000204938271604938*m.x92*m.x92)*m.b2396 + 0.025*m.x860 <= 0) m.c5771 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x93 - 0.000204938271604938*m.x93*m.x93)*m.b2397 + 0.025*m.x861 <= 0) m.c5772 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x94 - 0.000204938271604938*m.x94*m.x94)*m.b2398 + 0.025*m.x862 <= 0) m.c5773 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x95 - 0.000204938271604938*m.x95*m.x95)*m.b2399 + 0.025*m.x863 <= 0) m.c5774 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x96 - 0.000204938271604938*m.x96*m.x96)*m.b2400 + 0.025*m.x864 <= 0) m.c5775 = Constraint(expr=-(-0.0245 + 0.0252844444444444*m.x97 - 0.000204938271604938*m.x97*m.x97)*m.b2401 + 0.025*m.x865 <= 0) m.c5776 = Constraint(expr= m.x1250 <= 0) m.c5777 = Constraint(expr= m.x1251 <= 0) m.c5778 = Constraint(expr= m.x1252 <= 0) m.c5779 = Constraint(expr= m.x1253 <= 0) m.c5780 = Constraint(expr= m.x1254 <= 0) m.c5781 = Constraint(expr= m.x1255 <= 0) m.c5782 = Constraint(expr= m.x1256 <= 0) m.c5783 = Constraint(expr= m.x1257 <= 0) m.c5784 = Constraint(expr= m.x1258 <= 0) m.c5785 = Constraint(expr= m.x1259 <= 0) m.c5786 = Constraint(expr= m.x1260 <= 0) m.c5787 = Constraint(expr= m.x1261 <= 0) m.c5788 = Constraint(expr= m.x1262 <= 0) m.c5789 = Constraint(expr= m.x1263 <= 0) m.c5790 = Constraint(expr= m.x1264 <= 0) m.c5791 = Constraint(expr= m.x1265 <= 0) m.c5792 = Constraint(expr= m.x1266 <= 0) m.c5793 = Constraint(expr= m.x1267 <= 0) m.c5794 = Constraint(expr= m.x1268 <= 0) m.c5795 = Constraint(expr= m.x1269 <= 0) m.c5796 = Constraint(expr= m.x1270 <= 0) m.c5797 = Constraint(expr= m.x1271 <= 0) m.c5798 = Constraint(expr= m.x1272 <= 0) m.c5799 = Constraint(expr= m.x1273 <= 0) m.c5800 = Constraint(expr= m.x1274 <= 0) m.c5801 = Constraint(expr= m.x1275 <= 0) m.c5802 = Constraint(expr= m.x1276 <= 0) m.c5803 = Constraint(expr= m.x1277 <= 0) m.c5804 = Constraint(expr= m.x1278 <= 0) m.c5805 = Constraint(expr= m.x1279 <= 0) m.c5806 = Constraint(expr= m.x1280 <= 0) m.c5807 = Constraint(expr= m.x1281 <= 0) m.c5808 = Constraint(expr= m.x1282 <= 0) m.c5809 = Constraint(expr= m.x1283 <= 0) m.c5810 = Constraint(expr= m.x1284 <= 0) m.c5811 = Constraint(expr= m.x1285 <= 0) m.c5812 = Constraint(expr= m.x1286 <= 0) m.c5813 = Constraint(expr= m.x1287 <= 0) m.c5814 = Constraint(expr= m.x1288 <= 0) m.c5815 = Constraint(expr= m.x1289 <= 0) m.c5816 = Constraint(expr= m.x1290 <= 0) m.c5817 = Constraint(expr= m.x1291 <= 0) m.c5818 = Constraint(expr= m.x1292 <= 0) m.c5819 = Constraint(expr= m.x1293 <= 0) m.c5820 = Constraint(expr= m.x1294 <= 0) m.c5821 = Constraint(expr= m.x1295 <= 0) m.c5822 = Constraint(expr= m.x1296 <= 0) m.c5823 = Constraint(expr= m.x1297 <= 0) m.c5824 = Constraint(expr= m.x1298 <= 0) m.c5825 = Constraint(expr= m.x1299 <= 0) m.c5826 = Constraint(expr= m.x1300 <= 0) m.c5827 = Constraint(expr= m.x1301 <= 0) m.c5828 = Constraint(expr= m.x1302 <= 0) m.c5829 = Constraint(expr= m.x1303 <= 0) m.c5830 = Constraint(expr= m.x1304 <= 0) m.c5831 = Constraint(expr= m.x1305 <= 0) m.c5832 = Constraint(expr= m.x1306 <= 0) m.c5833 = Constraint(expr= m.x1307 <= 0) m.c5834 = Constraint(expr= m.x1308 <= 0) m.c5835 = Constraint(expr= m.x1309 <= 0) m.c5836 = Constraint(expr= m.x1310 <= 0) m.c5837 = Constraint(expr= m.x1311 <= 0) m.c5838 = Constraint(expr= m.x1312 <= 0) m.c5839 = Constraint(expr= m.x1313 <= 0) m.c5840 = Constraint(expr= m.x1314 <= 0) m.c5841 = Constraint(expr= m.x1315 <= 0) m.c5842 = Constraint(expr= m.x1316 <= 0) m.c5843 = Constraint(expr= m.x1317 <= 0) m.c5844 = Constraint(expr= m.x1318 <= 0) m.c5845 = Constraint(expr= m.x1319 <= 0) m.c5846 = Constraint(expr= m.x1320 <= 0) m.c5847 = Constraint(expr= m.x1321 <= 0) m.c5848 = Constraint(expr= m.x1322 <= 0) m.c5849 = Constraint(expr= m.x1323 <= 0) m.c5850 = Constraint(expr= m.x1324 <= 0) m.c5851 = Constraint(expr= m.x1325 <= 0) m.c5852 = Constraint(expr= m.x1326 <= 0) m.c5853 = Constraint(expr= m.x1327 <= 0) m.c5854 = Constraint(expr= m.x1328 <= 0) m.c5855 = Constraint(expr= m.x1329 <= 0) m.c5856 = Constraint(expr= m.x1330 <= 0) m.c5857 = Constraint(expr= m.x1331 <= 0) m.c5858 = Constraint(expr= m.x1332 <= 0) m.c5859 = Constraint(expr= m.x1333 <= 0) m.c5860 = Constraint(expr= m.x1334 <= 0) m.c5861 = Constraint(expr= m.x1335 <= 0) m.c5862 = Constraint(expr= m.x1336 <= 0) m.c5863 = Constraint(expr= m.x1337 <= 0) m.c5864 = Constraint(expr= m.x1338 <= 0) m.c5865 = Constraint(expr= m.x1339 <= 0) m.c5866 = Constraint(expr= m.x1340 <= 0) m.c5867 = Constraint(expr= m.x1341 <= 0) m.c5868 = Constraint(expr= m.x1342 <= 0) m.c5869 = Constraint(expr= m.x1343 <= 0) m.c5870 = Constraint(expr= m.x1344 <= 0) m.c5871 = Constraint(expr= m.x1345 <= 0) m.c5872 = Constraint(expr= m.x1346 <= 0) m.c5873 = Constraint(expr= m.x1347 <= 0) m.c5874 = Constraint(expr= m.x1348 <= 0) m.c5875 = Constraint(expr= m.x1349 <= 0) m.c5876 = Constraint(expr= m.x1350 <= 0) m.c5877 = Constraint(expr= m.x1351 <= 0) m.c5878 = Constraint(expr= m.x1352 <= 0) m.c5879 = Constraint(expr= m.x1353 <= 0) m.c5880 = Constraint(expr= m.x1354 <= 0) m.c5881 = Constraint(expr= m.x1355 <= 0) m.c5882 = Constraint(expr= m.x1356 <= 0) m.c5883 = Constraint(expr= m.x1357 <= 0) m.c5884 = Constraint(expr= m.x1358 <= 0) m.c5885 = Constraint(expr= m.x1359 <= 0) m.c5886 = Constraint(expr= m.x1360 <= 0) m.c5887 = Constraint(expr= m.x1361 <= 0) m.c5888 = Constraint(expr= m.x1362 <= 0) m.c5889 = Constraint(expr= m.x1363 <= 0) m.c5890 = Constraint(expr= m.x1364 <= 0) m.c5891 = Constraint(expr= m.x1365 <= 0) m.c5892 = Constraint(expr= m.x1366 <= 0) m.c5893 = Constraint(expr= m.x1367 <= 0) m.c5894 = Constraint(expr= m.x1368 <= 0) m.c5895 = Constraint(expr= m.x1369 <= 0) m.c5896 = Constraint(expr= m.x1370 <= 0) m.c5897 = Constraint(expr= m.x1371 <= 0) m.c5898 = Constraint(expr= m.x1372 <= 0) m.c5899 = Constraint(expr= m.x1373 <= 0) m.c5900 = Constraint(expr= m.x1374 <= 0) m.c5901 = Constraint(expr= m.x1375 <= 0) m.c5902 = Constraint(expr= m.x1376 <= 0) m.c5903 = Constraint(expr= m.x1377 <= 0) m.c5904 = Constraint(expr= m.x1378 <= 0) m.c5905 = Constraint(expr= m.x1379 <= 0) m.c5906 = Constraint(expr= m.x1380 <= 0) m.c5907 = Constraint(expr= m.x1381 <= 0) m.c5908 = Constraint(expr= m.x1382 <= 0) m.c5909 = Constraint(expr= m.x1383 <= 0) m.c5910 = Constraint(expr= m.x1384 <= 0) m.c5911 = Constraint(expr= m.x1385 <= 0) m.c5912 = Constraint(expr= m.x1386 <= 0) m.c5913 = Constraint(expr= m.x1387 <= 0) m.c5914 = Constraint(expr= m.x1388 <= 0) m.c5915 = Constraint(expr= m.x1389 <= 0) m.c5916 = Constraint(expr= m.x1390 <= 0) m.c5917 = Constraint(expr= m.x1391 <= 0) m.c5918 = Constraint(expr= m.x1392 <= 0) m.c5919 = Constraint(expr= m.x1393 <= 0) m.c5920 = Constraint(expr= m.x1394 <= 0) m.c5921 = Constraint(expr= m.x1395 <= 0) m.c5922 = Constraint(expr= m.x1396 <= 0) m.c5923 = Constraint(expr= m.x1397 <= 0) m.c5924 = Constraint(expr= m.x1398 <= 0) m.c5925 = Constraint(expr= m.x1399 <= 0) m.c5926 = Constraint(expr= m.x1400 <= 0) m.c5927 = Constraint(expr= m.x1401 <= 0) m.c5928 = Constraint(expr= m.x1402 <= 0) m.c5929 = Constraint(expr= m.x1403 <= 0) m.c5930 = Constraint(expr= m.x1404 <= 0) m.c5931 = Constraint(expr= m.x1405 <= 0) m.c5932 = Constraint(expr= m.x1406 <= 0) m.c5933 = Constraint(expr= m.x1407 <= 0) m.c5934 = Constraint(expr= m.x1408 <= 0) m.c5935 = Constraint(expr= m.x1409 <= 0) m.c5936 = Constraint(expr= m.x1410 <= 0) m.c5937 = Constraint(expr= m.x1411 <= 0) m.c5938 = Constraint(expr= m.x1412 <= 0) m.c5939 = Constraint(expr= m.x1413 <= 0) m.c5940 = Constraint(expr= m.x1414 <= 0) m.c5941 = Constraint(expr= m.x1415 <= 0) m.c5942 = Constraint(expr= m.x1416 <= 0) m.c5943 = Constraint(expr= m.x1417 <= 0) m.c5944 = Constraint(expr= m.x1418 <= 0) m.c5945 = Constraint(expr= m.x1419 <= 0) m.c5946 = Constraint(expr= m.x1420 <= 0) m.c5947 = Constraint(expr= m.x1421 <= 0) m.c5948 = Constraint(expr= m.x1422 <= 0) m.c5949 = Constraint(expr= m.x1423 <= 0) m.c5950 = Constraint(expr= m.x1424 <= 0) m.c5951 = Constraint(expr= m.x1425 <= 0) m.c5952 = Constraint(expr= m.x1426 <= 0) m.c5953 = Constraint(expr= m.x1427 <= 0) m.c5954 = Constraint(expr= m.x1428 <= 0) m.c5955 = Constraint(expr= m.x1429 <= 0) m.c5956 = Constraint(expr= m.x1430 <= 0) m.c5957 = Constraint(expr= m.x1431 <= 0) m.c5958 = Constraint(expr= m.x1432 <= 0) m.c5959 = Constraint(expr= m.x1433 <= 0) m.c5960 = Constraint(expr= m.x1434 <= 0) m.c5961 = Constraint(expr= m.x1435 <= 0) m.c5962 = Constraint(expr= m.x1436 <= 0) m.c5963 = Constraint(expr= m.x1437 <= 0) m.c5964 = Constraint(expr= m.x1438 <= 0) m.c5965 = Constraint(expr= m.x1439 <= 0) m.c5966 = Constraint(expr= m.x1440 <= 0) m.c5967 = Constraint(expr= m.x1441 <= 0) m.c5968 = Constraint(expr=0.00191656795755345*m.x194*m.x194 - 0.091333*m.x194 + 0.0992753*m.x962 + 9.12861*m.b2018 <= 8.99141) m.c5969 = Constraint(expr=0.00191656795755345*m.x195*m.x195 - 0.0913396*m.x195 + 0.0992753*m.x963 + 9.12706*m.b2019 <= 8.98958) m.c5970 = Constraint(expr=0.00191656795755345*m.x196*m.x196 - 0.0913429*m.x196 + 0.0992753*m.x964 + 9.12628*m.b2020 <= 8.98866) m.c5971 = Constraint(expr=0.00191656795755345*m.x197*m.x197 - 0.0913496*m.x197 + 0.0992753*m.x965 + 9.12473*m.b2021 <= 8.98683) m.c5972 = Constraint(expr=0.00191656795755345*m.x198*m.x198 - 0.0913529*m.x198 + 0.0992753*m.x966 + 9.12396*m.b2022 <= 8.98592) m.c5973 = Constraint(expr=0.00191656795755345*m.x199*m.x199 - 0.0913562*m.x199 + 0.0992753*m.x967 + 9.12318*m.b2023 <= 8.985) m.c5974 = Constraint(expr=0.00191656795755345*m.x200*m.x200 - 0.0913529*m.x200 + 0.0992753*m.x968 + 9.12396*m.b2024 <= 8.98592) m.c5975 = Constraint(expr=0.00191656795755345*m.x201*m.x201 - 0.0913462*m.x201 + 0.0992753*m.x969 + 9.12551*m.b2025 <= 8.98775) m.c5976 = Constraint(expr=0.00191656795755345*m.x202*m.x202 - 0.0913296*m.x202 + 0.0992753*m.x970 + 9.12938*m.b2026 <= 8.99232) m.c5977 = Constraint(expr=0.00191656795755345*m.x203*m.x203 - 0.0912965*m.x203 + 0.0992753*m.x971 + 9.13713*m.b2027 <= 9.00147) m.c5978 = Constraint(expr=0.00191656795755345*m.x204*m.x204 - 0.0912434*m.x204 + 0.0992753*m.x972 + 9.14954*m.b2028 <= 9.01612) m.c5979 = Constraint(expr=0.00191656795755345*m.x205*m.x205 - 0.0911836*m.x205 + 0.0992753*m.x973 + 9.16349*m.b2029 <= 9.03259) m.c5980 = Constraint(expr=0.00191656795755345*m.x206*m.x206 - 0.0911139*m.x206 + 0.0992753*m.x974 + 9.17976*m.b2030 <= 9.0518) m.c5981 = Constraint(expr=0.00191656795755345*m.x207*m.x207 - 0.0910973*m.x207 + 0.0992753*m.x975 + 9.18364*m.b2031 <= 9.05638) m.c5982 = Constraint(expr=0.00191656795755345*m.x208*m.x208 - 0.0911471*m.x208 + 0.0992753*m.x976 + 9.17201*m.b2032 <= 9.04265) m.c5983 = Constraint(expr=0.00191656795755345*m.x209*m.x209 - 0.0911604*m.x209 + 0.0992753*m.x977 + 9.16891*m.b2033 <= 9.03899) m.c5984 = Constraint(expr=0.00191656795755345*m.x210*m.x210 - 0.0911869*m.x210 + 0.0992753*m.x978 + 9.16271*m.b2034 <= 9.03167) m.c5985 = Constraint(expr=0.00191656795755345*m.x211*m.x211 - 0.0912301*m.x211 + 0.0992753*m.x979 + 9.15264*m.b2035 <= 9.01978) m.c5986 = Constraint(expr=0.00191656795755345*m.x212*m.x212 - 0.0912566*m.x212 + 0.0992753*m.x980 + 9.14644*m.b2036 <= 9.01246) m.c5987 = Constraint(expr=0.00191656795755345*m.x213*m.x213 - 0.0912699*m.x213 + 0.0992753*m.x981 + 9.14334*m.b2037 <= 9.0088) m.c5988 = Constraint(expr=0.00191656795755345*m.x214*m.x214 - 0.0912832*m.x214 + 0.0992753*m.x982 + 9.14024*m.b2038 <= 9.00514) m.c5989 = Constraint(expr=0.00191656795755345*m.x215*m.x215 - 0.0912965*m.x215 + 0.0992753*m.x983 + 9.13713*m.b2039 <= 9.00147) m.c5990 = Constraint(expr=0.00191656795755345*m.x216*m.x216 - 0.0913064*m.x216 + 0.0992753*m.x984 + 9.13481*m.b2040 <= 8.99873) m.c5991 = Constraint(expr=0.00191656795755345*m.x217*m.x217 - 0.0913164*m.x217 + 0.0992753*m.x985 + 9.13248*m.b2041 <= 8.99598) m.c5992 = Constraint(expr=0.00191656795755345*m.x218*m.x218 - 0.0912666*m.x218 + 0.0992753*m.x986 + 9.14411*m.b2042 <= 9.00971) m.c5993 = Constraint(expr=0.00191656795755345*m.x219*m.x219 - 0.09124*m.x219 + 0.0992753*m.x987 + 9.15031*m.b2043 <= 9.01703) m.c5994 = Constraint(expr=0.00191656795755345*m.x220*m.x220 - 0.0912102*m.x220 + 0.0992753*m.x988 + 9.15729*m.b2044 <= 9.02527) m.c5995 = Constraint(expr=0.00191656795755345*m.x221*m.x221 - 0.0911836*m.x221 + 0.0992753*m.x989 + 9.16349*m.b2045 <= 9.03259) m.c5996 = Constraint(expr=0.00191656795755345*m.x222*m.x222 - 0.0911538*m.x222 + 0.0992753*m.x990 + 9.17046*m.b2046 <= 9.04082) m.c5997 = Constraint(expr=0.00191656795755345*m.x223*m.x223 - 0.0911571*m.x223 + 0.0992753*m.x991 + 9.16969*m.b2047 <= 9.03991) m.c5998 = Constraint(expr=0.00191656795755345*m.x224*m.x224 - 0.0911538*m.x224 + 0.0992753*m.x992 + 9.17046*m.b2048 <= 9.04082) m.c5999 = Constraint(expr=0.00191656795755345*m.x225*m.x225 - 0.0911139*m.x225 + 0.0992753*m.x993 + 9.17976*m.b2049 <= 9.0518) m.c6000 = Constraint(expr=0.00191656795755345*m.x226*m.x226 - 0.0910973*m.x226 + 0.0992753*m.x994 + 9.18364*m.b2050 <= 9.05638) m.c6001 = Constraint(expr=0.00191656795755345*m.x227*m.x227 - 0.091031*m.x227 + 0.0992753*m.x995 + 9.19914*m.b2051 <= 9.07468) m.c6002 = Constraint(expr=0.00191656795755345*m.x228*m.x228 - 0.0910111*m.x228 + 0.0992753*m.x996 + 9.20379*m.b2052 <= 9.08017) m.c6003 = Constraint(expr=0.00191656795755345*m.x229*m.x229 - 0.0909845*m.x229 + 0.0992753*m.x997 + 9.20999*m.b2053 <= 9.08749) m.c6004 = Constraint(expr=0.00191656795755345*m.x230*m.x230 - 0.0909148*m.x230 + 0.0992753*m.x998 + 9.22627*m.b2054 <= 9.10671) m.c6005 = Constraint(expr=0.00191656795755345*m.x231*m.x231 - 0.090865*m.x231 + 0.0992753*m.x999 + 9.2379*m.b2055 <= 9.12044) m.c6006 = Constraint(expr=0.00191656795755345*m.x232*m.x232 - 0.0908816*m.x232 + 0.0992753*m.x1000 + 9.23402*m.b2056 <= 9.11586) m.c6007 = Constraint(expr=0.00191656795755345*m.x233*m.x233 - 0.0909281*m.x233 + 0.0992753*m.x1001 + 9.22317*m.b2057 <= 9.10305) m.c6008 = Constraint(expr=0.00191656795755345*m.x234*m.x234 - 0.0909546*m.x234 + 0.0992753*m.x1002 + 9.21697*m.b2058 <= 9.09573) m.c6009 = Constraint(expr=0.00191656795755345*m.x235*m.x235 - 0.091031*m.x235 + 0.0992753*m.x1003 + 9.19914*m.b2059 <= 9.07468) m.c6010 = Constraint(expr=0.00191656795755345*m.x236*m.x236 - 0.0910907*m.x236 + 0.0992753*m.x1004 + 9.18519*m.b2060 <= 9.05821) m.c6011 = Constraint(expr=0.00191656795755345*m.x237*m.x237 - 0.091104*m.x237 + 0.0992753*m.x1005 + 9.18209*m.b2061 <= 9.05455) m.c6012 = Constraint(expr=0.00191656795755345*m.x238*m.x238 - 0.0911504*m.x238 + 0.0992753*m.x1006 + 9.17124*m.b2062 <= 9.04174) m.c6013 = Constraint(expr=0.00191656795755345*m.x239*m.x239 - 0.0911305*m.x239 + 0.0992753*m.x1007 + 9.17589*m.b2063 <= 9.04723) m.c6014 = Constraint(expr=0.00191656795755345*m.x240*m.x240 - 0.0911405*m.x240 + 0.0992753*m.x1008 + 9.17356*m.b2064 <= 9.04448) m.c6015 = Constraint(expr=0.00191656795755345*m.x241*m.x241 - 0.0913164*m.x241 + 0.0992753*m.x1009 + 9.13248*m.b2065 <= 8.99598) m.c6016 = Constraint(expr=0.00191656795755345*m.x242*m.x242 - 0.091333*m.x242 + 0.0992753*m.x1010 + 9.12861*m.b2066 <= 8.99141) m.c6017 = Constraint(expr=0.00191656795755345*m.x243*m.x243 - 0.0913396*m.x243 + 0.0992753*m.x1011 + 9.12706*m.b2067 <= 8.98958) m.c6018 = Constraint(expr=0.00191656795755345*m.x244*m.x244 - 0.0913429*m.x244 + 0.0992753*m.x1012 + 9.12628*m.b2068 <= 8.98866) m.c6019 = Constraint(expr=0.00191656795755345*m.x245*m.x245 - 0.0913496*m.x245 + 0.0992753*m.x1013 + 9.12473*m.b2069 <= 8.98683) m.c6020 = Constraint(expr=0.00191656795755345*m.x246*m.x246 - 0.0913529*m.x246 + 0.0992753*m.x1014 + 9.12396*m.b2070 <= 8.98592) m.c6021 = Constraint(expr=0.00191656795755345*m.x247*m.x247 - 0.0913562*m.x247 + 0.0992753*m.x1015 + 9.12318*m.b2071 <= 8.985) m.c6022 = Constraint(expr=0.00191656795755345*m.x248*m.x248 - 0.0913529*m.x248 + 0.0992753*m.x1016 + 9.12396*m.b2072 <= 8.98592) m.c6023 = Constraint(expr=0.00191656795755345*m.x249*m.x249 - 0.0913462*m.x249 + 0.0992753*m.x1017 + 9.12551*m.b2073 <= 8.98775) m.c6024 = Constraint(expr=0.00191656795755345*m.x250*m.x250 - 0.0913296*m.x250 + 0.0992753*m.x1018 + 9.12938*m.b2074 <= 8.99232) m.c6025 = Constraint(expr=0.00191656795755345*m.x251*m.x251 - 0.0912965*m.x251 + 0.0992753*m.x1019 + 9.13713*m.b2075 <= 9.00147) m.c6026 = Constraint(expr=0.00191656795755345*m.x252*m.x252 - 0.0912434*m.x252 + 0.0992753*m.x1020 + 9.14954*m.b2076 <= 9.01612) m.c6027 = Constraint(expr=0.00191656795755345*m.x253*m.x253 - 0.0911836*m.x253 + 0.0992753*m.x1021 + 9.16349*m.b2077 <= 9.03259) m.c6028 = Constraint(expr=0.00191656795755345*m.x254*m.x254 - 0.0911139*m.x254 + 0.0992753*m.x1022 + 9.17976*m.b2078 <= 9.0518) m.c6029 = Constraint(expr=0.00191656795755345*m.x255*m.x255 - 0.0910973*m.x255 + 0.0992753*m.x1023 + 9.18364*m.b2079 <= 9.05638) m.c6030 = Constraint(expr=0.00191656795755345*m.x256*m.x256 - 0.0911471*m.x256 + 0.0992753*m.x1024 + 9.17201*m.b2080 <= 9.04265) m.c6031 = Constraint(expr=0.00191656795755345*m.x257*m.x257 - 0.0911604*m.x257 + 0.0992753*m.x1025 + 9.16891*m.b2081 <= 9.03899) m.c6032 = Constraint(expr=0.00191656795755345*m.x258*m.x258 - 0.0911869*m.x258 + 0.0992753*m.x1026 + 9.16271*m.b2082 <= 9.03167) m.c6033 = Constraint(expr=0.00191656795755345*m.x259*m.x259 - 0.0912301*m.x259 + 0.0992753*m.x1027 + 9.15264*m.b2083 <= 9.01978) m.c6034 = Constraint(expr=0.00191656795755345*m.x260*m.x260 - 0.0912566*m.x260 + 0.0992753*m.x1028 + 9.14644*m.b2084 <= 9.01246) m.c6035 = Constraint(expr=0.00191656795755345*m.x261*m.x261 - 0.0912699*m.x261 + 0.0992753*m.x1029 + 9.14334*m.b2085 <= 9.0088) m.c6036 = Constraint(expr=0.00191656795755345*m.x262*m.x262 - 0.0912832*m.x262 + 0.0992753*m.x1030 + 9.14024*m.b2086 <= 9.00514) m.c6037 = Constraint(expr=0.00191656795755345*m.x263*m.x263 - 0.0912965*m.x263 + 0.0992753*m.x1031 + 9.13713*m.b2087 <= 9.00147) m.c6038 = Constraint(expr=0.00191656795755345*m.x264*m.x264 - 0.0913064*m.x264 + 0.0992753*m.x1032 + 9.13481*m.b2088 <= 8.99873) m.c6039 = Constraint(expr=0.00191656795755345*m.x265*m.x265 - 0.0913164*m.x265 + 0.0992753*m.x1033 + 9.13248*m.b2089 <= 8.99598) m.c6040 = Constraint(expr=0.00191656795755345*m.x266*m.x266 - 0.0912666*m.x266 + 0.0992753*m.x1034 + 9.14411*m.b2090 <= 9.00971) m.c6041 = Constraint(expr=0.00191656795755345*m.x267*m.x267 - 0.09124*m.x267 + 0.0992753*m.x1035 + 9.15031*m.b2091 <= 9.01703) m.c6042 = Constraint(expr=0.00191656795755345*m.x268*m.x268 - 0.0912102*m.x268 + 0.0992753*m.x1036 + 9.15729*m.b2092 <= 9.02527) m.c6043 = Constraint(expr=0.00191656795755345*m.x269*m.x269 - 0.0911836*m.x269 + 0.0992753*m.x1037 + 9.16349*m.b2093 <= 9.03259) m.c6044 = Constraint(expr=0.00191656795755345*m.x270*m.x270 - 0.0911538*m.x270 + 0.0992753*m.x1038 + 9.17046*m.b2094 <= 9.04082) m.c6045 = Constraint(expr=0.00191656795755345*m.x271*m.x271 - 0.0911571*m.x271 + 0.0992753*m.x1039 + 9.16969*m.b2095 <= 9.03991) m.c6046 = Constraint(expr=0.00191656795755345*m.x272*m.x272 - 0.0911538*m.x272 + 0.0992753*m.x1040 + 9.17046*m.b2096 <= 9.04082) m.c6047 = Constraint(expr=0.00191656795755345*m.x273*m.x273 - 0.0911139*m.x273 + 0.0992753*m.x1041 + 9.17976*m.b2097 <= 9.0518) m.c6048 = Constraint(expr=0.00191656795755345*m.x274*m.x274 - 0.0910973*m.x274 + 0.0992753*m.x1042 + 9.18364*m.b2098 <= 9.05638) m.c6049 = Constraint(expr=0.00191656795755345*m.x275*m.x275 - 0.091031*m.x275 + 0.0992753*m.x1043 + 9.19914*m.b2099 <= 9.07468) m.c6050 = Constraint(expr=0.00191656795755345*m.x276*m.x276 - 0.0910111*m.x276 + 0.0992753*m.x1044 + 9.20379*m.b2100 <= 9.08017) m.c6051 = Constraint(expr=0.00191656795755345*m.x277*m.x277 - 0.0909845*m.x277 + 0.0992753*m.x1045 + 9.20999*m.b2101 <= 9.08749) m.c6052 = Constraint(expr=0.00191656795755345*m.x278*m.x278 - 0.0909148*m.x278 + 0.0992753*m.x1046 + 9.22627*m.b2102 <= 9.10671) m.c6053 = Constraint(expr=0.00191656795755345*m.x279*m.x279 - 0.090865*m.x279 + 0.0992753*m.x1047 + 9.2379*m.b2103 <= 9.12044) m.c6054 = Constraint(expr=0.00191656795755345*m.x280*m.x280 - 0.0908816*m.x280 + 0.0992753*m.x1048 + 9.23402*m.b2104 <= 9.11586) m.c6055 = Constraint(expr=0.00191656795755345*m.x281*m.x281 - 0.0909281*m.x281 + 0.0992753*m.x1049 + 9.22317*m.b2105 <= 9.10305) m.c6056 = Constraint(expr=0.00191656795755345*m.x282*m.x282 - 0.0909546*m.x282 + 0.0992753*m.x1050 + 9.21697*m.b2106 <= 9.09573) m.c6057 = Constraint(expr=0.00191656795755345*m.x283*m.x283 - 0.091031*m.x283 + 0.0992753*m.x1051 + 9.19914*m.b2107 <= 9.07468) m.c6058 = Constraint(expr=0.00191656795755345*m.x284*m.x284 - 0.0910907*m.x284 + 0.0992753*m.x1052 + 9.18519*m.b2108 <= 9.05821) m.c6059 = Constraint(expr=0.00191656795755345*m.x285*m.x285 - 0.091104*m.x285 + 0.0992753*m.x1053 + 9.18209*m.b2109 <= 9.05455) m.c6060 = Constraint(expr=0.00191656795755345*m.x286*m.x286 - 0.0911504*m.x286 + 0.0992753*m.x1054 + 9.17124*m.b2110 <= 9.04174) m.c6061 = Constraint(expr=0.00191656795755345*m.x287*m.x287 - 0.0911305*m.x287 + 0.0992753*m.x1055 + 9.17589*m.b2111 <= 9.04723) m.c6062 = Constraint(expr=0.00191656795755345*m.x288*m.x288 - 0.0911405*m.x288 + 0.0992753*m.x1056 + 9.17356*m.b2112 <= 9.04448) m.c6063 = Constraint(expr=0.00191656795755345*m.x289*m.x289 - 0.0913164*m.x289 + 0.0992753*m.x1057 + 9.13248*m.b2113 <= 8.99598) m.c6064 = Constraint(expr=0.00191656795755345*m.x290*m.x290 - 0.091333*m.x290 + 0.0992753*m.x1058 + 9.12861*m.b2114 <= 8.99141) m.c6065 = Constraint(expr=0.00191656795755345*m.x291*m.x291 - 0.0913396*m.x291 + 0.0992753*m.x1059 + 9.12706*m.b2115 <= 8.98958) m.c6066 = Constraint(expr=0.00191656795755345*m.x292*m.x292 - 0.0913429*m.x292 + 0.0992753*m.x1060 + 9.12628*m.b2116 <= 8.98866) m.c6067 = Constraint(expr=0.00191656795755345*m.x293*m.x293 - 0.0913496*m.x293 + 0.0992753*m.x1061 + 9.12473*m.b2117 <= 8.98683) m.c6068 = Constraint(expr=0.00191656795755345*m.x294*m.x294 - 0.0913529*m.x294 + 0.0992753*m.x1062 + 9.12396*m.b2118 <= 8.98592) m.c6069 = Constraint(expr=0.00191656795755345*m.x295*m.x295 - 0.0913562*m.x295 + 0.0992753*m.x1063 + 9.12318*m.b2119 <= 8.985) m.c6070 = Constraint(expr=0.00191656795755345*m.x296*m.x296 - 0.0913529*m.x296 + 0.0992753*m.x1064 + 9.12396*m.b2120 <= 8.98592) m.c6071 = Constraint(expr=0.00191656795755345*m.x297*m.x297 - 0.0913462*m.x297 + 0.0992753*m.x1065 + 9.12551*m.b2121 <= 8.98775) m.c6072 = Constraint(expr=0.00191656795755345*m.x298*m.x298 - 0.0913296*m.x298 + 0.0992753*m.x1066 + 9.12938*m.b2122 <= 8.99232) m.c6073 = Constraint(expr=0.00191656795755345*m.x299*m.x299 - 0.0912965*m.x299 + 0.0992753*m.x1067 + 9.13713*m.b2123 <= 9.00147) m.c6074 = Constraint(expr=0.00191656795755345*m.x300*m.x300 - 0.0912434*m.x300 + 0.0992753*m.x1068 + 9.14954*m.b2124 <= 9.01612) m.c6075 = Constraint(expr=0.00191656795755345*m.x301*m.x301 - 0.0911836*m.x301 + 0.0992753*m.x1069 + 9.16349*m.b2125 <= 9.03259) m.c6076 = Constraint(expr=0.00191656795755345*m.x302*m.x302 - 0.0911139*m.x302 + 0.0992753*m.x1070 + 9.17976*m.b2126 <= 9.0518) m.c6077 = Constraint(expr=0.00191656795755345*m.x303*m.x303 - 0.0910973*m.x303 + 0.0992753*m.x1071 + 9.18364*m.b2127 <= 9.05638) m.c6078 = Constraint(expr=0.00191656795755345*m.x304*m.x304 - 0.0911471*m.x304 + 0.0992753*m.x1072 + 9.17201*m.b2128 <= 9.04265) m.c6079 = Constraint(expr=0.00191656795755345*m.x305*m.x305 - 0.0911604*m.x305 + 0.0992753*m.x1073 + 9.16891*m.b2129 <= 9.03899) m.c6080 = Constraint(expr=0.00191656795755345*m.x306*m.x306 - 0.0911869*m.x306 + 0.0992753*m.x1074 + 9.16271*m.b2130 <= 9.03167) m.c6081 = Constraint(expr=0.00191656795755345*m.x307*m.x307 - 0.0912301*m.x307 + 0.0992753*m.x1075 + 9.15264*m.b2131 <= 9.01978) m.c6082 = Constraint(expr=0.00191656795755345*m.x308*m.x308 - 0.0912566*m.x308 + 0.0992753*m.x1076 + 9.14644*m.b2132 <= 9.01246) m.c6083 = Constraint(expr=0.00191656795755345*m.x309*m.x309 - 0.0912699*m.x309 + 0.0992753*m.x1077 + 9.14334*m.b2133 <= 9.0088) m.c6084 = Constraint(expr=0.00191656795755345*m.x310*m.x310 - 0.0912832*m.x310 + 0.0992753*m.x1078 + 9.14024*m.b2134 <= 9.00514) m.c6085 = Constraint(expr=0.00191656795755345*m.x311*m.x311 - 0.0912965*m.x311 + 0.0992753*m.x1079 + 9.13713*m.b2135 <= 9.00147) m.c6086 = Constraint(expr=0.00191656795755345*m.x312*m.x312 - 0.0913064*m.x312 + 0.0992753*m.x1080 + 9.13481*m.b2136 <= 8.99873) m.c6087 = Constraint(expr=0.00191656795755345*m.x313*m.x313 - 0.0913164*m.x313 + 0.0992753*m.x1081 + 9.13248*m.b2137 <= 8.99598) m.c6088 = Constraint(expr=0.00191656795755345*m.x314*m.x314 - 0.0912666*m.x314 + 0.0992753*m.x1082 + 9.14411*m.b2138 <= 9.00971) m.c6089 = Constraint(expr=0.00191656795755345*m.x315*m.x315 - 0.09124*m.x315 + 0.0992753*m.x1083 + 9.15031*m.b2139 <= 9.01703) m.c6090 = Constraint(expr=0.00191656795755345*m.x316*m.x316 - 0.0912102*m.x316 + 0.0992753*m.x1084 + 9.15729*m.b2140 <= 9.02527) m.c6091 = Constraint(expr=0.00191656795755345*m.x317*m.x317 - 0.0911836*m.x317 + 0.0992753*m.x1085 + 9.16349*m.b2141 <= 9.03259) m.c6092 = Constraint(expr=0.00191656795755345*m.x318*m.x318 - 0.0911538*m.x318 + 0.0992753*m.x1086 + 9.17046*m.b2142 <= 9.04082) m.c6093 = Constraint(expr=0.00191656795755345*m.x319*m.x319 - 0.0911571*m.x319 + 0.0992753*m.x1087 + 9.16969*m.b2143 <= 9.03991) m.c6094 = Constraint(expr=0.00191656795755345*m.x320*m.x320 - 0.0911538*m.x320 + 0.0992753*m.x1088 + 9.17046*m.b2144 <= 9.04082) m.c6095 = Constraint(expr=0.00191656795755345*m.x321*m.x321 - 0.0911139*m.x321 + 0.0992753*m.x1089 + 9.17976*m.b2145 <= 9.0518) m.c6096 = Constraint(expr=0.00191656795755345*m.x322*m.x322 - 0.0910973*m.x322 + 0.0992753*m.x1090 + 9.18364*m.b2146 <= 9.05638) m.c6097 = Constraint(expr=0.00191656795755345*m.x323*m.x323 - 0.091031*m.x323 + 0.0992753*m.x1091 + 9.19914*m.b2147 <= 9.07468) m.c6098 = Constraint(expr=0.00191656795755345*m.x324*m.x324 - 0.0910111*m.x324 + 0.0992753*m.x1092 + 9.20379*m.b2148 <= 9.08017) m.c6099 = Constraint(expr=0.00191656795755345*m.x325*m.x325 - 0.0909845*m.x325 + 0.0992753*m.x1093 + 9.20999*m.b2149 <= 9.08749) m.c6100 = Constraint(expr=0.00191656795755345*m.x326*m.x326 - 0.0909148*m.x326 + 0.0992753*m.x1094 + 9.22627*m.b2150 <= 9.10671) m.c6101 = Constraint(expr=0.00191656795755345*m.x327*m.x327 - 0.090865*m.x327 + 0.0992753*m.x1095 + 9.2379*m.b2151 <= 9.12044) m.c6102 = Constraint(expr=0.00191656795755345*m.x328*m.x328 - 0.0908816*m.x328 + 0.0992753*m.x1096 + 9.23402*m.b2152 <= 9.11586) m.c6103 = Constraint(expr=0.00191656795755345*m.x329*m.x329 - 0.0909281*m.x329 + 0.0992753*m.x1097 + 9.22317*m.b2153 <= 9.10305) m.c6104 = Constraint(expr=0.00191656795755345*m.x330*m.x330 - 0.0909546*m.x330 + 0.0992753*m.x1098 + 9.21697*m.b2154 <= 9.09573) m.c6105 = Constraint(expr=0.00191656795755345*m.x331*m.x331 - 0.091031*m.x331 + 0.0992753*m.x1099 + 9.19914*m.b2155 <= 9.07468) m.c6106 = Constraint(expr=0.00191656795755345*m.x332*m.x332 - 0.0910907*m.x332 + 0.0992753*m.x1100 + 9.18519*m.b2156 <= 9.05821) m.c6107 = Constraint(expr=0.00191656795755345*m.x333*m.x333 - 0.091104*m.x333 + 0.0992753*m.x1101 + 9.18209*m.b2157 <= 9.05455) m.c6108 = Constraint(expr=0.00191656795755345*m.x334*m.x334 - 0.0911504*m.x334 + 0.0992753*m.x1102 + 9.17124*m.b2158 <= 9.04174) m.c6109 = Constraint(expr=0.00191656795755345*m.x335*m.x335 - 0.0911305*m.x335 + 0.0992753*m.x1103 + 9.17589*m.b2159 <= 9.04723) m.c6110 = Constraint(expr=0.00191656795755345*m.x336*m.x336 - 0.0911405*m.x336 + 0.0992753*m.x1104 + 9.17356*m.b2160 <= 9.04448) m.c6111 = Constraint(expr=0.00191656795755345*m.x337*m.x337 - 0.0913164*m.x337 + 0.0992753*m.x1105 + 9.13248*m.b2161 <= 8.99598) m.c6112 = Constraint(expr=0.00191656795755345*m.x338*m.x338 - 0.091333*m.x338 + 0.0992753*m.x1106 + 9.12861*m.b2162 <= 8.99141) m.c6113 = Constraint(expr=0.00191656795755345*m.x339*m.x339 - 0.0913396*m.x339 + 0.0992753*m.x1107 + 9.12706*m.b2163 <= 8.98958) m.c6114 = Constraint(expr=0.00191656795755345*m.x340*m.x340 - 0.0913429*m.x340 + 0.0992753*m.x1108 + 9.12628*m.b2164 <= 8.98866) m.c6115 = Constraint(expr=0.00191656795755345*m.x341*m.x341 - 0.0913496*m.x341 + 0.0992753*m.x1109 + 9.12473*m.b2165 <= 8.98683) m.c6116 = Constraint(expr=0.00191656795755345*m.x342*m.x342 - 0.0913529*m.x342 + 0.0992753*m.x1110 + 9.12396*m.b2166 <= 8.98592) m.c6117 = Constraint(expr=0.00191656795755345*m.x343*m.x343 - 0.0913562*m.x343 + 0.0992753*m.x1111 + 9.12318*m.b2167 <= 8.985) m.c6118 = Constraint(expr=0.00191656795755345*m.x344*m.x344 - 0.0913529*m.x344 + 0.0992753*m.x1112 + 9.12396*m.b2168 <= 8.98592) m.c6119 = Constraint(expr=0.00191656795755345*m.x345*m.x345 - 0.0913462*m.x345 + 0.0992753*m.x1113 + 9.12551*m.b2169 <= 8.98775) m.c6120 = Constraint(expr=0.00191656795755345*m.x346*m.x346 - 0.0913296*m.x346 + 0.0992753*m.x1114 + 9.12938*m.b2170 <= 8.99232) m.c6121 = Constraint(expr=0.00191656795755345*m.x347*m.x347 - 0.0912965*m.x347 + 0.0992753*m.x1115 + 9.13713*m.b2171 <= 9.00147) m.c6122 = Constraint(expr=0.00191656795755345*m.x348*m.x348 - 0.0912434*m.x348 + 0.0992753*m.x1116 + 9.14954*m.b2172 <= 9.01612) m.c6123 = Constraint(expr=0.00191656795755345*m.x349*m.x349 - 0.0911836*m.x349 + 0.0992753*m.x1117 + 9.16349*m.b2173 <= 9.03259) m.c6124 = Constraint(expr=0.00191656795755345*m.x350*m.x350 - 0.0911139*m.x350 + 0.0992753*m.x1118 + 9.17976*m.b2174 <= 9.0518) m.c6125 = Constraint(expr=0.00191656795755345*m.x351*m.x351 - 0.0910973*m.x351 + 0.0992753*m.x1119 + 9.18364*m.b2175 <= 9.05638) m.c6126 = Constraint(expr=0.00191656795755345*m.x352*m.x352 - 0.0911471*m.x352 + 0.0992753*m.x1120 + 9.17201*m.b2176 <= 9.04265) m.c6127 = Constraint(expr=0.00191656795755345*m.x353*m.x353 - 0.0911604*m.x353 + 0.0992753*m.x1121 + 9.16891*m.b2177 <= 9.03899) m.c6128 = Constraint(expr=0.00191656795755345*m.x354*m.x354 - 0.0911869*m.x354 + 0.0992753*m.x1122 + 9.16271*m.b2178 <= 9.03167) m.c6129 = Constraint(expr=0.00191656795755345*m.x355*m.x355 - 0.0912301*m.x355 + 0.0992753*m.x1123 + 9.15264*m.b2179 <= 9.01978) m.c6130 = Constraint(expr=0.00191656795755345*m.x356*m.x356 - 0.0912566*m.x356 + 0.0992753*m.x1124 + 9.14644*m.b2180 <= 9.01246) m.c6131 = Constraint(expr=0.00191656795755345*m.x357*m.x357 - 0.0912699*m.x357 + 0.0992753*m.x1125 + 9.14334*m.b2181 <= 9.0088) m.c6132 = Constraint(expr=0.00191656795755345*m.x358*m.x358 - 0.0912832*m.x358 + 0.0992753*m.x1126 + 9.14024*m.b2182 <= 9.00514) m.c6133 = Constraint(expr=0.00191656795755345*m.x359*m.x359 - 0.0912965*m.x359 + 0.0992753*m.x1127 + 9.13713*m.b2183 <= 9.00147) m.c6134 = Constraint(expr=0.00191656795755345*m.x360*m.x360 - 0.0913064*m.x360 + 0.0992753*m.x1128 + 9.13481*m.b2184 <= 8.99873) m.c6135 = Constraint(expr=0.00191656795755345*m.x361*m.x361 - 0.0913164*m.x361 + 0.0992753*m.x1129 + 9.13248*m.b2185 <= 8.99598) m.c6136 = Constraint(expr=0.00191656795755345*m.x362*m.x362 - 0.0912666*m.x362 + 0.0992753*m.x1130 + 9.14411*m.b2186 <= 9.00971) m.c6137 = Constraint(expr=0.00191656795755345*m.x363*m.x363 - 0.09124*m.x363 + 0.0992753*m.x1131 + 9.15031*m.b2187 <= 9.01703) m.c6138 = Constraint(expr=0.00191656795755345*m.x364*m.x364 - 0.0912102*m.x364 + 0.0992753*m.x1132 + 9.15729*m.b2188 <= 9.02527) m.c6139 = Constraint(expr=0.00191656795755345*m.x365*m.x365 - 0.0911836*m.x365 + 0.0992753*m.x1133 + 9.16349*m.b2189 <= 9.03259) m.c6140 = Constraint(expr=0.00191656795755345*m.x366*m.x366 - 0.0911538*m.x366 + 0.0992753*m.x1134 + 9.17046*m.b2190 <= 9.04082) m.c6141 = Constraint(expr=0.00191656795755345*m.x367*m.x367 - 0.0911571*m.x367 + 0.0992753*m.x1135 + 9.16969*m.b2191 <= 9.03991) m.c6142 = Constraint(expr=0.00191656795755345*m.x368*m.x368 - 0.0911538*m.x368 + 0.0992753*m.x1136 + 9.17046*m.b2192 <= 9.04082) m.c6143 = Constraint(expr=0.00191656795755345*m.x369*m.x369 - 0.0911139*m.x369 + 0.0992753*m.x1137 + 9.17976*m.b2193 <= 9.0518) m.c6144 = Constraint(expr=0.00191656795755345*m.x370*m.x370 - 0.0910973*m.x370 + 0.0992753*m.x1138 + 9.18364*m.b2194 <= 9.05638) m.c6145 = Constraint(expr=0.00191656795755345*m.x371*m.x371 - 0.091031*m.x371 + 0.0992753*m.x1139 + 9.19914*m.b2195 <= 9.07468) m.c6146 = Constraint(expr=0.00191656795755345*m.x372*m.x372 - 0.0910111*m.x372 + 0.0992753*m.x1140 + 9.20379*m.b2196 <= 9.08017) m.c6147 = Constraint(expr=0.00191656795755345*m.x373*m.x373 - 0.0909845*m.x373 + 0.0992753*m.x1141 + 9.20999*m.b2197 <= 9.08749) m.c6148 = Constraint(expr=0.00191656795755345*m.x374*m.x374 - 0.0909148*m.x374 + 0.0992753*m.x1142 + 9.22627*m.b2198 <= 9.10671) m.c6149 = Constraint(expr=0.00191656795755345*m.x375*m.x375 - 0.090865*m.x375 + 0.0992753*m.x1143 + 9.2379*m.b2199 <= 9.12044) m.c6150 = Constraint(expr=0.00191656795755345*m.x376*m.x376 - 0.0908816*m.x376 + 0.0992753*m.x1144 + 9.23402*m.b2200 <= 9.11586) m.c6151 = Constraint(expr=0.00191656795755345*m.x377*m.x377 - 0.0909281*m.x377 + 0.0992753*m.x1145 + 9.22317*m.b2201 <= 9.10305) m.c6152 = Constraint(expr=0.00191656795755345*m.x378*m.x378 - 0.0909546*m.x378 + 0.0992753*m.x1146 + 9.21697*m.b2202 <= 9.09573) m.c6153 = Constraint(expr=0.00191656795755345*m.x379*m.x379 - 0.091031*m.x379 + 0.0992753*m.x1147 + 9.19914*m.b2203 <= 9.07468) m.c6154 = Constraint(expr=0.00191656795755345*m.x380*m.x380 - 0.0910907*m.x380 + 0.0992753*m.x1148 + 9.18519*m.b2204 <= 9.05821) m.c6155 = Constraint(expr=0.00191656795755345*m.x381*m.x381 - 0.091104*m.x381 + 0.0992753*m.x1149 + 9.18209*m.b2205 <= 9.05455) m.c6156 = Constraint(expr=0.00191656795755345*m.x382*m.x382 - 0.0911504*m.x382 + 0.0992753*m.x1150 + 9.17124*m.b2206 <= 9.04174) m.c6157 = Constraint(expr=0.00191656795755345*m.x383*m.x383 - 0.0911305*m.x383 + 0.0992753*m.x1151 + 9.17589*m.b2207 <= 9.04723) m.c6158 = Constraint(expr=0.00191656795755345*m.x384*m.x384 - 0.0911405*m.x384 + 0.0992753*m.x1152 + 9.17356*m.b2208 <= 9.04448) m.c6159 = Constraint(expr=0.00191656795755345*m.x385*m.x385 - 0.0913164*m.x385 + 0.0992753*m.x1153 + 9.13248*m.b2209 <= 8.99598) m.c6160 = Constraint(expr=(-0.00172169903672958*m.x194*m.x194) - 0.0405088*m.x194 + 0.183453*m.x578 + 7.00999*m.b2018 <= 6.90479) m.c6161 = Constraint(expr=(-0.00172169903672958*m.x195*m.x195) - 0.0404934*m.x195 + 0.183453*m.x579 + 7.00904*m.b2019 <= 6.90396) m.c6162 = Constraint(expr=(-0.00172169903672958*m.x196*m.x196) - 0.0404856*m.x196 + 0.183453*m.x580 + 7.00857*m.b2020 <= 6.90355) m.c6163 = Constraint(expr=(-0.00172169903672958*m.x197*m.x197) - 0.0404701*m.x197 + 0.183453*m.x581 + 7.00762*m.b2021 <= 6.90272) m.c6164 = Constraint(expr=(-0.00172169903672958*m.x198*m.x198) - 0.0404624*m.x198 + 0.183453*m.x582 + 7.00714*m.b2022 <= 6.9023) m.c6165 = Constraint(expr=(-0.00172169903672958*m.x199*m.x199) - 0.0404546*m.x199 + 0.183453*m.x583 + 7.00667*m.b2023 <= 6.90189) m.c6166 = Constraint(expr=(-0.00172169903672958*m.x200*m.x200) - 0.0404624*m.x200 + 0.183453*m.x584 + 7.00714*m.b2024 <= 6.9023) m.c6167 = Constraint(expr=(-0.00172169903672958*m.x201*m.x201) - 0.0404779*m.x201 + 0.183453*m.x585 + 7.00809*m.b2025 <= 6.90313) m.c6168 = Constraint(expr=(-0.00172169903672958*m.x202*m.x202) - 0.0405166*m.x202 + 0.183453*m.x586 + 7.01047*m.b2026 <= 6.90521) m.c6169 = Constraint(expr=(-0.00172169903672958*m.x203*m.x203) - 0.040594*m.x203 + 0.183453*m.x587 + 7.01522*m.b2027 <= 6.90936) m.c6170 = Constraint(expr=(-0.00172169903672958*m.x204*m.x204) - 0.0407179*m.x204 + 0.183453*m.x588 + 7.02282*m.b2028 <= 6.916) m.c6171 = Constraint(expr=(-0.00172169903672958*m.x205*m.x205) - 0.0408573*m.x205 + 0.183453*m.x589 + 7.03137*m.b2029 <= 6.92347) m.c6172 = Constraint(expr=(-0.00172169903672958*m.x206*m.x206) - 0.0410199*m.x206 + 0.183453*m.x590 + 7.04134*m.b2030 <= 6.93218) m.c6173 = Constraint(expr=(-0.00172169903672958*m.x207*m.x207) - 0.0410586*m.x207 + 0.183453*m.x591 + 7.04371*m.b2031 <= 6.93425) m.c6174 = Constraint(expr=(-0.00172169903672958*m.x208*m.x208) - 0.0409425*m.x208 + 0.183453*m.x592 + 7.03659*m.b2032 <= 6.92803) m.c6175 = Constraint(expr=(-0.00172169903672958*m.x209*m.x209) - 0.0409115*m.x209 + 0.183453*m.x593 + 7.03469*m.b2033 <= 6.92637) m.c6176 = Constraint(expr=(-0.00172169903672958*m.x210*m.x210) - 0.0408496*m.x210 + 0.183453*m.x594 + 7.03089*m.b2034 <= 6.92305) m.c6177 = Constraint(expr=(-0.00172169903672958*m.x211*m.x211) - 0.0407489*m.x211 + 0.183453*m.x595 + 7.02472*m.b2035 <= 6.91766) m.c6178 = Constraint(expr=(-0.00172169903672958*m.x212*m.x212) - 0.0406869*m.x212 + 0.183453*m.x596 + 7.02092*m.b2036 <= 6.91434) m.c6179 = Constraint(expr=(-0.00172169903672958*m.x213*m.x213) - 0.040656*m.x213 + 0.183453*m.x597 + 7.01902*m.b2037 <= 6.91268) m.c6180 = Constraint(expr=(-0.00172169903672958*m.x214*m.x214) - 0.040625*m.x214 + 0.183453*m.x598 + 7.01712*m.b2038 <= 6.91102) m.c6181 = Constraint(expr=(-0.00172169903672958*m.x215*m.x215) - 0.040594*m.x215 + 0.183453*m.x599 + 7.01522*m.b2039 <= 6.90936) m.c6182 = Constraint(expr=(-0.00172169903672958*m.x216*m.x216) - 0.0405708*m.x216 + 0.183453*m.x600 + 7.01379*m.b2040 <= 6.90811) m.c6183 = Constraint(expr=(-0.00172169903672958*m.x217*m.x217) - 0.0405476*m.x217 + 0.183453*m.x601 + 7.01237*m.b2041 <= 6.90687) m.c6184 = Constraint(expr=(-0.00172169903672958*m.x218*m.x218) - 0.0406637*m.x218 + 0.183453*m.x602 + 7.01949*m.b2042 <= 6.91309) m.c6185 = Constraint(expr=(-0.00172169903672958*m.x219*m.x219) - 0.0407257*m.x219 + 0.183453*m.x603 + 7.02329*m.b2043 <= 6.91641) m.c6186 = Constraint(expr=(-0.00172169903672958*m.x220*m.x220) - 0.0407954*m.x220 + 0.183453*m.x604 + 7.02757*m.b2044 <= 6.92015) m.c6187 = Constraint(expr=(-0.00172169903672958*m.x221*m.x221) - 0.0408573*m.x221 + 0.183453*m.x605 + 7.03137*m.b2045 <= 6.92347) m.c6188 = Constraint(expr=(-0.00172169903672958*m.x222*m.x222) - 0.040927*m.x222 + 0.183453*m.x606 + 7.03564*m.b2046 <= 6.9272) m.c6189 = Constraint(expr=(-0.00172169903672958*m.x223*m.x223) - 0.0409192*m.x223 + 0.183453*m.x607 + 7.03516*m.b2047 <= 6.92678) m.c6190 = Constraint(expr=(-0.00172169903672958*m.x224*m.x224) - 0.040927*m.x224 + 0.183453*m.x608 + 7.03564*m.b2048 <= 6.9272) m.c6191 = Constraint(expr=(-0.00172169903672958*m.x225*m.x225) - 0.0410199*m.x225 + 0.183453*m.x609 + 7.04134*m.b2049 <= 6.93218) m.c6192 = Constraint(expr=(-0.00172169903672958*m.x226*m.x226) - 0.0410586*m.x226 + 0.183453*m.x610 + 7.04371*m.b2050 <= 6.93425) m.c6193 = Constraint(expr=(-0.00172169903672958*m.x227*m.x227) - 0.0412135*m.x227 + 0.183453*m.x611 + 7.05321*m.b2051 <= 6.94255) m.c6194 = Constraint(expr=(-0.00172169903672958*m.x228*m.x228) - 0.04126*m.x228 + 0.183453*m.x612 + 7.05606*m.b2052 <= 6.94504) m.c6195 = Constraint(expr=(-0.00172169903672958*m.x229*m.x229) - 0.0413219*m.x229 + 0.183453*m.x613 + 7.05986*m.b2053 <= 6.94836) m.c6196 = Constraint(expr=(-0.00172169903672958*m.x230*m.x230) - 0.0414845*m.x230 + 0.183453*m.x614 + 7.06983*m.b2054 <= 6.95707) m.c6197 = Constraint(expr=(-0.00172169903672958*m.x231*m.x231) - 0.0416007*m.x231 + 0.183453*m.x615 + 7.07696*m.b2055 <= 6.9633) m.c6198 = Constraint(expr=(-0.00172169903672958*m.x232*m.x232) - 0.0415619*m.x232 + 0.183453*m.x616 + 7.07458*m.b2056 <= 6.96122) m.c6199 = Constraint(expr=(-0.00172169903672958*m.x233*m.x233) - 0.0414535*m.x233 + 0.183453*m.x617 + 7.06793*m.b2057 <= 6.95541) m.c6200 = Constraint(expr=(-0.00172169903672958*m.x234*m.x234) - 0.0413916*m.x234 + 0.183453*m.x618 + 7.06413*m.b2058 <= 6.95209) m.c6201 = Constraint(expr=(-0.00172169903672958*m.x235*m.x235) - 0.0412135*m.x235 + 0.183453*m.x619 + 7.05321*m.b2059 <= 6.94255) m.c6202 = Constraint(expr=(-0.00172169903672958*m.x236*m.x236) - 0.0410741*m.x236 + 0.183453*m.x620 + 7.04466*m.b2060 <= 6.93508) m.c6203 = Constraint(expr=(-0.00172169903672958*m.x237*m.x237) - 0.0410431*m.x237 + 0.183453*m.x621 + 7.04276*m.b2061 <= 6.93342) m.c6204 = Constraint(expr=(-0.00172169903672958*m.x238*m.x238) - 0.0409347*m.x238 + 0.183453*m.x622 + 7.03611*m.b2062 <= 6.92761) m.c6205 = Constraint(expr=(-0.00172169903672958*m.x239*m.x239) - 0.0409812*m.x239 + 0.183453*m.x623 + 7.03896*m.b2063 <= 6.9301) m.c6206 = Constraint(expr=(-0.00172169903672958*m.x240*m.x240) - 0.040958*m.x240 + 0.183453*m.x624 + 7.03754*m.b2064 <= 6.92886) m.c6207 = Constraint(expr=(-0.00172169903672958*m.x241*m.x241) - 0.0405476*m.x241 + 0.183453*m.x625 + 7.01237*m.b2065 <= 6.90687) m.c6208 = Constraint(expr=(-0.00172169903672958*m.x242*m.x242) - 0.0405088*m.x242 + 0.183453*m.x626 + 7.00999*m.b2066 <= 6.90479) m.c6209 = Constraint(expr=(-0.00172169903672958*m.x243*m.x243) - 0.0404934*m.x243 + 0.183453*m.x627 + 7.00904*m.b2067 <= 6.90396) m.c6210 = Constraint(expr=(-0.00172169903672958*m.x244*m.x244) - 0.0404856*m.x244 + 0.183453*m.x628 + 7.00857*m.b2068 <= 6.90355) m.c6211 = Constraint(expr=(-0.00172169903672958*m.x245*m.x245) - 0.0404701*m.x245 + 0.183453*m.x629 + 7.00762*m.b2069 <= 6.90272) m.c6212 = Constraint(expr=(-0.00172169903672958*m.x246*m.x246) - 0.0404624*m.x246 + 0.183453*m.x630 + 7.00714*m.b2070 <= 6.9023) m.c6213 = Constraint(expr=(-0.00172169903672958*m.x247*m.x247) - 0.0404546*m.x247 + 0.183453*m.x631 + 7.00667*m.b2071 <= 6.90189) m.c6214 = Constraint(expr=(-0.00172169903672958*m.x248*m.x248) - 0.0404624*m.x248 + 0.183453*m.x632 + 7.00714*m.b2072 <= 6.9023) m.c6215 = Constraint(expr=(-0.00172169903672958*m.x249*m.x249) - 0.0404779*m.x249 + 0.183453*m.x633 + 7.00809*m.b2073 <= 6.90313) m.c6216 = Constraint(expr=(-0.00172169903672958*m.x250*m.x250) - 0.0405166*m.x250 + 0.183453*m.x634 + 7.01047*m.b2074 <= 6.90521) m.c6217 = Constraint(expr=(-0.00172169903672958*m.x251*m.x251) - 0.040594*m.x251 + 0.183453*m.x635 + 7.01522*m.b2075 <= 6.90936) m.c6218 = Constraint(expr=(-0.00172169903672958*m.x252*m.x252) - 0.0407179*m.x252 + 0.183453*m.x636 + 7.02282*m.b2076 <= 6.916) m.c6219 = Constraint(expr=(-0.00172169903672958*m.x253*m.x253) - 0.0408573*m.x253 + 0.183453*m.x637 + 7.03137*m.b2077 <= 6.92347) m.c6220 = Constraint(expr=(-0.00172169903672958*m.x254*m.x254) - 0.0410199*m.x254 + 0.183453*m.x638 + 7.04134*m.b2078 <= 6.93218) m.c6221 = Constraint(expr=(-0.00172169903672958*m.x255*m.x255) - 0.0410586*m.x255 + 0.183453*m.x639 + 7.04371*m.b2079 <= 6.93425) m.c6222 = Constraint(expr=(-0.00172169903672958*m.x256*m.x256) - 0.0409425*m.x256 + 0.183453*m.x640 + 7.03659*m.b2080 <= 6.92803) m.c6223 = Constraint(expr=(-0.00172169903672958*m.x257*m.x257) - 0.0409115*m.x257 + 0.183453*m.x641 + 7.03469*m.b2081 <= 6.92637) m.c6224 = Constraint(expr=(-0.00172169903672958*m.x258*m.x258) - 0.0408496*m.x258 + 0.183453*m.x642 + 7.03089*m.b2082 <= 6.92305) m.c6225 = Constraint(expr=(-0.00172169903672958*m.x259*m.x259) - 0.0407489*m.x259 + 0.183453*m.x643 + 7.02472*m.b2083 <= 6.91766) m.c6226 = Constraint(expr=(-0.00172169903672958*m.x260*m.x260) - 0.0406869*m.x260 + 0.183453*m.x644 + 7.02092*m.b2084 <= 6.91434) m.c6227 = Constraint(expr=(-0.00172169903672958*m.x261*m.x261) - 0.040656*m.x261 + 0.183453*m.x645 + 7.01902*m.b2085 <= 6.91268) m.c6228 = Constraint(expr=(-0.00172169903672958*m.x262*m.x262) - 0.040625*m.x262 + 0.183453*m.x646 + 7.01712*m.b2086 <= 6.91102) m.c6229 = Constraint(expr=(-0.00172169903672958*m.x263*m.x263) - 0.040594*m.x263 + 0.183453*m.x647 + 7.01522*m.b2087 <= 6.90936) m.c6230 = Constraint(expr=(-0.00172169903672958*m.x264*m.x264) - 0.0405708*m.x264 + 0.183453*m.x648 + 7.01379*m.b2088 <= 6.90811) m.c6231 = Constraint(expr=(-0.00172169903672958*m.x265*m.x265) - 0.0405476*m.x265 + 0.183453*m.x649 + 7.01237*m.b2089 <= 6.90687) m.c6232 = Constraint(expr=(-0.00172169903672958*m.x266*m.x266) - 0.0406637*m.x266 + 0.183453*m.x650 + 7.01949*m.b2090 <= 6.91309) m.c6233 = Constraint(expr=(-0.00172169903672958*m.x267*m.x267) - 0.0407257*m.x267 + 0.183453*m.x651 + 7.02329*m.b2091 <= 6.91641) m.c6234 = Constraint(expr=(-0.00172169903672958*m.x268*m.x268) - 0.0407954*m.x268 + 0.183453*m.x652 + 7.02757*m.b2092 <= 6.92015) m.c6235 = Constraint(expr=(-0.00172169903672958*m.x269*m.x269) - 0.0408573*m.x269 + 0.183453*m.x653 + 7.03137*m.b2093 <= 6.92347) m.c6236 = Constraint(expr=(-0.00172169903672958*m.x270*m.x270) - 0.040927*m.x270 + 0.183453*m.x654 + 7.03564*m.b2094 <= 6.9272) m.c6237 = Constraint(expr=(-0.00172169903672958*m.x271*m.x271) - 0.0409192*m.x271 + 0.183453*m.x655 + 7.03516*m.b2095 <= 6.92678) m.c6238 = Constraint(expr=(-0.00172169903672958*m.x272*m.x272) - 0.040927*m.x272 + 0.183453*m.x656 + 7.03564*m.b2096 <= 6.9272) m.c6239 = Constraint(expr=(-0.00172169903672958*m.x273*m.x273) - 0.0410199*m.x273 + 0.183453*m.x657 + 7.04134*m.b2097 <= 6.93218) m.c6240 = Constraint(expr=(-0.00172169903672958*m.x274*m.x274) - 0.0410586*m.x274 + 0.183453*m.x658 + 7.04371*m.b2098 <= 6.93425) m.c6241 = Constraint(expr=(-0.00172169903672958*m.x275*m.x275) - 0.0412135*m.x275 + 0.183453*m.x659 + 7.05321*m.b2099 <= 6.94255) m.c6242 = Constraint(expr=(-0.00172169903672958*m.x276*m.x276) - 0.04126*m.x276 + 0.183453*m.x660 + 7.05606*m.b2100 <= 6.94504) m.c6243 = Constraint(expr=(-0.00172169903672958*m.x277*m.x277) - 0.0413219*m.x277 + 0.183453*m.x661 + 7.05986*m.b2101 <= 6.94836) m.c6244 = Constraint(expr=(-0.00172169903672958*m.x278*m.x278) - 0.0414845*m.x278 + 0.183453*m.x662 + 7.06983*m.b2102 <= 6.95707) m.c6245 = Constraint(expr=(-0.00172169903672958*m.x279*m.x279) - 0.0416007*m.x279 + 0.183453*m.x663 + 7.07696*m.b2103 <= 6.9633) m.c6246 = Constraint(expr=(-0.00172169903672958*m.x280*m.x280) - 0.0415619*m.x280 + 0.183453*m.x664 + 7.07458*m.b2104 <= 6.96122) m.c6247 = Constraint(expr=(-0.00172169903672958*m.x281*m.x281) - 0.0414535*m.x281 + 0.183453*m.x665 + 7.06793*m.b2105 <= 6.95541) m.c6248 = Constraint(expr=(-0.00172169903672958*m.x282*m.x282) - 0.0413916*m.x282 + 0.183453*m.x666 + 7.06413*m.b2106 <= 6.95209) m.c6249 = Constraint(expr=(-0.00172169903672958*m.x283*m.x283) - 0.0412135*m.x283 + 0.183453*m.x667 + 7.05321*m.b2107 <= 6.94255) m.c6250 = Constraint(expr=(-0.00172169903672958*m.x284*m.x284) - 0.0410741*m.x284 + 0.183453*m.x668 + 7.04466*m.b2108 <= 6.93508) m.c6251 = Constraint(expr=(-0.00172169903672958*m.x285*m.x285) - 0.0410431*m.x285 + 0.183453*m.x669 + 7.04276*m.b2109 <= 6.93342) m.c6252 = Constraint(expr=(-0.00172169903672958*m.x286*m.x286) - 0.0409347*m.x286 + 0.183453*m.x670 + 7.03611*m.b2110 <= 6.92761) m.c6253 = Constraint(expr=(-0.00172169903672958*m.x287*m.x287) - 0.0409812*m.x287 + 0.183453*m.x671 + 7.03896*m.b2111 <= 6.9301) m.c6254 = Constraint(expr=(-0.00172169903672958*m.x288*m.x288) - 0.040958*m.x288 + 0.183453*m.x672 + 7.03754*m.b2112 <= 6.92886) m.c6255 = Constraint(expr=(-0.00172169903672958*m.x289*m.x289) - 0.0405476*m.x289 + 0.183453*m.x673 + 7.01237*m.b2113 <= 6.90687) m.c6256 = Constraint(expr=(-0.00172169903672958*m.x290*m.x290) - 0.0405088*m.x290 + 0.183453*m.x674 + 7.00999*m.b2114 <= 6.90479) m.c6257 = Constraint(expr=(-0.00172169903672958*m.x291*m.x291) - 0.0404934*m.x291 + 0.183453*m.x675 + 7.00904*m.b2115 <= 6.90396) m.c6258 = Constraint(expr=(-0.00172169903672958*m.x292*m.x292) - 0.0404856*m.x292 + 0.183453*m.x676 + 7.00857*m.b2116 <= 6.90355) m.c6259 = Constraint(expr=(-0.00172169903672958*m.x293*m.x293) - 0.0404701*m.x293 + 0.183453*m.x677 + 7.00762*m.b2117 <= 6.90272) m.c6260 = Constraint(expr=(-0.00172169903672958*m.x294*m.x294) - 0.0404624*m.x294 + 0.183453*m.x678 + 7.00714*m.b2118 <= 6.9023) m.c6261 = Constraint(expr=(-0.00172169903672958*m.x295*m.x295) - 0.0404546*m.x295 + 0.183453*m.x679 + 7.00667*m.b2119 <= 6.90189) m.c6262 = Constraint(expr=(-0.00172169903672958*m.x296*m.x296) - 0.0404624*m.x296 + 0.183453*m.x680 + 7.00714*m.b2120 <= 6.9023) m.c6263 = Constraint(expr=(-0.00172169903672958*m.x297*m.x297) - 0.0404779*m.x297 + 0.183453*m.x681 + 7.00809*m.b2121 <= 6.90313) m.c6264 = Constraint(expr=(-0.00172169903672958*m.x298*m.x298) - 0.0405166*m.x298 + 0.183453*m.x682 + 7.01047*m.b2122 <= 6.90521) m.c6265 = Constraint(expr=(-0.00172169903672958*m.x299*m.x299) - 0.040594*m.x299 + 0.183453*m.x683 + 7.01522*m.b2123 <= 6.90936) m.c6266 = Constraint(expr=(-0.00172169903672958*m.x300*m.x300) - 0.0407179*m.x300 + 0.183453*m.x684 + 7.02282*m.b2124 <= 6.916) m.c6267 = Constraint(expr=(-0.00172169903672958*m.x301*m.x301) - 0.0408573*m.x301 + 0.183453*m.x685 + 7.03137*m.b2125 <= 6.92347) m.c6268 = Constraint(expr=(-0.00172169903672958*m.x302*m.x302) - 0.0410199*m.x302 + 0.183453*m.x686 + 7.04134*m.b2126 <= 6.93218) m.c6269 = Constraint(expr=(-0.00172169903672958*m.x303*m.x303) - 0.0410586*m.x303 + 0.183453*m.x687 + 7.04371*m.b2127 <= 6.93425) m.c6270 = Constraint(expr=(-0.00172169903672958*m.x304*m.x304) - 0.0409425*m.x304 + 0.183453*m.x688 + 7.03659*m.b2128 <= 6.92803) m.c6271 = Constraint(expr=(-0.00172169903672958*m.x305*m.x305) - 0.0409115*m.x305 + 0.183453*m.x689 + 7.03469*m.b2129 <= 6.92637) m.c6272 = Constraint(expr=(-0.00172169903672958*m.x306*m.x306) - 0.0408496*m.x306 + 0.183453*m.x690 + 7.03089*m.b2130 <= 6.92305) m.c6273 = Constraint(expr=(-0.00172169903672958*m.x307*m.x307) - 0.0407489*m.x307 + 0.183453*m.x691 + 7.02472*m.b2131 <= 6.91766) m.c6274 = Constraint(expr=(-0.00172169903672958*m.x308*m.x308) - 0.0406869*m.x308 + 0.183453*m.x692 + 7.02092*m.b2132 <= 6.91434) m.c6275 = Constraint(expr=(-0.00172169903672958*m.x309*m.x309) - 0.040656*m.x309 + 0.183453*m.x693 + 7.01902*m.b2133 <= 6.91268) m.c6276 = Constraint(expr=(-0.00172169903672958*m.x310*m.x310) - 0.040625*m.x310 + 0.183453*m.x694 + 7.01712*m.b2134 <= 6.91102) m.c6277 = Constraint(expr=(-0.00172169903672958*m.x311*m.x311) - 0.040594*m.x311 + 0.183453*m.x695 + 7.01522*m.b2135 <= 6.90936) m.c6278 = Constraint(expr=(-0.00172169903672958*m.x312*m.x312) - 0.0405708*m.x312 + 0.183453*m.x696 + 7.01379*m.b2136 <= 6.90811) m.c6279 = Constraint(expr=(-0.00172169903672958*m.x313*m.x313) - 0.0405476*m.x313 + 0.183453*m.x697 + 7.01237*m.b2137 <= 6.90687) m.c6280 = Constraint(expr=(-0.00172169903672958*m.x314*m.x314) - 0.0406637*m.x314 + 0.183453*m.x698 + 7.01949*m.b2138 <= 6.91309) m.c6281 = Constraint(expr=(-0.00172169903672958*m.x315*m.x315) - 0.0407257*m.x315 + 0.183453*m.x699 + 7.02329*m.b2139 <= 6.91641) m.c6282 = Constraint(expr=(-0.00172169903672958*m.x316*m.x316) - 0.0407954*m.x316 + 0.183453*m.x700 + 7.02757*m.b2140 <= 6.92015) m.c6283 = Constraint(expr=(-0.00172169903672958*m.x317*m.x317) - 0.0408573*m.x317 + 0.183453*m.x701 + 7.03137*m.b2141 <= 6.92347) m.c6284 = Constraint(expr=(-0.00172169903672958*m.x318*m.x318) - 0.040927*m.x318 + 0.183453*m.x702 + 7.03564*m.b2142 <= 6.9272) m.c6285 = Constraint(expr=(-0.00172169903672958*m.x319*m.x319) - 0.0409192*m.x319 + 0.183453*m.x703 + 7.03516*m.b2143 <= 6.92678) m.c6286 = Constraint(expr=(-0.00172169903672958*m.x320*m.x320) - 0.040927*m.x320 + 0.183453*m.x704 + 7.03564*m.b2144 <= 6.9272) m.c6287 = Constraint(expr=(-0.00172169903672958*m.x321*m.x321) - 0.0410199*m.x321 + 0.183453*m.x705 + 7.04134*m.b2145 <= 6.93218) m.c6288 = Constraint(expr=(-0.00172169903672958*m.x322*m.x322) - 0.0410586*m.x322 + 0.183453*m.x706 + 7.04371*m.b2146 <= 6.93425) m.c6289 = Constraint(expr=(-0.00172169903672958*m.x323*m.x323) - 0.0412135*m.x323 + 0.183453*m.x707 + 7.05321*m.b2147 <= 6.94255) m.c6290 = Constraint(expr=(-0.00172169903672958*m.x324*m.x324) - 0.04126*m.x324 + 0.183453*m.x708 + 7.05606*m.b2148 <= 6.94504) m.c6291 = Constraint(expr=(-0.00172169903672958*m.x325*m.x325) - 0.0413219*m.x325 + 0.183453*m.x709 + 7.05986*m.b2149 <= 6.94836) m.c6292 = Constraint(expr=(-0.00172169903672958*m.x326*m.x326) - 0.0414845*m.x326 + 0.183453*m.x710 + 7.06983*m.b2150 <= 6.95707) m.c6293 = Constraint(expr=(-0.00172169903672958*m.x327*m.x327) - 0.0416007*m.x327 + 0.183453*m.x711 + 7.07696*m.b2151 <= 6.9633) m.c6294 = Constraint(expr=(-0.00172169903672958*m.x328*m.x328) - 0.0415619*m.x328 + 0.183453*m.x712 + 7.07458*m.b2152 <= 6.96122) m.c6295 = Constraint(expr=(-0.00172169903672958*m.x329*m.x329) - 0.0414535*m.x329 + 0.183453*m.x713 + 7.06793*m.b2153 <= 6.95541) m.c6296 = Constraint(expr=(-0.00172169903672958*m.x330*m.x330) - 0.0413916*m.x330 + 0.183453*m.x714 + 7.06413*m.b2154 <= 6.95209) m.c6297 = Constraint(expr=(-0.00172169903672958*m.x331*m.x331) - 0.0412135*m.x331 + 0.183453*m.x715 + 7.05321*m.b2155 <= 6.94255) m.c6298 = Constraint(expr=(-0.00172169903672958*m.x332*m.x332) - 0.0410741*m.x332 + 0.183453*m.x716 + 7.04466*m.b2156 <= 6.93508) m.c6299 = Constraint(expr=(-0.00172169903672958*m.x333*m.x333) - 0.0410431*m.x333 + 0.183453*m.x717 + 7.04276*m.b2157 <= 6.93342) m.c6300 = Constraint(expr=(-0.00172169903672958*m.x334*m.x334) - 0.0409347*m.x334 + 0.183453*m.x718 + 7.03611*m.b2158 <= 6.92761) m.c6301 = Constraint(expr=(-0.00172169903672958*m.x335*m.x335) - 0.0409812*m.x335 + 0.183453*m.x719 + 7.03896*m.b2159 <= 6.9301) m.c6302 = Constraint(expr=(-0.00172169903672958*m.x336*m.x336) - 0.040958*m.x336 + 0.183453*m.x720 + 7.03754*m.b2160 <= 6.92886) m.c6303 = Constraint(expr=(-0.00172169903672958*m.x337*m.x337) - 0.0405476*m.x337 + 0.183453*m.x721 + 7.01237*m.b2161 <= 6.90687) m.c6304 = Constraint(expr=(-0.00172169903672958*m.x338*m.x338) - 0.0405088*m.x338 + 0.183453*m.x722 + 7.00999*m.b2162 <= 6.90479) m.c6305 = Constraint(expr=(-0.00172169903672958*m.x339*m.x339) - 0.0404934*m.x339 + 0.183453*m.x723 + 7.00904*m.b2163 <= 6.90396) m.c6306 = Constraint(expr=(-0.00172169903672958*m.x340*m.x340) - 0.0404856*m.x340 + 0.183453*m.x724 + 7.00857*m.b2164 <= 6.90355) m.c6307 = Constraint(expr=(-0.00172169903672958*m.x341*m.x341) - 0.0404701*m.x341 + 0.183453*m.x725 + 7.00762*m.b2165 <= 6.90272) m.c6308 = Constraint(expr=(-0.00172169903672958*m.x342*m.x342) - 0.0404624*m.x342 + 0.183453*m.x726 + 7.00714*m.b2166 <= 6.9023) m.c6309 = Constraint(expr=(-0.00172169903672958*m.x343*m.x343) - 0.0404546*m.x343 + 0.183453*m.x727 + 7.00667*m.b2167 <= 6.90189) m.c6310 = Constraint(expr=(-0.00172169903672958*m.x344*m.x344) - 0.0404624*m.x344 + 0.183453*m.x728 + 7.00714*m.b2168 <= 6.9023) m.c6311 = Constraint(expr=(-0.00172169903672958*m.x345*m.x345) - 0.0404779*m.x345 + 0.183453*m.x729 + 7.00809*m.b2169 <= 6.90313) m.c6312 = Constraint(expr=(-0.00172169903672958*m.x346*m.x346) - 0.0405166*m.x346 + 0.183453*m.x730 + 7.01047*m.b2170 <= 6.90521) m.c6313 = Constraint(expr=(-0.00172169903672958*m.x347*m.x347) - 0.040594*m.x347 + 0.183453*m.x731 + 7.01522*m.b2171 <= 6.90936) m.c6314 = Constraint(expr=(-0.00172169903672958*m.x348*m.x348) - 0.0407179*m.x348 + 0.183453*m.x732 + 7.02282*m.b2172 <= 6.916) m.c6315 = Constraint(expr=(-0.00172169903672958*m.x349*m.x349) - 0.0408573*m.x349 + 0.183453*m.x733 + 7.03137*m.b2173 <= 6.92347) m.c6316 = Constraint(expr=(-0.00172169903672958*m.x350*m.x350) - 0.0410199*m.x350 + 0.183453*m.x734 + 7.04134*m.b2174 <= 6.93218) m.c6317 = Constraint(expr=(-0.00172169903672958*m.x351*m.x351) - 0.0410586*m.x351 + 0.183453*m.x735 + 7.04371*m.b2175 <= 6.93425) m.c6318 = Constraint(expr=(-0.00172169903672958*m.x352*m.x352) - 0.0409425*m.x352 + 0.183453*m.x736 + 7.03659*m.b2176 <= 6.92803) m.c6319 = Constraint(expr=(-0.00172169903672958*m.x353*m.x353) - 0.0409115*m.x353 + 0.183453*m.x737 + 7.03469*m.b2177 <= 6.92637) m.c6320 = Constraint(expr=(-0.00172169903672958*m.x354*m.x354) - 0.0408496*m.x354 + 0.183453*m.x738 + 7.03089*m.b2178 <= 6.92305) m.c6321 = Constraint(expr=(-0.00172169903672958*m.x355*m.x355) - 0.0407489*m.x355 + 0.183453*m.x739 + 7.02472*m.b2179 <= 6.91766) m.c6322 = Constraint(expr=(-0.00172169903672958*m.x356*m.x356) - 0.0406869*m.x356 + 0.183453*m.x740 + 7.02092*m.b2180 <= 6.91434) m.c6323 = Constraint(expr=(-0.00172169903672958*m.x357*m.x357) - 0.040656*m.x357 + 0.183453*m.x741 + 7.01902*m.b2181 <= 6.91268) m.c6324 = Constraint(expr=(-0.00172169903672958*m.x358*m.x358) - 0.040625*m.x358 + 0.183453*m.x742 + 7.01712*m.b2182 <= 6.91102) m.c6325 = Constraint(expr=(-0.00172169903672958*m.x359*m.x359) - 0.040594*m.x359 + 0.183453*m.x743 + 7.01522*m.b2183 <= 6.90936) m.c6326 = Constraint(expr=(-0.00172169903672958*m.x360*m.x360) - 0.0405708*m.x360 + 0.183453*m.x744 + 7.01379*m.b2184 <= 6.90811) m.c6327 = Constraint(expr=(-0.00172169903672958*m.x361*m.x361) - 0.0405476*m.x361 + 0.183453*m.x745 + 7.01237*m.b2185 <= 6.90687) m.c6328 = Constraint(expr=(-0.00172169903672958*m.x362*m.x362) - 0.0406637*m.x362 + 0.183453*m.x746 + 7.01949*m.b2186 <= 6.91309) m.c6329 = Constraint(expr=(-0.00172169903672958*m.x363*m.x363) - 0.0407257*m.x363 + 0.183453*m.x747 + 7.02329*m.b2187 <= 6.91641) m.c6330 = Constraint(expr=(-0.00172169903672958*m.x364*m.x364) - 0.0407954*m.x364 + 0.183453*m.x748 + 7.02757*m.b2188 <= 6.92015) m.c6331 = Constraint(expr=(-0.00172169903672958*m.x365*m.x365) - 0.0408573*m.x365 + 0.183453*m.x749 + 7.03137*m.b2189 <= 6.92347) m.c6332 = Constraint(expr=(-0.00172169903672958*m.x366*m.x366) - 0.040927*m.x366 + 0.183453*m.x750 + 7.03564*m.b2190 <= 6.9272) m.c6333 = Constraint(expr=(-0.00172169903672958*m.x367*m.x367) - 0.0409192*m.x367 + 0.183453*m.x751 + 7.03516*m.b2191 <= 6.92678) m.c6334 = Constraint(expr=(-0.00172169903672958*m.x368*m.x368) - 0.040927*m.x368 + 0.183453*m.x752 + 7.03564*m.b2192 <= 6.9272) m.c6335 = Constraint(expr=(-0.00172169903672958*m.x369*m.x369) - 0.0410199*m.x369 + 0.183453*m.x753 + 7.04134*m.b2193 <= 6.93218) m.c6336 = Constraint(expr=(-0.00172169903672958*m.x370*m.x370) - 0.0410586*m.x370 + 0.183453*m.x754 + 7.04371*m.b2194 <= 6.93425) m.c6337 = Constraint(expr=(-0.00172169903672958*m.x371*m.x371) - 0.0412135*m.x371 + 0.183453*m.x755 + 7.05321*m.b2195 <= 6.94255) m.c6338 = Constraint(expr=(-0.00172169903672958*m.x372*m.x372) - 0.04126*m.x372 + 0.183453*m.x756 + 7.05606*m.b2196 <= 6.94504) m.c6339 = Constraint(expr=(-0.00172169903672958*m.x373*m.x373) - 0.0413219*m.x373 + 0.183453*m.x757 + 7.05986*m.b2197 <= 6.94836) m.c6340 = Constraint(expr=(-0.00172169903672958*m.x374*m.x374) - 0.0414845*m.x374 + 0.183453*m.x758 + 7.06983*m.b2198 <= 6.95707) m.c6341 = Constraint(expr=(-0.00172169903672958*m.x375*m.x375) - 0.0416007*m.x375 + 0.183453*m.x759 + 7.07696*m.b2199 <= 6.9633) m.c6342 = Constraint(expr=(-0.00172169903672958*m.x376*m.x376) - 0.0415619*m.x376 + 0.183453*m.x760 + 7.07458*m.b2200 <= 6.96122) m.c6343 = Constraint(expr=(-0.00172169903672958*m.x377*m.x377) - 0.0414535*m.x377 + 0.183453*m.x761 + 7.06793*m.b2201 <= 6.95541) m.c6344 = Constraint(expr=(-0.00172169903672958*m.x378*m.x378) - 0.0413916*m.x378 + 0.183453*m.x762 + 7.06413*m.b2202 <= 6.95209) m.c6345 = Constraint(expr=(-0.00172169903672958*m.x379*m.x379) - 0.0412135*m.x379 + 0.183453*m.x763 + 7.05321*m.b2203 <= 6.94255) m.c6346 = Constraint(expr=(-0.00172169903672958*m.x380*m.x380) - 0.0410741*m.x380 + 0.183453*m.x764 + 7.04466*m.b2204 <= 6.93508) m.c6347 = Constraint(expr=(-0.00172169903672958*m.x381*m.x381) - 0.0410431*m.x381 + 0.183453*m.x765 + 7.04276*m.b2205 <= 6.93342) m.c6348 = Constraint(expr=(-0.00172169903672958*m.x382*m.x382) - 0.0409347*m.x382 + 0.183453*m.x766 + 7.03611*m.b2206 <= 6.92761) m.c6349 = Constraint(expr=(-0.00172169903672958*m.x383*m.x383) - 0.0409812*m.x383 + 0.183453*m.x767 + 7.03896*m.b2207 <= 6.9301) m.c6350 = Constraint(expr=(-0.00172169903672958*m.x384*m.x384) - 0.040958*m.x384 + 0.183453*m.x768 + 7.03754*m.b2208 <= 6.92886) m.c6351 = Constraint(expr=(-0.00172169903672958*m.x385*m.x385) - 0.0405476*m.x385 + 0.183453*m.x769 + 7.01237*m.b2209 <= 6.90687) m.c6352 = Constraint(expr= m.x1154 <= 0) m.c6353 = Constraint(expr= m.x1155 <= 0) m.c6354 = Constraint(expr= m.x1156 <= 0) m.c6355 = Constraint(expr= m.x1157 <= 0) m.c6356 = Constraint(expr= m.x1158 <= 0) m.c6357 = Constraint(expr= m.x1159 <= 0) m.c6358 = Constraint(expr= m.x1160 <= 0) m.c6359 = Constraint(expr= m.x1161 <= 0) m.c6360 = Constraint(expr= m.x1162 <= 0) m.c6361 = Constraint(expr= m.x1163 <= 0) m.c6362 = Constraint(expr= m.x1164 <= 0) m.c6363 = Constraint(expr= m.x1165 <= 0) m.c6364 = Constraint(expr= m.x1166 <= 0) m.c6365 = Constraint(expr= m.x1167 <= 0) m.c6366 = Constraint(expr= m.x1168 <= 0) m.c6367 = Constraint(expr= m.x1169 <= 0) m.c6368 = Constraint(expr= m.x1170 <= 0) m.c6369 = Constraint(expr= m.x1171 <= 0) m.c6370 = Constraint(expr= m.x1172 <= 0) m.c6371 = Constraint(expr= m.x1173 <= 0) m.c6372 = Constraint(expr= m.x1174 <= 0) m.c6373 = Constraint(expr= m.x1175 <= 0) m.c6374 = Constraint(expr= m.x1176 <= 0) m.c6375 = Constraint(expr= m.x1177 <= 0) m.c6376 = Constraint(expr= m.x1178 <= 0) m.c6377 = Constraint(expr= m.x1179 <= 0) m.c6378 = Constraint(expr= m.x1180 <= 0) m.c6379 = Constraint(expr= m.x1181 <= 0) m.c6380 = Constraint(expr= m.x1182 <= 0) m.c6381 = Constraint(expr= m.x1183 <= 0) m.c6382 = Constraint(expr= m.x1184 <= 0) m.c6383 = Constraint(expr= m.x1185 <= 0) m.c6384 = Constraint(expr= m.x1186 <= 0) m.c6385 = Constraint(expr= m.x1187 <= 0) m.c6386 = Constraint(expr= m.x1188 <= 0) m.c6387 = Constraint(expr= m.x1189 <= 0) m.c6388 = Constraint(expr= m.x1190 <= 0) m.c6389 = Constraint(expr= m.x1191 <= 0) m.c6390 = Constraint(expr= m.x1192 <= 0) m.c6391 = Constraint(expr= m.x1193 <= 0) m.c6392 = Constraint(expr= m.x1194 <= 0) m.c6393 = Constraint(expr= m.x1195 <= 0) m.c6394 = Constraint(expr= m.x1196 <= 0) m.c6395 = Constraint(expr= m.x1197 <= 0) m.c6396 = Constraint(expr= m.x1198 <= 0) m.c6397 = Constraint(expr= m.x1199 <= 0) m.c6398 = Constraint(expr= m.x1200 <= 0) m.c6399 = Constraint(expr= m.x1201 <= 0) m.c6400 = Constraint(expr= m.x1202 <= 0) m.c6401 = Constraint(expr= m.x1203 <= 0) m.c6402 = Constraint(expr= m.x1204 <= 0) m.c6403 = Constraint(expr= m.x1205 <= 0) m.c6404 = Constraint(expr= m.x1206 <= 0) m.c6405 = Constraint(expr= m.x1207 <= 0) m.c6406 = Constraint(expr= m.x1208 <= 0) m.c6407 = Constraint(expr= m.x1209 <= 0) m.c6408 = Constraint(expr= m.x1210 <= 0) m.c6409 = Constraint(expr= m.x1211 <= 0) m.c6410 = Constraint(expr= m.x1212 <= 0) m.c6411 = Constraint(expr= m.x1213 <= 0) m.c6412 = Constraint(expr= m.x1214 <= 0) m.c6413 = Constraint(expr= m.x1215 <= 0) m.c6414 = Constraint(expr= m.x1216 <= 0) m.c6415 = Constraint(expr= m.x1217 <= 0) m.c6416 = Constraint(expr= m.x1218 <= 0) m.c6417 = Constraint(expr= m.x1219 <= 0) m.c6418 = Constraint(expr= m.x1220 <= 0) m.c6419 = Constraint(expr= m.x1221 <= 0) m.c6420 = Constraint(expr= m.x1222 <= 0) m.c6421 = Constraint(expr= m.x1223 <= 0) m.c6422 = Constraint(expr= m.x1224 <= 0) m.c6423 = Constraint(expr= m.x1225 <= 0) m.c6424 = Constraint(expr= m.x1226 <= 0) m.c6425 = Constraint(expr= m.x1227 <= 0) m.c6426 = Constraint(expr= m.x1228 <= 0) m.c6427 = Constraint(expr= m.x1229 <= 0) m.c6428 = Constraint(expr= m.x1230 <= 0) m.c6429 = Constraint(expr= m.x1231 <= 0) m.c6430 = Constraint(expr= m.x1232 <= 0) m.c6431 = Constraint(expr= m.x1233 <= 0) m.c6432 = Constraint(expr= m.x1234 <= 0) m.c6433 = Constraint(expr= m.x1235 <= 0) m.c6434 = Constraint(expr= m.x1236 <= 0) m.c6435 = Constraint(expr= m.x1237 <= 0) m.c6436 = Constraint(expr= m.x1238 <= 0) m.c6437 = Constraint(expr= m.x1239 <= 0) m.c6438 = Constraint(expr= m.x1240 <= 0) m.c6439 = Constraint(expr= m.x1241 <= 0) m.c6440 = Constraint(expr= m.x1242 <= 0) m.c6441 = Constraint(expr= m.x1243 <= 0) m.c6442 = Constraint(expr= m.x1244 <= 0) m.c6443 = Constraint(expr= m.x1245 <= 0) m.c6444 = Constraint(expr= m.x1246 <= 0) m.c6445 = Constraint(expr= m.x1247 <= 0) m.c6446 = Constraint(expr= m.x1248 <= 0) m.c6447 = Constraint(expr= m.x1249 <= 0) m.c6448 = Constraint(expr=0.000152475248549441*m.x98*m.x98 - 0.0286775*m.x98 + 0.0334717*m.x866 + 20.4748*m.b2210 <= 19.813) m.c6449 = Constraint(expr=0.000152475248549441*m.x99*m.x99 - 0.0286869*m.x99 + 0.0334717*m.x867 + 20.4596*m.b2211 <= 19.7965) m.c6450 = Constraint(expr=0.000152475248549441*m.x100*m.x100 - 0.0286916*m.x100 + 0.0334717*m.x868 + 20.4521*m.b2212 <= 19.7882) m.c6451 = Constraint(expr=0.000152475248549441*m.x101*m.x101 - 0.028701*m.x101 + 0.0334717*m.x869 + 20.4369*m.b2213 <= 19.7716) m.c6452 = Constraint(expr=0.000152475248549441*m.x102*m.x102 - 0.0287057*m.x102 + 0.0334717*m.x870 + 20.4293*m.b2214 <= 19.7633) m.c6453 = Constraint(expr=0.000152475248549441*m.x103*m.x103 - 0.0287104*m.x103 + 0.0334717*m.x871 + 20.4217*m.b2215 <= 19.755) m.c6454 = Constraint(expr=0.000152475248549441*m.x104*m.x104 - 0.0287057*m.x104 + 0.0334717*m.x872 + 20.4293*m.b2216 <= 19.7633) m.c6455 = Constraint(expr=0.000152475248549441*m.x105*m.x105 - 0.0286963*m.x105 + 0.0334717*m.x873 + 20.4445*m.b2217 <= 19.7799) m.c6456 = Constraint(expr=0.000152475248549441*m.x106*m.x106 - 0.0286728*m.x106 + 0.0334717*m.x874 + 20.4824*m.b2218 <= 19.8213) m.c6457 = Constraint(expr=0.000152475248549441*m.x107*m.x107 - 0.0286257*m.x107 + 0.0334717*m.x875 + 20.5581*m.b2219 <= 19.9042) m.c6458 = Constraint(expr=0.000152475248549441*m.x108*m.x108 - 0.0285505*m.x108 + 0.0334717*m.x876 + 20.6794*m.b2220 <= 20.0368) m.c6459 = Constraint(expr=0.000152475248549441*m.x109*m.x109 - 0.0284658*m.x109 + 0.0334717*m.x877 + 20.8158*m.b2221 <= 20.186) m.c6460 = Constraint(expr=0.000152475248549441*m.x110*m.x110 - 0.028367*m.x110 + 0.0334717*m.x878 + 20.975*m.b2222 <= 20.3601) m.c6461 = Constraint(expr=0.000152475248549441*m.x111*m.x111 - 0.0283435*m.x111 + 0.0334717*m.x879 + 21.0128*m.b2223 <= 20.4015) m.c6462 = Constraint(expr=0.000152475248549441*m.x112*m.x112 - 0.028414*m.x112 + 0.0334717*m.x880 + 20.8992*m.b2224 <= 20.2772) m.c6463 = Constraint(expr=0.000152475248549441*m.x113*m.x113 - 0.0284328*m.x113 + 0.0334717*m.x881 + 20.8689*m.b2225 <= 20.244) m.c6464 = Constraint(expr=0.000152475248549441*m.x114*m.x114 - 0.0284705*m.x114 + 0.0334717*m.x882 + 20.8082*m.b2226 <= 20.1777) m.c6465 = Constraint(expr=0.000152475248549441*m.x115*m.x115 - 0.0285316*m.x115 + 0.0334717*m.x883 + 20.7097*m.b2227 <= 20.07) m.c6466 = Constraint(expr=0.000152475248549441*m.x116*m.x116 - 0.0285693*m.x116 + 0.0334717*m.x884 + 20.6491*m.b2228 <= 20.0037) m.c6467 = Constraint(expr=0.000152475248549441*m.x117*m.x117 - 0.0285881*m.x117 + 0.0334717*m.x885 + 20.6188*m.b2229 <= 19.9705) m.c6468 = Constraint(expr=0.000152475248549441*m.x118*m.x118 - 0.0286069*m.x118 + 0.0334717*m.x886 + 20.5885*m.b2230 <= 19.9374) m.c6469 = Constraint(expr=0.000152475248549441*m.x119*m.x119 - 0.0286257*m.x119 + 0.0334717*m.x887 + 20.5581*m.b2231 <= 19.9042) m.c6470 = Constraint(expr=0.000152475248549441*m.x120*m.x120 - 0.0286398*m.x120 + 0.0334717*m.x888 + 20.5354*m.b2232 <= 19.8793) m.c6471 = Constraint(expr=0.000152475248549441*m.x121*m.x121 - 0.028654*m.x121 + 0.0334717*m.x889 + 20.5127*m.b2233 <= 19.8545) m.c6472 = Constraint(expr=0.000152475248549441*m.x122*m.x122 - 0.0285834*m.x122 + 0.0334717*m.x890 + 20.6264*m.b2234 <= 19.9788) m.c6473 = Constraint(expr=0.000152475248549441*m.x123*m.x123 - 0.0285457*m.x123 + 0.0334717*m.x891 + 20.687*m.b2235 <= 20.0451) m.c6474 = Constraint(expr=0.000152475248549441*m.x124*m.x124 - 0.0285034*m.x124 + 0.0334717*m.x892 + 20.7552*m.b2236 <= 20.1197) m.c6475 = Constraint(expr=0.000152475248549441*m.x125*m.x125 - 0.0284658*m.x125 + 0.0334717*m.x893 + 20.8158*m.b2237 <= 20.186) m.c6476 = Constraint(expr=0.000152475248549441*m.x126*m.x126 - 0.0284234*m.x126 + 0.0334717*m.x894 + 20.884*m.b2238 <= 20.2606) m.c6477 = Constraint(expr=0.000152475248549441*m.x127*m.x127 - 0.0284281*m.x127 + 0.0334717*m.x895 + 20.8764*m.b2239 <= 20.2523) m.c6478 = Constraint(expr=0.000152475248549441*m.x128*m.x128 - 0.0284234*m.x128 + 0.0334717*m.x896 + 20.884*m.b2240 <= 20.2606) m.c6479 = Constraint(expr=0.000152475248549441*m.x129*m.x129 - 0.028367*m.x129 + 0.0334717*m.x897 + 20.975*m.b2241 <= 20.3601) m.c6480 = Constraint(expr=0.000152475248549441*m.x130*m.x130 - 0.0283435*m.x130 + 0.0334717*m.x898 + 21.0128*m.b2242 <= 20.4015) m.c6481 = Constraint(expr=0.000152475248549441*m.x131*m.x131 - 0.0282494*m.x131 + 0.0334717*m.x899 + 21.1644*m.b2243 <= 20.5673) m.c6482 = Constraint(expr=0.000152475248549441*m.x132*m.x132 - 0.0282211*m.x132 + 0.0334717*m.x900 + 21.2099*m.b2244 <= 20.617) m.c6483 = Constraint(expr=0.000152475248549441*m.x133*m.x133 - 0.0281835*m.x133 + 0.0334717*m.x901 + 21.2705*m.b2245 <= 20.6833) m.c6484 = Constraint(expr=0.000152475248549441*m.x134*m.x134 - 0.0280847*m.x134 + 0.0334717*m.x902 + 21.4297*m.b2246 <= 20.8574) m.c6485 = Constraint(expr=0.000152475248549441*m.x135*m.x135 - 0.0280141*m.x135 + 0.0334717*m.x903 + 21.5433*m.b2247 <= 20.9817) m.c6486 = Constraint(expr=0.000152475248549441*m.x136*m.x136 - 0.0280377*m.x136 + 0.0334717*m.x904 + 21.5054*m.b2248 <= 20.9402) m.c6487 = Constraint(expr=0.000152475248549441*m.x137*m.x137 - 0.0281035*m.x137 + 0.0334717*m.x905 + 21.3993*m.b2249 <= 20.8242) m.c6488 = Constraint(expr=0.000152475248549441*m.x138*m.x138 - 0.0281412*m.x138 + 0.0334717*m.x906 + 21.3387*m.b2250 <= 20.7579) m.c6489 = Constraint(expr=0.000152475248549441*m.x139*m.x139 - 0.0282494*m.x139 + 0.0334717*m.x907 + 21.1644*m.b2251 <= 20.5673) m.c6490 = Constraint(expr=0.000152475248549441*m.x140*m.x140 - 0.028334*m.x140 + 0.0334717*m.x908 + 21.028*m.b2252 <= 20.4181) m.c6491 = Constraint(expr=0.000152475248549441*m.x141*m.x141 - 0.0283529*m.x141 + 0.0334717*m.x909 + 20.9977*m.b2253 <= 20.3849) m.c6492 = Constraint(expr=0.000152475248549441*m.x142*m.x142 - 0.0284187*m.x142 + 0.0334717*m.x910 + 20.8916*m.b2254 <= 20.2689) m.c6493 = Constraint(expr=0.000152475248549441*m.x143*m.x143 - 0.0283905*m.x143 + 0.0334717*m.x911 + 20.9371*m.b2255 <= 20.3186) m.c6494 = Constraint(expr=0.000152475248549441*m.x144*m.x144 - 0.0284046*m.x144 + 0.0334717*m.x912 + 20.9143*m.b2256 <= 20.2938) m.c6495 = Constraint(expr=0.000152475248549441*m.x145*m.x145 - 0.028654*m.x145 + 0.0334717*m.x913 + 20.5127*m.b2257 <= 19.8545) m.c6496 = Constraint(expr=0.000152475248549441*m.x146*m.x146 - 0.0286775*m.x146 + 0.0334717*m.x914 + 20.4748*m.b2258 <= 19.813) m.c6497 = Constraint(expr=0.000152475248549441*m.x147*m.x147 - 0.0286869*m.x147 + 0.0334717*m.x915 + 20.4596*m.b2259 <= 19.7965) m.c6498 = Constraint(expr=0.000152475248549441*m.x148*m.x148 - 0.0286916*m.x148 + 0.0334717*m.x916 + 20.4521*m.b2260 <= 19.7882) m.c6499 = Constraint(expr=0.000152475248549441*m.x149*m.x149 - 0.028701*m.x149 + 0.0334717*m.x917 + 20.4369*m.b2261 <= 19.7716) m.c6500 = Constraint(expr=0.000152475248549441*m.x150*m.x150 - 0.0287057*m.x150 + 0.0334717*m.x918 + 20.4293*m.b2262 <= 19.7633) m.c6501 = Constraint(expr=0.000152475248549441*m.x151*m.x151 - 0.0287104*m.x151 + 0.0334717*m.x919 + 20.4217*m.b2263 <= 19.755) m.c6502 = Constraint(expr=0.000152475248549441*m.x152*m.x152 - 0.0287057*m.x152 + 0.0334717*m.x920 + 20.4293*m.b2264 <= 19.7633) m.c6503 = Constraint(expr=0.000152475248549441*m.x153*m.x153 - 0.0286963*m.x153 + 0.0334717*m.x921 + 20.4445*m.b2265 <= 19.7799) m.c6504 = Constraint(expr=0.000152475248549441*m.x154*m.x154 - 0.0286728*m.x154 + 0.0334717*m.x922 + 20.4824*m.b2266 <= 19.8213) m.c6505 = Constraint(expr=0.000152475248549441*m.x155*m.x155 - 0.0286257*m.x155 + 0.0334717*m.x923 + 20.5581*m.b2267 <= 19.9042) m.c6506 = Constraint(expr=0.000152475248549441*m.x156*m.x156 - 0.0285505*m.x156 + 0.0334717*m.x924 + 20.6794*m.b2268 <= 20.0368) m.c6507 = Constraint(expr=0.000152475248549441*m.x157*m.x157 - 0.0284658*m.x157 + 0.0334717*m.x925 + 20.8158*m.b2269 <= 20.186) m.c6508 = Constraint(expr=0.000152475248549441*m.x158*m.x158 - 0.028367*m.x158 + 0.0334717*m.x926 + 20.975*m.b2270 <= 20.3601) m.c6509 = Constraint(expr=0.000152475248549441*m.x159*m.x159 - 0.0283435*m.x159 + 0.0334717*m.x927 + 21.0128*m.b2271 <= 20.4015) m.c6510 = Constraint(expr=0.000152475248549441*m.x160*m.x160 - 0.028414*m.x160 + 0.0334717*m.x928 + 20.8992*m.b2272 <= 20.2772) m.c6511 = Constraint(expr=0.000152475248549441*m.x161*m.x161 - 0.0284328*m.x161 + 0.0334717*m.x929 + 20.8689*m.b2273 <= 20.244) m.c6512 = Constraint(expr=0.000152475248549441*m.x162*m.x162 - 0.0284705*m.x162 + 0.0334717*m.x930 + 20.8082*m.b2274 <= 20.1777) m.c6513 = Constraint(expr=0.000152475248549441*m.x163*m.x163 - 0.0285316*m.x163 + 0.0334717*m.x931 + 20.7097*m.b2275 <= 20.07) m.c6514 = Constraint(expr=0.000152475248549441*m.x164*m.x164 - 0.0285693*m.x164 + 0.0334717*m.x932 + 20.6491*m.b2276 <= 20.0037) m.c6515 = Constraint(expr=0.000152475248549441*m.x165*m.x165 - 0.0285881*m.x165 + 0.0334717*m.x933 + 20.6188*m.b2277 <= 19.9705) m.c6516 = Constraint(expr=0.000152475248549441*m.x166*m.x166 - 0.0286069*m.x166 + 0.0334717*m.x934 + 20.5885*m.b2278 <= 19.9374) m.c6517 = Constraint(expr=0.000152475248549441*m.x167*m.x167 - 0.0286257*m.x167 + 0.0334717*m.x935 + 20.5581*m.b2279 <= 19.9042) m.c6518 = Constraint(expr=0.000152475248549441*m.x168*m.x168 - 0.0286398*m.x168 + 0.0334717*m.x936 + 20.5354*m.b2280 <= 19.8793) m.c6519 = Constraint(expr=0.000152475248549441*m.x169*m.x169 - 0.028654*m.x169 + 0.0334717*m.x937 + 20.5127*m.b2281 <= 19.8545) m.c6520 = Constraint(expr=0.000152475248549441*m.x170*m.x170 - 0.0285834*m.x170 + 0.0334717*m.x938 + 20.6264*m.b2282 <= 19.9788) m.c6521 = Constraint(expr=0.000152475248549441*m.x171*m.x171 - 0.0285457*m.x171 + 0.0334717*m.x939 + 20.687*m.b2283 <= 20.0451) m.c6522 = Constraint(expr=0.000152475248549441*m.x172*m.x172 - 0.0285034*m.x172 + 0.0334717*m.x940 + 20.7552*m.b2284 <= 20.1197) m.c6523 = Constraint(expr=0.000152475248549441*m.x173*m.x173 - 0.0284658*m.x173 + 0.0334717*m.x941 + 20.8158*m.b2285 <= 20.186) m.c6524 = Constraint(expr=0.000152475248549441*m.x174*m.x174 - 0.0284234*m.x174 + 0.0334717*m.x942 + 20.884*m.b2286 <= 20.2606) m.c6525 = Constraint(expr=0.000152475248549441*m.x175*m.x175 - 0.0284281*m.x175 + 0.0334717*m.x943 + 20.8764*m.b2287 <= 20.2523) m.c6526 = Constraint(expr=0.000152475248549441*m.x176*m.x176 - 0.0284234*m.x176 + 0.0334717*m.x944 + 20.884*m.b2288 <= 20.2606) m.c6527 = Constraint(expr=0.000152475248549441*m.x177*m.x177 - 0.028367*m.x177 + 0.0334717*m.x945 + 20.975*m.b2289 <= 20.3601) m.c6528 = Constraint(expr=0.000152475248549441*m.x178*m.x178 - 0.0283435*m.x178 + 0.0334717*m.x946 + 21.0128*m.b2290 <= 20.4015) m.c6529 = Constraint(expr=0.000152475248549441*m.x179*m.x179 - 0.0282494*m.x179 + 0.0334717*m.x947 + 21.1644*m.b2291 <= 20.5673) m.c6530 = Constraint(expr=0.000152475248549441*m.x180*m.x180 - 0.0282211*m.x180 + 0.0334717*m.x948 + 21.2099*m.b2292 <= 20.617) m.c6531 = Constraint(expr=0.000152475248549441*m.x181*m.x181 - 0.0281835*m.x181 + 0.0334717*m.x949 + 21.2705*m.b2293 <= 20.6833) m.c6532 = Constraint(expr=0.000152475248549441*m.x182*m.x182 - 0.0280847*m.x182 + 0.0334717*m.x950 + 21.4297*m.b2294 <= 20.8574) m.c6533 = Constraint(expr=0.000152475248549441*m.x183*m.x183 - 0.0280141*m.x183 + 0.0334717*m.x951 + 21.5433*m.b2295 <= 20.9817) m.c6534 = Constraint(expr=0.000152475248549441*m.x184*m.x184 - 0.0280377*m.x184 + 0.0334717*m.x952 + 21.5054*m.b2296 <= 20.9402) m.c6535 = Constraint(expr=0.000152475248549441*m.x185*m.x185 - 0.0281035*m.x185 + 0.0334717*m.x953 + 21.3993*m.b2297 <= 20.8242) m.c6536 = Constraint(expr=0.000152475248549441*m.x186*m.x186 - 0.0281412*m.x186 + 0.0334717*m.x954 + 21.3387*m.b2298 <= 20.7579) m.c6537 = Constraint(expr=0.000152475248549441*m.x187*m.x187 - 0.0282494*m.x187 + 0.0334717*m.x955 + 21.1644*m.b2299 <= 20.5673) m.c6538 = Constraint(expr=0.000152475248549441*m.x188*m.x188 - 0.028334*m.x188 + 0.0334717*m.x956 + 21.028*m.b2300 <= 20.4181) m.c6539 = Constraint(expr=0.000152475248549441*m.x189*m.x189 - 0.0283529*m.x189 + 0.0334717*m.x957 + 20.9977*m.b2301 <= 20.3849) m.c6540 = Constraint(expr=0.000152475248549441*m.x190*m.x190 - 0.0284187*m.x190 + 0.0334717*m.x958 + 20.8916*m.b2302 <= 20.2689) m.c6541 = Constraint(expr=0.000152475248549441*m.x191*m.x191 - 0.0283905*m.x191 + 0.0334717*m.x959 + 20.9371*m.b2303 <= 20.3186) m.c6542 = Constraint(expr=0.000152475248549441*m.x192*m.x192 - 0.0284046*m.x192 + 0.0334717*m.x960 + 20.9143*m.b2304 <= 20.2938) m.c6543 = Constraint(expr=0.000152475248549441*m.x193*m.x193 - 0.028654*m.x193 + 0.0334717*m.x961 + 20.5127*m.b2305 <= 19.8545) m.c6544 = Constraint(expr=9.55693503233427e-5*m.x98*m.x98 - 0.0198576*m.x98 + 0.0291954*m.x482 + 17.3082*m.b2210 <= 16.7866) m.c6545 = Constraint(expr=9.55693503233427e-5*m.x99*m.x99 - 0.0198624*m.x99 + 0.0291954*m.x483 + 17.303*m.b2211 <= 16.7807) m.c6546 = Constraint(expr=9.55693503233427e-5*m.x100*m.x100 - 0.0198648*m.x100 + 0.0291954*m.x484 + 17.3004*m.b2212 <= 16.7778) m.c6547 = Constraint(expr=9.55693503233427e-5*m.x101*m.x101 - 0.0198696*m.x101 + 0.0291954*m.x485 + 17.2951*m.b2213 <= 16.7719) m.c6548 = Constraint(expr=9.55693503233427e-5*m.x102*m.x102 - 0.019872*m.x102 + 0.0291954*m.x486 + 17.2925*m.b2214 <= 16.769) m.c6549 = Constraint(expr=9.55693503233427e-5*m.x103*m.x103 - 0.0198744*m.x103 + 0.0291954*m.x487 + 17.2899*m.b2215 <= 16.7661) m.c6550 = Constraint(expr=9.55693503233427e-5*m.x104*m.x104 - 0.019872*m.x104 + 0.0291954*m.x488 + 17.2925*m.b2216 <= 16.769) m.c6551 = Constraint(expr=9.55693503233427e-5*m.x105*m.x105 - 0.0198672*m.x105 + 0.0291954*m.x489 + 17.2978*m.b2217 <= 16.7749) m.c6552 = Constraint(expr=9.55693503233427e-5*m.x106*m.x106 - 0.0198551*m.x106 + 0.0291954*m.x490 + 17.3109*m.b2218 <= 16.7895) m.c6553 = Constraint(expr=9.55693503233427e-5*m.x107*m.x107 - 0.0198311*m.x107 + 0.0291954*m.x491 + 17.3371*m.b2219 <= 16.8188) m.c6554 = Constraint(expr=9.55693503233427e-5*m.x108*m.x108 - 0.0197926*m.x108 + 0.0291954*m.x492 + 17.379*m.b2220 <= 16.8657) m.c6555 = Constraint(expr=9.55693503233427e-5*m.x109*m.x109 - 0.0197492*m.x109 + 0.0291954*m.x493 + 17.4262*m.b2221 <= 16.9185) m.c6556 = Constraint(expr=9.55693503233427e-5*m.x110*m.x110 - 0.0196987*m.x110 + 0.0291954*m.x494 + 17.4812*m.b2222 <= 16.98) m.c6557 = Constraint(expr=9.55693503233427e-5*m.x111*m.x111 - 0.0196867*m.x111 + 0.0291954*m.x495 + 17.4943*m.b2223 <= 16.9947) m.c6558 = Constraint(expr=9.55693503233427e-5*m.x112*m.x112 - 0.0197228*m.x112 + 0.0291954*m.x496 + 17.455*m.b2224 <= 16.9507) m.c6559 = Constraint(expr=9.55693503233427e-5*m.x113*m.x113 - 0.0197324*m.x113 + 0.0291954*m.x497 + 17.4445*m.b2225 <= 16.939) m.c6560 = Constraint(expr=9.55693503233427e-5*m.x114*m.x114 - 0.0197516*m.x114 + 0.0291954*m.x498 + 17.4236*m.b2226 <= 16.9156) m.c6561 = Constraint(expr=9.55693503233427e-5*m.x115*m.x115 - 0.0197829*m.x115 + 0.0291954*m.x499 + 17.3895*m.b2227 <= 16.8774) m.c6562 = Constraint(expr=9.55693503233427e-5*m.x116*m.x116 - 0.0198022*m.x116 + 0.0291954*m.x500 + 17.3685*m.b2228 <= 16.854) m.c6563 = Constraint(expr=9.55693503233427e-5*m.x117*m.x117 - 0.0198118*m.x117 + 0.0291954*m.x501 + 17.358*m.b2229 <= 16.8423) m.c6564 = Constraint(expr=9.55693503233427e-5*m.x118*m.x118 - 0.0198214*m.x118 + 0.0291954*m.x502 + 17.3476*m.b2230 <= 16.8306) m.c6565 = Constraint(expr=9.55693503233427e-5*m.x119*m.x119 - 0.0198311*m.x119 + 0.0291954*m.x503 + 17.3371*m.b2231 <= 16.8188) m.c6566 = Constraint(expr=9.55693503233427e-5*m.x120*m.x120 - 0.0198383*m.x120 + 0.0291954*m.x504 + 17.3292*m.b2232 <= 16.81) m.c6567 = Constraint(expr=9.55693503233427e-5*m.x121*m.x121 - 0.0198455*m.x121 + 0.0291954*m.x505 + 17.3213*m.b2233 <= 16.8012) m.c6568 = Constraint(expr=9.55693503233427e-5*m.x122*m.x122 - 0.0198094*m.x122 + 0.0291954*m.x506 + 17.3607*m.b2234 <= 16.8452) m.c6569 = Constraint(expr=9.55693503233427e-5*m.x123*m.x123 - 0.0197902*m.x123 + 0.0291954*m.x507 + 17.3816*m.b2235 <= 16.8687) m.c6570 = Constraint(expr=9.55693503233427e-5*m.x124*m.x124 - 0.0197685*m.x124 + 0.0291954*m.x508 + 17.4052*m.b2236 <= 16.895) m.c6571 = Constraint(expr=9.55693503233427e-5*m.x125*m.x125 - 0.0197492*m.x125 + 0.0291954*m.x509 + 17.4262*m.b2237 <= 16.9185) m.c6572 = Constraint(expr=9.55693503233427e-5*m.x126*m.x126 - 0.0197276*m.x126 + 0.0291954*m.x510 + 17.4498*m.b2238 <= 16.9449) m.c6573 = Constraint(expr=9.55693503233427e-5*m.x127*m.x127 - 0.01973*m.x127 + 0.0291954*m.x511 + 17.4472*m.b2239 <= 16.9419) m.c6574 = Constraint(expr=9.55693503233427e-5*m.x128*m.x128 - 0.0197276*m.x128 + 0.0291954*m.x512 + 17.4498*m.b2240 <= 16.9449) m.c6575 = Constraint(expr=9.55693503233427e-5*m.x129*m.x129 - 0.0196987*m.x129 + 0.0291954*m.x513 + 17.4812*m.b2241 <= 16.98) m.c6576 = Constraint(expr=9.55693503233427e-5*m.x130*m.x130 - 0.0196867*m.x130 + 0.0291954*m.x514 + 17.4943*m.b2242 <= 16.9947) m.c6577 = Constraint(expr=9.55693503233427e-5*m.x131*m.x131 - 0.0196385*m.x131 + 0.0291954*m.x515 + 17.5468*m.b2243 <= 17.0533) m.c6578 = Constraint(expr=9.55693503233427e-5*m.x132*m.x132 - 0.0196241*m.x132 + 0.0291954*m.x516 + 17.5625*m.b2244 <= 17.0709) m.c6579 = Constraint(expr=9.55693503233427e-5*m.x133*m.x133 - 0.0196048*m.x133 + 0.0291954*m.x517 + 17.5834*m.b2245 <= 17.0943) m.c6580 = Constraint(expr=9.55693503233427e-5*m.x134*m.x134 - 0.0195543*m.x134 + 0.0291954*m.x518 + 17.6385*m.b2246 <= 17.1559) m.c6581 = Constraint(expr=9.55693503233427e-5*m.x135*m.x135 - 0.0195182*m.x135 + 0.0291954*m.x519 + 17.6778*m.b2247 <= 17.1999) m.c6582 = Constraint(expr=9.55693503233427e-5*m.x136*m.x136 - 0.0195302*m.x136 + 0.0291954*m.x520 + 17.6647*m.b2248 <= 17.1852) m.c6583 = Constraint(expr=9.55693503233427e-5*m.x137*m.x137 - 0.0195639*m.x137 + 0.0291954*m.x521 + 17.628*m.b2249 <= 17.1442) m.c6584 = Constraint(expr=9.55693503233427e-5*m.x138*m.x138 - 0.0195832*m.x138 + 0.0291954*m.x522 + 17.607*m.b2250 <= 17.1207) m.c6585 = Constraint(expr=9.55693503233427e-5*m.x139*m.x139 - 0.0196385*m.x139 + 0.0291954*m.x523 + 17.5468*m.b2251 <= 17.0533) m.c6586 = Constraint(expr=9.55693503233427e-5*m.x140*m.x140 - 0.0196818*m.x140 + 0.0291954*m.x524 + 17.4996*m.b2252 <= 17.0006) m.c6587 = Constraint(expr=9.55693503233427e-5*m.x141*m.x141 - 0.0196915*m.x141 + 0.0291954*m.x525 + 17.4891*m.b2253 <= 16.9888) m.c6588 = Constraint(expr=9.55693503233427e-5*m.x142*m.x142 - 0.0197252*m.x142 + 0.0291954*m.x526 + 17.4524*m.b2254 <= 16.9478) m.c6589 = Constraint(expr=9.55693503233427e-5*m.x143*m.x143 - 0.0197107*m.x143 + 0.0291954*m.x527 + 17.4681*m.b2255 <= 16.9654) m.c6590 = Constraint(expr=9.55693503233427e-5*m.x144*m.x144 - 0.0197179*m.x144 + 0.0291954*m.x528 + 17.4603*m.b2256 <= 16.9566) m.c6591 = Constraint(expr=9.55693503233427e-5*m.x145*m.x145 - 0.0198455*m.x145 + 0.0291954*m.x529 + 17.3213*m.b2257 <= 16.8012) m.c6592 = Constraint(expr=9.55693503233427e-5*m.x146*m.x146 - 0.0198576*m.x146 + 0.0291954*m.x530 + 17.3082*m.b2258 <= 16.7866) m.c6593 = Constraint(expr=9.55693503233427e-5*m.x147*m.x147 - 0.0198624*m.x147 + 0.0291954*m.x531 + 17.303*m.b2259 <= 16.7807) m.c6594 = Constraint(expr=9.55693503233427e-5*m.x148*m.x148 - 0.0198648*m.x148 + 0.0291954*m.x532 + 17.3004*m.b2260 <= 16.7778) m.c6595 = Constraint(expr=9.55693503233427e-5*m.x149*m.x149 - 0.0198696*m.x149 + 0.0291954*m.x533 + 17.2951*m.b2261 <= 16.7719) m.c6596 = Constraint(expr=9.55693503233427e-5*m.x150*m.x150 - 0.019872*m.x150 + 0.0291954*m.x534 + 17.2925*m.b2262 <= 16.769) m.c6597 = Constraint(expr=9.55693503233427e-5*m.x151*m.x151 - 0.0198744*m.x151 + 0.0291954*m.x535 + 17.2899*m.b2263 <= 16.7661) m.c6598 = Constraint(expr=9.55693503233427e-5*m.x152*m.x152 - 0.019872*m.x152 + 0.0291954*m.x536 + 17.2925*m.b2264 <= 16.769) m.c6599 = Constraint(expr=9.55693503233427e-5*m.x153*m.x153 - 0.0198672*m.x153 + 0.0291954*m.x537 + 17.2978*m.b2265 <= 16.7749) m.c6600 = Constraint(expr=9.55693503233427e-5*m.x154*m.x154 - 0.0198551*m.x154 + 0.0291954*m.x538 + 17.3109*m.b2266 <= 16.7895) m.c6601 = Constraint(expr=9.55693503233427e-5*m.x155*m.x155 - 0.0198311*m.x155 + 0.0291954*m.x539 + 17.3371*m.b2267 <= 16.8188) m.c6602 = Constraint(expr=9.55693503233427e-5*m.x156*m.x156 - 0.0197926*m.x156 + 0.0291954*m.x540 + 17.379*m.b2268 <= 16.8657) m.c6603 = Constraint(expr=9.55693503233427e-5*m.x157*m.x157 - 0.0197492*m.x157 + 0.0291954*m.x541 + 17.4262*m.b2269 <= 16.9185) m.c6604 = Constraint(expr=9.55693503233427e-5*m.x158*m.x158 - 0.0196987*m.x158 + 0.0291954*m.x542 + 17.4812*m.b2270 <= 16.98) m.c6605 = Constraint(expr=9.55693503233427e-5*m.x159*m.x159 - 0.0196867*m.x159 + 0.0291954*m.x543 + 17.4943*m.b2271 <= 16.9947) m.c6606 = Constraint(expr=9.55693503233427e-5*m.x160*m.x160 - 0.0197228*m.x160 + 0.0291954*m.x544 + 17.455*m.b2272 <= 16.9507) m.c6607 = Constraint(expr=9.55693503233427e-5*m.x161*m.x161 - 0.0197324*m.x161 + 0.0291954*m.x545 + 17.4445*m.b2273 <= 16.939) m.c6608 = Constraint(expr=9.55693503233427e-5*m.x162*m.x162 - 0.0197516*m.x162 + 0.0291954*m.x546 + 17.4236*m.b2274 <= 16.9156) m.c6609 = Constraint(expr=9.55693503233427e-5*m.x163*m.x163 - 0.0197829*m.x163 + 0.0291954*m.x547 + 17.3895*m.b2275 <= 16.8774) m.c6610 = Constraint(expr=9.55693503233427e-5*m.x164*m.x164 - 0.0198022*m.x164 + 0.0291954*m.x548 + 17.3685*m.b2276 <= 16.854) m.c6611 = Constraint(expr=9.55693503233427e-5*m.x165*m.x165 - 0.0198118*m.x165 + 0.0291954*m.x549 + 17.358*m.b2277 <= 16.8423) m.c6612 = Constraint(expr=9.55693503233427e-5*m.x166*m.x166 - 0.0198214*m.x166 + 0.0291954*m.x550 + 17.3476*m.b2278 <= 16.8306) m.c6613 = Constraint(expr=9.55693503233427e-5*m.x167*m.x167 - 0.0198311*m.x167 + 0.0291954*m.x551 + 17.3371*m.b2279 <= 16.8188) m.c6614 = Constraint(expr=9.55693503233427e-5*m.x168*m.x168 - 0.0198383*m.x168 + 0.0291954*m.x552 + 17.3292*m.b2280 <= 16.81) m.c6615 = Constraint(expr=9.55693503233427e-5*m.x169*m.x169 - 0.0198455*m.x169 + 0.0291954*m.x553 + 17.3213*m.b2281 <= 16.8012) m.c6616 = Constraint(expr=9.55693503233427e-5*m.x170*m.x170 - 0.0198094*m.x170 + 0.0291954*m.x554 + 17.3607*m.b2282 <= 16.8452) m.c6617 = Constraint(expr=9.55693503233427e-5*m.x171*m.x171 - 0.0197902*m.x171 + 0.0291954*m.x555 + 17.3816*m.b2283 <= 16.8687) m.c6618 = Constraint(expr=9.55693503233427e-5*m.x172*m.x172 - 0.0197685*m.x172 + 0.0291954*m.x556 + 17.4052*m.b2284 <= 16.895) m.c6619 = Constraint(expr=9.55693503233427e-5*m.x173*m.x173 - 0.0197492*m.x173 + 0.0291954*m.x557 + 17.4262*m.b2285 <= 16.9185) m.c6620 = Constraint(expr=9.55693503233427e-5*m.x174*m.x174 - 0.0197276*m.x174 + 0.0291954*m.x558 + 17.4498*m.b2286 <= 16.9449) m.c6621 = Constraint(expr=9.55693503233427e-5*m.x175*m.x175 - 0.01973*m.x175 + 0.0291954*m.x559 + 17.4472*m.b2287 <= 16.9419) m.c6622 = Constraint(expr=9.55693503233427e-5*m.x176*m.x176 - 0.0197276*m.x176 + 0.0291954*m.x560 + 17.4498*m.b2288 <= 16.9449) m.c6623 = Constraint(expr=9.55693503233427e-5*m.x177*m.x177 - 0.0196987*m.x177 + 0.0291954*m.x561 + 17.4812*m.b2289 <= 16.98) m.c6624 = Constraint(expr=9.55693503233427e-5*m.x178*m.x178 - 0.0196867*m.x178 + 0.0291954*m.x562 + 17.4943*m.b2290 <= 16.9947) m.c6625 = Constraint(expr=9.55693503233427e-5*m.x179*m.x179 - 0.0196385*m.x179 + 0.0291954*m.x563 + 17.5468*m.b2291 <= 17.0533) m.c6626 = Constraint(expr=9.55693503233427e-5*m.x180*m.x180 - 0.0196241*m.x180 + 0.0291954*m.x564 + 17.5625*m.b2292 <= 17.0709) m.c6627 = Constraint(expr=9.55693503233427e-5*m.x181*m.x181 - 0.0196048*m.x181 + 0.0291954*m.x565 + 17.5834*m.b2293 <= 17.0943) m.c6628 = Constraint(expr=9.55693503233427e-5*m.x182*m.x182 - 0.0195543*m.x182 + 0.0291954*m.x566 + 17.6385*m.b2294 <= 17.1559) m.c6629 = Constraint(expr=9.55693503233427e-5*m.x183*m.x183 - 0.0195182*m.x183 + 0.0291954*m.x567 + 17.6778*m.b2295 <= 17.1999) m.c6630 = Constraint(expr=9.55693503233427e-5*m.x184*m.x184 - 0.0195302*m.x184 + 0.0291954*m.x568 + 17.6647*m.b2296 <= 17.1852) m.c6631 = Constraint(expr=9.55693503233427e-5*m.x185*m.x185 - 0.0195639*m.x185 + 0.0291954*m.x569 + 17.628*m.b2297 <= 17.1442) m.c6632 = Constraint(expr=9.55693503233427e-5*m.x186*m.x186 - 0.0195832*m.x186 + 0.0291954*m.x570 + 17.607*m.b2298 <= 17.1207) m.c6633 = Constraint(expr=9.55693503233427e-5*m.x187*m.x187 - 0.0196385*m.x187 + 0.0291954*m.x571 + 17.5468*m.b2299 <= 17.0533) m.c6634 = Constraint(expr=9.55693503233427e-5*m.x188*m.x188 - 0.0196818*m.x188 + 0.0291954*m.x572 + 17.4996*m.b2300 <= 17.0006) m.c6635 = Constraint(expr=9.55693503233427e-5*m.x189*m.x189 - 0.0196915*m.x189 + 0.0291954*m.x573 + 17.4891*m.b2301 <= 16.9888) m.c6636 = Constraint(expr=9.55693503233427e-5*m.x190*m.x190 - 0.0197252*m.x190 + 0.0291954*m.x574 + 17.4524*m.b2302 <= 16.9478) m.c6637 = Constraint(expr=9.55693503233427e-5*m.x191*m.x191 - 0.0197107*m.x191 + 0.0291954*m.x575 + 17.4681*m.b2303 <= 16.9654) m.c6638 = Constraint(expr=9.55693503233427e-5*m.x192*m.x192 - 0.0197179*m.x192 + 0.0291954*m.x576 + 17.4603*m.b2304 <= 16.9566) m.c6639 = Constraint(expr=9.55693503233427e-5*m.x193*m.x193 - 0.0198455*m.x193 + 0.0291954*m.x577 + 17.3213*m.b2305 <= 16.8012) m.c6640 = Constraint(expr=0.000204938271604938*m.x2*m.x2 - 0.0252844*m.x2 + 0.025*m.x770 + 27.932*m.b2306 <= 27.9075) m.c6641 = Constraint(expr=0.000204938271604938*m.x3*m.x3 - 0.0252844*m.x3 + 0.025*m.x771 + 27.932*m.b2307 <= 27.9075) m.c6642 = Constraint(expr=0.000204938271604938*m.x4*m.x4 - 0.0252844*m.x4 + 0.025*m.x772 + 27.932*m.b2308 <= 27.9075) m.c6643 = Constraint(expr=0.000204938271604938*m.x5*m.x5 - 0.0252844*m.x5 + 0.025*m.x773 + 27.932*m.b2309 <= 27.9075) m.c6644 = Constraint(expr=0.000204938271604938*m.x6*m.x6 - 0.0252844*m.x6 + 0.025*m.x774 + 27.932*m.b2310 <= 27.9075) m.c6645 = Constraint(expr=0.000204938271604938*m.x7*m.x7 - 0.0252844*m.x7 + 0.025*m.x775 + 27.932*m.b2311 <= 27.9075) m.c6646 = Constraint(expr=0.000204938271604938*m.x8*m.x8 - 0.0252844*m.x8 + 0.025*m.x776 + 27.932*m.b2312 <= 27.9075) m.c6647 = Constraint(expr=0.000204938271604938*m.x9*m.x9 - 0.0252844*m.x9 + 0.025*m.x777 + 27.932*m.b2313 <= 27.9075) m.c6648 = Constraint(expr=0.000204938271604938*m.x10*m.x10 - 0.0252844*m.x10 + 0.025*m.x778 + 27.932*m.b2314 <= 27.9075) m.c6649 = Constraint(expr=0.000204938271604938*m.x11*m.x11 - 0.0252844*m.x11 + 0.025*m.x779 + 27.932*m.b2315 <= 27.9075) m.c6650 = Constraint(expr=0.000204938271604938*m.x12*m.x12 - 0.0252844*m.x12 + 0.025*m.x780 + 27.932*m.b2316 <= 27.9075) m.c6651 = Constraint(expr=0.000204938271604938*m.x13*m.x13 - 0.0252844*m.x13 + 0.025*m.x781 + 27.932*m.b2317 <= 27.9075) m.c6652 = Constraint(expr=0.000204938271604938*m.x14*m.x14 - 0.0252844*m.x14 + 0.025*m.x782 + 27.932*m.b2318 <= 27.9075) m.c6653 = Constraint(expr=0.000204938271604938*m.x15*m.x15 - 0.0252844*m.x15 + 0.025*m.x783 + 27.932*m.b2319 <= 27.9075) m.c6654 = Constraint(expr=0.000204938271604938*m.x16*m.x16 - 0.0252844*m.x16 + 0.025*m.x784 + 27.932*m.b2320 <= 27.9075) m.c6655 = Constraint(expr=0.000204938271604938*m.x17*m.x17 - 0.0252844*m.x17 + 0.025*m.x785 + 27.932*m.b2321 <= 27.9075) m.c6656 = Constraint(expr=0.000204938271604938*m.x18*m.x18 - 0.0252844*m.x18 + 0.025*m.x786 + 27.932*m.b2322 <= 27.9075) m.c6657 = Constraint(expr=0.000204938271604938*m.x19*m.x19 - 0.0252844*m.x19 + 0.025*m.x787 + 27.932*m.b2323 <= 27.9075) m.c6658 = Constraint(expr=0.000204938271604938*m.x20*m.x20 - 0.0252844*m.x20 + 0.025*m.x788 + 27.932*m.b2324 <= 27.9075) m.c6659 = Constraint(expr=0.000204938271604938*m.x21*m.x21 - 0.0252844*m.x21 + 0.025*m.x789 + 27.932*m.b2325 <= 27.9075) m.c6660 = Constraint(expr=0.000204938271604938*m.x22*m.x22 - 0.0252844*m.x22 + 0.025*m.x790 + 27.932*m.b2326 <= 27.9075) m.c6661 = Constraint(expr=0.000204938271604938*m.x23*m.x23 - 0.0252844*m.x23 + 0.025*m.x791 + 27.932*m.b2327 <= 27.9075) m.c6662 = Constraint(expr=0.000204938271604938*m.x24*m.x24 - 0.0252844*m.x24 + 0.025*m.x792 + 27.932*m.b2328 <= 27.9075) m.c6663 = Constraint(expr=0.000204938271604938*m.x25*m.x25 - 0.0252844*m.x25 + 0.025*m.x793 + 27.932*m.b2329 <= 27.9075) m.c6664 = Constraint(expr=0.000204938271604938*m.x26*m.x26 - 0.0252844*m.x26 + 0.025*m.x794 + 27.932*m.b2330 <= 27.9075) m.c6665 = Constraint(expr=0.000204938271604938*m.x27*m.x27 - 0.0252844*m.x27 + 0.025*m.x795 + 27.932*m.b2331 <= 27.9075) m.c6666 = Constraint(expr=0.000204938271604938*m.x28*m.x28 - 0.0252844*m.x28 + 0.025*m.x796 + 27.932*m.b2332 <= 27.9075) m.c6667 = Constraint(expr=0.000204938271604938*m.x29*m.x29 - 0.0252844*m.x29 + 0.025*m.x797 + 27.932*m.b2333 <= 27.9075) m.c6668 = Constraint(expr=0.000204938271604938*m.x30*m.x30 - 0.0252844*m.x30 + 0.025*m.x798 + 27.932*m.b2334 <= 27.9075) m.c6669 = Constraint(expr=0.000204938271604938*m.x31*m.x31 - 0.0252844*m.x31 + 0.025*m.x799 + 27.932*m.b2335 <= 27.9075) m.c6670 = Constraint(expr=0.000204938271604938*m.x32*m.x32 - 0.0252844*m.x32 + 0.025*m.x800 + 27.932*m.b2336 <= 27.9075) m.c6671 = Constraint(expr=0.000204938271604938*m.x33*m.x33 - 0.0252844*m.x33 + 0.025*m.x801 + 27.932*m.b2337 <= 27.9075) m.c6672 = Constraint(expr=0.000204938271604938*m.x34*m.x34 - 0.0252844*m.x34 + 0.025*m.x802 + 27.932*m.b2338 <= 27.9075) m.c6673 = Constraint(expr=0.000204938271604938*m.x35*m.x35 - 0.0252844*m.x35 + 0.025*m.x803 + 27.932*m.b2339 <= 27.9075) m.c6674 = Constraint(expr=0.000204938271604938*m.x36*m.x36 - 0.0252844*m.x36 + 0.025*m.x804 + 27.932*m.b2340 <= 27.9075) m.c6675 = Constraint(expr=0.000204938271604938*m.x37*m.x37 - 0.0252844*m.x37 + 0.025*m.x805 + 27.932*m.b2341 <= 27.9075) m.c6676 = Constraint(expr=0.000204938271604938*m.x38*m.x38 - 0.0252844*m.x38 + 0.025*m.x806 + 27.932*m.b2342 <= 27.9075) m.c6677 = Constraint(expr=0.000204938271604938*m.x39*m.x39 - 0.0252844*m.x39 + 0.025*m.x807 + 27.932*m.b2343 <= 27.9075) m.c6678 = Constraint(expr=0.000204938271604938*m.x40*m.x40 - 0.0252844*m.x40 + 0.025*m.x808 + 27.932*m.b2344 <= 27.9075) m.c6679 = Constraint(expr=0.000204938271604938*m.x41*m.x41 - 0.0252844*m.x41 + 0.025*m.x809 + 27.932*m.b2345 <= 27.9075) m.c6680 = Constraint(expr=0.000204938271604938*m.x42*m.x42 - 0.0252844*m.x42 + 0.025*m.x810 + 27.932*m.b2346 <= 27.9075) m.c6681 = Constraint(expr=0.000204938271604938*m.x43*m.x43 - 0.0252844*m.x43 + 0.025*m.x811 + 27.932*m.b2347 <= 27.9075) m.c6682 = Constraint(expr=0.000204938271604938*m.x44*m.x44 - 0.0252844*m.x44 + 0.025*m.x812 + 27.932*m.b2348 <= 27.9075) m.c6683 = Constraint(expr=0.000204938271604938*m.x45*m.x45 - 0.0252844*m.x45 + 0.025*m.x813 + 27.932*m.b2349 <= 27.9075) m.c6684 = Constraint(expr=0.000204938271604938*m.x46*m.x46 - 0.0252844*m.x46 + 0.025*m.x814 + 27.932*m.b2350 <= 27.9075) m.c6685 = Constraint(expr=0.000204938271604938*m.x47*m.x47 - 0.0252844*m.x47 + 0.025*m.x815 + 27.932*m.b2351 <= 27.9075) m.c6686 = Constraint(expr=0.000204938271604938*m.x48*m.x48 - 0.0252844*m.x48 + 0.025*m.x816 + 27.932*m.b2352 <= 27.9075) m.c6687 = Constraint(expr=0.000204938271604938*m.x49*m.x49 - 0.0252844*m.x49 + 0.025*m.x817 + 27.932*m.b2353 <= 27.9075) m.c6688 = Constraint(expr=0.000204938271604938*m.x50*m.x50 - 0.0252844*m.x50 + 0.025*m.x818 + 27.932*m.b2354 <= 27.9075) m.c6689 = Constraint(expr=0.000204938271604938*m.x51*m.x51 - 0.0252844*m.x51 + 0.025*m.x819 + 27.932*m.b2355 <= 27.9075) m.c6690 = Constraint(expr=0.000204938271604938*m.x52*m.x52 - 0.0252844*m.x52 + 0.025*m.x820 + 27.932*m.b2356 <= 27.9075) m.c6691 = Constraint(expr=0.000204938271604938*m.x53*m.x53 - 0.0252844*m.x53 + 0.025*m.x821 + 27.932*m.b2357 <= 27.9075) m.c6692 = Constraint(expr=0.000204938271604938*m.x54*m.x54 - 0.0252844*m.x54 + 0.025*m.x822 + 27.932*m.b2358 <= 27.9075) m.c6693 = Constraint(expr=0.000204938271604938*m.x55*m.x55 - 0.0252844*m.x55 + 0.025*m.x823 + 27.932*m.b2359 <= 27.9075) m.c6694 = Constraint(expr=0.000204938271604938*m.x56*m.x56 - 0.0252844*m.x56 + 0.025*m.x824 + 27.932*m.b2360 <= 27.9075) m.c6695 = Constraint(expr=0.000204938271604938*m.x57*m.x57 - 0.0252844*m.x57 + 0.025*m.x825 + 27.932*m.b2361 <= 27.9075) m.c6696 = Constraint(expr=0.000204938271604938*m.x58*m.x58 - 0.0252844*m.x58 + 0.025*m.x826 + 27.932*m.b2362 <= 27.9075) m.c6697 = Constraint(expr=0.000204938271604938*m.x59*m.x59 - 0.0252844*m.x59 + 0.025*m.x827 + 27.932*m.b2363 <= 27.9075) m.c6698 = Constraint(expr=0.000204938271604938*m.x60*m.x60 - 0.0252844*m.x60 + 0.025*m.x828 + 27.932*m.b2364 <= 27.9075) m.c6699 = Constraint(expr=0.000204938271604938*m.x61*m.x61 - 0.0252844*m.x61 + 0.025*m.x829 + 27.932*m.b2365 <= 27.9075) m.c6700 = Constraint(expr=0.000204938271604938*m.x62*m.x62 - 0.0252844*m.x62 + 0.025*m.x830 + 27.932*m.b2366 <= 27.9075) m.c6701 = Constraint(expr=0.000204938271604938*m.x63*m.x63 - 0.0252844*m.x63 + 0.025*m.x831 + 27.932*m.b2367 <= 27.9075) m.c6702 = Constraint(expr=0.000204938271604938*m.x64*m.x64 - 0.0252844*m.x64 + 0.025*m.x832 + 27.932*m.b2368 <= 27.9075) m.c6703 = Constraint(expr=0.000204938271604938*m.x65*m.x65 - 0.0252844*m.x65 + 0.025*m.x833 + 27.932*m.b2369 <= 27.9075) m.c6704 = Constraint(expr=0.000204938271604938*m.x66*m.x66 - 0.0252844*m.x66 + 0.025*m.x834 + 27.932*m.b2370 <= 27.9075) m.c6705 = Constraint(expr=0.000204938271604938*m.x67*m.x67 - 0.0252844*m.x67 + 0.025*m.x835 + 27.932*m.b2371 <= 27.9075) m.c6706 = Constraint(expr=0.000204938271604938*m.x68*m.x68 - 0.0252844*m.x68 + 0.025*m.x836 + 27.932*m.b2372 <= 27.9075) m.c6707 = Constraint(expr=0.000204938271604938*m.x69*m.x69 - 0.0252844*m.x69 + 0.025*m.x837 + 27.932*m.b2373 <= 27.9075) m.c6708 = Constraint(expr=0.000204938271604938*m.x70*m.x70 - 0.0252844*m.x70 + 0.025*m.x838 + 27.932*m.b2374 <= 27.9075) m.c6709 = Constraint(expr=0.000204938271604938*m.x71*m.x71 - 0.0252844*m.x71 + 0.025*m.x839 + 27.932*m.b2375 <= 27.9075) m.c6710 = Constraint(expr=0.000204938271604938*m.x72*m.x72 - 0.0252844*m.x72 + 0.025*m.x840 + 27.932*m.b2376 <= 27.9075) m.c6711 = Constraint(expr=0.000204938271604938*m.x73*m.x73 - 0.0252844*m.x73 + 0.025*m.x841 + 27.932*m.b2377 <= 27.9075) m.c6712 = Constraint(expr=0.000204938271604938*m.x74*m.x74 - 0.0252844*m.x74 + 0.025*m.x842 + 27.932*m.b2378 <= 27.9075) m.c6713 = Constraint(expr=0.000204938271604938*m.x75*m.x75 - 0.0252844*m.x75 + 0.025*m.x843 + 27.932*m.b2379 <= 27.9075) m.c6714 = Constraint(expr=0.000204938271604938*m.x76*m.x76 - 0.0252844*m.x76 + 0.025*m.x844 + 27.932*m.b2380 <= 27.9075) m.c6715 = Constraint(expr=0.000204938271604938*m.x77*m.x77 - 0.0252844*m.x77 + 0.025*m.x845 + 27.932*m.b2381 <= 27.9075) m.c6716 = Constraint(expr=0.000204938271604938*m.x78*m.x78 - 0.0252844*m.x78 + 0.025*m.x846 + 27.932*m.b2382 <= 27.9075) m.c6717 = Constraint(expr=0.000204938271604938*m.x79*m.x79 - 0.0252844*m.x79 + 0.025*m.x847 + 27.932*m.b2383 <= 27.9075) m.c6718 = Constraint(expr=0.000204938271604938*m.x80*m.x80 - 0.0252844*m.x80 + 0.025*m.x848 + 27.932*m.b2384 <= 27.9075) m.c6719 = Constraint(expr=0.000204938271604938*m.x81*m.x81 - 0.0252844*m.x81 + 0.025*m.x849 + 27.932*m.b2385 <= 27.9075) m.c6720 = Constraint(expr=0.000204938271604938*m.x82*m.x82 - 0.0252844*m.x82 + 0.025*m.x850 + 27.932*m.b2386 <= 27.9075) m.c6721 = Constraint(expr=0.000204938271604938*m.x83*m.x83 - 0.0252844*m.x83 + 0.025*m.x851 + 27.932*m.b2387 <= 27.9075) m.c6722 = Constraint(expr=0.000204938271604938*m.x84*m.x84 - 0.0252844*m.x84 + 0.025*m.x852 + 27.932*m.b2388 <= 27.9075) m.c6723 = Constraint(expr=0.000204938271604938*m.x85*m.x85 - 0.0252844*m.x85 + 0.025*m.x853 + 27.932*m.b2389 <= 27.9075) m.c6724 = Constraint(expr=0.000204938271604938*m.x86*m.x86 - 0.0252844*m.x86 + 0.025*m.x854 + 27.932*m.b2390 <= 27.9075) m.c6725 = Constraint(expr=0.000204938271604938*m.x87*m.x87 - 0.0252844*m.x87 + 0.025*m.x855 + 27.932*m.b2391 <= 27.9075) m.c6726 = Constraint(expr=0.000204938271604938*m.x88*m.x88 - 0.0252844*m.x88 + 0.025*m.x856 + 27.932*m.b2392 <= 27.9075) m.c6727 = Constraint(expr=0.000204938271604938*m.x89*m.x89 - 0.0252844*m.x89 + 0.025*m.x857 + 27.932*m.b2393 <= 27.9075) m.c6728 = Constraint(expr=0.000204938271604938*m.x90*m.x90 - 0.0252844*m.x90 + 0.025*m.x858 + 27.932*m.b2394 <= 27.9075) m.c6729 = Constraint(expr=0.000204938271604938*m.x91*m.x91 - 0.0252844*m.x91 + 0.025*m.x859 + 27.932*m.b2395 <= 27.9075) m.c6730 = Constraint(expr=0.000204938271604938*m.x92*m.x92 - 0.0252844*m.x92 + 0.025*m.x860 + 27.932*m.b2396 <= 27.9075) m.c6731 = Constraint(expr=0.000204938271604938*m.x93*m.x93 - 0.0252844*m.x93 + 0.025*m.x861 + 27.932*m.b2397 <= 27.9075) m.c6732 = Constraint(expr=0.000204938271604938*m.x94*m.x94 - 0.0252844*m.x94 + 0.025*m.x862 + 27.932*m.b2398 <= 27.9075) m.c6733 = Constraint(expr=0.000204938271604938*m.x95*m.x95 - 0.0252844*m.x95 + 0.025*m.x863 + 27.932*m.b2399 <= 27.9075) m.c6734 = Constraint(expr=0.000204938271604938*m.x96*m.x96 - 0.0252844*m.x96 + 0.025*m.x864 + 27.932*m.b2400 <= 27.9075) m.c6735 = Constraint(expr=0.000204938271604938*m.x97*m.x97 - 0.0252844*m.x97 + 0.025*m.x865 + 27.932*m.b2401 <= 27.9075)
true
true
f7f40c68fac122d3e85f8d9ae7c03226d8a2af0c
6,010
py
Python
env/lib/python3.5/site-packages/notebook/tests/launchnotebook.py
riordan/who-owns-what
62538fdb6d40ed1e0cdafb0df388be95fb388907
[ "Apache-2.0" ]
null
null
null
env/lib/python3.5/site-packages/notebook/tests/launchnotebook.py
riordan/who-owns-what
62538fdb6d40ed1e0cdafb0df388be95fb388907
[ "Apache-2.0" ]
3
2020-03-24T15:38:23.000Z
2021-02-02T21:44:18.000Z
env/lib/python3.5/site-packages/notebook/tests/launchnotebook.py
riordan/who-owns-what
62538fdb6d40ed1e0cdafb0df388be95fb388907
[ "Apache-2.0" ]
1
2017-03-16T22:39:47.000Z
2017-03-16T22:39:47.000Z
"""Base class for notebook tests.""" from __future__ import print_function from binascii import hexlify import os import time import requests from contextlib import contextmanager from threading import Thread, Event from unittest import TestCase pjoin = os.path.join try: from unittest.mock import patch except ImportError: from mock import patch #py2 from tornado.ioloop import IOLoop import zmq import jupyter_core.paths from ..notebookapp import NotebookApp from ..utils import url_path_join from ipython_genutils.tempdir import TemporaryDirectory MAX_WAITTIME = 30 # seconds to wait for notebook server to start POLL_INTERVAL = 0.1 # time between attempts # TimeoutError is a builtin on Python 3. This can be removed when we stop # supporting Python 2. class TimeoutError(Exception): pass class NotebookTestBase(TestCase): """A base class for tests that need a running notebook. This create some empty config and runtime directories and then starts the notebook server with them. """ port = 12341 config = None # run with a base URL that would be escaped, # to test that we don't double-escape URLs url_prefix = '/a%40b/' @classmethod def wait_until_alive(cls): """Wait for the server to be alive""" url = cls.base_url() + 'api/contents' for _ in range(int(MAX_WAITTIME/POLL_INTERVAL)): try: requests.get(url) except Exception as e: if not cls.notebook_thread.is_alive(): raise RuntimeError("The notebook server failed to start") time.sleep(POLL_INTERVAL) else: return raise TimeoutError("The notebook server didn't start up correctly.") @classmethod def wait_until_dead(cls): """Wait for the server process to terminate after shutdown""" cls.notebook_thread.join(timeout=MAX_WAITTIME) if cls.notebook_thread.is_alive(): raise TimeoutError("Undead notebook server") @classmethod def request(self, verb, path, **kwargs): """Send a request to my server with authentication and everything. """ headers = kwargs.setdefault('headers', {}) # kwargs.setdefault('allow_redirects', False) headers.setdefault('Authorization', 'token %s' % self.token) response = requests.request(verb, url_path_join(self.base_url(), path), **kwargs) return response @classmethod def setup_class(cls): cls.home_dir = TemporaryDirectory() data_dir = TemporaryDirectory() cls.env_patch = patch.dict('os.environ', { 'HOME': cls.home_dir.name, 'IPYTHONDIR': pjoin(cls.home_dir.name, '.ipython'), 'JUPYTER_DATA_DIR' : data_dir.name }) cls.env_patch.start() cls.path_patch = patch.object(jupyter_core.paths, 'SYSTEM_JUPYTER_PATH', []) cls.path_patch.start() cls.config_dir = TemporaryDirectory() cls.data_dir = data_dir cls.runtime_dir = TemporaryDirectory() cls.notebook_dir = TemporaryDirectory() cls.token = hexlify(os.urandom(4)).decode('ascii') started = Event() def start_thread(): app = cls.notebook = NotebookApp( port=cls.port, port_retries=0, open_browser=False, config_dir=cls.config_dir.name, data_dir=cls.data_dir.name, runtime_dir=cls.runtime_dir.name, notebook_dir=cls.notebook_dir.name, base_url=cls.url_prefix, config=cls.config, token=cls.token, ) # don't register signal handler during tests app.init_signal = lambda : None # clear log handlers and propagate to root for nose to capture it # needs to be redone after initialize, which reconfigures logging app.log.propagate = True app.log.handlers = [] app.initialize(argv=[]) app.log.propagate = True app.log.handlers = [] loop = IOLoop.current() loop.add_callback(started.set) try: app.start() finally: # set the event, so failure to start doesn't cause a hang started.set() app.session_manager.close() cls.notebook_thread = Thread(target=start_thread) cls.notebook_thread.start() started.wait() cls.wait_until_alive() @classmethod def teardown_class(cls): cls.notebook.stop() cls.wait_until_dead() cls.home_dir.cleanup() cls.config_dir.cleanup() cls.data_dir.cleanup() cls.runtime_dir.cleanup() cls.notebook_dir.cleanup() cls.env_patch.stop() cls.path_patch.stop() # cleanup global zmq Context, to ensure we aren't leaving dangling sockets def cleanup_zmq(): zmq.Context.instance().term() t = Thread(target=cleanup_zmq) t.daemon = True t.start() t.join(5) # give it a few seconds to clean up (this should be immediate) # if term never returned, there's zmq stuff still open somewhere, so shout about it. if t.is_alive(): raise RuntimeError("Failed to teardown zmq Context, open sockets likely left lying around.") @classmethod def base_url(cls): return 'http://localhost:%i%s' % (cls.port, cls.url_prefix) @contextmanager def assert_http_error(status, msg=None): try: yield except requests.HTTPError as e: real_status = e.response.status_code assert real_status == status, \ "Expected status %d, got %d" % (status, real_status) if msg: assert msg in str(e), e else: assert False, "Expected HTTP error status"
33.764045
104
0.615474
from __future__ import print_function from binascii import hexlify import os import time import requests from contextlib import contextmanager from threading import Thread, Event from unittest import TestCase pjoin = os.path.join try: from unittest.mock import patch except ImportError: from mock import patch from tornado.ioloop import IOLoop import zmq import jupyter_core.paths from ..notebookapp import NotebookApp from ..utils import url_path_join from ipython_genutils.tempdir import TemporaryDirectory MAX_WAITTIME = 30 POLL_INTERVAL = 0.1 class TimeoutError(Exception): pass class NotebookTestBase(TestCase): port = 12341 config = None url_prefix = '/a%40b/' @classmethod def wait_until_alive(cls): url = cls.base_url() + 'api/contents' for _ in range(int(MAX_WAITTIME/POLL_INTERVAL)): try: requests.get(url) except Exception as e: if not cls.notebook_thread.is_alive(): raise RuntimeError("The notebook server failed to start") time.sleep(POLL_INTERVAL) else: return raise TimeoutError("The notebook server didn't start up correctly.") @classmethod def wait_until_dead(cls): cls.notebook_thread.join(timeout=MAX_WAITTIME) if cls.notebook_thread.is_alive(): raise TimeoutError("Undead notebook server") @classmethod def request(self, verb, path, **kwargs): headers = kwargs.setdefault('headers', {}) headers.setdefault('Authorization', 'token %s' % self.token) response = requests.request(verb, url_path_join(self.base_url(), path), **kwargs) return response @classmethod def setup_class(cls): cls.home_dir = TemporaryDirectory() data_dir = TemporaryDirectory() cls.env_patch = patch.dict('os.environ', { 'HOME': cls.home_dir.name, 'IPYTHONDIR': pjoin(cls.home_dir.name, '.ipython'), 'JUPYTER_DATA_DIR' : data_dir.name }) cls.env_patch.start() cls.path_patch = patch.object(jupyter_core.paths, 'SYSTEM_JUPYTER_PATH', []) cls.path_patch.start() cls.config_dir = TemporaryDirectory() cls.data_dir = data_dir cls.runtime_dir = TemporaryDirectory() cls.notebook_dir = TemporaryDirectory() cls.token = hexlify(os.urandom(4)).decode('ascii') started = Event() def start_thread(): app = cls.notebook = NotebookApp( port=cls.port, port_retries=0, open_browser=False, config_dir=cls.config_dir.name, data_dir=cls.data_dir.name, runtime_dir=cls.runtime_dir.name, notebook_dir=cls.notebook_dir.name, base_url=cls.url_prefix, config=cls.config, token=cls.token, ) app.init_signal = lambda : None # clear log handlers and propagate to root for nose to capture it # needs to be redone after initialize, which reconfigures logging app.log.propagate = True app.log.handlers = [] app.initialize(argv=[]) app.log.propagate = True app.log.handlers = [] loop = IOLoop.current() loop.add_callback(started.set) try: app.start() finally: # set the event, so failure to start doesn't cause a hang started.set() app.session_manager.close() cls.notebook_thread = Thread(target=start_thread) cls.notebook_thread.start() started.wait() cls.wait_until_alive() @classmethod def teardown_class(cls): cls.notebook.stop() cls.wait_until_dead() cls.home_dir.cleanup() cls.config_dir.cleanup() cls.data_dir.cleanup() cls.runtime_dir.cleanup() cls.notebook_dir.cleanup() cls.env_patch.stop() cls.path_patch.stop() def cleanup_zmq(): zmq.Context.instance().term() t = Thread(target=cleanup_zmq) t.daemon = True t.start() t.join(5) # give it a few seconds to clean up (this should be immediate) # if term never returned, there's zmq stuff still open somewhere, so shout about it. if t.is_alive(): raise RuntimeError("Failed to teardown zmq Context, open sockets likely left lying around.") @classmethod def base_url(cls): return 'http://localhost:%i%s' % (cls.port, cls.url_prefix) @contextmanager def assert_http_error(status, msg=None): try: yield except requests.HTTPError as e: real_status = e.response.status_code assert real_status == status, \ "Expected status %d, got %d" % (status, real_status) if msg: assert msg in str(e), e else: assert False, "Expected HTTP error status"
true
true
f7f40cb92f7844d5e4459018167575f915d6b74f
2,068
py
Python
homeassistant/components/template/__init__.py
pszafer/core
ab6fb5cb7705a7f2e3a4f310b5d42047c3372bd2
[ "Apache-2.0" ]
1
2018-04-24T21:48:14.000Z
2018-04-24T21:48:14.000Z
homeassistant/components/template/__init__.py
pszafer/core
ab6fb5cb7705a7f2e3a4f310b5d42047c3372bd2
[ "Apache-2.0" ]
44
2020-08-03T07:31:07.000Z
2022-03-31T06:02:04.000Z
homeassistant/components/template/__init__.py
jeroen84/home-assistant
a47f73244c0b3fbe4210ffd7731be69b3984fbbd
[ "Apache-2.0" ]
2
2017-09-03T16:06:02.000Z
2021-01-12T15:07:52.000Z
"""The template component.""" import logging from homeassistant import config as conf_util from homeassistant.const import SERVICE_RELOAD from homeassistant.exceptions import HomeAssistantError from homeassistant.helpers import config_per_platform, entity_platform from homeassistant.loader import async_get_integration from .const import DOMAIN, EVENT_TEMPLATE_RELOADED, PLATFORM_STORAGE_KEY _LOGGER = logging.getLogger(__name__) async def _async_setup_reload_service(hass): if hass.services.has_service(DOMAIN, SERVICE_RELOAD): return async def _reload_config(call): """Reload the template platform config.""" try: unprocessed_conf = await conf_util.async_hass_config_yaml(hass) except HomeAssistantError as err: _LOGGER.error(err) return for platform in hass.data[PLATFORM_STORAGE_KEY]: integration = await async_get_integration(hass, platform.domain) conf = await conf_util.async_process_component_config( hass, unprocessed_conf, integration ) if not conf: continue await platform.async_reset() # Extract only the config for template, ignore the rest. for p_type, p_config in config_per_platform(conf, platform.domain): if p_type != DOMAIN: continue entities = await platform.platform.async_create_entities(hass, p_config) await platform.async_add_entities(entities) hass.bus.async_fire(EVENT_TEMPLATE_RELOADED, context=call.context) hass.helpers.service.async_register_admin_service( DOMAIN, SERVICE_RELOAD, _reload_config ) async def async_setup_platform_reloadable(hass): """Template platform with reloadability.""" await _async_setup_reload_service(hass) platform = entity_platform.current_platform.get() if platform not in hass.data.setdefault(PLATFORM_STORAGE_KEY, []): hass.data[PLATFORM_STORAGE_KEY].append(platform)
30.865672
88
0.704545
import logging from homeassistant import config as conf_util from homeassistant.const import SERVICE_RELOAD from homeassistant.exceptions import HomeAssistantError from homeassistant.helpers import config_per_platform, entity_platform from homeassistant.loader import async_get_integration from .const import DOMAIN, EVENT_TEMPLATE_RELOADED, PLATFORM_STORAGE_KEY _LOGGER = logging.getLogger(__name__) async def _async_setup_reload_service(hass): if hass.services.has_service(DOMAIN, SERVICE_RELOAD): return async def _reload_config(call): try: unprocessed_conf = await conf_util.async_hass_config_yaml(hass) except HomeAssistantError as err: _LOGGER.error(err) return for platform in hass.data[PLATFORM_STORAGE_KEY]: integration = await async_get_integration(hass, platform.domain) conf = await conf_util.async_process_component_config( hass, unprocessed_conf, integration ) if not conf: continue await platform.async_reset() for p_type, p_config in config_per_platform(conf, platform.domain): if p_type != DOMAIN: continue entities = await platform.platform.async_create_entities(hass, p_config) await platform.async_add_entities(entities) hass.bus.async_fire(EVENT_TEMPLATE_RELOADED, context=call.context) hass.helpers.service.async_register_admin_service( DOMAIN, SERVICE_RELOAD, _reload_config ) async def async_setup_platform_reloadable(hass): await _async_setup_reload_service(hass) platform = entity_platform.current_platform.get() if platform not in hass.data.setdefault(PLATFORM_STORAGE_KEY, []): hass.data[PLATFORM_STORAGE_KEY].append(platform)
true
true
f7f40e9486aeefb8fa290e4eaa997d3668287691
3,543
py
Python
src/reports/grades_report.py
KanegaeGabriel/sisu-data
a92fe3a21922c7036add7eaf92264d6953eec133
[ "MIT" ]
null
null
null
src/reports/grades_report.py
KanegaeGabriel/sisu-data
a92fe3a21922c7036add7eaf92264d6953eec133
[ "MIT" ]
null
null
null
src/reports/grades_report.py
KanegaeGabriel/sisu-data
a92fe3a21922c7036add7eaf92264d6953eec133
[ "MIT" ]
null
null
null
import csv import sys import os with open('short_category_names.txt', encoding='UTF-8') as f: raw_short_category_names = [l.strip().split(' | ') for l in f.readlines()] short_category_names = {k.lower(): v for v, k in raw_short_category_names} assert(len(raw_short_category_names) == len(short_category_names)) class Modalidade: def __init__(self, m): self.mod_nome, self.vagas, self.nota, self.bonus, self.dataNota = m # Reduce category names based on the short_category_names dict key = self.mod_nome.lower() if key in short_category_names: self.mod_nome = short_category_names[key] def __str__(self): s = [ '\t{}{}:'.format(self.mod_nome, ' (+{}%)'.format(self.bonus) if self.bonus and self.bonus != '.00' else ''), f'\t\tVagas: {self.vagas} | Nota de Corte: {self.nota}' ] return '\n'.join(s) class Curso: def __init__(self, l): self.codigo, self.curso_nome, self.curso_grau, self.curso_turno, self.vagas_totais = l[:5] self.campus_nome, self.campus_cidade, self.campus_uf, self.ies_nome, self.ies_sg = l[5:10] self.pes_nat, self.pes_hum, self.pes_lin, self.pes_mat, self.pes_red = l[10:15] self.min_nat, self.min_hum, self.min_lin, self.min_mat, self.min_red, self.min_tot = l[15:21] self.modalidades = [Modalidade(l[i:i+5]) for i in range(21, len(l), 5)] def __str__(self): s = [ '{} ({}) - {}, {}, {}'.format(self.ies_nome, self.ies_sg, self.campus_nome, self.campus_cidade, self.campus_uf), f'{self.curso_nome}, {self.curso_grau}, {self.curso_turno}', f'Total de Vagas: {self.vagas_totais}', f'Pesos: NAT={self.pes_nat}, HUM={self.pes_hum}, LIN={self.pes_lin}, MAT={self.pes_mat}, RED={self.pes_red} | Mínimo: NAT={self.min_nat}, HUM={self.min_hum}, LIN={self.min_lin}, MAT={self.min_mat}, RED={self.min_red}, TOTAL={self.min_tot}' ] # Sort by grade needed self.modalidades = sorted(self.modalidades, key=lambda x: (x.nota, x.mod_nome), reverse=True) mods = [str(m) for m in self.modalidades] return '\n'.join(s + mods) if len(sys.argv) == 1: print(f'Usage: py {sys.argv[0]} (year)') exit() year = sys.argv[1] names_csv = os.path.abspath(os.path.join('..', '..', 'data', year, 'scraping', 'grades.csv')) output_txt = os.path.abspath(os.path.join('..', '..', 'reports', year, 'grades.txt')) ################################################## # Read csv and process strings (via class constructors) print(f'Reading file \'{names_csv}\'...') try: with open(names_csv, mode='r', encoding='UTF-8') as f: csv_file_reader = csv.reader(f, delimiter=';') cursos = [Curso(l) for l in csv_file_reader] except FileNotFoundError: print(f'File \'{names_csv}\' not found.') exit() # Sort lexicographically cursos.sort(key=lambda x: (x.campus_uf, x.ies_nome, x.campus_cidade, x.campus_nome, x.curso_nome)) # Write to .txt print(f'Writing to \'{output_txt}\'...') with open(output_txt, 'w+', encoding='UTF-8') as f: for i, curso in enumerate(cursos): nl = str(curso).index('\n') # Only write ies_nome if it's the first occurence if i == 0 or (str(curso)[:nl] != str(cursos[i-1]).split('\n')[0]): f.write('='*50 + '\n') f.write(str(curso)[:nl] + '\n') f.write('='*50 + '\n') f.write(str(curso)[nl+1:] + '\n') f.write('\n') print(f'Finished.')
39.366667
252
0.603443
import csv import sys import os with open('short_category_names.txt', encoding='UTF-8') as f: raw_short_category_names = [l.strip().split(' | ') for l in f.readlines()] short_category_names = {k.lower(): v for v, k in raw_short_category_names} assert(len(raw_short_category_names) == len(short_category_names)) class Modalidade: def __init__(self, m): self.mod_nome, self.vagas, self.nota, self.bonus, self.dataNota = m key = self.mod_nome.lower() if key in short_category_names: self.mod_nome = short_category_names[key] def __str__(self): s = [ '\t{}{}:'.format(self.mod_nome, ' (+{}%)'.format(self.bonus) if self.bonus and self.bonus != '.00' else ''), f'\t\tVagas: {self.vagas} | Nota de Corte: {self.nota}' ] return '\n'.join(s) class Curso: def __init__(self, l): self.codigo, self.curso_nome, self.curso_grau, self.curso_turno, self.vagas_totais = l[:5] self.campus_nome, self.campus_cidade, self.campus_uf, self.ies_nome, self.ies_sg = l[5:10] self.pes_nat, self.pes_hum, self.pes_lin, self.pes_mat, self.pes_red = l[10:15] self.min_nat, self.min_hum, self.min_lin, self.min_mat, self.min_red, self.min_tot = l[15:21] self.modalidades = [Modalidade(l[i:i+5]) for i in range(21, len(l), 5)] def __str__(self): s = [ '{} ({}) - {}, {}, {}'.format(self.ies_nome, self.ies_sg, self.campus_nome, self.campus_cidade, self.campus_uf), f'{self.curso_nome}, {self.curso_grau}, {self.curso_turno}', f'Total de Vagas: {self.vagas_totais}', f'Pesos: NAT={self.pes_nat}, HUM={self.pes_hum}, LIN={self.pes_lin}, MAT={self.pes_mat}, RED={self.pes_red} | Mínimo: NAT={self.min_nat}, HUM={self.min_hum}, LIN={self.min_lin}, MAT={self.min_mat}, RED={self.min_red}, TOTAL={self.min_tot}' ] self.modalidades = sorted(self.modalidades, key=lambda x: (x.nota, x.mod_nome), reverse=True) mods = [str(m) for m in self.modalidades] return '\n'.join(s + mods) if len(sys.argv) == 1: print(f'Usage: py {sys.argv[0]} (year)') exit() year = sys.argv[1] names_csv = os.path.abspath(os.path.join('..', '..', 'data', year, 'scraping', 'grades.csv')) output_txt = os.path.abspath(os.path.join('..', '..', 'reports', year, 'grades.txt'))
true
true
f7f40f7c1750d594014faef77e7ae0348093a043
1,947
py
Python
autosklearn/pipeline/components/feature_preprocessing/truncatedSVD.py
jimgoo/auto-sklearn
a263efb49f7b7f597963bc1e787105ea7615ea75
[ "BSD-3-Clause" ]
1
2017-08-13T13:57:40.000Z
2017-08-13T13:57:40.000Z
autosklearn/pipeline/components/feature_preprocessing/truncatedSVD.py
jimgoo/auto-sklearn
a263efb49f7b7f597963bc1e787105ea7615ea75
[ "BSD-3-Clause" ]
null
null
null
autosklearn/pipeline/components/feature_preprocessing/truncatedSVD.py
jimgoo/auto-sklearn
a263efb49f7b7f597963bc1e787105ea7615ea75
[ "BSD-3-Clause" ]
1
2020-05-06T14:47:17.000Z
2020-05-06T14:47:17.000Z
import numpy as np from ConfigSpace.configuration_space import ConfigurationSpace from ConfigSpace.hyperparameters import UniformIntegerHyperparameter from autosklearn.pipeline.components.base import AutoSklearnPreprocessingAlgorithm from autosklearn.pipeline.constants import * class TruncatedSVD(AutoSklearnPreprocessingAlgorithm): def __init__(self, target_dim, random_state=None): self.target_dim = int(target_dim) self.random_state = random_state self.preprocessor = None def fit(self, X, Y): import sklearn.decomposition target_dim = min(self.target_dim, X.shape[1] - 1) self.preprocessor = sklearn.decomposition.TruncatedSVD( target_dim, algorithm='randomized') # TODO: remove when migrating to sklearn 0.16 # Circumvents a bug in sklearn # https://github.com/scikit-learn/scikit-learn/commit/f08b8c8e52663167819f242f605db39f3b5a6d0c # X = X.astype(np.float64) self.preprocessor.fit(X, Y) return self def transform(self, X): if self.preprocessor is None: raise NotImplementedError() return self.preprocessor.transform(X) @staticmethod def get_properties(dataset_properties=None): return {'shortname': 'TSVD', 'name': 'Truncated Singular Value Decomposition', 'handles_regression': True, 'handles_classification': True, 'handles_multiclass': True, 'handles_multilabel': True, 'is_deterministic': True, 'input': (SPARSE, UNSIGNED_DATA), 'output': (DENSE, INPUT)} @staticmethod def get_hyperparameter_search_space(dataset_properties=None): target_dim = UniformIntegerHyperparameter( "target_dim", 10, 256, default=128) cs = ConfigurationSpace() cs.add_hyperparameter(target_dim) return cs
36.055556
102
0.669235
import numpy as np from ConfigSpace.configuration_space import ConfigurationSpace from ConfigSpace.hyperparameters import UniformIntegerHyperparameter from autosklearn.pipeline.components.base import AutoSklearnPreprocessingAlgorithm from autosklearn.pipeline.constants import * class TruncatedSVD(AutoSklearnPreprocessingAlgorithm): def __init__(self, target_dim, random_state=None): self.target_dim = int(target_dim) self.random_state = random_state self.preprocessor = None def fit(self, X, Y): import sklearn.decomposition target_dim = min(self.target_dim, X.shape[1] - 1) self.preprocessor = sklearn.decomposition.TruncatedSVD( target_dim, algorithm='randomized') self.preprocessor.fit(X, Y) return self def transform(self, X): if self.preprocessor is None: raise NotImplementedError() return self.preprocessor.transform(X) @staticmethod def get_properties(dataset_properties=None): return {'shortname': 'TSVD', 'name': 'Truncated Singular Value Decomposition', 'handles_regression': True, 'handles_classification': True, 'handles_multiclass': True, 'handles_multilabel': True, 'is_deterministic': True, 'input': (SPARSE, UNSIGNED_DATA), 'output': (DENSE, INPUT)} @staticmethod def get_hyperparameter_search_space(dataset_properties=None): target_dim = UniformIntegerHyperparameter( "target_dim", 10, 256, default=128) cs = ConfigurationSpace() cs.add_hyperparameter(target_dim) return cs
true
true
f7f40fb920aadd6347e4f4999fd6e57e6f472b3c
5,362
py
Python
Homework_1/exercise3.py
billsioros/computational-geometry
398a92e3c08046f85eb3e95828afe62230b816fb
[ "MIT" ]
null
null
null
Homework_1/exercise3.py
billsioros/computational-geometry
398a92e3c08046f85eb3e95828afe62230b816fb
[ "MIT" ]
null
null
null
Homework_1/exercise3.py
billsioros/computational-geometry
398a92e3c08046f85eb3e95828afe62230b816fb
[ "MIT" ]
null
null
null
from matplotlib.patches import Polygon import matplotlib.pyplot as plt import numpy as np import random from exercise1 import check_for_triangle from exercise1 import plot_2D_points def remove_duplicates(lst): return [item for item in (set(tuple(i) for i in lst))] # select a point from avaliable points (for ccw) def select_random_point(current_hull_points, point1, point2): random_point = current_hull_points[0][0] if random_point == point1 or random_point == point2: random_points = [p[0] for p in current_hull_points if p[0] != point1 and p[0] != point2] random_point = random_points[0] return random_point # makes thw final plot with all points and the convex hull def plot_2D_hull(current_hull, all_points): points = [] for line in current_hull: points.append(line[0]) points.append(line[1]) plot_2D_points(points+all_points, polyg=True) line_of_hull = [] for k in current_hull: line_of_hull.append(k[0]) line_of_hull.append(k[1]) hull = np.array(line_of_hull) hull_plot = plt.Polygon(hull, fill=False) plt.gca().add_patch(hull_plot) del line_of_hull[:] plt.show() # returns the sign of det def ccw(A, B, C): return (B[0] - A[0]) * (C[1] - A[1]) > (B[1] - A[1]) * (C[0] - A[0]) def check_ccw(p, previous_point, end_point, random_point): if ccw(previous_point, end_point, random_point): if not ccw(previous_point, end_point, p): return True else: return False else: if ccw(previous_point, end_point, p): return True else: return False def beneath_beyond(points): # Step 1: sort points in descending sorted_points = sorted(points, key=lambda x: (x[0], x[1]), reverse=True) # Step 2: initial hull = triangle current_hull_points = [] current_hull = [] # if first 3 points are collinear, select (x,min(y)) and (x,max(y)) if not check_for_triangle(sorted_points[0][0], sorted_points[0][1], sorted_points[1][0], sorted_points[1][1], sorted_points[2][0], sorted_points[2][1]): for p in sorted_points[1:]: if p[0] == sorted_points[0][0]: last = p sorted_points.remove(p) sorted_points.append(last) sorted_points = sorted(sorted_points, key=lambda x: x[0], reverse=True) for p in sorted_points[0:2]: current_hull_points.append([p, 'blue']) current_hull_points.append([sorted_points[2], 'red']) current_hull.append([sorted_points[0], sorted_points[1], 'blue']) current_hull.append([sorted_points[0], sorted_points[2], 'blue']) current_hull.append([sorted_points[1], sorted_points[2], 'blue']) del sorted_points[0:3] previous_point = current_hull_points[-1][0] # Step 3: color = [] purple_points = [] for p in sorted_points: # Step 3B: find all red lines # check every blue line in hull, if it's red now for line in current_hull: if line[2] == 'blue': random_point = select_random_point(current_hull_points, line[0], line[1]) if check_ccw(p, line[0], line[1], random_point): line[2] = 'red' else: line[2] = 'blue' # Step 3B: find two purple points # re-coloring points for point1 in current_hull_points: del color[:] for point2 in current_hull: if point2[0] == point1[0] or point2[1] == point1[0]: color.append(point2[2]) if len(color) > 0: if color[0] != 'purple' and color[1] != 'purple': if color[0] != color[1]: # red + blue = purple point1[1] = 'purple' del purple_points[:] for point in current_hull_points: if point[1] == 'purple': purple_points.append(point[0]) # Step 3C: remove all red lines for line in current_hull: if line[2] == 'red': line[2] = 'delete_line' current_hull = [elem for elem in current_hull if elem[2] != 'delete_line'] # Step 3C: put two lines from p to purple1 and purple2 point current_hull.append([p, purple_points[0], 'blue']) current_hull.append([p, purple_points[1], 'blue']) # initialize for next step current_hull_points.append([p,'red']) for point in current_hull_points: if point[1] == 'purple': point[1] = 'blue' plot_2D_hull(current_hull, points) if __name__ == "__main__": # read points from user(input choice 1) # number_of_points = input('Give the number of points: ') # if int(number_of_points) < 3: # print('Error: Program needs 3 points at least.') # exit() # points = list(tuple(map(int,input("Give a point: ").split())) for r in range(int(number_of_points))) # random poinsts(input choice 2) for i in range(10): points = [(random.randrange(-100, 100), random.randrange(-100, 100)) for i in range(20)] points = remove_duplicates(points) # call beneath_beyond algorithm beneath_beyond(points)
34.593548
106
0.593249
from matplotlib.patches import Polygon import matplotlib.pyplot as plt import numpy as np import random from exercise1 import check_for_triangle from exercise1 import plot_2D_points def remove_duplicates(lst): return [item for item in (set(tuple(i) for i in lst))] def select_random_point(current_hull_points, point1, point2): random_point = current_hull_points[0][0] if random_point == point1 or random_point == point2: random_points = [p[0] for p in current_hull_points if p[0] != point1 and p[0] != point2] random_point = random_points[0] return random_point def plot_2D_hull(current_hull, all_points): points = [] for line in current_hull: points.append(line[0]) points.append(line[1]) plot_2D_points(points+all_points, polyg=True) line_of_hull = [] for k in current_hull: line_of_hull.append(k[0]) line_of_hull.append(k[1]) hull = np.array(line_of_hull) hull_plot = plt.Polygon(hull, fill=False) plt.gca().add_patch(hull_plot) del line_of_hull[:] plt.show() def ccw(A, B, C): return (B[0] - A[0]) * (C[1] - A[1]) > (B[1] - A[1]) * (C[0] - A[0]) def check_ccw(p, previous_point, end_point, random_point): if ccw(previous_point, end_point, random_point): if not ccw(previous_point, end_point, p): return True else: return False else: if ccw(previous_point, end_point, p): return True else: return False def beneath_beyond(points): sorted_points = sorted(points, key=lambda x: (x[0], x[1]), reverse=True) current_hull_points = [] current_hull = [] if not check_for_triangle(sorted_points[0][0], sorted_points[0][1], sorted_points[1][0], sorted_points[1][1], sorted_points[2][0], sorted_points[2][1]): for p in sorted_points[1:]: if p[0] == sorted_points[0][0]: last = p sorted_points.remove(p) sorted_points.append(last) sorted_points = sorted(sorted_points, key=lambda x: x[0], reverse=True) for p in sorted_points[0:2]: current_hull_points.append([p, 'blue']) current_hull_points.append([sorted_points[2], 'red']) current_hull.append([sorted_points[0], sorted_points[1], 'blue']) current_hull.append([sorted_points[0], sorted_points[2], 'blue']) current_hull.append([sorted_points[1], sorted_points[2], 'blue']) del sorted_points[0:3] previous_point = current_hull_points[-1][0] color = [] purple_points = [] for p in sorted_points: for line in current_hull: if line[2] == 'blue': random_point = select_random_point(current_hull_points, line[0], line[1]) if check_ccw(p, line[0], line[1], random_point): line[2] = 'red' else: line[2] = 'blue' # Step 3B: find two purple points # re-coloring points for point1 in current_hull_points: del color[:] for point2 in current_hull: if point2[0] == point1[0] or point2[1] == point1[0]: color.append(point2[2]) if len(color) > 0: if color[0] != 'purple' and color[1] != 'purple': if color[0] != color[1]: # red + blue = purple point1[1] = 'purple' del purple_points[:] for point in current_hull_points: if point[1] == 'purple': purple_points.append(point[0]) # Step 3C: remove all red lines for line in current_hull: if line[2] == 'red': line[2] = 'delete_line' current_hull = [elem for elem in current_hull if elem[2] != 'delete_line'] # Step 3C: put two lines from p to purple1 and purple2 point current_hull.append([p, purple_points[0], 'blue']) current_hull.append([p, purple_points[1], 'blue']) # initialize for next step current_hull_points.append([p,'red']) for point in current_hull_points: if point[1] == 'purple': point[1] = 'blue' plot_2D_hull(current_hull, points) if __name__ == "__main__": # read points from user(input choice 1) # number_of_points = input('Give the number of points: ') # if int(number_of_points) < 3: # print('Error: Program needs 3 points at least.') # exit() # points = list(tuple(map(int,input("Give a point: ").split())) for r in range(int(number_of_points))) # random poinsts(input choice 2) for i in range(10): points = [(random.randrange(-100, 100), random.randrange(-100, 100)) for i in range(20)] points = remove_duplicates(points) # call beneath_beyond algorithm beneath_beyond(points)
true
true
f7f4100a55b24087525dc65b150edeb9c86028d8
2,718
py
Python
8.backend/8.4.workshop8-integration-member-backend/app/member.py
tarathep/automation-test-course
68ace45c2660b1d811eee0f1d38f2955a10b387c
[ "Apache-2.0" ]
null
null
null
8.backend/8.4.workshop8-integration-member-backend/app/member.py
tarathep/automation-test-course
68ace45c2660b1d811eee0f1d38f2955a10b387c
[ "Apache-2.0" ]
null
null
null
8.backend/8.4.workshop8-integration-member-backend/app/member.py
tarathep/automation-test-course
68ace45c2660b1d811eee0f1d38f2955a10b387c
[ "Apache-2.0" ]
1
2020-12-13T03:16:22.000Z
2020-12-13T03:16:22.000Z
from bottle import Bottle, Route, run,response,request import json import db app = Bottle() #INIT LOAD DATA members = db.members @app.route('/') def hello(): print("----> GET Hello Member System") return 'Hello Member System' @app.route('/members', method='GET') def getMember(): print("----> GET MEMBER(S)") response.content_type="application/json" return json.dumps({'members':members}) @app.route('/members/<id>' ,method='GET') def getMemberById(id): response.content_type="application/json" print("----> GET MEMBER BY ID = "+id) for inx,i in enumerate(members): if(i["id"]==id): return json.dumps({'members':members[inx]}) return json.dumps({'id':None,'name':None,'role':None}) @app.route('/members/<id>' ,method='DELETE') def deleteMemberById(id): response.content_type="application/json" print("----> DELETE MEMBER BY ID = "+id) for inx,i in enumerate(members): if(i["id"]==id): members.remove(i) return json.dumps({'id':id,'status':'delete','message':'success'}) return json.dumps({'id':None,'status':'delete','message':'error'}) @app.route('/members' ,method='POST') def addMember(): reqBody = request.body.getvalue().decode('utf-8') addData = json.loads(reqBody) print("----> ADD MEMBER DATA = ",addData) # FIND ID FOR IS DUPLICATE? for i in members: if(i["id"]==addData["id"]): return json.dumps({'id':addData["id"],'status':'add','message':'duplicate id'}) members.append(addData) return json.dumps({'id':addData["id"],'status':'added','message':'success'}) @app.route('/members' ,method='PUT') def editMember(): reqBody = request.body.getvalue().decode('utf-8') updateData = json.loads(reqBody) print("----> UPDATE MEMBER DATA = ",updateData) # FIND ID FOR UPDATE for inx,i in enumerate(members): if(i["id"]==updateData["id"]): members.remove(i) members.append(updateData) return json.dumps({'id':updateData["id"],'status':'updated','message':'success'}) return json.dumps({'id':id,'status':'update','message':'error'}) @app.route('/login', method='POST') def auth(): reqBody = request.body.getvalue().decode('utf-8') authData = json.loads(reqBody) print("----> AUTH MEMBER = ",authData) for inx,i in enumerate(members): if(i["email"]==authData["username"] and i["password"]==authData["password"]): return json.dumps({'id':i["id"],'name':i["firstName"],'role':i["role"]}) return json.dumps({'id':None,'name':None,'role':None}) if __name__ == '__main__': run(app, host='localhost', port=8080)
30.2
93
0.608168
from bottle import Bottle, Route, run,response,request import json import db app = Bottle() members = db.members @app.route('/') def hello(): print("----> GET Hello Member System") return 'Hello Member System' @app.route('/members', method='GET') def getMember(): print("----> GET MEMBER(S)") response.content_type="application/json" return json.dumps({'members':members}) @app.route('/members/<id>' ,method='GET') def getMemberById(id): response.content_type="application/json" print("----> GET MEMBER BY ID = "+id) for inx,i in enumerate(members): if(i["id"]==id): return json.dumps({'members':members[inx]}) return json.dumps({'id':None,'name':None,'role':None}) @app.route('/members/<id>' ,method='DELETE') def deleteMemberById(id): response.content_type="application/json" print("----> DELETE MEMBER BY ID = "+id) for inx,i in enumerate(members): if(i["id"]==id): members.remove(i) return json.dumps({'id':id,'status':'delete','message':'success'}) return json.dumps({'id':None,'status':'delete','message':'error'}) @app.route('/members' ,method='POST') def addMember(): reqBody = request.body.getvalue().decode('utf-8') addData = json.loads(reqBody) print("----> ADD MEMBER DATA = ",addData) for i in members: if(i["id"]==addData["id"]): return json.dumps({'id':addData["id"],'status':'add','message':'duplicate id'}) members.append(addData) return json.dumps({'id':addData["id"],'status':'added','message':'success'}) @app.route('/members' ,method='PUT') def editMember(): reqBody = request.body.getvalue().decode('utf-8') updateData = json.loads(reqBody) print("----> UPDATE MEMBER DATA = ",updateData) for inx,i in enumerate(members): if(i["id"]==updateData["id"]): members.remove(i) members.append(updateData) return json.dumps({'id':updateData["id"],'status':'updated','message':'success'}) return json.dumps({'id':id,'status':'update','message':'error'}) @app.route('/login', method='POST') def auth(): reqBody = request.body.getvalue().decode('utf-8') authData = json.loads(reqBody) print("----> AUTH MEMBER = ",authData) for inx,i in enumerate(members): if(i["email"]==authData["username"] and i["password"]==authData["password"]): return json.dumps({'id':i["id"],'name':i["firstName"],'role':i["role"]}) return json.dumps({'id':None,'name':None,'role':None}) if __name__ == '__main__': run(app, host='localhost', port=8080)
true
true
f7f410b41557f63d0f18dd71e8ff811f9be33826
1,191
py
Python
netdev/vendors/__init__.py
awesome-python/netdev
b96334c2ff92715c87e1ab388fcc7d48506aa954
[ "Apache-2.0" ]
null
null
null
netdev/vendors/__init__.py
awesome-python/netdev
b96334c2ff92715c87e1ab388fcc7d48506aa954
[ "Apache-2.0" ]
null
null
null
netdev/vendors/__init__.py
awesome-python/netdev
b96334c2ff92715c87e1ab388fcc7d48506aa954
[ "Apache-2.0" ]
1
2021-01-16T13:43:20.000Z
2021-01-16T13:43:20.000Z
from netdev.vendors.arista import AristaEOS from netdev.vendors.aruba import ArubaAOS8, ArubaAOS6 from netdev.vendors.base import BaseDevice from netdev.vendors.cisco import CiscoNXOS, CiscoIOSXR, CiscoASA, CiscoIOS from netdev.vendors.comware_like import ComwareLikeDevice from netdev.vendors.fujitsu import FujitsuSwitch from netdev.vendors.hp import HPComware, HPComwareLimited from netdev.vendors.ios_like import IOSLikeDevice from netdev.vendors.juniper import JuniperJunOS from netdev.vendors.junos_like import JunOSLikeDevice from netdev.vendors.mikrotik import MikrotikRouterOS from netdev.vendors.terminal import Terminal from netdev.vendors.ubiquiti import UbiquityEdgeSwitch __all__ = ( "CiscoASA", "CiscoIOS", "CiscoIOSXR", "CiscoNXOS", "HPComware", "HPComwareLimited", "FujitsuSwitch", "MikrotikRouterOS", "JuniperJunOS", "JunOSLikeDevice", "AristaEOS", "ArubaAOS6", "ArubaAOS8", "BaseDevice", "IOSLikeDevice", "ComwareLikeDevice", "Terminal", "arista", "aruba", "cisco", "fujitsu", "hp", "juniper", "mikrotik", "UbiquityEdgeSwitch", )
28.357143
75
0.717045
from netdev.vendors.arista import AristaEOS from netdev.vendors.aruba import ArubaAOS8, ArubaAOS6 from netdev.vendors.base import BaseDevice from netdev.vendors.cisco import CiscoNXOS, CiscoIOSXR, CiscoASA, CiscoIOS from netdev.vendors.comware_like import ComwareLikeDevice from netdev.vendors.fujitsu import FujitsuSwitch from netdev.vendors.hp import HPComware, HPComwareLimited from netdev.vendors.ios_like import IOSLikeDevice from netdev.vendors.juniper import JuniperJunOS from netdev.vendors.junos_like import JunOSLikeDevice from netdev.vendors.mikrotik import MikrotikRouterOS from netdev.vendors.terminal import Terminal from netdev.vendors.ubiquiti import UbiquityEdgeSwitch __all__ = ( "CiscoASA", "CiscoIOS", "CiscoIOSXR", "CiscoNXOS", "HPComware", "HPComwareLimited", "FujitsuSwitch", "MikrotikRouterOS", "JuniperJunOS", "JunOSLikeDevice", "AristaEOS", "ArubaAOS6", "ArubaAOS8", "BaseDevice", "IOSLikeDevice", "ComwareLikeDevice", "Terminal", "arista", "aruba", "cisco", "fujitsu", "hp", "juniper", "mikrotik", "UbiquityEdgeSwitch", )
true
true
f7f4110062ee768678744026d1128b2f9a41e26a
88
py
Python
axis-label/__init__.py
johnvorsten/mpl-rotate-axis-label
89cd2cfe9d774b0b34fa5f16890fca75bcc62e99
[ "MIT" ]
null
null
null
axis-label/__init__.py
johnvorsten/mpl-rotate-axis-label
89cd2cfe9d774b0b34fa5f16890fca75bcc62e99
[ "MIT" ]
null
null
null
axis-label/__init__.py
johnvorsten/mpl-rotate-axis-label
89cd2cfe9d774b0b34fa5f16890fca75bcc62e99
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- """ Created on Fri Jul 3 20:16:22 2020 @author: z003vrzk """
11
35
0.568182
true
true
f7f41271e1e43e146b567ad4a2ee1b52ebbb1dcb
1,887
py
Python
test/test_cost_model_out_all_of.py
chargio/using-koku-api-test
2f41fd83ab730705352b116b7a6e05ae3d9a8ebd
[ "MIT" ]
1
2020-03-18T11:32:09.000Z
2020-03-18T11:32:09.000Z
test/test_cost_model_out_all_of.py
chargio/using-koku-api-test
2f41fd83ab730705352b116b7a6e05ae3d9a8ebd
[ "MIT" ]
null
null
null
test/test_cost_model_out_all_of.py
chargio/using-koku-api-test
2f41fd83ab730705352b116b7a6e05ae3d9a8ebd
[ "MIT" ]
null
null
null
# coding: utf-8 """ Cost Management The API for Project Koku and OpenShift cost management. You can find out more about Cost Management at [https://github.com/project-koku/](https://github.com/project-koku/). # noqa: E501 The version of the OpenAPI document: 1.0.0 Generated by: https://openapi-generator.tech """ from __future__ import absolute_import import unittest import datetime import openapi_client from openapi_client.models.cost_model_out_all_of import CostModelOutAllOf # noqa: E501 from openapi_client.rest import ApiException class TestCostModelOutAllOf(unittest.TestCase): """CostModelOutAllOf unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): """Test CostModelOutAllOf include_option is a boolean, when False only required params are included, when True both required and optional params are included """ # model = openapi_client.models.cost_model_out_all_of.CostModelOutAllOf() # noqa: E501 if include_optional : return CostModelOutAllOf( uuid = '0', created_timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), updated_timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), markup = openapi_client.models.markup.Markup( value = 1.337, unit = 'percent', ) ) else : return CostModelOutAllOf( ) def testCostModelOutAllOf(self): """Test CostModelOutAllOf""" inst_req_only = self.make_instance(include_optional=False) inst_req_and_optional = self.make_instance(include_optional=True) if __name__ == '__main__': unittest.main()
32.534483
190
0.649709
from __future__ import absolute_import import unittest import datetime import openapi_client from openapi_client.models.cost_model_out_all_of import CostModelOutAllOf from openapi_client.rest import ApiException class TestCostModelOutAllOf(unittest.TestCase): def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional): include_optional : return CostModelOutAllOf( uuid = '0', created_timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), updated_timestamp = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), markup = openapi_client.models.markup.Markup( value = 1.337, unit = 'percent', ) ) else : return CostModelOutAllOf( ) def testCostModelOutAllOf(self): inst_req_only = self.make_instance(include_optional=False) inst_req_and_optional = self.make_instance(include_optional=True) if __name__ == '__main__': unittest.main()
true
true
f7f4127843ae4e85ff5c4861c1d8b06a4355526f
3,006
py
Python
data_structure_python/chapter4.py
nowindxdw/PlayWithDataStructure
a058adcc6dc5b7a4f1b4b49fd1fa2d86d619d95a
[ "MIT" ]
null
null
null
data_structure_python/chapter4.py
nowindxdw/PlayWithDataStructure
a058adcc6dc5b7a4f1b4b49fd1fa2d86d619d95a
[ "MIT" ]
null
null
null
data_structure_python/chapter4.py
nowindxdw/PlayWithDataStructure
a058adcc6dc5b7a4f1b4b49fd1fa2d86d619d95a
[ "MIT" ]
null
null
null
# -*- coding: utf-8 -*- #普通迭代实现 def fib(n): if n == 0: return [0] if n == 1: return [0,1] temp = [0,1] for i in range(2,n): temp.append(temp[i-2]+temp[i-1]) return temp # 递归实现 def fib_recursion(n): if n<2 : return n return fib_recursion(n-1)+fib_recursion(n-2) #根据数字字符和符号字符四则运算结果 def cal(num1,num2,str): if str == "+": return int(num1)+int(num2) if str == "-": return int(num1)-int(num2) if str == "*": return int(num1)*int(num2) if str == "/" and num2 != 0 : return int(num1)//int(num2) else: return 0 #后缀表达式计算 #利用python的数组的函数模拟栈操作 #空栈 l = [] #进栈 l.append(ele) #出栈 l.pop(ele) #后缀表达式 9_3_1_-_3_*_+_10_2_/_+ def cal_suffix(string): split_str = string.split('_') stack = [] for s in split_str: print(s) if s.isnumeric(): stack.append(s) else: temp1 = stack.pop() temp2 = stack.pop() stack.append(cal(temp2,temp1,s)) return stack[0] #判断运算符号优先级 def lower(str1,str2): level1 = 1 if str1 in ["*","/"] else 0 level2 = 1 if str2 in ["*","/"] else 0 print("str level") print(str1) print(level1) print(str2) print(level2) return level1<=level2 #中缀表达式转后缀表达式,规则见chapter4.md #mid: 9+(3-1)*3+10/2 #suffix: 9_3_1_-_3_*_+_10_2_/_+ def convert_mid_to_suffix(string): import re stack = [] output = "" while len(string)>0: # print("whlile" + output) # print("stack:%s" % stack) # print("string:%s" % string) # print("first_ele:%s" % first_ele) first_ele = string[0:1] if first_ele.isnumeric(): match = re.search('(\d+)',string) ele = match.group(0) output += "_"+ele string = string.replace(str(ele), "", 1) else: if len(stack) == 0: stack.append(first_ele) elif first_ele == "(": stack.append(first_ele) elif first_ele != ")" and lower(stack[-1],first_ele): stack.append(first_ele) else: if first_ele == ")": while stack[-1] != "(": last_ele = stack.pop() output += '_'+last_ele stack.pop() else: while len(stack)>0: last_ele = stack.pop() output += '_' + last_ele stack.append(first_ele) string = string.replace(str(first_ele), "", 1) if len(string) == 0: while len(stack) > 0: last_ele = stack.pop() output += '_' + last_ele return output[1:] if __name__ == "__main__": #n=40 #print(fib(n)) #print(fib_recursion(10)) # 递归运算时间更长 #target = "9_3_1_-_3_*_+_10_2_/_+" #print(cal_suffix(target)) mid ="9+(3-1)*3+10/2" print(convert_mid_to_suffix(mid))
24.439024
65
0.494677
def fib(n): if n == 0: return [0] if n == 1: return [0,1] temp = [0,1] for i in range(2,n): temp.append(temp[i-2]+temp[i-1]) return temp def fib_recursion(n): if n<2 : return n return fib_recursion(n-1)+fib_recursion(n-2) def cal(num1,num2,str): if str == "+": return int(num1)+int(num2) if str == "-": return int(num1)-int(num2) if str == "*": return int(num1)*int(num2) if str == "/" and num2 != 0 : return int(num1)//int(num2) else: return 0 def cal_suffix(string): split_str = string.split('_') stack = [] for s in split_str: print(s) if s.isnumeric(): stack.append(s) else: temp1 = stack.pop() temp2 = stack.pop() stack.append(cal(temp2,temp1,s)) return stack[0] def lower(str1,str2): level1 = 1 if str1 in ["*","/"] else 0 level2 = 1 if str2 in ["*","/"] else 0 print("str level") print(str1) print(level1) print(str2) print(level2) return level1<=level2 def convert_mid_to_suffix(string): import re stack = [] output = "" while len(string)>0: first_ele = string[0:1] if first_ele.isnumeric(): match = re.search('(\d+)',string) ele = match.group(0) output += "_"+ele string = string.replace(str(ele), "", 1) else: if len(stack) == 0: stack.append(first_ele) elif first_ele == "(": stack.append(first_ele) elif first_ele != ")" and lower(stack[-1],first_ele): stack.append(first_ele) else: if first_ele == ")": while stack[-1] != "(": last_ele = stack.pop() output += '_'+last_ele stack.pop() else: while len(stack)>0: last_ele = stack.pop() output += '_' + last_ele stack.append(first_ele) string = string.replace(str(first_ele), "", 1) if len(string) == 0: while len(stack) > 0: last_ele = stack.pop() output += '_' + last_ele return output[1:] if __name__ == "__main__": mid ="9+(3-1)*3+10/2" print(convert_mid_to_suffix(mid))
true
true
f7f4130aab656d4152bb986827c22249c5e9137f
628
py
Python
molecule/check-iptables-nat/tests/test_default.py
Akanoa/ansible-role-docker
fd3516f2e001b9ff1eeb31e251ab835ae9b41250
[ "MIT" ]
null
null
null
molecule/check-iptables-nat/tests/test_default.py
Akanoa/ansible-role-docker
fd3516f2e001b9ff1eeb31e251ab835ae9b41250
[ "MIT" ]
null
null
null
molecule/check-iptables-nat/tests/test_default.py
Akanoa/ansible-role-docker
fd3516f2e001b9ff1eeb31e251ab835ae9b41250
[ "MIT" ]
null
null
null
import os import testinfra.utils.ansible_runner testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( os.environ["MOLECULE_INVENTORY_FILE"] ).get_hosts("instance") def test_iptables_filter(host): cmd = host.run_expect( expected=[0], command="iptables --table filter --list-rules", ) stdout_lines = cmd.stdout.splitlines() assert "-N DOCKER" in stdout_lines def test_iptables_nat(host): cmd = host.run_expect( expected=[0], command="iptables --table nat --list-rules", ) stdout_lines = cmd.stdout.splitlines() assert "-N DOCKER" in stdout_lines
24.153846
63
0.68949
import os import testinfra.utils.ansible_runner testinfra_hosts = testinfra.utils.ansible_runner.AnsibleRunner( os.environ["MOLECULE_INVENTORY_FILE"] ).get_hosts("instance") def test_iptables_filter(host): cmd = host.run_expect( expected=[0], command="iptables --table filter --list-rules", ) stdout_lines = cmd.stdout.splitlines() assert "-N DOCKER" in stdout_lines def test_iptables_nat(host): cmd = host.run_expect( expected=[0], command="iptables --table nat --list-rules", ) stdout_lines = cmd.stdout.splitlines() assert "-N DOCKER" in stdout_lines
true
true
f7f41344688cdabc239bd48df4d8c1eee5c8d53a
1,640
py
Python
core/urls.py
IkramKhan-DevOps/cws-post
2a242de51f640968d96fd947bed4aa4484afc52d
[ "MIT" ]
2
2022-02-04T07:45:57.000Z
2022-02-04T07:46:03.000Z
core/urls.py
IkramKhan-DevOps/cws-post
2a242de51f640968d96fd947bed4aa4484afc52d
[ "MIT" ]
null
null
null
core/urls.py
IkramKhan-DevOps/cws-post
2a242de51f640968d96fd947bed4aa4484afc52d
[ "MIT" ]
null
null
null
# import notifications.urls # from django.conf.urls import url from django.conf.urls.static import static from django.contrib import admin from django.urls import path, include from src.accounts.views import GoogleLoginView, CustomRegisterAccountView from .settings import DEBUG, MEDIA_ROOT, MEDIA_URL from django.contrib.auth import views as auth_views urlpatterns = [ # WEBSITE APPLICATION -------------------------------------------------------------------------------- path('', include('src.website.urls', namespace='website')), # ADMIN/ROOT APPLICATION path('admin/', admin.site.urls), path('accounts/', include('src.accounts.urls', namespace='accounts')), path('accounts/', include('allauth.urls')), # PORTALS ---------------------------------------------------------- # path('a/', include('src.portals.admins.urls', namespace='admins')), path('c/', include('src.portals.customer.urls', namespace='customer')), # REST API ------------------------------------------------------------------------------------------- path('auth/', include('dj_rest_auth.urls')), path('auth/registration/', CustomRegisterAccountView.as_view(), name='account_create_new_user'), path('auth/google/', GoogleLoginView.as_view(), name='google-login-view'), path('api/', include('src.api.urls', namespace='api')), # NOTIFICATIONS APPLICATION --------------------------------------------------------------------------------- # url('^inbox/notifications/', include(notifications.urls, namespace='notifications')), ] if DEBUG: urlpatterns += static(MEDIA_URL, document_root=MEDIA_ROOT)
42.051282
113
0.579268
from django.conf.urls.static import static from django.contrib import admin from django.urls import path, include from src.accounts.views import GoogleLoginView, CustomRegisterAccountView from .settings import DEBUG, MEDIA_ROOT, MEDIA_URL from django.contrib.auth import views as auth_views urlpatterns = [ path('', include('src.website.urls', namespace='website')), path('admin/', admin.site.urls), path('accounts/', include('src.accounts.urls', namespace='accounts')), path('accounts/', include('allauth.urls')), path('a/', include('src.portals.admins.urls', namespace='admins')), path('c/', include('src.portals.customer.urls', namespace='customer')), path('auth/', include('dj_rest_auth.urls')), path('auth/registration/', CustomRegisterAccountView.as_view(), name='account_create_new_user'), path('auth/google/', GoogleLoginView.as_view(), name='google-login-view'), path('api/', include('src.api.urls', namespace='api')), ] if DEBUG: urlpatterns += static(MEDIA_URL, document_root=MEDIA_ROOT)
true
true
f7f41385bbed53cc247be2fac44dc5c617372505
1,314
py
Python
westworld/_deprecated/chicken_game.py
TheoLvs/westworld
7fb435f3a028ff3d3156bf2a023b44ee06aa9f8b
[ "MIT" ]
null
null
null
westworld/_deprecated/chicken_game.py
TheoLvs/westworld
7fb435f3a028ff3d3156bf2a023b44ee06aa9f8b
[ "MIT" ]
3
2021-09-06T23:12:23.000Z
2021-09-17T01:04:34.000Z
westworld/_deprecated/chicken_game.py
TheoLvs/westworld
7fb435f3a028ff3d3156bf2a023b44ee06aa9f8b
[ "MIT" ]
null
null
null
import sys sys.path.append("C:/git/reinforcement-learning") from hyperion.agents import * from hyperion.environment import * import random import numpy as np import uuid import attr STATUSES = ["EGG","CHICKEN","COW","FARMER","SUPERMAN"] SIZE = 100 @attr.s(slots = True) class Player(Agent): # # Agent id # id = attr.ib() # id.default # def _init_id(self): # return str(uuid.uuid1()) # Status status = attr.ib(default = 0,init=False) # Position x = attr.ib(init = False) @x.default def _init_x(self): return random.randint(0,SIZE) def step(self,env): # Movement new_x = self.x + random.choice([-1,1]) new_x = np.clip(new_x,0,SIZE-1) self.x = new_x # Others others = env.inverse_loc(self.id) for other in others: if other.x == self.x: if other.status == self.status: other.status = 0 self.status += 1 def interacts_with(self,other): return self.x == other.x,1 class ChickenGame(Environment): def render(self): env = [" "]*SIZE for agent in self.agents: env[agent.x] = str(agent.status) return "|"+"".join(env)+"|" def interactions(self): pass
18.25
54
0.560122
import sys sys.path.append("C:/git/reinforcement-learning") from hyperion.agents import * from hyperion.environment import * import random import numpy as np import uuid import attr STATUSES = ["EGG","CHICKEN","COW","FARMER","SUPERMAN"] SIZE = 100 @attr.s(slots = True) class Player(Agent): status = attr.ib(default = 0,init=False) x = attr.ib(init = False) @x.default def _init_x(self): return random.randint(0,SIZE) def step(self,env): new_x = self.x + random.choice([-1,1]) new_x = np.clip(new_x,0,SIZE-1) self.x = new_x others = env.inverse_loc(self.id) for other in others: if other.x == self.x: if other.status == self.status: other.status = 0 self.status += 1 def interacts_with(self,other): return self.x == other.x,1 class ChickenGame(Environment): def render(self): env = [" "]*SIZE for agent in self.agents: env[agent.x] = str(agent.status) return "|"+"".join(env)+"|" def interactions(self): pass
true
true
f7f413bf1610375f739f9ec188612136975e9eda
2,021
py
Python
otp/chat/TalkAssistant.py
CrankySupertoon01/Toontown-2
60893d104528a8e7eb4aced5d0015f22e203466d
[ "MIT" ]
1
2021-02-13T22:40:50.000Z
2021-02-13T22:40:50.000Z
otp/chat/TalkAssistant.py
CrankySupertoonArchive/Toontown-2
60893d104528a8e7eb4aced5d0015f22e203466d
[ "MIT" ]
1
2018-07-28T20:07:04.000Z
2018-07-30T18:28:34.000Z
otp/chat/TalkAssistant.py
CrankySupertoonArchive/Toontown-2
60893d104528a8e7eb4aced5d0015f22e203466d
[ "MIT" ]
2
2019-12-02T01:39:10.000Z
2021-02-13T22:41:00.000Z
from direct.directnotify import DirectNotifyGlobal from direct.showbase import DirectObject from otp.chat.ChatGlobals import * from otp.nametag.NametagConstants import * import ChatUtil class TalkAssistant(DirectObject.DirectObject): notify = DirectNotifyGlobal.directNotify.newCategory('TalkAssistant') def delete(self): self.ignoreAll() def start(self): pass def stop(self): pass def sendOpenTalk(self, message): if len(message) > 0 and message[0] == '~': messenger.send('magicWord', [message]) else: chatFlags = CFSpeech | CFTimeout if ChatUtil.isThought(message): chatFlags = CFThought base.cr.chatAgent.sendChatMessage(message) messenger.send('chatUpdate', [message, chatFlags]) def sendWhisperTalk(self, message, receiverAvId): base.cr.ttsFriendsManager.sendUpdate('sendTalkWhisper', [receiverAvId, message]) def sendOpenSpeedChat(self, type, messageIndex): if type == SPEEDCHAT_NORMAL: messenger.send(SCChatEvent) messenger.send('chatUpdateSC', [messageIndex]) base.localAvatar.b_setSC(messageIndex) elif type == SPEEDCHAT_EMOTE: messenger.send('chatUpdateSCEmote', [messageIndex]) messenger.send(SCEmoteChatEvent) base.localAvatar.b_setSCEmote(messageIndex) elif type == SPEEDCHAT_CUSTOM: messenger.send('chatUpdateSCCustom', [messageIndex]) messenger.send(SCCustomChatEvent) base.localAvatar.b_setSCCustom(messageIndex) def sendAvatarWhisperSpeedChat(self, type, messageIndex, receiverId): if type == SPEEDCHAT_NORMAL: base.localAvatar.whisperSCTo(messageIndex, receiverId) elif type == SPEEDCHAT_EMOTE: base.localAvatar.whisperSCEmoteTo(messageIndex, receiverId) elif type == SPEEDCHAT_CUSTOM: base.localAvatar.whisperSCCustomTo(messageIndex, receiverId)
38.132075
88
0.675903
from direct.directnotify import DirectNotifyGlobal from direct.showbase import DirectObject from otp.chat.ChatGlobals import * from otp.nametag.NametagConstants import * import ChatUtil class TalkAssistant(DirectObject.DirectObject): notify = DirectNotifyGlobal.directNotify.newCategory('TalkAssistant') def delete(self): self.ignoreAll() def start(self): pass def stop(self): pass def sendOpenTalk(self, message): if len(message) > 0 and message[0] == '~': messenger.send('magicWord', [message]) else: chatFlags = CFSpeech | CFTimeout if ChatUtil.isThought(message): chatFlags = CFThought base.cr.chatAgent.sendChatMessage(message) messenger.send('chatUpdate', [message, chatFlags]) def sendWhisperTalk(self, message, receiverAvId): base.cr.ttsFriendsManager.sendUpdate('sendTalkWhisper', [receiverAvId, message]) def sendOpenSpeedChat(self, type, messageIndex): if type == SPEEDCHAT_NORMAL: messenger.send(SCChatEvent) messenger.send('chatUpdateSC', [messageIndex]) base.localAvatar.b_setSC(messageIndex) elif type == SPEEDCHAT_EMOTE: messenger.send('chatUpdateSCEmote', [messageIndex]) messenger.send(SCEmoteChatEvent) base.localAvatar.b_setSCEmote(messageIndex) elif type == SPEEDCHAT_CUSTOM: messenger.send('chatUpdateSCCustom', [messageIndex]) messenger.send(SCCustomChatEvent) base.localAvatar.b_setSCCustom(messageIndex) def sendAvatarWhisperSpeedChat(self, type, messageIndex, receiverId): if type == SPEEDCHAT_NORMAL: base.localAvatar.whisperSCTo(messageIndex, receiverId) elif type == SPEEDCHAT_EMOTE: base.localAvatar.whisperSCEmoteTo(messageIndex, receiverId) elif type == SPEEDCHAT_CUSTOM: base.localAvatar.whisperSCCustomTo(messageIndex, receiverId)
true
true
f7f41706f12c57d7602cd0696478c6daacd52dab
5,785
py
Python
framework/auth/__init__.py
lbanner/osf.io
1898ef0ff8bd91713e94c60e7463b5f81ac62caa
[ "Apache-2.0" ]
null
null
null
framework/auth/__init__.py
lbanner/osf.io
1898ef0ff8bd91713e94c60e7463b5f81ac62caa
[ "Apache-2.0" ]
null
null
null
framework/auth/__init__.py
lbanner/osf.io
1898ef0ff8bd91713e94c60e7463b5f81ac62caa
[ "Apache-2.0" ]
null
null
null
# -*- coding: utf-8 -*- from framework.sessions import session, create_session, goback from framework import bcrypt from framework.auth.exceptions import ( DuplicateEmailError, LoginDisabledError, LoginNotAllowedError, PasswordIncorrectError, TwoFactorValidationError, ) from framework.flask import redirect from website import settings from .core import User, Auth from .core import get_user __all__ = [ 'get_display_name', 'Auth', 'User', 'get_user', 'check_password', 'authenticate', 'login', 'logout', 'register_unconfirmed', 'register', ] def get_display_name(username): """Return the username to display in the navbar. Shortens long usernames.""" if len(username) > 40: return '%s...%s' % (username[:20].strip(), username[-15:].strip()) return username # check_password(actual_pw_hash, given_password) -> Boolean check_password = bcrypt.check_password_hash def authenticate(user, response): data = session.data if session._get_current_object() else {} data.update({ 'auth_user_username': user.username, 'auth_user_id': user._primary_key, 'auth_user_fullname': user.fullname, }) response = create_session(response, data=data) return response def authenticate_two_factor(user): """Begins authentication for two factor auth users :param user: User to be authenticated :return: Response object directed to two-factor view """ data = session.data if session._get_current_object() else {} data.update({'two_factor_auth': { 'auth_user_username': user.username, 'auth_user_id': user._primary_key, 'auth_user_fullname': user.fullname, }}) # Redirect to collect two factor code from user next_url = data.get('next_url', False) # NOTE: Avoid circular import /hrybacki from website.util import web_url_for if next_url: response = redirect(web_url_for('two_factor', next=next_url)) else: response = redirect(web_url_for('two_factor')) response = create_session(response, data) return response def user_requires_two_factor_verification(user): """Returns if user has two factor auth enabled :param user: User to be checked :return: True if user has two factor auth enabled """ if 'twofactor' in settings.ADDONS_REQUESTED: two_factor_auth = user.get_addon('twofactor') # TODO refactor is_confirmed as is_enabled /hrybacki return two_factor_auth and two_factor_auth.is_confirmed return False def verify_two_factor(user_id, two_factor_code): """Verifies user two factor authentication for specified user :param user_id: ID for user attempting login :param two_factor_code: two factor code for authentication :return: Response object """ user = User.load(user_id) two_factor_auth = user.get_addon('twofactor') if two_factor_auth and not two_factor_auth.verify_code(two_factor_code): # Raise error if incorrect code is submitted raise TwoFactorValidationError('Two-Factor auth does not match.') # Update session field verifying two factor and delete key used for auth session.data.update(session.data['two_factor_auth']) del session.data['two_factor_auth'] next_url = session.data.get('next_url', False) if next_url: response = redirect(next_url) else: # NOTE: avoid circular import /hrybacki from website.util import web_url_for response = redirect(web_url_for('dashboard')) return response def login(username, password): """View helper function for logging in a user. Either authenticates a user and returns a ``Response`` or raises an ``AuthError``. :raises: AuthError on a bad login :returns: Redirect response to settings page on successful login. """ username = username.strip().lower() password = password.strip() if username and password: user = get_user( username=username, password=password ) if user: if not user.is_registered: raise LoginNotAllowedError('User is not registered.') if not user.is_claimed: raise LoginNotAllowedError('User is not claimed.') if user.is_disabled: raise LoginDisabledError('User is disabled.') if user_requires_two_factor_verification(user): return authenticate_two_factor(user) return authenticate(user, response=goback()) raise PasswordIncorrectError('Incorrect password attempt.') def logout(): for key in ['auth_user_username', 'auth_user_id', 'auth_user_fullname']: try: del session.data[key] except KeyError: pass return True def register_unconfirmed(username, password, fullname): user = get_user(username=username) if not user: user = User.create_unconfirmed(username=username, password=password, fullname=fullname) user.save() elif not user.is_registered: # User is in db but not registered user.add_email_verification(username) user.set_password(password) user.fullname = fullname user.update_guessed_names() user.save() else: raise DuplicateEmailError('User {0!r} already exists'.format(username)) return user def register(username, password, fullname): user = get_user(username=username) if not user: user = User.create_unconfirmed( username=username, password=password, fullname=fullname ) user.registered = True user.date_confirmed = user.date_registered user.emails.append(username) user.save() return user
30.608466
80
0.680899
from framework.sessions import session, create_session, goback from framework import bcrypt from framework.auth.exceptions import ( DuplicateEmailError, LoginDisabledError, LoginNotAllowedError, PasswordIncorrectError, TwoFactorValidationError, ) from framework.flask import redirect from website import settings from .core import User, Auth from .core import get_user __all__ = [ 'get_display_name', 'Auth', 'User', 'get_user', 'check_password', 'authenticate', 'login', 'logout', 'register_unconfirmed', 'register', ] def get_display_name(username): if len(username) > 40: return '%s...%s' % (username[:20].strip(), username[-15:].strip()) return username check_password = bcrypt.check_password_hash def authenticate(user, response): data = session.data if session._get_current_object() else {} data.update({ 'auth_user_username': user.username, 'auth_user_id': user._primary_key, 'auth_user_fullname': user.fullname, }) response = create_session(response, data=data) return response def authenticate_two_factor(user): data = session.data if session._get_current_object() else {} data.update({'two_factor_auth': { 'auth_user_username': user.username, 'auth_user_id': user._primary_key, 'auth_user_fullname': user.fullname, }}) next_url = data.get('next_url', False) from website.util import web_url_for if next_url: response = redirect(web_url_for('two_factor', next=next_url)) else: response = redirect(web_url_for('two_factor')) response = create_session(response, data) return response def user_requires_two_factor_verification(user): if 'twofactor' in settings.ADDONS_REQUESTED: two_factor_auth = user.get_addon('twofactor') return two_factor_auth and two_factor_auth.is_confirmed return False def verify_two_factor(user_id, two_factor_code): user = User.load(user_id) two_factor_auth = user.get_addon('twofactor') if two_factor_auth and not two_factor_auth.verify_code(two_factor_code): raise TwoFactorValidationError('Two-Factor auth does not match.') session.data.update(session.data['two_factor_auth']) del session.data['two_factor_auth'] next_url = session.data.get('next_url', False) if next_url: response = redirect(next_url) else: from website.util import web_url_for response = redirect(web_url_for('dashboard')) return response def login(username, password): username = username.strip().lower() password = password.strip() if username and password: user = get_user( username=username, password=password ) if user: if not user.is_registered: raise LoginNotAllowedError('User is not registered.') if not user.is_claimed: raise LoginNotAllowedError('User is not claimed.') if user.is_disabled: raise LoginDisabledError('User is disabled.') if user_requires_two_factor_verification(user): return authenticate_two_factor(user) return authenticate(user, response=goback()) raise PasswordIncorrectError('Incorrect password attempt.') def logout(): for key in ['auth_user_username', 'auth_user_id', 'auth_user_fullname']: try: del session.data[key] except KeyError: pass return True def register_unconfirmed(username, password, fullname): user = get_user(username=username) if not user: user = User.create_unconfirmed(username=username, password=password, fullname=fullname) user.save() elif not user.is_registered: user.add_email_verification(username) user.set_password(password) user.fullname = fullname user.update_guessed_names() user.save() else: raise DuplicateEmailError('User {0!r} already exists'.format(username)) return user def register(username, password, fullname): user = get_user(username=username) if not user: user = User.create_unconfirmed( username=username, password=password, fullname=fullname ) user.registered = True user.date_confirmed = user.date_registered user.emails.append(username) user.save() return user
true
true
f7f4170a498857b9a9fa0c6fbffb7a3358b49cf8
2,081
py
Python
keras/layers/activation/thresholded_relu_test.py
itsraina/keras
5e9376b5b94b6fb445dd52dbfafbc4e95bff5e35
[ "Apache-2.0" ]
null
null
null
keras/layers/activation/thresholded_relu_test.py
itsraina/keras
5e9376b5b94b6fb445dd52dbfafbc4e95bff5e35
[ "Apache-2.0" ]
null
null
null
keras/layers/activation/thresholded_relu_test.py
itsraina/keras
5e9376b5b94b6fb445dd52dbfafbc4e95bff5e35
[ "Apache-2.0" ]
null
null
null
# Copyright 2016 The TensorFlow 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. # ============================================================================== """Tests for ThresholdedReLU layer.""" import tensorflow.compat.v2 as tf import keras from keras.testing_infra import test_combinations from keras.testing_infra import test_utils @test_combinations.run_all_keras_modes class ThresholdedReLUTest(test_combinations.TestCase): def test_thresholded_relu(self): test_utils.layer_test( keras.layers.ThresholdedReLU, kwargs={"theta": 0.5}, input_shape=(2, 3, 4), supports_masking=True, ) def test_threshold_relu_with_invalid_theta(self): with self.assertRaisesRegex( ValueError, "Theta of a Thresholded ReLU layer cannot " "be None, expecting a float. Received: None", ): test_utils.layer_test( keras.layers.ThresholdedReLU, kwargs={"theta": None}, input_shape=(2, 3, 4), supports_masking=True, ) with self.assertRaisesRegex( ValueError, "The theta value of a Thresholded ReLU " "layer should be >=0. Received: -10", ): test_utils.layer_test( keras.layers.ThresholdedReLU, kwargs={"theta": -10}, input_shape=(2, 3, 4), supports_masking=True, ) if __name__ == "__main__": tf.test.main()
33.564516
80
0.612686
import tensorflow.compat.v2 as tf import keras from keras.testing_infra import test_combinations from keras.testing_infra import test_utils @test_combinations.run_all_keras_modes class ThresholdedReLUTest(test_combinations.TestCase): def test_thresholded_relu(self): test_utils.layer_test( keras.layers.ThresholdedReLU, kwargs={"theta": 0.5}, input_shape=(2, 3, 4), supports_masking=True, ) def test_threshold_relu_with_invalid_theta(self): with self.assertRaisesRegex( ValueError, "Theta of a Thresholded ReLU layer cannot " "be None, expecting a float. Received: None", ): test_utils.layer_test( keras.layers.ThresholdedReLU, kwargs={"theta": None}, input_shape=(2, 3, 4), supports_masking=True, ) with self.assertRaisesRegex( ValueError, "The theta value of a Thresholded ReLU " "layer should be >=0. Received: -10", ): test_utils.layer_test( keras.layers.ThresholdedReLU, kwargs={"theta": -10}, input_shape=(2, 3, 4), supports_masking=True, ) if __name__ == "__main__": tf.test.main()
true
true
f7f41721b933a2136b318aeae4ada52fe97578af
1,170
py
Python
tests/web/test_expires.py
spaceone/circuits
ed6d5464f1f83034109ed3d23d126c715450cfd2
[ "MIT" ]
null
null
null
tests/web/test_expires.py
spaceone/circuits
ed6d5464f1f83034109ed3d23d126c715450cfd2
[ "MIT" ]
null
null
null
tests/web/test_expires.py
spaceone/circuits
ed6d5464f1f83034109ed3d23d126c715450cfd2
[ "MIT" ]
null
null
null
#!/usr/bin/env python from datetime import datetime from email.utils import parsedate from time import mktime from circuits.web import Controller from .helpers import urlopen class Root(Controller): def index(self): self.expires(60) return "Hello World!" def nocache(self): self.expires(0) return "Hello World!" def test(webapp): f = urlopen(webapp.server.http.base) s = f.read() assert s == b"Hello World!" expires = f.headers["Expires"] diff = (mktime(parsedate(expires)) - mktime(datetime.utcnow().timetuple())) assert 60 - (60 * 0.1) < diff < 60 + (60 * 0.1) # diff is about 60 +- 10% def test_nocache(webapp): f = urlopen("%s/nocache" % webapp.server.http.base) s = f.read() assert s == b"Hello World!" expires = f.headers["Expires"] pragma = f.headers["Pragma"] cacheControl = f.headers["Cache-Control"] now = datetime.utcnow() lastyear = now.replace(year=now.year - 1) diff = (mktime(parsedate(expires)) - mktime(lastyear.utctimetuple())) assert diff < 1.0 assert pragma == "no-cache" assert cacheControl == "no-cache, must-revalidate"
24.375
79
0.641026
from datetime import datetime from email.utils import parsedate from time import mktime from circuits.web import Controller from .helpers import urlopen class Root(Controller): def index(self): self.expires(60) return "Hello World!" def nocache(self): self.expires(0) return "Hello World!" def test(webapp): f = urlopen(webapp.server.http.base) s = f.read() assert s == b"Hello World!" expires = f.headers["Expires"] diff = (mktime(parsedate(expires)) - mktime(datetime.utcnow().timetuple())) assert 60 - (60 * 0.1) < diff < 60 + (60 * 0.1) def test_nocache(webapp): f = urlopen("%s/nocache" % webapp.server.http.base) s = f.read() assert s == b"Hello World!" expires = f.headers["Expires"] pragma = f.headers["Pragma"] cacheControl = f.headers["Cache-Control"] now = datetime.utcnow() lastyear = now.replace(year=now.year - 1) diff = (mktime(parsedate(expires)) - mktime(lastyear.utctimetuple())) assert diff < 1.0 assert pragma == "no-cache" assert cacheControl == "no-cache, must-revalidate"
true
true
f7f4180652cbbd58c0792e505432be95af9d892d
1,219
py
Python
data.py
garethcmurphy/ml-quality
87c1d87d0d1a2cfddff082f56731711804abbe5f
[ "BSD-2-Clause" ]
null
null
null
data.py
garethcmurphy/ml-quality
87c1d87d0d1a2cfddff082f56731711804abbe5f
[ "BSD-2-Clause" ]
null
null
null
data.py
garethcmurphy/ml-quality
87c1d87d0d1a2cfddff082f56731711804abbe5f
[ "BSD-2-Clause" ]
null
null
null
#!/usr/bin/env python3 """generate data""" import random class Data(): """generate data""" file_name = "./data.csv" def __init__(self): pass def generate(self): """generate data""" with open(self.file_name, "w") as file: print("pid,hindex,hindex2,hindex3,hindex4,data_type,target", file=file) for _ in range(1, 10001): pid = random.randint(1e5, 9e5) hindex = random.randint(0, 25) hindex2 = random.randint(0, 25) hindex3 = random.randint(0, 25) hindex4 = random.randint(0, 100) max_hindex = max(hindex, hindex2, hindex3, hindex4) data_type = random.choice(['test', 'production']) target = 0 if data_type == 'production' and max_hindex > 20: target = 1 print("{},{},{},{},{},{},{}".format(pid, hindex, hindex2, hindex3, hindex4, data_type, target), file=file) def main(): """main""" data = Data() data.generate() if __name__ == "__main__": main()
29.02381
83
0.477441
import random class Data(): file_name = "./data.csv" def __init__(self): pass def generate(self): with open(self.file_name, "w") as file: print("pid,hindex,hindex2,hindex3,hindex4,data_type,target", file=file) for _ in range(1, 10001): pid = random.randint(1e5, 9e5) hindex = random.randint(0, 25) hindex2 = random.randint(0, 25) hindex3 = random.randint(0, 25) hindex4 = random.randint(0, 100) max_hindex = max(hindex, hindex2, hindex3, hindex4) data_type = random.choice(['test', 'production']) target = 0 if data_type == 'production' and max_hindex > 20: target = 1 print("{},{},{},{},{},{},{}".format(pid, hindex, hindex2, hindex3, hindex4, data_type, target), file=file) def main(): data = Data() data.generate() if __name__ == "__main__": main()
true
true
f7f418828c250c2b31f208cd61683f6e653e9bf9
1,780
py
Python
h2o-py/tests/testdir_misc/pyunit_xgboost_gbm_monotone.py
ahmedengu/h2o-3
ac2c0a6fbe7f8e18078278bf8a7d3483d41aca11
[ "Apache-2.0" ]
6,098
2015-05-22T02:46:12.000Z
2022-03-31T16:54:51.000Z
h2o-py/tests/testdir_misc/pyunit_xgboost_gbm_monotone.py
ahmedengu/h2o-3
ac2c0a6fbe7f8e18078278bf8a7d3483d41aca11
[ "Apache-2.0" ]
2,517
2015-05-23T02:10:54.000Z
2022-03-30T17:03:39.000Z
h2o-py/tests/testdir_misc/pyunit_xgboost_gbm_monotone.py
ahmedengu/h2o-3
ac2c0a6fbe7f8e18078278bf8a7d3483d41aca11
[ "Apache-2.0" ]
2,199
2015-05-22T04:09:55.000Z
2022-03-28T22:20:45.000Z
from h2o.estimators.xgboost import * from h2o.estimators.gbm import * from tests import pyunit_utils def xgboost_vs_gbm_monotone_test(): assert H2OXGBoostEstimator.available() is True monotone_constraints = { "AGE": 1 } xgboost_params = { "tree_method": "exact", "seed": 123, "backend": "cpu", # CPU Backend is forced for the results to be comparable "monotone_constraints": monotone_constraints } gbm_params = { "seed": 42, "monotone_constraints": monotone_constraints } prostate_hex = h2o.import_file(pyunit_utils.locate('smalldata/prostate/prostate.csv')) prostate_hex["CAPSULE"] = prostate_hex["CAPSULE"].asfactor() xgboost_model = H2OXGBoostEstimator(**xgboost_params) xgboost_model.train(y="CAPSULE", ignored_columns=["ID"], training_frame=prostate_hex) gbm_model = H2OGradientBoostingEstimator(**gbm_params) gbm_model.train(y="CAPSULE", ignored_columns=["ID"], training_frame=prostate_hex) xgb_varimp_percentage = dict(map(lambda x: (x[0], x[3]), xgboost_model.varimp(use_pandas=False))) gbm_varimp_percentage = dict(map(lambda x: (x[0], x[3]), gbm_model.varimp(use_pandas=False))) # We expect the variable importances of AGE to be similar assert xgb_varimp_percentage["VOL"] > xgb_varimp_percentage["AGE"] assert xgb_varimp_percentage["AGE"] > xgb_varimp_percentage["RACE"] print("XGBoost varimp of AGE = %s" % xgb_varimp_percentage["AGE"]) print("GBM varimp of AGE = %s" % gbm_varimp_percentage["AGE"]) assert abs(xgb_varimp_percentage["AGE"] - gbm_varimp_percentage["AGE"]) < 0.02 if __name__ == "__main__": pyunit_utils.standalone_test(xgboost_vs_gbm_monotone_test) else: xgboost_vs_gbm_monotone_test()
34.901961
101
0.710674
from h2o.estimators.xgboost import * from h2o.estimators.gbm import * from tests import pyunit_utils def xgboost_vs_gbm_monotone_test(): assert H2OXGBoostEstimator.available() is True monotone_constraints = { "AGE": 1 } xgboost_params = { "tree_method": "exact", "seed": 123, "backend": "cpu", "monotone_constraints": monotone_constraints } gbm_params = { "seed": 42, "monotone_constraints": monotone_constraints } prostate_hex = h2o.import_file(pyunit_utils.locate('smalldata/prostate/prostate.csv')) prostate_hex["CAPSULE"] = prostate_hex["CAPSULE"].asfactor() xgboost_model = H2OXGBoostEstimator(**xgboost_params) xgboost_model.train(y="CAPSULE", ignored_columns=["ID"], training_frame=prostate_hex) gbm_model = H2OGradientBoostingEstimator(**gbm_params) gbm_model.train(y="CAPSULE", ignored_columns=["ID"], training_frame=prostate_hex) xgb_varimp_percentage = dict(map(lambda x: (x[0], x[3]), xgboost_model.varimp(use_pandas=False))) gbm_varimp_percentage = dict(map(lambda x: (x[0], x[3]), gbm_model.varimp(use_pandas=False))) assert xgb_varimp_percentage["VOL"] > xgb_varimp_percentage["AGE"] assert xgb_varimp_percentage["AGE"] > xgb_varimp_percentage["RACE"] print("XGBoost varimp of AGE = %s" % xgb_varimp_percentage["AGE"]) print("GBM varimp of AGE = %s" % gbm_varimp_percentage["AGE"]) assert abs(xgb_varimp_percentage["AGE"] - gbm_varimp_percentage["AGE"]) < 0.02 if __name__ == "__main__": pyunit_utils.standalone_test(xgboost_vs_gbm_monotone_test) else: xgboost_vs_gbm_monotone_test()
true
true
f7f41882ddeadf12aa90c8d7c69b38bf11de007f
1,551
py
Python
crits/samples/urls.py
thelandy/crits
e8d72d8e3cb278d6e86215ba2bb567a874c66edd
[ "MIT" ]
null
null
null
crits/samples/urls.py
thelandy/crits
e8d72d8e3cb278d6e86215ba2bb567a874c66edd
[ "MIT" ]
null
null
null
crits/samples/urls.py
thelandy/crits
e8d72d8e3cb278d6e86215ba2bb567a874c66edd
[ "MIT" ]
null
null
null
from django.conf.urls import patterns urlpatterns = patterns('crits.samples.views', (r'^upload/$', 'upload_file'), (r'^upload/(?P<related_md5>\w+)/$', 'upload_file'), (r'^upload_list/(?P<filename>[\S ]+)/(?P<md5s>.+)/$', 'view_upload_list'), (r'^bulkadd/$', 'bulk_add_md5_sample'), (r'^details/(?P<sample_md5>\w+)/$', 'detail'), (r'^strings/(?P<sample_md5>\w+)/$', 'strings'), (r'^stackstrings/(?P<sample_md5>\w+)/$', 'stackstrings'), (r'^hex/(?P<sample_md5>\w+)/$', 'hex'), (r'^xor/(?P<sample_md5>\w+)/$', 'xor'), (r'^xor_searcher/(?P<sample_md5>\w+)/$', 'xor_searcher'), (r'^unrar/(?P<md5>\w+)/$', 'unrar_sample'), (r'^unzip/(?P<md5>\w+)/$', 'unzip_sample'), (r'^sources/$', 'sources'), (r'^exploits/$', 'exploit'), (r'^new/exploit/$', 'new_exploit'), (r'^new/backdoor/$', 'new_backdoor'), (r'^add/backdoor/(?P<sample_md5>\w+)/$', 'add_backdoor'), (r'^add/exploit/(?P<sample_md5>\w+)/$', 'add_exploit'), (r'^remove/(?P<md5>[\S ]+)$', 'remove_sample'), (r'^list/$', 'samples_listing'), (r'^list/(?P<option>\S+)/$', 'samples_listing'), (r'^backdoors/list/$', 'backdoors_listing'), (r'^backdoors/list/(?P<option>\S+)/$', 'backdoors_listing'), (r'^yarahits/list/$', 'yarahits_listing'), (r'^yarahits/list/(?P<option>\S+)/$', 'yarahits_listing'), (r'^set_filename/$', 'set_sample_filename'), (r'^filenames/$', 'set_sample_filenames'), )
48.46875
82
0.526112
from django.conf.urls import patterns urlpatterns = patterns('crits.samples.views', (r'^upload/$', 'upload_file'), (r'^upload/(?P<related_md5>\w+)/$', 'upload_file'), (r'^upload_list/(?P<filename>[\S ]+)/(?P<md5s>.+)/$', 'view_upload_list'), (r'^bulkadd/$', 'bulk_add_md5_sample'), (r'^details/(?P<sample_md5>\w+)/$', 'detail'), (r'^strings/(?P<sample_md5>\w+)/$', 'strings'), (r'^stackstrings/(?P<sample_md5>\w+)/$', 'stackstrings'), (r'^hex/(?P<sample_md5>\w+)/$', 'hex'), (r'^xor/(?P<sample_md5>\w+)/$', 'xor'), (r'^xor_searcher/(?P<sample_md5>\w+)/$', 'xor_searcher'), (r'^unrar/(?P<md5>\w+)/$', 'unrar_sample'), (r'^unzip/(?P<md5>\w+)/$', 'unzip_sample'), (r'^sources/$', 'sources'), (r'^exploits/$', 'exploit'), (r'^new/exploit/$', 'new_exploit'), (r'^new/backdoor/$', 'new_backdoor'), (r'^add/backdoor/(?P<sample_md5>\w+)/$', 'add_backdoor'), (r'^add/exploit/(?P<sample_md5>\w+)/$', 'add_exploit'), (r'^remove/(?P<md5>[\S ]+)$', 'remove_sample'), (r'^list/$', 'samples_listing'), (r'^list/(?P<option>\S+)/$', 'samples_listing'), (r'^backdoors/list/$', 'backdoors_listing'), (r'^backdoors/list/(?P<option>\S+)/$', 'backdoors_listing'), (r'^yarahits/list/$', 'yarahits_listing'), (r'^yarahits/list/(?P<option>\S+)/$', 'yarahits_listing'), (r'^set_filename/$', 'set_sample_filename'), (r'^filenames/$', 'set_sample_filenames'), )
true
true
f7f419ef876a7d1603cacc657b7b657cae843ddf
7,131
py
Python
Wav2Lip/util/wav2lip_inference_funcs.py
tpulkit/txt2vid
679b1672fb3221c6b5fe576a158974556047c201
[ "FTL" ]
40
2021-06-26T13:17:08.000Z
2022-02-15T13:00:08.000Z
Wav2Lip/util/wav2lip_inference_funcs.py
tpulkit/txt2vid
679b1672fb3221c6b5fe576a158974556047c201
[ "FTL" ]
3
2021-09-23T09:35:12.000Z
2022-01-23T18:02:15.000Z
Wav2Lip/util/wav2lip_inference_funcs.py
tpulkit/txt2vid
679b1672fb3221c6b5fe576a158974556047c201
[ "FTL" ]
3
2021-06-29T03:53:39.000Z
2022-02-15T02:25:48.000Z
import numpy as np import os import cv2 from models import Wav2Lip import face_detection import torch def get_smoothened_boxes(boxes, T): for i in range(len(boxes)): if i + T > len(boxes): window = boxes[len(boxes) - T:] else: window = boxes[i: i + T] boxes[i] = np.mean(window, axis=0) return boxes def face_detect(images, device, face_det_batch_size, pads, nosmooth): detector = face_detection.FaceAlignment(face_detection.LandmarksType._2D, flip_input=False, device=device) batch_size = face_det_batch_size while 1: predictions = [] try: for i in range(0, len(images), batch_size): predictions.extend(detector.get_detections_for_batch(np.array(images[i:i + batch_size]))) except RuntimeError: if batch_size == 1: raise RuntimeError( 'Image too big to run face detection on GPU. Please use the --resize_factor argument') batch_size //= 2 print('Recovering from OOM error; New batch size: {}'.format(batch_size)) continue break results = [] pady1, pady2, padx1, padx2 = pads for rect, image in zip(predictions, images): if rect is None: cv2.imwrite('temp/faulty_frame.jpg', image) # check this frame where the face was not detected. raise ValueError('Face not detected! Ensure the video contains a face in all the frames.') y1 = max(0, rect[1] - pady1) y2 = min(image.shape[0], rect[3] + pady2) x1 = max(0, rect[0] - padx1) x2 = min(image.shape[1], rect[2] + padx2) results.append([x1, y1, x2, y2]) boxes = np.array(results) if not nosmooth: boxes = get_smoothened_boxes(boxes, T=5) results = [[image[y1: y2, x1:x2], (y1, y2, x1, x2)] for image, (x1, y1, x2, y2) in zip(images, boxes)] del detector return results def face_detect_wrapper(frames, device, face_det_batch_size, pads, nosmooth, box, static): if box[0] == -1: if not static: face_det_results = face_detect(frames, device, face_det_batch_size, pads, nosmooth) # BGR2RGB for CNN face detection else: face_det_results = face_detect([frames[0]], device, face_det_batch_size, pads, nosmooth) else: print('Using the specified bounding box instead of face detection...') y1, y2, x1, x2 = box face_det_results = [[f[y1: y2, x1:x2], (y1, y2, x1, x2)] for f in frames] return face_det_results def datagen(frames, face_det_results, mels, start_frame_idx, static, img_size, wav2lip_batch_size): # start frame idx is the current frame idx in the output video # we start from this point img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] start_frame_idx = start_frame_idx % len(frames) # loop back num_frames = len(mels) # take frames from start_frame_idx to start_frame_idx+num_frames # wrapping around if necessary if not static: if len(frames) == 1: frames_current = frames face_det_results_current = face_det_results if start_frame_idx + num_frames > len(frames): frames_current = frames[start_frame_idx:] + frames[:start_frame_idx + num_frames - len(frames)] face_det_results_current = face_det_results[start_frame_idx:] + face_det_results[ :start_frame_idx + num_frames - len(frames)] else: frames_current = frames[start_frame_idx:start_frame_idx + num_frames] face_det_results_current = face_det_results[start_frame_idx:start_frame_idx + num_frames] else: frames_current = frames face_det_results_current = face_det_results for i, m in enumerate(mels): idx = 0 if static else i % len(frames_current) frame_to_save = frames_current[idx].copy() face, coords = face_det_results_current[idx].copy() face = cv2.resize(face, (img_size, img_size)) img_batch.append(face) mel_batch.append(m) frame_batch.append(frame_to_save) coords_batch.append(coords) if len(img_batch) >= wav2lip_batch_size: img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, img_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] if len(img_batch) > 0: img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, img_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch def _load(checkpoint_path, device): if device == 'cuda': checkpoint = torch.load(checkpoint_path) else: checkpoint = torch.load(checkpoint_path, map_location=lambda storage, loc: storage) return checkpoint def load_model(path, device): model = Wav2Lip() print("Load checkpoint from: {}".format(path)) checkpoint = _load(path, device) s = checkpoint["state_dict"] new_s = {} for k, v in s.items(): new_s[k.replace('module.', '')] = v model.load_state_dict(new_s) model = model.to(device) return model.eval() def preprocess_video(face, fps, resize_factor, rotate, crop): if not os.path.isfile(face): raise ValueError('--face argument must be a valid path to video/image file') elif face.split('.')[1] in ['jpg', 'png', 'jpeg']: full_frames = [cv2.imread(face)] fps = fps else: video_stream = cv2.VideoCapture(face) fps = video_stream.get(cv2.CAP_PROP_FPS) print('Reading video frames...') full_frames = [] while 1: still_reading, frame = video_stream.read() if not still_reading: video_stream.release() break if resize_factor > 1: frame = cv2.resize(frame, (frame.shape[1] // resize_factor, frame.shape[0] // resize_factor)) if rotate: frame = cv2.rotate(frame, cv2.cv2.ROTATE_90_CLOCKWISE) y1, y2, x1, x2 = crop if x2 == -1: x2 = frame.shape[1] if y2 == -1: y2 = frame.shape[0] frame = frame[y1:y2, x1:x2] full_frames.append(frame) print("Number of frames available for inference: " + str(len(full_frames))) return full_frames
36.569231
121
0.60833
import numpy as np import os import cv2 from models import Wav2Lip import face_detection import torch def get_smoothened_boxes(boxes, T): for i in range(len(boxes)): if i + T > len(boxes): window = boxes[len(boxes) - T:] else: window = boxes[i: i + T] boxes[i] = np.mean(window, axis=0) return boxes def face_detect(images, device, face_det_batch_size, pads, nosmooth): detector = face_detection.FaceAlignment(face_detection.LandmarksType._2D, flip_input=False, device=device) batch_size = face_det_batch_size while 1: predictions = [] try: for i in range(0, len(images), batch_size): predictions.extend(detector.get_detections_for_batch(np.array(images[i:i + batch_size]))) except RuntimeError: if batch_size == 1: raise RuntimeError( 'Image too big to run face detection on GPU. Please use the --resize_factor argument') batch_size //= 2 print('Recovering from OOM error; New batch size: {}'.format(batch_size)) continue break results = [] pady1, pady2, padx1, padx2 = pads for rect, image in zip(predictions, images): if rect is None: cv2.imwrite('temp/faulty_frame.jpg', image) raise ValueError('Face not detected! Ensure the video contains a face in all the frames.') y1 = max(0, rect[1] - pady1) y2 = min(image.shape[0], rect[3] + pady2) x1 = max(0, rect[0] - padx1) x2 = min(image.shape[1], rect[2] + padx2) results.append([x1, y1, x2, y2]) boxes = np.array(results) if not nosmooth: boxes = get_smoothened_boxes(boxes, T=5) results = [[image[y1: y2, x1:x2], (y1, y2, x1, x2)] for image, (x1, y1, x2, y2) in zip(images, boxes)] del detector return results def face_detect_wrapper(frames, device, face_det_batch_size, pads, nosmooth, box, static): if box[0] == -1: if not static: face_det_results = face_detect(frames, device, face_det_batch_size, pads, nosmooth) else: face_det_results = face_detect([frames[0]], device, face_det_batch_size, pads, nosmooth) else: print('Using the specified bounding box instead of face detection...') y1, y2, x1, x2 = box face_det_results = [[f[y1: y2, x1:x2], (y1, y2, x1, x2)] for f in frames] return face_det_results def datagen(frames, face_det_results, mels, start_frame_idx, static, img_size, wav2lip_batch_size): img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] start_frame_idx = start_frame_idx % len(frames) num_frames = len(mels) if not static: if len(frames) == 1: frames_current = frames face_det_results_current = face_det_results if start_frame_idx + num_frames > len(frames): frames_current = frames[start_frame_idx:] + frames[:start_frame_idx + num_frames - len(frames)] face_det_results_current = face_det_results[start_frame_idx:] + face_det_results[ :start_frame_idx + num_frames - len(frames)] else: frames_current = frames[start_frame_idx:start_frame_idx + num_frames] face_det_results_current = face_det_results[start_frame_idx:start_frame_idx + num_frames] else: frames_current = frames face_det_results_current = face_det_results for i, m in enumerate(mels): idx = 0 if static else i % len(frames_current) frame_to_save = frames_current[idx].copy() face, coords = face_det_results_current[idx].copy() face = cv2.resize(face, (img_size, img_size)) img_batch.append(face) mel_batch.append(m) frame_batch.append(frame_to_save) coords_batch.append(coords) if len(img_batch) >= wav2lip_batch_size: img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, img_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch img_batch, mel_batch, frame_batch, coords_batch = [], [], [], [] if len(img_batch) > 0: img_batch, mel_batch = np.asarray(img_batch), np.asarray(mel_batch) img_masked = img_batch.copy() img_masked[:, img_size // 2:] = 0 img_batch = np.concatenate((img_masked, img_batch), axis=3) / 255. mel_batch = np.reshape(mel_batch, [len(mel_batch), mel_batch.shape[1], mel_batch.shape[2], 1]) yield img_batch, mel_batch, frame_batch, coords_batch def _load(checkpoint_path, device): if device == 'cuda': checkpoint = torch.load(checkpoint_path) else: checkpoint = torch.load(checkpoint_path, map_location=lambda storage, loc: storage) return checkpoint def load_model(path, device): model = Wav2Lip() print("Load checkpoint from: {}".format(path)) checkpoint = _load(path, device) s = checkpoint["state_dict"] new_s = {} for k, v in s.items(): new_s[k.replace('module.', '')] = v model.load_state_dict(new_s) model = model.to(device) return model.eval() def preprocess_video(face, fps, resize_factor, rotate, crop): if not os.path.isfile(face): raise ValueError('--face argument must be a valid path to video/image file') elif face.split('.')[1] in ['jpg', 'png', 'jpeg']: full_frames = [cv2.imread(face)] fps = fps else: video_stream = cv2.VideoCapture(face) fps = video_stream.get(cv2.CAP_PROP_FPS) print('Reading video frames...') full_frames = [] while 1: still_reading, frame = video_stream.read() if not still_reading: video_stream.release() break if resize_factor > 1: frame = cv2.resize(frame, (frame.shape[1] // resize_factor, frame.shape[0] // resize_factor)) if rotate: frame = cv2.rotate(frame, cv2.cv2.ROTATE_90_CLOCKWISE) y1, y2, x1, x2 = crop if x2 == -1: x2 = frame.shape[1] if y2 == -1: y2 = frame.shape[0] frame = frame[y1:y2, x1:x2] full_frames.append(frame) print("Number of frames available for inference: " + str(len(full_frames))) return full_frames
true
true
f7f41b244668f3643653733211a063e2467f29e9
713
py
Python
docs/papers/sc2013/hyantes_core.py
davidbrochart/pythran
24b6c8650fe99791a4091cbdc2c24686e86aa67c
[ "BSD-3-Clause" ]
1,647
2015-01-13T01:45:38.000Z
2022-03-28T01:23:41.000Z
docs/papers/sc2013/hyantes_core.py
davidbrochart/pythran
24b6c8650fe99791a4091cbdc2c24686e86aa67c
[ "BSD-3-Clause" ]
1,116
2015-01-01T09:52:05.000Z
2022-03-18T21:06:40.000Z
docs/papers/sc2013/hyantes_core.py
davidbrochart/pythran
24b6c8650fe99791a4091cbdc2c24686e86aa67c
[ "BSD-3-Clause" ]
180
2015-02-12T02:47:28.000Z
2022-03-14T10:28:18.000Z
#pythran export run(float, float, float, float, float, float, int, int, float [][]) import math from numpy import zeros def run(xmin, ymin, xmax, ymax, step, range_, range_x, range_y, t): pt = zeros((range_x, range_y, 3)) "omp parallel for private(i,j,k,tmp)" for i in xrange(range_x): for j in xrange(range_y): pt[i,j,0], pt[i,j,1] = (xmin+step*i)*180/math.pi, (ymin+step*j)*180/math.pi for k in xrange(t.shape[0]): tmp = 6368.* math.acos( math.cos(xmin+step*i)*math.cos( t[k,0] ) * math.cos((ymin+step*j)-t[k,1])+ math.sin(xmin+step*i)*math.sin(t[k,0])) if tmp < range_: pt[i,j,2]+= t[k,2] / (1+tmp) return pt
47.533333
155
0.565217
import math from numpy import zeros def run(xmin, ymin, xmax, ymax, step, range_, range_x, range_y, t): pt = zeros((range_x, range_y, 3)) for i in xrange(range_x): for j in xrange(range_y): pt[i,j,0], pt[i,j,1] = (xmin+step*i)*180/math.pi, (ymin+step*j)*180/math.pi for k in xrange(t.shape[0]): tmp = 6368.* math.acos( math.cos(xmin+step*i)*math.cos( t[k,0] ) * math.cos((ymin+step*j)-t[k,1])+ math.sin(xmin+step*i)*math.sin(t[k,0])) if tmp < range_: pt[i,j,2]+= t[k,2] / (1+tmp) return pt
true
true
f7f41b249634528b4b7b485ba1ffb5bbaabc4f6a
16,298
py
Python
statsmodels/sandbox/tsa/fftarma.py
rebecca-palmer/statsmodels
27dd8ba0be0211fdc91097463ce4edd28bce1ef4
[ "BSD-3-Clause" ]
1
2019-08-23T20:30:11.000Z
2019-08-23T20:30:11.000Z
statsmodels/sandbox/tsa/fftarma.py
rebecca-palmer/statsmodels
27dd8ba0be0211fdc91097463ce4edd28bce1ef4
[ "BSD-3-Clause" ]
null
null
null
statsmodels/sandbox/tsa/fftarma.py
rebecca-palmer/statsmodels
27dd8ba0be0211fdc91097463ce4edd28bce1ef4
[ "BSD-3-Clause" ]
1
2018-10-12T07:51:38.000Z
2018-10-12T07:51:38.000Z
# -*- coding: utf-8 -*- """ Created on Mon Dec 14 19:53:25 2009 Author: josef-pktd generate arma sample using fft with all the lfilter it looks slow to get the ma representation first apply arma filter (in ar representation) to time series to get white noise but seems slow to be useful for fast estimation for nobs=10000 change/check: instead of using marep, use fft-transform of ar and ma separately, use ratio check theory is correct and example works DONE : feels much faster than lfilter -> use for estimation of ARMA -> use pade (scipy.misc) approximation to get starting polynomial from autocorrelation (is autocorrelation of AR(p) related to marep?) check if pade is fast, not for larger arrays ? maybe pade does not do the right thing for this, not tried yet scipy.pade([ 1. , 0.6, 0.25, 0.125, 0.0625, 0.1],2) raises LinAlgError: singular matrix also does not have roots inside unit circle ?? -> even without initialization, it might be fast for estimation -> how do I enforce stationarity and invertibility, need helper function get function drop imag if close to zero from numpy/scipy source, where? """ import numpy as np import numpy.fft as fft #import scipy.fftpack as fft from scipy import signal #from try_var_convolve import maxabs from statsmodels.tsa.arima_process import ArmaProcess #trying to convert old experiments to a class class ArmaFft(ArmaProcess): '''fft tools for arma processes This class contains several methods that are providing the same or similar returns to try out and test different implementations. Notes ----- TODO: check whether we do not want to fix maxlags, and create new instance if maxlag changes. usage for different lengths of timeseries ? or fix frequency and length for fft check default frequencies w, terminology norw n_or_w some ffts are currently done without padding with zeros returns for spectral density methods needs checking, is it always the power spectrum hw*hw.conj() normalization of the power spectrum, spectral density: not checked yet, for example no variance of underlying process is used ''' def __init__(self, ar, ma, n): #duplicates now that are subclassing ArmaProcess super(ArmaFft, self).__init__(ar, ma) self.ar = np.asarray(ar) self.ma = np.asarray(ma) self.nobs = n #could make the polynomials into cached attributes self.arpoly = np.polynomial.Polynomial(ar) self.mapoly = np.polynomial.Polynomial(ma) self.nar = len(ar) #1d only currently self.nma = len(ma) def padarr(self, arr, maxlag, atend=True): '''pad 1d array with zeros at end to have length maxlag function that is a method, no self used Parameters ---------- arr : array_like, 1d array that will be padded with zeros maxlag : int length of array after padding atend : bool If True (default), then the zeros are added to the end, otherwise to the front of the array Returns ------- arrp : ndarray zero-padded array Notes ----- This is mainly written to extend coefficient arrays for the lag-polynomials. It returns a copy. ''' if atend: return np.r_[arr, np.zeros(maxlag-len(arr))] else: return np.r_[np.zeros(maxlag-len(arr)), arr] def pad(self, maxlag): '''construct AR and MA polynomials that are zero-padded to a common length Parameters ---------- maxlag : int new length of lag-polynomials Returns ------- ar : ndarray extended AR polynomial coefficients ma : ndarray extended AR polynomial coefficients ''' arpad = np.r_[self.ar, np.zeros(maxlag-self.nar)] mapad = np.r_[self.ma, np.zeros(maxlag-self.nma)] return arpad, mapad def fftar(self, n=None): '''Fourier transform of AR polynomial, zero-padded at end to n Parameters ---------- n : int length of array after zero-padding Returns ------- fftar : ndarray fft of zero-padded ar polynomial ''' if n is None: n = len(self.ar) return fft.fft(self.padarr(self.ar, n)) def fftma(self, n): '''Fourier transform of MA polynomial, zero-padded at end to n Parameters ---------- n : int length of array after zero-padding Returns ------- fftar : ndarray fft of zero-padded ar polynomial ''' if n is None: n = len(self.ar) return fft.fft(self.padarr(self.ma, n)) def fftarma(self, n=None): '''Fourier transform of ARMA polynomial, zero-padded at end to n The Fourier transform of the ARMA process is calculated as the ratio of the fft of the MA polynomial divided by the fft of the AR polynomial. Parameters ---------- n : int length of array after zero-padding Returns ------- fftarma : ndarray fft of zero-padded arma polynomial ''' if n is None: n = self.nobs return (self.fftma(n) / self.fftar(n)) def spd(self, npos): '''raw spectral density, returns Fourier transform n is number of points in positive spectrum, the actual number of points is twice as large. different from other spd methods with fft ''' n = npos w = fft.fftfreq(2*n) * 2 * np.pi hw = self.fftarma(2*n) #not sure, need to check normalization #return (hw*hw.conj()).real[n//2-1:] * 0.5 / np.pi #does not show in plot return (hw*hw.conj()).real * 0.5 / np.pi, w def spdshift(self, n): '''power spectral density using fftshift currently returns two-sided according to fft frequencies, use first half ''' #size = s1+s2-1 mapadded = self.padarr(self.ma, n) arpadded = self.padarr(self.ar, n) hw = fft.fft(fft.fftshift(mapadded)) / fft.fft(fft.fftshift(arpadded)) #return np.abs(spd)[n//2-1:] w = fft.fftfreq(n) * 2 * np.pi wslice = slice(n//2-1, None, None) #return (hw*hw.conj()).real[wslice], w[wslice] return (hw*hw.conj()).real, w def spddirect(self, n): '''power spectral density using padding to length n done by fft currently returns two-sided according to fft frequencies, use first half ''' #size = s1+s2-1 #abs looks wrong hw = fft.fft(self.ma, n) / fft.fft(self.ar, n) w = fft.fftfreq(n) * 2 * np.pi wslice = slice(None, n//2, None) #return (np.abs(hw)**2)[wslice], w[wslice] return (np.abs(hw)**2) * 0.5/np.pi, w def _spddirect2(self, n): '''this looks bad, maybe with an fftshift ''' #size = s1+s2-1 hw = (fft.fft(np.r_[self.ma[::-1],self.ma], n) / fft.fft(np.r_[self.ar[::-1],self.ar], n)) return (hw*hw.conj()) #.real[n//2-1:] def spdroots(self, w): '''spectral density for frequency using polynomial roots builds two arrays (number of roots, number of frequencies) ''' return self._spdroots(self.arroots, self.maroots, w) def _spdroots(self, arroots, maroots, w): '''spectral density for frequency using polynomial roots builds two arrays (number of roots, number of frequencies) Parameters ---------- arroots : ndarray roots of ar (denominator) lag-polynomial maroots : ndarray roots of ma (numerator) lag-polynomial w : array_like frequencies for which spd is calculated Notes ----- this should go into a function ''' w = np.atleast_2d(w).T cosw = np.cos(w) #Greene 5th edt. p626, section 20.2.7.a. maroots = 1./maroots arroots = 1./arroots num = 1 + maroots**2 - 2* maroots * cosw den = 1 + arroots**2 - 2* arroots * cosw #print 'num.shape, den.shape', num.shape, den.shape hw = 0.5 / np.pi * num.prod(-1) / den.prod(-1) #or use expsumlog return np.squeeze(hw), w.squeeze() def spdpoly(self, w, nma=50): '''spectral density from MA polynomial representation for ARMA process References ---------- Cochrane, section 8.3.3 ''' mpoly = np.polynomial.Polynomial(self.arma2ma(nma)) hw = mpoly(np.exp(1j * w)) spd = np.real_if_close(hw * hw.conj() * 0.5/np.pi) return spd, w def filter(self, x): ''' filter a timeseries with the ARMA filter padding with zero is missing, in example I needed the padding to get initial conditions identical to direct filter Initial filtered observations differ from filter2 and signal.lfilter, but at end they are the same. See Also -------- tsa.filters.fftconvolve ''' n = x.shape[0] if n == self.fftarma: fftarma = self.fftarma else: fftarma = self.fftma(n) / self.fftar(n) tmpfft = fftarma * fft.fft(x) return fft.ifft(tmpfft) def filter2(self, x, pad=0): '''filter a time series using fftconvolve3 with ARMA filter padding of x currently works only if x is 1d in example it produces same observations at beginning as lfilter even without padding. TODO: this returns 1 additional observation at the end ''' from statsmodels.tsa.filters import fftconvolve3 if not pad: pass elif pad == 'auto': #just guessing how much padding x = self.padarr(x, x.shape[0] + 2*(self.nma+self.nar), atend=False) else: x = self.padarr(x, x.shape[0] + int(pad), atend=False) return fftconvolve3(x, self.ma, self.ar) def acf2spdfreq(self, acovf, nfreq=100, w=None): ''' not really a method just for comparison, not efficient for large n or long acf this is also similarly use in tsa.stattools.periodogram with window ''' if w is None: w = np.linspace(0, np.pi, nfreq)[:, None] nac = len(acovf) hw = 0.5 / np.pi * (acovf[0] + 2 * (acovf[1:] * np.cos(w*np.arange(1,nac))).sum(1)) return hw def invpowerspd(self, n): '''autocovariance from spectral density scaling is correct, but n needs to be large for numerical accuracy maybe padding with zero in fft would be faster without slicing it returns 2-sided autocovariance with fftshift >>> ArmaFft([1, -0.5], [1., 0.4], 40).invpowerspd(2**8)[:10] array([ 2.08 , 1.44 , 0.72 , 0.36 , 0.18 , 0.09 , 0.045 , 0.0225 , 0.01125 , 0.005625]) >>> ArmaFft([1, -0.5], [1., 0.4], 40).acovf(10) array([ 2.08 , 1.44 , 0.72 , 0.36 , 0.18 , 0.09 , 0.045 , 0.0225 , 0.01125 , 0.005625]) ''' hw = self.fftarma(n) return np.real_if_close(fft.ifft(hw*hw.conj()), tol=200)[:n] def spdmapoly(self, w, twosided=False): '''ma only, need division for ar, use LagPolynomial ''' if w is None: w = np.linspace(0, np.pi, nfreq) return 0.5 / np.pi * self.mapoly(np.exp(w*1j)) def plot4(self, fig=None, nobs=100, nacf=20, nfreq=100): """Plot results""" rvs = self.generate_sample(nsample=100, burnin=500) acf = self.acf(nacf)[:nacf] #TODO: check return length pacf = self.pacf(nacf) w = np.linspace(0, np.pi, nfreq) spdr, wr = self.spdroots(w) if fig is None: import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(2,2,1) ax.plot(rvs) ax.set_title('Random Sample \nar=%s, ma=%s' % (self.ar, self.ma)) ax = fig.add_subplot(2,2,2) ax.plot(acf) ax.set_title('Autocorrelation \nar=%s, ma=%rs' % (self.ar, self.ma)) ax = fig.add_subplot(2,2,3) ax.plot(wr, spdr) ax.set_title('Power Spectrum \nar=%s, ma=%s' % (self.ar, self.ma)) ax = fig.add_subplot(2,2,4) ax.plot(pacf) ax.set_title('Partial Autocorrelation \nar=%s, ma=%s' % (self.ar, self.ma)) return fig def spdar1(ar, w): if np.ndim(ar) == 0: rho = ar else: rho = -ar[1] return 0.5 / np.pi /(1 + rho*rho - 2 * rho * np.cos(w)) if __name__ == '__main__': def maxabs(x,y): return np.max(np.abs(x-y)) nobs = 200 #10000 ar = [1, 0.0] ma = [1, 0.0] ar2 = np.zeros(nobs) ar2[:2] = [1, -0.9] uni = np.zeros(nobs) uni[0]=1. #arrep = signal.lfilter(ma, ar, ar2) #marep = signal.lfilter([1],arrep, uni) # same faster: arcomb = np.convolve(ar, ar2, mode='same') marep = signal.lfilter(ma,arcomb, uni) #[len(ma):] print(marep[:10]) mafr = fft.fft(marep) rvs = np.random.normal(size=nobs) datafr = fft.fft(rvs) y = fft.ifft(mafr*datafr) print(np.corrcoef(np.c_[y[2:], y[1:-1], y[:-2]],rowvar=0)) arrep = signal.lfilter([1],marep, uni) print(arrep[:20]) # roundtrip to ar arfr = fft.fft(arrep) yfr = fft.fft(y) x = fft.ifft(arfr*yfr).real #imag part is e-15 # the next two are equal, roundtrip works print(x[:5]) print(rvs[:5]) print(np.corrcoef(np.c_[x[2:], x[1:-1], x[:-2]],rowvar=0)) # ARMA filter using fft with ratio of fft of ma/ar lag polynomial # seems much faster than using lfilter #padding, note arcomb is already full length arcombp = np.zeros(nobs) arcombp[:len(arcomb)] = arcomb map_ = np.zeros(nobs) #rename: map was shadowing builtin map_[:len(ma)] = ma ar0fr = fft.fft(arcombp) ma0fr = fft.fft(map_) y2 = fft.ifft(ma0fr/ar0fr*datafr) #the next two are (almost) equal in real part, almost zero but different in imag print(y2[:10]) print(y[:10]) print(maxabs(y, y2)) # from chfdiscrete #1.1282071239631782e-014 ar = [1, -0.4] ma = [1, 0.2] arma1 = ArmaFft([1, -0.5,0,0,0,00, -0.7, 0.3], [1, 0.8], nobs) nfreq = nobs w = np.linspace(0, np.pi, nfreq) w2 = np.linspace(0, 2*np.pi, nfreq) import matplotlib.pyplot as plt plt.close('all') plt.figure() spd1, w1 = arma1.spd(2**10) print(spd1.shape) _ = plt.plot(spd1) plt.title('spd fft complex') plt.figure() spd2, w2 = arma1.spdshift(2**10) print(spd2.shape) _ = plt.plot(w2, spd2) plt.title('spd fft shift') plt.figure() spd3, w3 = arma1.spddirect(2**10) print(spd3.shape) _ = plt.plot(w3, spd3) plt.title('spd fft direct') plt.figure() spd3b = arma1._spddirect2(2**10) print(spd3b.shape) _ = plt.plot(spd3b) plt.title('spd fft direct mirrored') plt.figure() spdr, wr = arma1.spdroots(w) print(spdr.shape) plt.plot(w, spdr) plt.title('spd from roots') plt.figure() spdar1_ = spdar1(arma1.ar, w) print(spdar1_.shape) _ = plt.plot(w, spdar1_) plt.title('spd ar1') plt.figure() wper, spdper = arma1.periodogram(nfreq) print(spdper.shape) _ = plt.plot(w, spdper) plt.title('periodogram') startup = 1000 rvs = arma1.generate_sample(startup+10000)[startup:] import matplotlib.mlab as mlb plt.figure() sdm, wm = mlb.psd(x) print('sdm.shape', sdm.shape) sdm = sdm.ravel() plt.plot(wm, sdm) plt.title('matplotlib') from nitime.algorithms import LD_AR_est #yule_AR_est(s, order, Nfreqs) wnt, spdnt = LD_AR_est(rvs, 10, 512) plt.figure() print('spdnt.shape', spdnt.shape) _ = plt.plot(spdnt.ravel()) print(spdnt[:10]) plt.title('nitime') fig = plt.figure() arma1.plot4(fig) #plt.show()
30.237477
84
0.580869
import numpy as np import numpy.fft as fft from scipy import signal from statsmodels.tsa.arima_process import ArmaProcess class ArmaFft(ArmaProcess): def __init__(self, ar, ma, n): super(ArmaFft, self).__init__(ar, ma) self.ar = np.asarray(ar) self.ma = np.asarray(ma) self.nobs = n self.arpoly = np.polynomial.Polynomial(ar) self.mapoly = np.polynomial.Polynomial(ma) self.nar = len(ar) self.nma = len(ma) def padarr(self, arr, maxlag, atend=True): if atend: return np.r_[arr, np.zeros(maxlag-len(arr))] else: return np.r_[np.zeros(maxlag-len(arr)), arr] def pad(self, maxlag): arpad = np.r_[self.ar, np.zeros(maxlag-self.nar)] mapad = np.r_[self.ma, np.zeros(maxlag-self.nma)] return arpad, mapad def fftar(self, n=None): if n is None: n = len(self.ar) return fft.fft(self.padarr(self.ar, n)) def fftma(self, n): if n is None: n = len(self.ar) return fft.fft(self.padarr(self.ma, n)) def fftarma(self, n=None): if n is None: n = self.nobs return (self.fftma(n) / self.fftar(n)) def spd(self, npos): n = npos w = fft.fftfreq(2*n) * 2 * np.pi hw = self.fftarma(2*n) .conj()).real * 0.5 / np.pi, w def spdshift(self, n): mapadded = self.padarr(self.ma, n) arpadded = self.padarr(self.ar, n) hw = fft.fft(fft.fftshift(mapadded)) / fft.fft(fft.fftshift(arpadded)) w = fft.fftfreq(n) * 2 * np.pi wslice = slice(n//2-1, None, None) return (hw*hw.conj()).real, w def spddirect(self, n): hw = fft.fft(self.ma, n) / fft.fft(self.ar, n) w = fft.fftfreq(n) * 2 * np.pi wslice = slice(None, n//2, None) return (np.abs(hw)**2) * 0.5/np.pi, w def _spddirect2(self, n): hw = (fft.fft(np.r_[self.ma[::-1],self.ma], n) / fft.fft(np.r_[self.ar[::-1],self.ar], n)) return (hw*hw.conj()) def spdroots(self, w): return self._spdroots(self.arroots, self.maroots, w) def _spdroots(self, arroots, maroots, w): w = np.atleast_2d(w).T cosw = np.cos(w) maroots = 1./maroots arroots = 1./arroots num = 1 + maroots**2 - 2* maroots * cosw den = 1 + arroots**2 - 2* arroots * cosw hw = 0.5 / np.pi * num.prod(-1) / den.prod(-1) return np.squeeze(hw), w.squeeze() def spdpoly(self, w, nma=50): mpoly = np.polynomial.Polynomial(self.arma2ma(nma)) hw = mpoly(np.exp(1j * w)) spd = np.real_if_close(hw * hw.conj() * 0.5/np.pi) return spd, w def filter(self, x): n = x.shape[0] if n == self.fftarma: fftarma = self.fftarma else: fftarma = self.fftma(n) / self.fftar(n) tmpfft = fftarma * fft.fft(x) return fft.ifft(tmpfft) def filter2(self, x, pad=0): from statsmodels.tsa.filters import fftconvolve3 if not pad: pass elif pad == 'auto': x = self.padarr(x, x.shape[0] + 2*(self.nma+self.nar), atend=False) else: x = self.padarr(x, x.shape[0] + int(pad), atend=False) return fftconvolve3(x, self.ma, self.ar) def acf2spdfreq(self, acovf, nfreq=100, w=None): if w is None: w = np.linspace(0, np.pi, nfreq)[:, None] nac = len(acovf) hw = 0.5 / np.pi * (acovf[0] + 2 * (acovf[1:] * np.cos(w*np.arange(1,nac))).sum(1)) return hw def invpowerspd(self, n): hw = self.fftarma(n) return np.real_if_close(fft.ifft(hw*hw.conj()), tol=200)[:n] def spdmapoly(self, w, twosided=False): if w is None: w = np.linspace(0, np.pi, nfreq) return 0.5 / np.pi * self.mapoly(np.exp(w*1j)) def plot4(self, fig=None, nobs=100, nacf=20, nfreq=100): rvs = self.generate_sample(nsample=100, burnin=500) acf = self.acf(nacf)[:nacf] pacf = self.pacf(nacf) w = np.linspace(0, np.pi, nfreq) spdr, wr = self.spdroots(w) if fig is None: import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(2,2,1) ax.plot(rvs) ax.set_title('Random Sample \nar=%s, ma=%s' % (self.ar, self.ma)) ax = fig.add_subplot(2,2,2) ax.plot(acf) ax.set_title('Autocorrelation \nar=%s, ma=%rs' % (self.ar, self.ma)) ax = fig.add_subplot(2,2,3) ax.plot(wr, spdr) ax.set_title('Power Spectrum \nar=%s, ma=%s' % (self.ar, self.ma)) ax = fig.add_subplot(2,2,4) ax.plot(pacf) ax.set_title('Partial Autocorrelation \nar=%s, ma=%s' % (self.ar, self.ma)) return fig def spdar1(ar, w): if np.ndim(ar) == 0: rho = ar else: rho = -ar[1] return 0.5 / np.pi /(1 + rho*rho - 2 * rho * np.cos(w)) if __name__ == '__main__': def maxabs(x,y): return np.max(np.abs(x-y)) nobs = 200 ar = [1, 0.0] ma = [1, 0.0] ar2 = np.zeros(nobs) ar2[:2] = [1, -0.9] uni = np.zeros(nobs) uni[0]=1. arcomb = np.convolve(ar, ar2, mode='same') marep = signal.lfilter(ma,arcomb, uni) print(marep[:10]) mafr = fft.fft(marep) rvs = np.random.normal(size=nobs) datafr = fft.fft(rvs) y = fft.ifft(mafr*datafr) print(np.corrcoef(np.c_[y[2:], y[1:-1], y[:-2]],rowvar=0)) arrep = signal.lfilter([1],marep, uni) print(arrep[:20]) arfr = fft.fft(arrep) yfr = fft.fft(y) x = fft.ifft(arfr*yfr).real print(x[:5]) print(rvs[:5]) print(np.corrcoef(np.c_[x[2:], x[1:-1], x[:-2]],rowvar=0)) arcombp = np.zeros(nobs) arcombp[:len(arcomb)] = arcomb map_ = np.zeros(nobs) map_[:len(ma)] = ma ar0fr = fft.fft(arcombp) ma0fr = fft.fft(map_) y2 = fft.ifft(ma0fr/ar0fr*datafr) print(y2[:10]) print(y[:10]) print(maxabs(y, y2)) ar = [1, -0.4] ma = [1, 0.2] arma1 = ArmaFft([1, -0.5,0,0,0,00, -0.7, 0.3], [1, 0.8], nobs) nfreq = nobs w = np.linspace(0, np.pi, nfreq) w2 = np.linspace(0, 2*np.pi, nfreq) import matplotlib.pyplot as plt plt.close('all') plt.figure() spd1, w1 = arma1.spd(2**10) print(spd1.shape) _ = plt.plot(spd1) plt.title('spd fft complex') plt.figure() spd2, w2 = arma1.spdshift(2**10) print(spd2.shape) _ = plt.plot(w2, spd2) plt.title('spd fft shift') plt.figure() spd3, w3 = arma1.spddirect(2**10) print(spd3.shape) _ = plt.plot(w3, spd3) plt.title('spd fft direct') plt.figure() spd3b = arma1._spddirect2(2**10) print(spd3b.shape) _ = plt.plot(spd3b) plt.title('spd fft direct mirrored') plt.figure() spdr, wr = arma1.spdroots(w) print(spdr.shape) plt.plot(w, spdr) plt.title('spd from roots') plt.figure() spdar1_ = spdar1(arma1.ar, w) print(spdar1_.shape) _ = plt.plot(w, spdar1_) plt.title('spd ar1') plt.figure() wper, spdper = arma1.periodogram(nfreq) print(spdper.shape) _ = plt.plot(w, spdper) plt.title('periodogram') startup = 1000 rvs = arma1.generate_sample(startup+10000)[startup:] import matplotlib.mlab as mlb plt.figure() sdm, wm = mlb.psd(x) print('sdm.shape', sdm.shape) sdm = sdm.ravel() plt.plot(wm, sdm) plt.title('matplotlib') from nitime.algorithms import LD_AR_est wnt, spdnt = LD_AR_est(rvs, 10, 512) plt.figure() print('spdnt.shape', spdnt.shape) _ = plt.plot(spdnt.ravel()) print(spdnt[:10]) plt.title('nitime') fig = plt.figure() arma1.plot4(fig)
true
true
f7f41c5f4bf2450220853ee97cd2400f292f0cf8
8,608
py
Python
beanie/api/work_centre_group_api.py
altoyield/python-beanieclient
448b8dd328054eaf32dd7d0bdff700e603b5c27d
[ "Apache-2.0" ]
null
null
null
beanie/api/work_centre_group_api.py
altoyield/python-beanieclient
448b8dd328054eaf32dd7d0bdff700e603b5c27d
[ "Apache-2.0" ]
null
null
null
beanie/api/work_centre_group_api.py
altoyield/python-beanieclient
448b8dd328054eaf32dd7d0bdff700e603b5c27d
[ "Apache-2.0" ]
null
null
null
# coding: utf-8 """ Beanie ERP API An API specification for interacting with the Beanie ERP system # noqa: E501 OpenAPI spec version: 0.8 Contact: dev@bean.ie Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import re # noqa: F401 # python 2 and python 3 compatibility library import six from beanie.api_client import ApiClient class WorkCentreGroupApi(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. Ref: https://github.com/swagger-api/swagger-codegen """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def find_work_centre_group_by_id(self, id, **kwargs): # noqa: E501 """Find Work centre group by ID # noqa: E501 Returns a single work centre group if the user has access # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_group_by_id(id, async=True) >>> result = thread.get() :param async bool :param int id: ID of work centre group to fetch (required) :return: WorkCentreGroup If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async'): return self.find_work_centre_group_by_id_with_http_info(id, **kwargs) # noqa: E501 else: (data) = self.find_work_centre_group_by_id_with_http_info(id, **kwargs) # noqa: E501 return data def find_work_centre_group_by_id_with_http_info(self, id, **kwargs): # noqa: E501 """Find Work centre group by ID # noqa: E501 Returns a single work centre group if the user has access # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_group_by_id_with_http_info(id, async=True) >>> result = thread.get() :param async bool :param int id: ID of work centre group to fetch (required) :return: WorkCentreGroup If the method is called asynchronously, returns the request thread. """ all_params = ['id'] # noqa: E501 all_params.append('async') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method find_work_centre_group_by_id" % key ) params[key] = val del params['kwargs'] # verify the required parameter 'id' is set if ('id' not in params or params['id'] is None): raise ValueError("Missing the required parameter `id` when calling `find_work_centre_group_by_id`") # noqa: E501 collection_formats = {} path_params = {} if 'id' in params: path_params['id'] = params['id'] # noqa: E501 query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['api_key'] # noqa: E501 return self.api_client.call_api( '/work_centre_groups/{id}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkCentreGroup', # noqa: E501 auth_settings=auth_settings, async=params.get('async'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def find_work_centre_groups(self, **kwargs): # noqa: E501 """All work centre group # noqa: E501 Returns all work centre group from the system that the user has access to # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_groups(async=True) >>> result = thread.get() :param async bool :param list[str] tags: tags to filter by :param int limit: Maximum number of results to return :return: list[WorkCentreGroup] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async'): return self.find_work_centre_groups_with_http_info(**kwargs) # noqa: E501 else: (data) = self.find_work_centre_groups_with_http_info(**kwargs) # noqa: E501 return data def find_work_centre_groups_with_http_info(self, **kwargs): # noqa: E501 """All work centre group # noqa: E501 Returns all work centre group from the system that the user has access to # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_groups_with_http_info(async=True) >>> result = thread.get() :param async bool :param list[str] tags: tags to filter by :param int limit: Maximum number of results to return :return: list[WorkCentreGroup] If the method is called asynchronously, returns the request thread. """ all_params = ['tags', 'limit'] # noqa: E501 all_params.append('async') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method find_work_centre_groups" % key ) params[key] = val del params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'tags' in params: query_params.append(('tags', params['tags'])) # noqa: E501 collection_formats['tags'] = 'csv' # noqa: E501 if 'limit' in params: query_params.append(('limit', params['limit'])) # noqa: E501 header_params = {} form_params = [] local_var_files = {} body_params = None # HTTP header `Accept` header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) # noqa: E501 # HTTP header `Content-Type` header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501 ['application/json']) # noqa: E501 # Authentication setting auth_settings = ['api_key'] # noqa: E501 return self.api_client.call_api( '/work_centre_groups', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkCentreGroup]', # noqa: E501 auth_settings=auth_settings, async=params.get('async'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
36.786325
125
0.611408
""" Beanie ERP API An API specification for interacting with the Beanie ERP system # noqa: E501 OpenAPI spec version: 0.8 Contact: dev@bean.ie Generated by: https://github.com/swagger-api/swagger-codegen.git """ from __future__ import absolute_import import re import six from beanie.api_client import ApiClient class WorkCentreGroupApi(object): """NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually. Ref: https://github.com/swagger-api/swagger-codegen """ def __init__(self, api_client=None): if api_client is None: api_client = ApiClient() self.api_client = api_client def find_work_centre_group_by_id(self, id, **kwargs): """Find Work centre group by ID # noqa: E501 Returns a single work centre group if the user has access # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_group_by_id(id, async=True) >>> result = thread.get() :param async bool :param int id: ID of work centre group to fetch (required) :return: WorkCentreGroup If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async'): return self.find_work_centre_group_by_id_with_http_info(id, **kwargs) else: (data) = self.find_work_centre_group_by_id_with_http_info(id, **kwargs) return data def find_work_centre_group_by_id_with_http_info(self, id, **kwargs): """Find Work centre group by ID # noqa: E501 Returns a single work centre group if the user has access # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_group_by_id_with_http_info(id, async=True) >>> result = thread.get() :param async bool :param int id: ID of work centre group to fetch (required) :return: WorkCentreGroup If the method is called asynchronously, returns the request thread. """ all_params = ['id'] all_params.append('async') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method find_work_centre_group_by_id" % key ) params[key] = val del params['kwargs'] if ('id' not in params or params['id'] is None): raise ValueError("Missing the required parameter `id` when calling `find_work_centre_group_by_id`") collection_formats = {} path_params = {} if 'id' in params: path_params['id'] = params['id'] query_params = [] header_params = {} form_params = [] local_var_files = {} body_params = None header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) header_params['Content-Type'] = self.api_client.select_header_content_type( ['application/json']) auth_settings = ['api_key'] return self.api_client.call_api( '/work_centre_groups/{id}', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='WorkCentreGroup', auth_settings=auth_settings, async=params.get('async'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) def find_work_centre_groups(self, **kwargs): """All work centre group # noqa: E501 Returns all work centre group from the system that the user has access to # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_groups(async=True) >>> result = thread.get() :param async bool :param list[str] tags: tags to filter by :param int limit: Maximum number of results to return :return: list[WorkCentreGroup] If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('async'): return self.find_work_centre_groups_with_http_info(**kwargs) else: (data) = self.find_work_centre_groups_with_http_info(**kwargs) return data def find_work_centre_groups_with_http_info(self, **kwargs): """All work centre group # noqa: E501 Returns all work centre group from the system that the user has access to # noqa: E501 This method makes a synchronous HTTP request by default. To make an asynchronous HTTP request, please pass async=True >>> thread = api.find_work_centre_groups_with_http_info(async=True) >>> result = thread.get() :param async bool :param list[str] tags: tags to filter by :param int limit: Maximum number of results to return :return: list[WorkCentreGroup] If the method is called asynchronously, returns the request thread. """ all_params = ['tags', 'limit'] all_params.append('async') all_params.append('_return_http_data_only') all_params.append('_preload_content') all_params.append('_request_timeout') params = locals() for key, val in six.iteritems(params['kwargs']): if key not in all_params: raise TypeError( "Got an unexpected keyword argument '%s'" " to method find_work_centre_groups" % key ) params[key] = val del params['kwargs'] collection_formats = {} path_params = {} query_params = [] if 'tags' in params: query_params.append(('tags', params['tags'])) collection_formats['tags'] = 'csv' if 'limit' in params: query_params.append(('limit', params['limit'])) header_params = {} form_params = [] local_var_files = {} body_params = None header_params['Accept'] = self.api_client.select_header_accept( ['application/json']) header_params['Content-Type'] = self.api_client.select_header_content_type( ['application/json']) auth_settings = ['api_key'] return self.api_client.call_api( '/work_centre_groups', 'GET', path_params, query_params, header_params, body=body_params, post_params=form_params, files=local_var_files, response_type='list[WorkCentreGroup]', auth_settings=auth_settings, async=params.get('async'), _return_http_data_only=params.get('_return_http_data_only'), _preload_content=params.get('_preload_content', True), _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats)
false
true
f7f41c793899f68e8ba0033b7ab4a050f6d2c806
1,142
py
Python
Hyperband/Embeddings/GLOVE.py
tian1327/AutoLDA
be202b70b6d0a02b75ff05016dcd7084c32a9ccf
[ "MIT" ]
1
2022-01-31T01:09:31.000Z
2022-01-31T01:09:31.000Z
Hyperband/Embeddings/GLOVE.py
tian1327/AutoLDA
be202b70b6d0a02b75ff05016dcd7084c32a9ccf
[ "MIT" ]
null
null
null
Hyperband/Embeddings/GLOVE.py
tian1327/AutoLDA
be202b70b6d0a02b75ff05016dcd7084c32a9ccf
[ "MIT" ]
null
null
null
import os import numpy as np import pickle # import tqdm def load_GLOVE(): model = 'glove_pretrained_840b_300d.pkl' print("loading GLOVE pretrained model ......") with open('./Embeddings/GLOVE_pretrained/'+model,'rb') as pk: glove_emb = pickle.load(pk) print('GLOVE loaded.\n') return glove_emb def genEmbeddings_GLOVE(keyword): # print('gen GLOVE') word_embedding = [0 for i in range(300)] if keyword in glove_emb: word_embedding = glove_emb[keyword] else: print('--'*10, keyword, 'not found in GLOVE!') return word_embedding glove_emb = load_GLOVE() if __name__ == "__main__": path_to_glove_file = "./GLOVE_pretrained/glove.840B.300d.txt" embeddings_dict = {} with open(path_to_glove_file) as f: for line in f: value = line.split(' ') word = value[0] coefs = np.array(value[1:], dtype = 'float32') embeddings_dict[word] = coefs print('save GLOVE embeddings_dict to pkl ......') with open('./GLOVE_pretrained/glove_pretrained_840b_300d.pkl','wb') as f: pickle.dump(embeddings_dict, f)
27.853659
77
0.641856
import os import numpy as np import pickle def load_GLOVE(): model = 'glove_pretrained_840b_300d.pkl' print("loading GLOVE pretrained model ......") with open('./Embeddings/GLOVE_pretrained/'+model,'rb') as pk: glove_emb = pickle.load(pk) print('GLOVE loaded.\n') return glove_emb def genEmbeddings_GLOVE(keyword): word_embedding = [0 for i in range(300)] if keyword in glove_emb: word_embedding = glove_emb[keyword] else: print('--'*10, keyword, 'not found in GLOVE!') return word_embedding glove_emb = load_GLOVE() if __name__ == "__main__": path_to_glove_file = "./GLOVE_pretrained/glove.840B.300d.txt" embeddings_dict = {} with open(path_to_glove_file) as f: for line in f: value = line.split(' ') word = value[0] coefs = np.array(value[1:], dtype = 'float32') embeddings_dict[word] = coefs print('save GLOVE embeddings_dict to pkl ......') with open('./GLOVE_pretrained/glove_pretrained_840b_300d.pkl','wb') as f: pickle.dump(embeddings_dict, f)
true
true