content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
def getChoicesList(voter):
array = []
array.append(voter.get('1st'))
array.append(voter.get('2nd'))
array.append(voter.get('3rd'))
return array
class Voter:
name = ''
choices = []
def __init__(self, voter):
self.name = voter.get('name')
self.choices = getChoicesList(voter) | def get_choices_list(voter):
array = []
array.append(voter.get('1st'))
array.append(voter.get('2nd'))
array.append(voter.get('3rd'))
return array
class Voter:
name = ''
choices = []
def __init__(self, voter):
self.name = voter.get('name')
self.choices = get_choices_list(voter) |
for i in range(int(input())):
_, a = input(), set(map(int, input().split(" ")))
_, b = input(), set(map(int, input().split(" ")))
print(a.issubset(b)) | for i in range(int(input())):
(_, a) = (input(), set(map(int, input().split(' '))))
(_, b) = (input(), set(map(int, input().split(' '))))
print(a.issubset(b)) |
# Find GCD between two numbers using recursive??
def gcd(a, b):
if b > a:
a, b = b, a # swap in python
if b == 0:
return a
else:
return gcd(b, a % b)
num1 = int(input("Enter the first number: "))
num2 = int(input("Enter the second number: "))
print(f"GCD({num1},{num2})={gcd(num1, num2)}")
| def gcd(a, b):
if b > a:
(a, b) = (b, a)
if b == 0:
return a
else:
return gcd(b, a % b)
num1 = int(input('Enter the first number: '))
num2 = int(input('Enter the second number: '))
print(f'GCD({num1},{num2})={gcd(num1, num2)}') |
class Solution:
def xorQueries(self, arr: List[int], queries: List[List[int]]) -> List[int]:
n = len(arr)
for i in range(1, n):
arr[i] ^= arr[i - 1]
return [(arr[hi] if lo == 0 else arr[hi] ^ arr[lo - 1]) for lo, hi in queries]
| class Solution:
def xor_queries(self, arr: List[int], queries: List[List[int]]) -> List[int]:
n = len(arr)
for i in range(1, n):
arr[i] ^= arr[i - 1]
return [arr[hi] if lo == 0 else arr[hi] ^ arr[lo - 1] for (lo, hi) in queries] |
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Some utilities to declare and aggregate package contents.
"""
PackageLocalInfo = provider(
fields = {
"mappings": "list of (package dest, source) pairs",
},
)
# Identical to PackageLocalInfo, but a different type is needed when that
# information if generated from an aspect so that it does not collide with any
# existing PackageLocalInfo returned provider.
PackageGeneratedInfo = provider(
fields = {
"mappings": "list of (package dest, source) pairs",
},
)
PackageAggregateInfo = provider(
fields = {
"contents": "depset of (package dest, source) pairs",
},
)
def get_aggregate_info(mappings, deps):
transitive_info = []
for dep in deps:
if PackageAggregateInfo not in dep:
continue
transitive_info.append(dep[PackageAggregateInfo].contents)
return PackageAggregateInfo(contents = depset(mappings,
transitive = transitive_info))
| """
Some utilities to declare and aggregate package contents.
"""
package_local_info = provider(fields={'mappings': 'list of (package dest, source) pairs'})
package_generated_info = provider(fields={'mappings': 'list of (package dest, source) pairs'})
package_aggregate_info = provider(fields={'contents': 'depset of (package dest, source) pairs'})
def get_aggregate_info(mappings, deps):
transitive_info = []
for dep in deps:
if PackageAggregateInfo not in dep:
continue
transitive_info.append(dep[PackageAggregateInfo].contents)
return package_aggregate_info(contents=depset(mappings, transitive=transitive_info)) |
class Solution:
def largestRectangleArea(self, heights: List[int]) -> int:
def rec(start, end):
if start > end:
return 0
min_idx = start
for i in range(start, end + 1):
if heights[min_idx] > heights[i]:
min_idx = i
return max(
heights[min_idx] * (end - start + 1),
rec(start, min_idx - 1),
rec(min_idx + 1, end),
)
return rec(0, len(heights) -1) | class Solution:
def largest_rectangle_area(self, heights: List[int]) -> int:
def rec(start, end):
if start > end:
return 0
min_idx = start
for i in range(start, end + 1):
if heights[min_idx] > heights[i]:
min_idx = i
return max(heights[min_idx] * (end - start + 1), rec(start, min_idx - 1), rec(min_idx + 1, end))
return rec(0, len(heights) - 1) |
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, val=0, next=None):
# self.val = val
# self.next = next
class Solution:
def oddEvenList(self, head: ListNode) -> ListNode:
# Empty list
if not head:
return head
# 2nd node will be the head of even nodes section
oddHead = head
evenHead = head.next
# Adjust next pointers
odd = oddHead
even = evenHead
while even and even.next:
odd.next = even.next
odd = odd.next
even.next = odd.next
even = even.next
odd.next = evenHead
return head
| class Solution:
def odd_even_list(self, head: ListNode) -> ListNode:
if not head:
return head
odd_head = head
even_head = head.next
odd = oddHead
even = evenHead
while even and even.next:
odd.next = even.next
odd = odd.next
even.next = odd.next
even = even.next
odd.next = evenHead
return head |
n, t, c, p = map(int, input().split())
counts = (n - 1) // t
print(counts * c * p)
| (n, t, c, p) = map(int, input().split())
counts = (n - 1) // t
print(counts * c * p) |
class ConstField:
def __init__(self, field):
self.column = field
def get_value(self, row):
return self.column
| class Constfield:
def __init__(self, field):
self.column = field
def get_value(self, row):
return self.column |
# Data sources
database(
thermoLibraries = ['primaryThermoLibrary'],
reactionLibraries = [],
seedMechanisms = [],
kineticsDepositories = ['training'],
kineticsFamilies = ['H_Abstraction','Disproportionation','R_Recombination',
'Birad_recombination', 'Birad_R_Recombination'],
kineticsEstimator = 'rate rules',
)
# List of species
species(
label='H2',
reactive=True,
structure=SMILES("[H][H]"),
)
species(
label='O2',
reactive=True,
structure=SMILES("[O][O]"),
)
# Reaction systems
simpleReactor(
temperature=(1000,'K'),
pressure=(1.0,'bar'),
initialMoleFractions={
'H2':.67, 'O2':.33,
},
terminationConversion={
'H2': 0.9,
},
terminationTime=(1e6,'s'),
)
simulator(
atol=1e-16,
rtol=1e-8,
)
model(
toleranceKeepInEdge=0.0,
toleranceMoveToCore=0.001,
toleranceInterruptSimulation=0.001,
maximumEdgeSpecies=100000,
)
options(
units='si',
generateOutputHTML=True,
generatePlots=False,
saveEdgeSpecies=True,
saveSimulationProfiles=True,
)
| database(thermoLibraries=['primaryThermoLibrary'], reactionLibraries=[], seedMechanisms=[], kineticsDepositories=['training'], kineticsFamilies=['H_Abstraction', 'Disproportionation', 'R_Recombination', 'Birad_recombination', 'Birad_R_Recombination'], kineticsEstimator='rate rules')
species(label='H2', reactive=True, structure=smiles('[H][H]'))
species(label='O2', reactive=True, structure=smiles('[O][O]'))
simple_reactor(temperature=(1000, 'K'), pressure=(1.0, 'bar'), initialMoleFractions={'H2': 0.67, 'O2': 0.33}, terminationConversion={'H2': 0.9}, terminationTime=(1000000.0, 's'))
simulator(atol=1e-16, rtol=1e-08)
model(toleranceKeepInEdge=0.0, toleranceMoveToCore=0.001, toleranceInterruptSimulation=0.001, maximumEdgeSpecies=100000)
options(units='si', generateOutputHTML=True, generatePlots=False, saveEdgeSpecies=True, saveSimulationProfiles=True) |
# @file
#
# Copyright 2020, Verizon Media
# SPDX-License-Identifier: Apache-2.0
#
Test.Summary = '''
Regular expression.
'''
tr = Test.TxnBoxTestAndRun("Regular Expressions", "rxp.replay.yaml", config_path='Auto', config_key="meta.txn_box.global"
,remap=[ ['http://app.ex', 'http://app.ex', ['--key=meta.txn_box.remap', 'rxp.replay.yaml']]
, ['http://one.ex/path/', 'http://two.ex/path/']
, ['http://one.ex']
]
)
ts = tr.Variables.TS
ts.Disk.records_config.update({
'proxy.config.diags.debug.enabled': 1
, 'proxy.config.diags.debug.tags': 'txn_box'
})
| Test.Summary = '\nRegular expression.\n'
tr = Test.TxnBoxTestAndRun('Regular Expressions', 'rxp.replay.yaml', config_path='Auto', config_key='meta.txn_box.global', remap=[['http://app.ex', 'http://app.ex', ['--key=meta.txn_box.remap', 'rxp.replay.yaml']], ['http://one.ex/path/', 'http://two.ex/path/'], ['http://one.ex']])
ts = tr.Variables.TS
ts.Disk.records_config.update({'proxy.config.diags.debug.enabled': 1, 'proxy.config.diags.debug.tags': 'txn_box'}) |
""" Problem: Loops || Task:
Read an integer N. For all non-negative integers i < N, print i^2.
"""
n = int(input())
for i in range(n):
print(i**2)
| """ Problem: Loops || Task:
Read an integer N. For all non-negative integers i < N, print i^2.
"""
n = int(input())
for i in range(n):
print(i ** 2) |
class Gains:
# For every radian (57 degrees) we lean forward, apply this amount of duty cycle.
GyroAngle = 1700
# For every radian/s we fall forward, apply this amount of duty cycle.
GyroRate = 120
# For every radian we are ahead of the reference, apply this amount of duty cycle
MotorAngle = 7
# For every radian/s drive faster than the reference value, apply this amount of duty cycle
MotorAngularSpeed = 9
# For every radian x s of accumulated motor angle, apply this amount of duty cycle
MotorAngleErrorAccumulated = 3
class Gyro:
def __init__(self, gyroType):
if(gyroType == 'LEGO-EV3-Gyro'):
# Amount of deg/s per sensor unit For the LEGO EV3 Gyro
self.degPerSecondPerRawGyroUnit = 1
elif(gyroType == 'HITECHNIC-NXT-Gyro'):
# Amount of deg/s per sensor unit for the HiTechnic NXT Gyro
self.degPerSecondPerRawGyroUnit = 0.2084
class Motor:
# For the LEGO EV3 Large Motor 1 unit = 1 deg
degPerRawMotorUnit = 1
# On the EV3, "1% speed" corresponds to 1.7 RPM (if speed control were enabled)
RPMperPerPercentSpeed = 1.7
class Power:
# Voltage with respect to which we tune the parameters
voltageNominal = 8.0
# Add this amount to any positive duty cycle; subtract this amount from any negative duty cycle
frictionOffsetNominal = 3
class Timing:
#Timing settings for the program
loopTimeMiliSec = 30 # Time of each loop, measured in miliseconds.
motorAngleHistoryLength = 5 # Number of previous motor angle samples we keep track of.
gyroDriftCompensationFactor = 0.05 | class Gains:
gyro_angle = 1700
gyro_rate = 120
motor_angle = 7
motor_angular_speed = 9
motor_angle_error_accumulated = 3
class Gyro:
def __init__(self, gyroType):
if gyroType == 'LEGO-EV3-Gyro':
self.degPerSecondPerRawGyroUnit = 1
elif gyroType == 'HITECHNIC-NXT-Gyro':
self.degPerSecondPerRawGyroUnit = 0.2084
class Motor:
deg_per_raw_motor_unit = 1
rp_mper_per_percent_speed = 1.7
class Power:
voltage_nominal = 8.0
friction_offset_nominal = 3
class Timing:
loop_time_mili_sec = 30
motor_angle_history_length = 5
gyro_drift_compensation_factor = 0.05 |
def is_valid_walk(walk):
if len(walk) == 10:
a = 0
b = 0
for i in range(len(walk)):
if walk[i] == 'n':
a += 1
if walk[i] == 's':
a -= 1
if walk[i] == 'w':
b += 1
if walk[i] == 'e':
b -= 1
if a-b == 0 and a+b == 0:
return True
else:
return False
else:
return False | def is_valid_walk(walk):
if len(walk) == 10:
a = 0
b = 0
for i in range(len(walk)):
if walk[i] == 'n':
a += 1
if walk[i] == 's':
a -= 1
if walk[i] == 'w':
b += 1
if walk[i] == 'e':
b -= 1
if a - b == 0 and a + b == 0:
return True
else:
return False
else:
return False |
"""
async def stringyield(string1):
for it in string1:
yield it
loop = asyncio.get_event_loop()
loop.run_until_complete(stringyield(string1))
loop.run_until_complete(stringyield(string2))
print(next(iterere(string)))
print(finalstr)
print(getRes(finalstr, long))
"""
| """
async def stringyield(string1):
for it in string1:
yield it
loop = asyncio.get_event_loop()
loop.run_until_complete(stringyield(string1))
loop.run_until_complete(stringyield(string2))
print(next(iterere(string)))
print(finalstr)
print(getRes(finalstr, long))
""" |
"""
.. Copyright (c) 2015 Marshall Farrier
license http://opensource.org/licenses/MIT
Data structure for storing possible velocity extrema
=================
"""
class MovingExtremumFinder(object):
"""
For maintaining a list of relevant indices for tracking a moving
extremum.
"""
def __init__(self, data, window, compfn):
"""
Circular buffer for maintaining indices of price data
relevant for determining velocity.
Parameters
----------
data : ndarray
Array containing relevant price data
window : int
Size of the window.
compfn : Function
Function used to compare 2 data values. This is passed so
that we can use the same class for both `up` and `down` velocity.
"""
# we need to compare today with window + 1 values so that
# insert() returns at most `window` and not `window - 1`
self._WINDOW = window + 1
self._indices = [0] * self._WINDOW
self._data = data
self._begin = 0
self._size = 0
self._compfn = compfn
def insert(self, ix):
insert_at = self._begin
if self._size > 0:
# if begin is "expired", remove it
if ix - self._indices[self._begin] >= self._WINDOW:
self._begin = (self._begin + 1) % self._WINDOW
self._size -= 1
insert_at = self._find(ix)
self._indices[insert_at] = ix
days_since_extremum = ix - self._indices[self._begin]
# new element inserted, now recalculate self._size
if insert_at < self._begin:
insert_at += self._WINDOW
self._size = insert_at - self._begin + 1
return days_since_extremum
def _find(self, ix):
return self._rec_find(ix, self._begin, self._size)
def _rec_find(self, ix, begin, length):
"""
Recursive find using binary search
`begin` is the first index to search, `length` is 1 past the end.
"""
# base case
if length <= 1:
if self._compfn(self._data[ix], self._data[self._indices[begin]]):
return begin
return (begin + 1) % self._WINDOW
halflen = length / 2
middle = (begin + halflen) % self._WINDOW
if self._compfn(self._data[ix], self._data[self._indices[middle]]):
return self._rec_find(ix, begin, halflen)
return self._rec_find(ix, (begin + halflen) % self._WINDOW, length - halflen)
| """
.. Copyright (c) 2015 Marshall Farrier
license http://opensource.org/licenses/MIT
Data structure for storing possible velocity extrema
=================
"""
class Movingextremumfinder(object):
"""
For maintaining a list of relevant indices for tracking a moving
extremum.
"""
def __init__(self, data, window, compfn):
"""
Circular buffer for maintaining indices of price data
relevant for determining velocity.
Parameters
----------
data : ndarray
Array containing relevant price data
window : int
Size of the window.
compfn : Function
Function used to compare 2 data values. This is passed so
that we can use the same class for both `up` and `down` velocity.
"""
self._WINDOW = window + 1
self._indices = [0] * self._WINDOW
self._data = data
self._begin = 0
self._size = 0
self._compfn = compfn
def insert(self, ix):
insert_at = self._begin
if self._size > 0:
if ix - self._indices[self._begin] >= self._WINDOW:
self._begin = (self._begin + 1) % self._WINDOW
self._size -= 1
insert_at = self._find(ix)
self._indices[insert_at] = ix
days_since_extremum = ix - self._indices[self._begin]
if insert_at < self._begin:
insert_at += self._WINDOW
self._size = insert_at - self._begin + 1
return days_since_extremum
def _find(self, ix):
return self._rec_find(ix, self._begin, self._size)
def _rec_find(self, ix, begin, length):
"""
Recursive find using binary search
`begin` is the first index to search, `length` is 1 past the end.
"""
if length <= 1:
if self._compfn(self._data[ix], self._data[self._indices[begin]]):
return begin
return (begin + 1) % self._WINDOW
halflen = length / 2
middle = (begin + halflen) % self._WINDOW
if self._compfn(self._data[ix], self._data[self._indices[middle]]):
return self._rec_find(ix, begin, halflen)
return self._rec_find(ix, (begin + halflen) % self._WINDOW, length - halflen) |
class Agent(object):
def __init__(self):
raise NotImplementedError
# def build_agent(self):
# raise NotImplementedError
def train(self):
raise NotImplementedError
def play(self):
raise NotImplementedError
| class Agent(object):
def __init__(self):
raise NotImplementedError
def train(self):
raise NotImplementedError
def play(self):
raise NotImplementedError |
#!/usr/bin/env python
NAME = 'F5 FirePass'
def is_waf(self):
if self.matchheader(('Location', '\/my\.logon\.php3')) and self.matchcookie('^VHOST'):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^VHOST') or self.matchcookie('^uRoamTestCookie')):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^MRHCId') or self.matchcookie('^MRHIntranetSession')):
return True
elif self.matchcookie('^uRoamTestCookie') or self.matchcookie('^VHOST'):
return True
else:
return False | name = 'F5 FirePass'
def is_waf(self):
if self.matchheader(('Location', '\\/my\\.logon\\.php3')) and self.matchcookie('^VHOST'):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^VHOST') or self.matchcookie('^uRoamTestCookie')):
return True
elif self.matchcookie('^MRHSession') and (self.matchcookie('^MRHCId') or self.matchcookie('^MRHIntranetSession')):
return True
elif self.matchcookie('^uRoamTestCookie') or self.matchcookie('^VHOST'):
return True
else:
return False |
# -*- coding: utf-8 -*-
"""
pesc.tests
"""
| """
pesc.tests
""" |
# Copyright 2019-2021 Hewlett Packard Enterprise Development LP
#
# 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.
INTERFACE_TYPE_SAS = 'sas'
INTERFACE_TYPE_SCSI = 'scsi'
INTERFACE_TYPE_SATA = 'sata'
INTERFACE_TYPE_NVME = 'nvme'
DISK_TYPE_HDD = 'hdd'
DISK_TYPE_SSD = 'ssd'
RAID_0 = '0'
RAID_1 = '1'
RAID_10 = '1+0'
RAID_5 = '5'
RAID_6 = '6'
RAID_50 = '5+0'
RAID_60 = '6+0'
# Below are not supported in Ironic now.
RAID_1_ADM = '1ADM'
RAID_10_ADM = '10ADM'
RAID_LEVEL_INPUT_TO_HPSSA_MAPPING = {RAID_50: '50', RAID_60: '60'}
RAID_LEVEL_HPSSA_TO_INPUT_MAPPING = {
v: k for k, v in RAID_LEVEL_INPUT_TO_HPSSA_MAPPING.items()}
INTERFACE_TYPE_MAP = {'SCSI': INTERFACE_TYPE_SCSI,
'SAS': INTERFACE_TYPE_SAS,
'SATA': INTERFACE_TYPE_SATA,
'NVMe': INTERFACE_TYPE_NVME,
'SATASSD': INTERFACE_TYPE_SATA,
'SASSSD': INTERFACE_TYPE_SAS,
'NVMe SSD': INTERFACE_TYPE_NVME,
'Solid State SAS': INTERFACE_TYPE_SAS,
'Solid State SATA': INTERFACE_TYPE_SATA,
'Solid State NVMe': INTERFACE_TYPE_NVME}
DISK_TYPE_MAP = {'SCSI': DISK_TYPE_HDD,
'SAS': DISK_TYPE_HDD,
'SATA': DISK_TYPE_HDD,
'SATASSD': DISK_TYPE_SSD,
'SASSSD': DISK_TYPE_SSD,
'NVMe SSD': DISK_TYPE_SSD,
'Solid State SAS': DISK_TYPE_SSD,
'Solid State SATA': DISK_TYPE_SSD,
'Solid State NVMe': DISK_TYPE_SSD}
RAID_LEVEL_MIN_DISKS = {RAID_0: 1,
RAID_1: 2,
RAID_1_ADM: 3,
RAID_5: 3,
RAID_6: 4,
RAID_10: 4,
RAID_50: 6,
RAID_60: 8}
MINIMUM_DISK_SIZE = 1
def get_interface_type(ssa_interface):
return INTERFACE_TYPE_MAP[ssa_interface]
def get_disk_type(ssa_interface):
return DISK_TYPE_MAP[ssa_interface]
| interface_type_sas = 'sas'
interface_type_scsi = 'scsi'
interface_type_sata = 'sata'
interface_type_nvme = 'nvme'
disk_type_hdd = 'hdd'
disk_type_ssd = 'ssd'
raid_0 = '0'
raid_1 = '1'
raid_10 = '1+0'
raid_5 = '5'
raid_6 = '6'
raid_50 = '5+0'
raid_60 = '6+0'
raid_1_adm = '1ADM'
raid_10_adm = '10ADM'
raid_level_input_to_hpssa_mapping = {RAID_50: '50', RAID_60: '60'}
raid_level_hpssa_to_input_mapping = {v: k for (k, v) in RAID_LEVEL_INPUT_TO_HPSSA_MAPPING.items()}
interface_type_map = {'SCSI': INTERFACE_TYPE_SCSI, 'SAS': INTERFACE_TYPE_SAS, 'SATA': INTERFACE_TYPE_SATA, 'NVMe': INTERFACE_TYPE_NVME, 'SATASSD': INTERFACE_TYPE_SATA, 'SASSSD': INTERFACE_TYPE_SAS, 'NVMe SSD': INTERFACE_TYPE_NVME, 'Solid State SAS': INTERFACE_TYPE_SAS, 'Solid State SATA': INTERFACE_TYPE_SATA, 'Solid State NVMe': INTERFACE_TYPE_NVME}
disk_type_map = {'SCSI': DISK_TYPE_HDD, 'SAS': DISK_TYPE_HDD, 'SATA': DISK_TYPE_HDD, 'SATASSD': DISK_TYPE_SSD, 'SASSSD': DISK_TYPE_SSD, 'NVMe SSD': DISK_TYPE_SSD, 'Solid State SAS': DISK_TYPE_SSD, 'Solid State SATA': DISK_TYPE_SSD, 'Solid State NVMe': DISK_TYPE_SSD}
raid_level_min_disks = {RAID_0: 1, RAID_1: 2, RAID_1_ADM: 3, RAID_5: 3, RAID_6: 4, RAID_10: 4, RAID_50: 6, RAID_60: 8}
minimum_disk_size = 1
def get_interface_type(ssa_interface):
return INTERFACE_TYPE_MAP[ssa_interface]
def get_disk_type(ssa_interface):
return DISK_TYPE_MAP[ssa_interface] |
class Registry (object):
def __init__ (self):
self.__USES__ = { }
def get_uses (self, device, config):
all_uses = sorted(self.__USES__.values( ), key=lambda usage: getattr(usage, 'sortOrder', usage.__name__))
#all_uses.sort(key=lambda usage: getattr(usage, 'sortOrder', usage.__name__))
return all_uses
def __call__ (self):
def decorator (cls):
if cls.__name__ not in self.__USES__:
self.__USES__[cls.__name__] = cls
return cls
return decorator
| class Registry(object):
def __init__(self):
self.__USES__ = {}
def get_uses(self, device, config):
all_uses = sorted(self.__USES__.values(), key=lambda usage: getattr(usage, 'sortOrder', usage.__name__))
return all_uses
def __call__(self):
def decorator(cls):
if cls.__name__ not in self.__USES__:
self.__USES__[cls.__name__] = cls
return cls
return decorator |
class Solution:
def alienOrder(self, words: list[str]) -> str:
adj = {c: set() for w in words for c in w}
for i in range(len(words) - 1):
w1, w2 = words[i], words[i + 1]
minLen = min(len(w1), len(w2))
if len(w1) > len(w2) and w1[:minLen] == w2[:minLen]:
return ""
for j in range(minLen):
if w1[j] != w2[j]:
adj[w1[j]].add(w2[j])
break
visit = {} # False = Visited, True = CurrentPath
result = []
def dfs(c):
if c in visit:
return visit[c]
visit[c] = True
for nei in adj[c]:
if dfs(nei):
return True
visit[c] = False
result.append(c)
for c in adj:
if dfs(c):
return ""
result.reverse()
return "".join(result)
| class Solution:
def alien_order(self, words: list[str]) -> str:
adj = {c: set() for w in words for c in w}
for i in range(len(words) - 1):
(w1, w2) = (words[i], words[i + 1])
min_len = min(len(w1), len(w2))
if len(w1) > len(w2) and w1[:minLen] == w2[:minLen]:
return ''
for j in range(minLen):
if w1[j] != w2[j]:
adj[w1[j]].add(w2[j])
break
visit = {}
result = []
def dfs(c):
if c in visit:
return visit[c]
visit[c] = True
for nei in adj[c]:
if dfs(nei):
return True
visit[c] = False
result.append(c)
for c in adj:
if dfs(c):
return ''
result.reverse()
return ''.join(result) |
# -*- coding: utf-8 -*-
'''
File name: code\digit_fifth_powers\sol_30.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
'''
# Solution to Project Euler Problem #30 :: Digit fifth powers
#
# For more information see:
# https://projecteuler.net/problem=30
# Problem Statement
'''
Surprisingly there are only three numbers that can be written as the sum of fourth powers of their digits:
1634 = 14 + 64 + 34 + 44
8208 = 84 + 24 + 04 + 84
9474 = 94 + 44 + 74 + 44
As 1 = 14 is not a sum it is not included.
The sum of these numbers is 1634 + 8208 + 9474 = 19316.
Find the sum of all the numbers that can be written as the sum of fifth powers of their digits.
'''
# Solution
# Solution Approach
'''
'''
| """
File name: code\\digit_fifth_powers\\sol_30.py
Author: Vaidic Joshi
Date created: Oct 20, 2018
Python Version: 3.x
"""
'\nSurprisingly there are only three numbers that can be written as the sum of fourth powers of their digits:\n1634 = 14 + 64 + 34 + 44\n8208 = 84 + 24 + 04 + 84\n9474 = 94 + 44 + 74 + 44\nAs 1 = 14 is not a sum it is not included.\nThe sum of these numbers is 1634 + 8208 + 9474 = 19316.\nFind the sum of all the numbers that can be written as the sum of fifth powers of their digits.\n'
'\n' |
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def isValidSequence(self, root: TreeNode, arr: List[int]) -> bool:
def dfs(root, pos):
if not root or root.val != arr[pos]:
return False
if pos == len(arr) - 1:
return not root.left and not root.right
return dfs(root.left, pos + 1) or dfs(root.right, pos + 1)
return dfs(root, 0)
| class Solution:
def is_valid_sequence(self, root: TreeNode, arr: List[int]) -> bool:
def dfs(root, pos):
if not root or root.val != arr[pos]:
return False
if pos == len(arr) - 1:
return not root.left and (not root.right)
return dfs(root.left, pos + 1) or dfs(root.right, pos + 1)
return dfs(root, 0) |
# Version
CURRENT_VERSION = "v0.0.2b"
# Command prefix
COMMAND_PREFIX = "s!"
# Location of secrets.json where the discord bot token is located.
SECRETS_FILE = "secrets.json"
# Location of resources
ASSETS_DIRECTORY = "assets/"
# Logging format
LOGGING_FORMAT = "(%(asctime)s) [%(levelname)s] - %(message)s"
# Cogs in use
ACTIVE_COGS = [
"cogs.admin",
"cogs.core",
"cogs.economy",
"cogs.farm",
]
ACTIVE_OBJECTS = [
"objects.economy.account",
"objects.economy.transaction",
"objects.economy.farm.farm",
"objects.economy.farm.harvest",
"objects.economy.farm.plot",
"objects.economy.farm.plant",
]
ACTIVE_SEEDERS = [
"objects.economy.farm.seeders.plant",
]
# Economy
TRANSFER_TAX = 0.01
# Farms
PLANT_PRICE_GRAPH_DIRECTORY = ASSETS_DIRECTORY+"graphs/plant_prices/"
BASE_PLOT_PRICE = 500000
PLOT_PRICE_FACTOR = 1.45
BASE_STORAGE_UPGRADE_PRICE = 500000
STORAGE_UPGRADE_PRICE_FACTOR = 1.1
FARM_NAME_CHANGE_PRICE = 1000000
FARM_PLOTS_MAX = 1000
DEMAND_DIVISOR = 1
| current_version = 'v0.0.2b'
command_prefix = 's!'
secrets_file = 'secrets.json'
assets_directory = 'assets/'
logging_format = '(%(asctime)s) [%(levelname)s] - %(message)s'
active_cogs = ['cogs.admin', 'cogs.core', 'cogs.economy', 'cogs.farm']
active_objects = ['objects.economy.account', 'objects.economy.transaction', 'objects.economy.farm.farm', 'objects.economy.farm.harvest', 'objects.economy.farm.plot', 'objects.economy.farm.plant']
active_seeders = ['objects.economy.farm.seeders.plant']
transfer_tax = 0.01
plant_price_graph_directory = ASSETS_DIRECTORY + 'graphs/plant_prices/'
base_plot_price = 500000
plot_price_factor = 1.45
base_storage_upgrade_price = 500000
storage_upgrade_price_factor = 1.1
farm_name_change_price = 1000000
farm_plots_max = 1000
demand_divisor = 1 |
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# For use with maven_install's artifacts.
# maven_install(
# ...
# artifacts = [
# # Your own deps
# ] + IO_GRPC_GRPC_KOTLIN_ARTIFACTS + IO_GRPC_GRPC_JAVA_ARTIFACTS,
# )
IO_GRPC_GRPC_KOTLIN_ARTIFACTS = [
"com.google.guava:guava:29.0-jre",
"com.squareup:kotlinpoet:1.5.0",
"org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5",
"org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.3.5",
]
# For use with maven_install's override_targets.
# maven_install(
# ...
# override_targets = dict(
# IO_GRPC_GRPC_JAVA_OVERRIDE_TARGETS.items() +
# IO_GRPC_GRPC_KOTLIN_OVERRIDE_TARGETS.items(),
# "your.target:artifact": "@//third_party/artifact",
# )
IO_GRPC_GRPC_KOTLIN_OVERRIDE_TARGETS = dict()
# Call this after compat_repositories() to load all dependencies.
def grpc_kt_repositories():
"""Imports dependencies for kt_jvm_grpc.bzl"""
if not native.existing_rule("io_bazel_rules_kotlin"):
io_bazel_rules_kotlin()
if not native.existing_rule("com_google_protobuf"):
com_google_protobuf()
if not native.existing_rule("io_grpc_grpc_java"):
io_grpc_grpc_java()
def io_bazel_rules_kotlin():
rules_kotlin_version = "b40d920c5a5e044c541513f0d5e9260d0a4579c0"
http_archive(
name = "io_bazel_rules_kotlin",
urls = ["https://github.com/bazelbuild/rules_kotlin/archive/%s.zip" % rules_kotlin_version],
sha256 = "3dadd0ad7272be6b1ed1274f62cadd4a1293c89990bcd7b4af32637a70ada63e",
type = "zip",
strip_prefix = "rules_kotlin-%s" % rules_kotlin_version,
)
def com_google_protobuf():
http_archive(
name = "com_google_protobuf",
sha256 = "b37e96e81842af659605908a421960a5dc809acbc888f6b947bc320f8628e5b1",
strip_prefix = "protobuf-3.12.0",
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.12.0.zip"],
)
def io_grpc_grpc_java():
http_archive(
name = "io_grpc_grpc_java",
sha256 = "e274597cc4de351b4f79e4c290de8175c51a403dc39f83f1dfc50a1d1c9e9a4f",
strip_prefix = "grpc-java-1.28.0",
url = "https://github.com/grpc/grpc-java/archive/v1.28.0.zip",
)
| load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive')
io_grpc_grpc_kotlin_artifacts = ['com.google.guava:guava:29.0-jre', 'com.squareup:kotlinpoet:1.5.0', 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5', 'org.jetbrains.kotlinx:kotlinx-coroutines-debug:1.3.5']
io_grpc_grpc_kotlin_override_targets = dict()
def grpc_kt_repositories():
"""Imports dependencies for kt_jvm_grpc.bzl"""
if not native.existing_rule('io_bazel_rules_kotlin'):
io_bazel_rules_kotlin()
if not native.existing_rule('com_google_protobuf'):
com_google_protobuf()
if not native.existing_rule('io_grpc_grpc_java'):
io_grpc_grpc_java()
def io_bazel_rules_kotlin():
rules_kotlin_version = 'b40d920c5a5e044c541513f0d5e9260d0a4579c0'
http_archive(name='io_bazel_rules_kotlin', urls=['https://github.com/bazelbuild/rules_kotlin/archive/%s.zip' % rules_kotlin_version], sha256='3dadd0ad7272be6b1ed1274f62cadd4a1293c89990bcd7b4af32637a70ada63e', type='zip', strip_prefix='rules_kotlin-%s' % rules_kotlin_version)
def com_google_protobuf():
http_archive(name='com_google_protobuf', sha256='b37e96e81842af659605908a421960a5dc809acbc888f6b947bc320f8628e5b1', strip_prefix='protobuf-3.12.0', urls=['https://github.com/protocolbuffers/protobuf/archive/v3.12.0.zip'])
def io_grpc_grpc_java():
http_archive(name='io_grpc_grpc_java', sha256='e274597cc4de351b4f79e4c290de8175c51a403dc39f83f1dfc50a1d1c9e9a4f', strip_prefix='grpc-java-1.28.0', url='https://github.com/grpc/grpc-java/archive/v1.28.0.zip') |
# By Kami Bigdely
# Remove assignment to method parameter.
class Distance:
def __init__(self, value, unit):
self.unit = unit
self.value = value
class Mass:
def __init__(self, value, unit):
self.value = value
self.unit = unit
def calculate_kinetic_energy(mass, distance, time):
massVal = mass.value
massUnit = mass.unit
distanceUnit = distance.unit
distanceValue = distance.value
if distanceUnit != 'km':
if distanceUnit == "ly": # [ly] stands for light-year (measure of distance in astronomy)
# convert from light-year to km unit
in_km = distanceValue * 9.461e12
distanceValue = in_km
distanceUnit = 'km'
else:
print ("unit is Unknown")
return
speed = distanceValue/time # [km per sec]
if massUnit != 'kg':
if massUnit == "solar-mass":
# convert from solar mass to kg
value = massVal * 1.98892e30 # [kg]
massVal = value
massUnit = 'kg'
else:
print ("unit is Unknown")
return
return 0.5 * massVal * speed ** 2
mass = Mass(2, "solar-mass")
distance = Distance(2, 'ly')
print(calculate_kinetic_energy(mass, distance, 3600e20))
| class Distance:
def __init__(self, value, unit):
self.unit = unit
self.value = value
class Mass:
def __init__(self, value, unit):
self.value = value
self.unit = unit
def calculate_kinetic_energy(mass, distance, time):
mass_val = mass.value
mass_unit = mass.unit
distance_unit = distance.unit
distance_value = distance.value
if distanceUnit != 'km':
if distanceUnit == 'ly':
in_km = distanceValue * 9461000000000.0
distance_value = in_km
distance_unit = 'km'
else:
print('unit is Unknown')
return
speed = distanceValue / time
if massUnit != 'kg':
if massUnit == 'solar-mass':
value = massVal * 1.98892e+30
mass_val = value
mass_unit = 'kg'
else:
print('unit is Unknown')
return
return 0.5 * massVal * speed ** 2
mass = mass(2, 'solar-mass')
distance = distance(2, 'ly')
print(calculate_kinetic_energy(mass, distance, 3.6e+23)) |
# 848. Shifting Letters
class Solution:
def shiftingLetters(self, S: str, shifts) -> str:
i = len(S)-2
shifts[-1] %= 26
while i >= 0:
shifts[i] = (shifts[i] + shifts[i+1]) % 26
i -= 1
ans = []
for i, ch in enumerate(S):
ans.append(chr((ord(ch) - 97 + shifts[i]) % 26 + 97))
return ''.join(ans)
print(Solution().shiftingLetters("bad", [10,20,30]))
print(Solution().shiftingLetters("ruu", [26,9,17])) | class Solution:
def shifting_letters(self, S: str, shifts) -> str:
i = len(S) - 2
shifts[-1] %= 26
while i >= 0:
shifts[i] = (shifts[i] + shifts[i + 1]) % 26
i -= 1
ans = []
for (i, ch) in enumerate(S):
ans.append(chr((ord(ch) - 97 + shifts[i]) % 26 + 97))
return ''.join(ans)
print(solution().shiftingLetters('bad', [10, 20, 30]))
print(solution().shiftingLetters('ruu', [26, 9, 17])) |
# __author__ = "Mio"
# __email__: "liurusi.101@gmail.com"
# created: 4/22/21 1:07 PM
VERSION = "0.0.1"
| version = '0.0.1' |
class BaseExecutor:
def __init__(self):
pass
def start(self):
raise NotImplementedError()
def execute_async(self, task, *args, **kwargs):
raise NotImplementedError()
def stop(self):
raise NotImplementedError()
| class Baseexecutor:
def __init__(self):
pass
def start(self):
raise not_implemented_error()
def execute_async(self, task, *args, **kwargs):
raise not_implemented_error()
def stop(self):
raise not_implemented_error() |
#
# PySNMP MIB module NMS-CONFIG-MGMT (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NMS-CONFIG-MGMT
# Produced by pysmi-0.3.4 at Mon Apr 29 20:11:46 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ValueSizeConstraint")
nmsWorkGroup, = mibBuilder.importSymbols("NMS-SMI", "nmsWorkGroup")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Bits, iso, Unsigned32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, IpAddress, ObjectIdentity, NotificationType, Gauge32, ModuleIdentity, Counter64, Integer32, TimeTicks, Counter32 = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "iso", "Unsigned32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "IpAddress", "ObjectIdentity", "NotificationType", "Gauge32", "ModuleIdentity", "Counter64", "Integer32", "TimeTicks", "Counter32")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
linmsm = MibIdentifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15))
configuration = MibIdentifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1))
operation = MibScalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: operation.setStatus('mandatory')
result = MibScalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: result.setStatus('mandatory')
mibBuilder.exportSymbols("NMS-CONFIG-MGMT", configuration=configuration, linmsm=linmsm, operation=operation, result=result)
| (object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_range_constraint, single_value_constraint, constraints_union, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueSizeConstraint')
(nms_work_group,) = mibBuilder.importSymbols('NMS-SMI', 'nmsWorkGroup')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(bits, iso, unsigned32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, ip_address, object_identity, notification_type, gauge32, module_identity, counter64, integer32, time_ticks, counter32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'iso', 'Unsigned32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'IpAddress', 'ObjectIdentity', 'NotificationType', 'Gauge32', 'ModuleIdentity', 'Counter64', 'Integer32', 'TimeTicks', 'Counter32')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
linmsm = mib_identifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15))
configuration = mib_identifier((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1))
operation = mib_scalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
operation.setStatus('mandatory')
result = mib_scalar((1, 3, 6, 1, 4, 1, 11606, 10, 20, 15, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
result.setStatus('mandatory')
mibBuilder.exportSymbols('NMS-CONFIG-MGMT', configuration=configuration, linmsm=linmsm, operation=operation, result=result) |
def test(t):
print(x)
t = 20
print ("In Function :", t)
x = 10
test(x)
print(t) | def test(t):
print(x)
t = 20
print('In Function :', t)
x = 10
test(x)
print(t) |
class Solution:
def rotate(self, nums: List[int], k: int) -> None:
for i in range(k):
lastValue = nums.pop()
nums.insert(0, lastValue)
return nums
| class Solution:
def rotate(self, nums: List[int], k: int) -> None:
for i in range(k):
last_value = nums.pop()
nums.insert(0, lastValue)
return nums |
class News:
#the class that defines news objets
def __init__(self, author, title, description, url, urlToImage, publishedAt):
self.author = author
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt
class Source:
#the class that defines the source of objects
def __init__(self, id, name, url):
self.id = id
self.name = name
self.url = url
class Category:
#the class tha defines the categories of the objects
def __init__(self, title, description, url , urlToImage, publishedAt):
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt | class News:
def __init__(self, author, title, description, url, urlToImage, publishedAt):
self.author = author
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt
class Source:
def __init__(self, id, name, url):
self.id = id
self.name = name
self.url = url
class Category:
def __init__(self, title, description, url, urlToImage, publishedAt):
self.title = title
self.description = description
self.url = url
self.urlToImage = urlToImage
self.publishedAt = publishedAt |
# encoding:utf-8
# This file implements a graph directed with weight
# The graph not supports multiple edges with the same extremes (same output node and same input node)
# Author: Marcos Castro
# class that represents a node
class Node:
def __init__(self, key):
# self.key is the key of node (unique)
# self.successors are the successors nodes
# self.weight_successors represents weight of edges
self.key, self.successors, self.weight_successors = key, [], {}
# return the key
def getKey(self):
return self.key
# return the successors of node
def getSuccessors(self):
return self.successors
# add a node successor passing the node and the weight
def addSuccessor(self, node, weight):
# adds if successor node not exists
if node.getKey() not in self.weight_successors:
self.successors.append(node)
self.weight_successors[node.getKey()] = weight
# returns weight of successors
def getWeightSuccessors(self):
return self.weight_successors
# class that represents a graph
class Graph:
def __init__(self):
self.nodes = {} # key: key of node, value: instance of Node
# adds a node in the graph passing a key
def addNode(self, key_node):
if key_node in self.nodes: # checks if the key already exists
print('Error: key %s already exists!!' % key_node)
else:
node = Node(key_node) # creates a instance of Node
self.nodes[key_node] = node # stores the node
# connects the nodes
def connect(self, key_source, key_destination, weight):
# checks if the keys exists in the graph
if key_source in self.nodes and key_destination in self.nodes:
if key_source != key_destination: # checks if the keys are differents
if weight > 0: # checks if the weight is positive
# connects the nodes
self.nodes[key_source].addSuccessor(self.nodes[key_destination], weight)
else:
print('Error: weight negative!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
# returns weight of edge
def getWeightEdge(self, key_source, key_successor):
if key_source in self.nodes and key_successor in self.nodes: # checks if the keys exists
if key_source != key_successor: # checks if the keys are differents
weight_successors = self.nodes[key_source].getWeightSuccessors()
if key_successor in weight_successors: # checks if key_successor is a successor
return weight_successors[key_successor] # returns the weight
else:
print('Error: successor not exists!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
# returns the keys of all successors of a node
def getSuccessors(self, key_node):
if key_node in self.nodes:
nodes = self.nodes[key_node].getSuccessors()
keys_successors = [node.getKey() for node in nodes]
return keys_successors
else:
print('Error: key not exists!!')
# returns all nodes
def getNodes(self):
return self.nodes | class Node:
def __init__(self, key):
(self.key, self.successors, self.weight_successors) = (key, [], {})
def get_key(self):
return self.key
def get_successors(self):
return self.successors
def add_successor(self, node, weight):
if node.getKey() not in self.weight_successors:
self.successors.append(node)
self.weight_successors[node.getKey()] = weight
def get_weight_successors(self):
return self.weight_successors
class Graph:
def __init__(self):
self.nodes = {}
def add_node(self, key_node):
if key_node in self.nodes:
print('Error: key %s already exists!!' % key_node)
else:
node = node(key_node)
self.nodes[key_node] = node
def connect(self, key_source, key_destination, weight):
if key_source in self.nodes and key_destination in self.nodes:
if key_source != key_destination:
if weight > 0:
self.nodes[key_source].addSuccessor(self.nodes[key_destination], weight)
else:
print('Error: weight negative!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
def get_weight_edge(self, key_source, key_successor):
if key_source in self.nodes and key_successor in self.nodes:
if key_source != key_successor:
weight_successors = self.nodes[key_source].getWeightSuccessors()
if key_successor in weight_successors:
return weight_successors[key_successor]
else:
print('Error: successor not exists!!')
else:
print('Error: same keys!!')
else:
print('Error: key not exists!!')
def get_successors(self, key_node):
if key_node in self.nodes:
nodes = self.nodes[key_node].getSuccessors()
keys_successors = [node.getKey() for node in nodes]
return keys_successors
else:
print('Error: key not exists!!')
def get_nodes(self):
return self.nodes |
'''
Custom sorting
Status: Accepted
'''
###############################################################################
def main():
"""Read input and print output"""
print_blank_line = False
while True:
rows, cols = [int(i) for i in input().split()]
if rows + cols == 0:
break
if print_blank_line:
print()
print_blank_line = True
words, results = [''] * cols, [''] * rows
for _ in range(rows):
for index, glyph in enumerate(input()):
words[index] += glyph
words.sort(key=str.lower)
for word in words:
for index, glyph in enumerate(word):
results[index] += glyph
print('\n'.join(results))
###############################################################################
if __name__ == '__main__':
main()
| """
Custom sorting
Status: Accepted
"""
def main():
"""Read input and print output"""
print_blank_line = False
while True:
(rows, cols) = [int(i) for i in input().split()]
if rows + cols == 0:
break
if print_blank_line:
print()
print_blank_line = True
(words, results) = ([''] * cols, [''] * rows)
for _ in range(rows):
for (index, glyph) in enumerate(input()):
words[index] += glyph
words.sort(key=str.lower)
for word in words:
for (index, glyph) in enumerate(word):
results[index] += glyph
print('\n'.join(results))
if __name__ == '__main__':
main() |
# noinspection PyUnusedLocal
# friend_name = unicode string
def hello(friend_name):
if not isinstance(friend_name, str):
raise TypeError("A string was not provided as friend name.")
return "".join(["Hello, ", friend_name, "!"])
| def hello(friend_name):
if not isinstance(friend_name, str):
raise type_error('A string was not provided as friend name.')
return ''.join(['Hello, ', friend_name, '!']) |
'''
Austin Richards 2/13/21
A text exercise from ch. 6 which will take
a list of lists and print it in a nice-looking
grid with each column righ-justified.
'''
def printTable(tableData, title):
col_width = [0] * len(tableData)
lengths = [[], [], []]
for i in range(len(tableData)):
for item in tableData[i]:
lengths[i].append(len(item))
col_width[i] = max(lengths[i])
title = title.center(sum(col_width) + 2, '-')
print(title)
for y in range(len(tableData[0])):
for x in range(len(tableData)):
print(tableData[x][y].rjust(col_width[x]), end=' ')
print('')
tableData = [['apples', 'oranges', 'cherries', 'banana'],
['Alice', 'Bob', 'Carol', 'David'],
['dogs', 'cats', 'moose', 'goose']]
title = 'Items'
printTable(tableData, title)
| """
Austin Richards 2/13/21
A text exercise from ch. 6 which will take
a list of lists and print it in a nice-looking
grid with each column righ-justified.
"""
def print_table(tableData, title):
col_width = [0] * len(tableData)
lengths = [[], [], []]
for i in range(len(tableData)):
for item in tableData[i]:
lengths[i].append(len(item))
col_width[i] = max(lengths[i])
title = title.center(sum(col_width) + 2, '-')
print(title)
for y in range(len(tableData[0])):
for x in range(len(tableData)):
print(tableData[x][y].rjust(col_width[x]), end=' ')
print('')
table_data = [['apples', 'oranges', 'cherries', 'banana'], ['Alice', 'Bob', 'Carol', 'David'], ['dogs', 'cats', 'moose', 'goose']]
title = 'Items'
print_table(tableData, title) |
x: int
x = int(input("Digite o valor de X: "))
for i in range(1, x + 1):
if i % 2 != 0:
print(i)
| x: int
x = int(input('Digite o valor de X: '))
for i in range(1, x + 1):
if i % 2 != 0:
print(i) |
coordinates_E0E1E1 = ((127, 107),
(127, 138), (127, 139), (128, 107), (128, 110), (128, 118), (128, 119), (128, 127), (128, 132), (128, 133), (128, 137), (128, 140), (129, 108), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 119), (129, 127), (129, 129), (129, 130), (129, 131), (129, 138), (129, 139), (129, 141), (130, 108), (130, 110), (130, 114), (130, 115), (130, 119), (130, 126), (130, 132), (130, 133), (130, 137), (130, 138), (130, 139), (131, 108), (131, 112), (131, 114), (131, 115), (131, 116), (131, 117), (131, 119), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 136), (131, 137), (131, 138), (131, 139), (131, 141), (132, 112), (132, 114), (132, 118), (132, 119), (132, 121), (132, 122), (132, 123), (132, 124), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132),
(132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 140), (133, 111), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 119), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 139), (134, 109), (134, 114), (134, 118), (134, 119), (134, 120), (134, 121), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 134), (134, 138), (134, 139), (135, 108), (135, 110), (135, 111), (135, 114), (135, 119), (135, 125), (135, 126), (135, 127), (135, 128), (135, 130), (135, 131), (135, 132), (135, 133), (135, 136), (135, 138), (136, 108), (136, 113), (136, 119), (136, 121), (136, 122), (136, 123), (136, 124), (136, 129), (136, 134), (136, 138), (137, 113), (137, 119), (137, 125),
(137, 128), (137, 134), (137, 138), (137, 139), (138, 118), (138, 119), (138, 139), (139, 118), (139, 139), (140, 117), (140, 118), (140, 139), (141, 117), (141, 119), (141, 139), (142, 118), (142, 120), (142, 139), (143, 120), (144, 121), (145, 121), (145, 138), (146, 122), (147, 121), (147, 122), (148, 122), (149, 120), (151, 130), (151, 132), (152, 130), (152, 132), (153, 131), (153, 132), )
coordinates_E1E1E1 = ((96, 134),
(97, 133), (97, 134), (98, 134), (104, 123), (106, 107), (106, 124), (106, 126), (106, 139), (107, 108), (107, 124), (108, 112), (108, 114), (108, 123), (108, 125), (108, 131), (109, 112), (109, 116), (109, 121), (109, 124), (109, 126), (109, 130), (110, 111), (110, 117), (110, 120), (110, 123), (110, 125), (110, 126), (110, 128), (110, 132), (111, 111), (111, 115), (111, 118), (111, 119), (111, 121), (111, 122), (111, 123), (111, 124), (111, 126), (111, 129), (111, 130), (111, 131), (112, 109), (112, 111), (112, 116), (112, 119), (112, 125), (112, 127), (112, 130), (112, 134), (113, 106), (113, 108), (113, 110), (113, 118), (113, 126), (113, 127), (113, 130), (113, 132), (114, 105), (114, 110), (114, 130), (114, 137), (114, 138), (115, 104), (115, 131), (116, 130), )
coordinates_FEDAB9 = ((128, 95),
(128, 97), (129, 98), (129, 99), (129, 100), (129, 101), (129, 102), (129, 103), (129, 105), (130, 95), (130, 97), (130, 106), (131, 95), (131, 97), (131, 98), (131, 99), (131, 100), (131, 101), (131, 102), (131, 103), (131, 104), (131, 106), (132, 95), (132, 97), (132, 98), (132, 99), (132, 100), (132, 101), (132, 102), (132, 103), (132, 104), (132, 106), (132, 110), (133, 95), (133, 97), (133, 98), (133, 99), (133, 100), (133, 101), (133, 102), (133, 103), (133, 104), (133, 105), (133, 106), (133, 107), (134, 96), (134, 101), (134, 102), (134, 103), (134, 104), (134, 106), (135, 97), (135, 99), (135, 100), (135, 101), (135, 102), (135, 103), (135, 105), (135, 116), (135, 117), (136, 101), (136, 102), (136, 103), (136, 104), (136, 106), (136, 117), (137, 101), (137, 103), (137, 104), (137, 106), (137, 109), (137, 111), (137, 116),
(137, 132), (138, 101), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 112), (138, 115), (138, 116), (138, 121), (138, 123), (138, 129), (138, 132), (139, 100), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 109), (139, 110), (139, 111), (139, 113), (139, 115), (139, 125), (139, 126), (139, 127), (139, 128), (139, 133), (140, 99), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 115), (140, 121), (140, 123), (140, 130), (140, 132), (141, 99), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 115), (141, 121), (141, 123), (141, 124), (141, 128), (142, 100), (142, 102), (142, 103), (142, 104), (142, 105),
(142, 106), (142, 107), (142, 108), (142, 115), (142, 122), (142, 125), (142, 126), (143, 101), (143, 104), (143, 105), (143, 106), (143, 110), (143, 111), (143, 112), (143, 113), (143, 123), (143, 124), (144, 102), (144, 108), (144, 114), (144, 115), (144, 116), (144, 118), (145, 105), (145, 106), (145, 119), )
coordinates_D970D6 = ((121, 120),
(122, 107), (122, 109), (122, 119), (122, 121), (123, 106), (123, 110), (123, 118), (123, 121), (124, 105), (124, 111), (124, 121), (125, 100), (125, 102), (125, 103), (125, 107), (125, 108), (125, 112), (125, 117), (125, 119), (125, 122), (126, 96), (126, 109), (126, 110), (126, 113), (126, 117), (126, 120), (126, 122), (127, 99), (127, 101), (127, 102), (127, 105), (127, 112), (127, 114), (127, 116), (127, 121), (127, 122), (128, 121), (128, 122), (129, 121), (129, 122), (130, 121), (130, 122), )
coordinates_01CED1 = ((145, 110),
(145, 112), (145, 124), (145, 125), (146, 108), (146, 113), (146, 114), (146, 115), (146, 116), (146, 117), (146, 124), (146, 125), (147, 106), (147, 110), (147, 111), (147, 112), (147, 119), (147, 124), (147, 125), (148, 105), (148, 109), (148, 110), (148, 111), (148, 112), (148, 113), (148, 114), (148, 115), (148, 116), (148, 118), (148, 124), (148, 125), (149, 105), (149, 110), (149, 111), (149, 112), (149, 113), (149, 114), (149, 115), (149, 116), (149, 117), (149, 118), (149, 124), (149, 125), (150, 105), (150, 109), (150, 111), (150, 112), (150, 113), (150, 114), (150, 115), (150, 116), (150, 117), (150, 118), (150, 122), (150, 123), (150, 124), (150, 125), (151, 109), (151, 111), (151, 112), (151, 113), (151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 125), (152, 110), (152, 114), (152, 115),
(152, 116), (152, 117), (152, 118), (152, 122), (152, 123), (152, 125), (153, 111), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 124), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 123), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 123), (156, 115), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (157, 116), (157, 119), (157, 120), (157, 121), (157, 122), (157, 124), (158, 117), (158, 121), (158, 122), (158, 124), (159, 119), (159, 120), (159, 124), (160, 121), (160, 123), )
coordinates_AED8E6 = ((142, 130),
(143, 128), (143, 129), (144, 127), (144, 129), (145, 127), (146, 127), (147, 127), (148, 128), (148, 129), (149, 128), (149, 130), (149, 131), (149, 132), (149, 134), (150, 128), (150, 133), (150, 135), (151, 127), (151, 134), (152, 127), (152, 128), (152, 134), (152, 136), (153, 127), (153, 129), (153, 134), (153, 136), (154, 130), (154, 134), (154, 137), (155, 127), (155, 129), (155, 131), (155, 134), (155, 136), (156, 133), (156, 134), (156, 136), (157, 131), (157, 134), (157, 137), (158, 132), (158, 135), (159, 132), (159, 134), )
coordinates_AF3060 = ((122, 132),
(122, 134), (122, 137), (123, 131), (123, 135), (123, 139), (123, 140), (123, 141), (123, 143), (123, 147), (123, 150), (124, 131), (124, 134), (124, 136), (124, 145), (124, 146), (124, 151), (125, 131), (125, 135), (125, 142), (125, 143), (125, 149), (126, 131), (126, 134), (126, 137), (126, 140), (126, 143), (126, 144), (126, 147), (127, 131), (127, 135), (127, 136), (127, 146), (128, 143), (128, 145), )
coordinates_A62A2A = ((135, 145),
(136, 143), (136, 144), (137, 136), (137, 141), (138, 135), (138, 141), (138, 143), (139, 135), (139, 137), (139, 141), (139, 142), (140, 135), (140, 137), (140, 141), (141, 134), (141, 137), (141, 141), (142, 132), (142, 135), (142, 137), (142, 141), (143, 134), (143, 135), (143, 137), (143, 141), (144, 131), (144, 133), (144, 134), (144, 136), (144, 140), (144, 141), (145, 130), (145, 132), (145, 133), (145, 134), (145, 136), (145, 140), (145, 141), (146, 130), (146, 136), (146, 140), (146, 141), (147, 131), (147, 133), (147, 134), (147, 137), (147, 141), (148, 135), (148, 141), (149, 136), (149, 139), (149, 141), (150, 137), (150, 139), (150, 141), (151, 138), (151, 140), (152, 138), (152, 140), (153, 139), (153, 140), )
coordinates_ACFF2F = ((126, 152),
(127, 149), (127, 151), (127, 152), (128, 148), (128, 152), (129, 146), (129, 149), (129, 151), (130, 144), (130, 146), (130, 150), (130, 151), (131, 143), (131, 145), (132, 142), (132, 145), (133, 142), (133, 145), (134, 141), (134, 143), (135, 140), )
coordinates_FFDAB9 = ((100, 104),
(101, 103), (101, 105), (101, 106), (101, 107), (101, 109), (101, 127), (101, 128), (101, 129), (101, 131), (102, 103), (102, 110), (102, 119), (102, 120), (102, 125), (102, 132), (103, 103), (103, 105), (103, 106), (103, 107), (103, 108), (103, 109), (103, 111), (103, 115), (103, 117), (103, 118), (103, 121), (103, 128), (103, 129), (103, 130), (103, 131), (103, 133), (104, 103), (104, 105), (104, 106), (104, 107), (104, 108), (104, 109), (104, 110), (104, 111), (104, 119), (104, 121), (104, 125), (104, 127), (104, 128), (104, 129), (104, 130), (104, 131), (104, 133), (105, 103), (105, 105), (105, 106), (105, 107), (105, 108), (105, 109), (105, 110), (105, 113), (105, 116), (105, 117), (105, 118), (105, 119), (105, 121), (105, 128), (105, 129), (105, 133), (106, 101), (106, 103), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109),
(106, 110), (106, 111), (106, 114), (106, 117), (106, 118), (106, 119), (106, 122), (106, 128), (106, 131), (106, 133), (107, 100), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 108), (107, 110), (107, 116), (107, 118), (107, 119), (107, 121), (107, 128), (107, 129), (107, 133), (107, 134), (108, 100), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 108), (108, 110), (108, 117), (108, 120), (108, 128), (108, 133), (108, 134), (109, 99), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 109), (109, 118), (109, 119), (109, 134), (109, 135), (110, 99), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 109), (110, 135), (111, 98), (111, 100), (111, 101), (111, 102), (111, 103), (111, 106), (111, 107), (111, 136), (111, 138), (111, 140), (112, 98),
(112, 100), (112, 101), (112, 102), (112, 104), (112, 137), (112, 141), (113, 98), (113, 100), (113, 101), (113, 103), (113, 140), (114, 98), (114, 100), (114, 102), (115, 98), (115, 102), (116, 98), (116, 100), (117, 98), )
coordinates_DA70D6 = ((113, 113),
(113, 115), (113, 121), (113, 124), (114, 112), (114, 116), (114, 119), (114, 120), (114, 125), (114, 128), (115, 106), (115, 108), (115, 113), (115, 114), (115, 115), (115, 117), (115, 118), (115, 121), (115, 122), (115, 123), (115, 124), (116, 105), (116, 110), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 121), (116, 122), (116, 123), (116, 124), (116, 125), (117, 101), (117, 103), (117, 104), (117, 107), (117, 108), (117, 111), (117, 112), (117, 116), (117, 122), (117, 123), (117, 124), (117, 125), (117, 126), (117, 128), (117, 132), (117, 133), (118, 100), (118, 106), (118, 109), (118, 114), (118, 115), (118, 118), (118, 121), (118, 124), (118, 125), (118, 126), (118, 127), (118, 130), (118, 133), (119, 100), (119, 102), (119, 104), (119, 110), (119, 112), (119, 116), (119, 122), (119, 129), (119, 133), (120, 103), (120, 110),
(120, 125), (120, 126), (120, 127), (120, 132), )
coordinates_00CED1 = ((87, 120),
(87, 121), (88, 120), (88, 122), (89, 114), (89, 119), (89, 123), (90, 111), (90, 115), (90, 119), (90, 121), (90, 123), (91, 110), (91, 113), (91, 115), (91, 119), (91, 121), (91, 122), (91, 124), (92, 109), (92, 111), (92, 112), (92, 113), (92, 115), (92, 119), (92, 121), (92, 122), (92, 124), (93, 108), (93, 111), (93, 112), (93, 113), (93, 115), (93, 119), (93, 121), (93, 122), (93, 123), (93, 125), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 116), (94, 119), (94, 120), (94, 121), (94, 122), (94, 123), (94, 125), (95, 111), (95, 113), (95, 114), (95, 115), (95, 117), (95, 118), (95, 119), (95, 120), (95, 121), (95, 122), (95, 123), (95, 125), (96, 111), (96, 113), (96, 114), (96, 115), (96, 116), (96, 119), (96, 120), (96, 121), (96, 122), (96, 123),
(96, 124), (96, 126), (97, 110), (97, 112), (97, 113), (97, 114), (97, 115), (97, 116), (97, 117), (97, 118), (97, 119), (97, 120), (97, 121), (97, 122), (97, 123), (97, 124), (97, 126), (98, 110), (98, 112), (98, 113), (98, 114), (98, 115), (98, 116), (98, 117), (98, 118), (98, 119), (98, 120), (98, 121), (98, 122), (98, 123), (98, 124), (98, 125), (98, 127), (99, 109), (99, 112), (99, 113), (99, 114), (99, 115), (99, 116), (99, 117), (99, 127), (100, 110), (100, 118), (100, 119), (100, 120), (100, 121), (100, 122), (100, 123), (100, 124), (100, 125), (101, 112), (101, 114), (101, 115), (101, 116), )
coordinates_A120F0 = ((122, 124),
(122, 127), (122, 128), (123, 124), (123, 126), (123, 129), (124, 124), (124, 127), (124, 129), (125, 124), (125, 126), (125, 129), (126, 124), (126, 127), (126, 129), (127, 124), (127, 129), (128, 124), (128, 125), (129, 124), (129, 125), (130, 124), )
coordinates_A52A2A = ((87, 130),
(87, 132), (87, 133), (87, 135), (88, 129), (88, 136), (89, 128), (89, 130), (89, 131), (89, 132), (89, 133), (89, 134), (89, 135), (89, 137), (90, 127), (90, 129), (90, 130), (90, 131), (90, 132), (90, 133), (90, 134), (90, 135), (90, 136), (90, 138), (91, 128), (91, 129), (91, 130), (91, 131), (91, 132), (91, 133), (91, 134), (91, 135), (91, 136), (91, 138), (92, 127), (92, 129), (92, 130), (92, 131), (92, 132), (92, 133), (92, 134), (92, 135), (92, 136), (92, 138), (93, 127), (93, 129), (93, 130), (93, 131), (93, 132), (93, 135), (93, 136), (93, 137), (93, 138), (93, 139), (94, 127), (94, 129), (94, 130), (94, 131), (94, 134), (94, 136), (94, 137), (94, 139), (95, 128), (95, 130), (95, 132), (95, 139), (96, 128), (96, 131), (96, 136), (96, 139), (97, 129), (97, 131), (98, 129),
(98, 131), (99, 129), (99, 130), )
coordinates_ADFF2F = ((98, 136),
(98, 139), (99, 132), (99, 137), (99, 139), (100, 133), (100, 134), (100, 137), (100, 139), (101, 134), (101, 136), (101, 137), (101, 138), (101, 140), (102, 135), (102, 137), (102, 138), (102, 139), (102, 141), (103, 135), (103, 137), (103, 143), (104, 135), (104, 137), (104, 138), (104, 139), (104, 140), (104, 141), (104, 143), (105, 135), (105, 137), (105, 141), (105, 143), (106, 136), (106, 137), (106, 141), (106, 144), (107, 136), (107, 140), (107, 141), (107, 142), (107, 144), (108, 137), (108, 141), (108, 142), (108, 144), (109, 138), (109, 140), (109, 143), (109, 145), (110, 141), (110, 143), (110, 144), (110, 146), (111, 142), (111, 144), (111, 145), (111, 147), (112, 143), (112, 145), (112, 148), (113, 144), (113, 146), (113, 147), (113, 149), (114, 144), (114, 150), (115, 146), (115, 148), (115, 150), )
coordinates_A020F0 = ((114, 134),
(115, 134), (116, 135), (116, 138), (117, 135), (117, 138), (118, 135), (118, 138), (119, 137), (119, 138), (120, 137), (120, 138), )
coordinates_B03060 = ((115, 140),
(116, 140), (116, 142), (116, 144), (117, 140), (117, 145), (117, 146), (117, 147), (117, 148), (117, 150), (118, 140), (118, 142), (118, 143), (118, 144), (118, 150), (119, 140), (119, 149), (120, 140), (120, 142), (120, 143), (120, 146), (120, 147), (120, 149), (121, 140), (121, 143), )
coordinates_ACD8E6 = ((85, 126),
(86, 125), (86, 126), (86, 129), (87, 125), (88, 125), (89, 125), )
| coordinates_e0_e1_e1 = ((127, 107), (127, 138), (127, 139), (128, 107), (128, 110), (128, 118), (128, 119), (128, 127), (128, 132), (128, 133), (128, 137), (128, 140), (129, 108), (129, 112), (129, 113), (129, 114), (129, 115), (129, 116), (129, 119), (129, 127), (129, 129), (129, 130), (129, 131), (129, 138), (129, 139), (129, 141), (130, 108), (130, 110), (130, 114), (130, 115), (130, 119), (130, 126), (130, 132), (130, 133), (130, 137), (130, 138), (130, 139), (131, 108), (131, 112), (131, 114), (131, 115), (131, 116), (131, 117), (131, 119), (131, 126), (131, 127), (131, 128), (131, 129), (131, 130), (131, 131), (131, 132), (131, 133), (131, 134), (131, 136), (131, 137), (131, 138), (131, 139), (131, 141), (132, 112), (132, 114), (132, 118), (132, 119), (132, 121), (132, 122), (132, 123), (132, 124), (132, 126), (132, 127), (132, 128), (132, 129), (132, 130), (132, 131), (132, 132), (132, 133), (132, 134), (132, 135), (132, 136), (132, 137), (132, 138), (132, 140), (133, 111), (133, 113), (133, 114), (133, 115), (133, 116), (133, 117), (133, 119), (133, 126), (133, 127), (133, 128), (133, 129), (133, 130), (133, 131), (133, 132), (133, 133), (133, 134), (133, 135), (133, 136), (133, 137), (133, 139), (134, 109), (134, 114), (134, 118), (134, 119), (134, 120), (134, 121), (134, 122), (134, 123), (134, 124), (134, 125), (134, 126), (134, 127), (134, 128), (134, 129), (134, 134), (134, 138), (134, 139), (135, 108), (135, 110), (135, 111), (135, 114), (135, 119), (135, 125), (135, 126), (135, 127), (135, 128), (135, 130), (135, 131), (135, 132), (135, 133), (135, 136), (135, 138), (136, 108), (136, 113), (136, 119), (136, 121), (136, 122), (136, 123), (136, 124), (136, 129), (136, 134), (136, 138), (137, 113), (137, 119), (137, 125), (137, 128), (137, 134), (137, 138), (137, 139), (138, 118), (138, 119), (138, 139), (139, 118), (139, 139), (140, 117), (140, 118), (140, 139), (141, 117), (141, 119), (141, 139), (142, 118), (142, 120), (142, 139), (143, 120), (144, 121), (145, 121), (145, 138), (146, 122), (147, 121), (147, 122), (148, 122), (149, 120), (151, 130), (151, 132), (152, 130), (152, 132), (153, 131), (153, 132))
coordinates_e1_e1_e1 = ((96, 134), (97, 133), (97, 134), (98, 134), (104, 123), (106, 107), (106, 124), (106, 126), (106, 139), (107, 108), (107, 124), (108, 112), (108, 114), (108, 123), (108, 125), (108, 131), (109, 112), (109, 116), (109, 121), (109, 124), (109, 126), (109, 130), (110, 111), (110, 117), (110, 120), (110, 123), (110, 125), (110, 126), (110, 128), (110, 132), (111, 111), (111, 115), (111, 118), (111, 119), (111, 121), (111, 122), (111, 123), (111, 124), (111, 126), (111, 129), (111, 130), (111, 131), (112, 109), (112, 111), (112, 116), (112, 119), (112, 125), (112, 127), (112, 130), (112, 134), (113, 106), (113, 108), (113, 110), (113, 118), (113, 126), (113, 127), (113, 130), (113, 132), (114, 105), (114, 110), (114, 130), (114, 137), (114, 138), (115, 104), (115, 131), (116, 130))
coordinates_fedab9 = ((128, 95), (128, 97), (129, 98), (129, 99), (129, 100), (129, 101), (129, 102), (129, 103), (129, 105), (130, 95), (130, 97), (130, 106), (131, 95), (131, 97), (131, 98), (131, 99), (131, 100), (131, 101), (131, 102), (131, 103), (131, 104), (131, 106), (132, 95), (132, 97), (132, 98), (132, 99), (132, 100), (132, 101), (132, 102), (132, 103), (132, 104), (132, 106), (132, 110), (133, 95), (133, 97), (133, 98), (133, 99), (133, 100), (133, 101), (133, 102), (133, 103), (133, 104), (133, 105), (133, 106), (133, 107), (134, 96), (134, 101), (134, 102), (134, 103), (134, 104), (134, 106), (135, 97), (135, 99), (135, 100), (135, 101), (135, 102), (135, 103), (135, 105), (135, 116), (135, 117), (136, 101), (136, 102), (136, 103), (136, 104), (136, 106), (136, 117), (137, 101), (137, 103), (137, 104), (137, 106), (137, 109), (137, 111), (137, 116), (137, 132), (138, 101), (138, 103), (138, 104), (138, 105), (138, 106), (138, 108), (138, 112), (138, 115), (138, 116), (138, 121), (138, 123), (138, 129), (138, 132), (139, 100), (139, 102), (139, 103), (139, 104), (139, 105), (139, 106), (139, 109), (139, 110), (139, 111), (139, 113), (139, 115), (139, 125), (139, 126), (139, 127), (139, 128), (139, 133), (140, 99), (140, 101), (140, 102), (140, 103), (140, 104), (140, 105), (140, 106), (140, 107), (140, 108), (140, 109), (140, 110), (140, 111), (140, 112), (140, 115), (140, 121), (140, 123), (140, 130), (140, 132), (141, 99), (141, 101), (141, 102), (141, 103), (141, 104), (141, 105), (141, 106), (141, 107), (141, 108), (141, 109), (141, 110), (141, 111), (141, 112), (141, 113), (141, 115), (141, 121), (141, 123), (141, 124), (141, 128), (142, 100), (142, 102), (142, 103), (142, 104), (142, 105), (142, 106), (142, 107), (142, 108), (142, 115), (142, 122), (142, 125), (142, 126), (143, 101), (143, 104), (143, 105), (143, 106), (143, 110), (143, 111), (143, 112), (143, 113), (143, 123), (143, 124), (144, 102), (144, 108), (144, 114), (144, 115), (144, 116), (144, 118), (145, 105), (145, 106), (145, 119))
coordinates_d970_d6 = ((121, 120), (122, 107), (122, 109), (122, 119), (122, 121), (123, 106), (123, 110), (123, 118), (123, 121), (124, 105), (124, 111), (124, 121), (125, 100), (125, 102), (125, 103), (125, 107), (125, 108), (125, 112), (125, 117), (125, 119), (125, 122), (126, 96), (126, 109), (126, 110), (126, 113), (126, 117), (126, 120), (126, 122), (127, 99), (127, 101), (127, 102), (127, 105), (127, 112), (127, 114), (127, 116), (127, 121), (127, 122), (128, 121), (128, 122), (129, 121), (129, 122), (130, 121), (130, 122))
coordinates_01_ced1 = ((145, 110), (145, 112), (145, 124), (145, 125), (146, 108), (146, 113), (146, 114), (146, 115), (146, 116), (146, 117), (146, 124), (146, 125), (147, 106), (147, 110), (147, 111), (147, 112), (147, 119), (147, 124), (147, 125), (148, 105), (148, 109), (148, 110), (148, 111), (148, 112), (148, 113), (148, 114), (148, 115), (148, 116), (148, 118), (148, 124), (148, 125), (149, 105), (149, 110), (149, 111), (149, 112), (149, 113), (149, 114), (149, 115), (149, 116), (149, 117), (149, 118), (149, 124), (149, 125), (150, 105), (150, 109), (150, 111), (150, 112), (150, 113), (150, 114), (150, 115), (150, 116), (150, 117), (150, 118), (150, 122), (150, 123), (150, 124), (150, 125), (151, 109), (151, 111), (151, 112), (151, 113), (151, 114), (151, 115), (151, 116), (151, 117), (151, 118), (151, 119), (151, 120), (151, 121), (151, 125), (152, 110), (152, 114), (152, 115), (152, 116), (152, 117), (152, 118), (152, 122), (152, 123), (152, 125), (153, 111), (153, 114), (153, 115), (153, 116), (153, 117), (153, 118), (153, 119), (153, 120), (153, 121), (153, 122), (153, 124), (154, 115), (154, 116), (154, 117), (154, 118), (154, 119), (154, 120), (154, 121), (154, 123), (155, 115), (155, 116), (155, 117), (155, 118), (155, 119), (155, 120), (155, 121), (155, 123), (156, 115), (156, 117), (156, 118), (156, 119), (156, 120), (156, 121), (156, 122), (156, 123), (156, 124), (157, 116), (157, 119), (157, 120), (157, 121), (157, 122), (157, 124), (158, 117), (158, 121), (158, 122), (158, 124), (159, 119), (159, 120), (159, 124), (160, 121), (160, 123))
coordinates_aed8_e6 = ((142, 130), (143, 128), (143, 129), (144, 127), (144, 129), (145, 127), (146, 127), (147, 127), (148, 128), (148, 129), (149, 128), (149, 130), (149, 131), (149, 132), (149, 134), (150, 128), (150, 133), (150, 135), (151, 127), (151, 134), (152, 127), (152, 128), (152, 134), (152, 136), (153, 127), (153, 129), (153, 134), (153, 136), (154, 130), (154, 134), (154, 137), (155, 127), (155, 129), (155, 131), (155, 134), (155, 136), (156, 133), (156, 134), (156, 136), (157, 131), (157, 134), (157, 137), (158, 132), (158, 135), (159, 132), (159, 134))
coordinates_af3060 = ((122, 132), (122, 134), (122, 137), (123, 131), (123, 135), (123, 139), (123, 140), (123, 141), (123, 143), (123, 147), (123, 150), (124, 131), (124, 134), (124, 136), (124, 145), (124, 146), (124, 151), (125, 131), (125, 135), (125, 142), (125, 143), (125, 149), (126, 131), (126, 134), (126, 137), (126, 140), (126, 143), (126, 144), (126, 147), (127, 131), (127, 135), (127, 136), (127, 146), (128, 143), (128, 145))
coordinates_a62_a2_a = ((135, 145), (136, 143), (136, 144), (137, 136), (137, 141), (138, 135), (138, 141), (138, 143), (139, 135), (139, 137), (139, 141), (139, 142), (140, 135), (140, 137), (140, 141), (141, 134), (141, 137), (141, 141), (142, 132), (142, 135), (142, 137), (142, 141), (143, 134), (143, 135), (143, 137), (143, 141), (144, 131), (144, 133), (144, 134), (144, 136), (144, 140), (144, 141), (145, 130), (145, 132), (145, 133), (145, 134), (145, 136), (145, 140), (145, 141), (146, 130), (146, 136), (146, 140), (146, 141), (147, 131), (147, 133), (147, 134), (147, 137), (147, 141), (148, 135), (148, 141), (149, 136), (149, 139), (149, 141), (150, 137), (150, 139), (150, 141), (151, 138), (151, 140), (152, 138), (152, 140), (153, 139), (153, 140))
coordinates_acff2_f = ((126, 152), (127, 149), (127, 151), (127, 152), (128, 148), (128, 152), (129, 146), (129, 149), (129, 151), (130, 144), (130, 146), (130, 150), (130, 151), (131, 143), (131, 145), (132, 142), (132, 145), (133, 142), (133, 145), (134, 141), (134, 143), (135, 140))
coordinates_ffdab9 = ((100, 104), (101, 103), (101, 105), (101, 106), (101, 107), (101, 109), (101, 127), (101, 128), (101, 129), (101, 131), (102, 103), (102, 110), (102, 119), (102, 120), (102, 125), (102, 132), (103, 103), (103, 105), (103, 106), (103, 107), (103, 108), (103, 109), (103, 111), (103, 115), (103, 117), (103, 118), (103, 121), (103, 128), (103, 129), (103, 130), (103, 131), (103, 133), (104, 103), (104, 105), (104, 106), (104, 107), (104, 108), (104, 109), (104, 110), (104, 111), (104, 119), (104, 121), (104, 125), (104, 127), (104, 128), (104, 129), (104, 130), (104, 131), (104, 133), (105, 103), (105, 105), (105, 106), (105, 107), (105, 108), (105, 109), (105, 110), (105, 113), (105, 116), (105, 117), (105, 118), (105, 119), (105, 121), (105, 128), (105, 129), (105, 133), (106, 101), (106, 103), (106, 104), (106, 105), (106, 106), (106, 107), (106, 108), (106, 109), (106, 110), (106, 111), (106, 114), (106, 117), (106, 118), (106, 119), (106, 122), (106, 128), (106, 131), (106, 133), (107, 100), (107, 103), (107, 104), (107, 105), (107, 106), (107, 107), (107, 108), (107, 110), (107, 116), (107, 118), (107, 119), (107, 121), (107, 128), (107, 129), (107, 133), (107, 134), (108, 100), (108, 102), (108, 103), (108, 104), (108, 105), (108, 106), (108, 107), (108, 108), (108, 110), (108, 117), (108, 120), (108, 128), (108, 133), (108, 134), (109, 99), (109, 101), (109, 102), (109, 103), (109, 104), (109, 105), (109, 106), (109, 107), (109, 109), (109, 118), (109, 119), (109, 134), (109, 135), (110, 99), (110, 101), (110, 102), (110, 103), (110, 104), (110, 105), (110, 109), (110, 135), (111, 98), (111, 100), (111, 101), (111, 102), (111, 103), (111, 106), (111, 107), (111, 136), (111, 138), (111, 140), (112, 98), (112, 100), (112, 101), (112, 102), (112, 104), (112, 137), (112, 141), (113, 98), (113, 100), (113, 101), (113, 103), (113, 140), (114, 98), (114, 100), (114, 102), (115, 98), (115, 102), (116, 98), (116, 100), (117, 98))
coordinates_da70_d6 = ((113, 113), (113, 115), (113, 121), (113, 124), (114, 112), (114, 116), (114, 119), (114, 120), (114, 125), (114, 128), (115, 106), (115, 108), (115, 113), (115, 114), (115, 115), (115, 117), (115, 118), (115, 121), (115, 122), (115, 123), (115, 124), (116, 105), (116, 110), (116, 112), (116, 113), (116, 114), (116, 115), (116, 116), (116, 121), (116, 122), (116, 123), (116, 124), (116, 125), (117, 101), (117, 103), (117, 104), (117, 107), (117, 108), (117, 111), (117, 112), (117, 116), (117, 122), (117, 123), (117, 124), (117, 125), (117, 126), (117, 128), (117, 132), (117, 133), (118, 100), (118, 106), (118, 109), (118, 114), (118, 115), (118, 118), (118, 121), (118, 124), (118, 125), (118, 126), (118, 127), (118, 130), (118, 133), (119, 100), (119, 102), (119, 104), (119, 110), (119, 112), (119, 116), (119, 122), (119, 129), (119, 133), (120, 103), (120, 110), (120, 125), (120, 126), (120, 127), (120, 132))
coordinates_00_ced1 = ((87, 120), (87, 121), (88, 120), (88, 122), (89, 114), (89, 119), (89, 123), (90, 111), (90, 115), (90, 119), (90, 121), (90, 123), (91, 110), (91, 113), (91, 115), (91, 119), (91, 121), (91, 122), (91, 124), (92, 109), (92, 111), (92, 112), (92, 113), (92, 115), (92, 119), (92, 121), (92, 122), (92, 124), (93, 108), (93, 111), (93, 112), (93, 113), (93, 115), (93, 119), (93, 121), (93, 122), (93, 123), (93, 125), (94, 109), (94, 110), (94, 111), (94, 112), (94, 113), (94, 114), (94, 116), (94, 119), (94, 120), (94, 121), (94, 122), (94, 123), (94, 125), (95, 111), (95, 113), (95, 114), (95, 115), (95, 117), (95, 118), (95, 119), (95, 120), (95, 121), (95, 122), (95, 123), (95, 125), (96, 111), (96, 113), (96, 114), (96, 115), (96, 116), (96, 119), (96, 120), (96, 121), (96, 122), (96, 123), (96, 124), (96, 126), (97, 110), (97, 112), (97, 113), (97, 114), (97, 115), (97, 116), (97, 117), (97, 118), (97, 119), (97, 120), (97, 121), (97, 122), (97, 123), (97, 124), (97, 126), (98, 110), (98, 112), (98, 113), (98, 114), (98, 115), (98, 116), (98, 117), (98, 118), (98, 119), (98, 120), (98, 121), (98, 122), (98, 123), (98, 124), (98, 125), (98, 127), (99, 109), (99, 112), (99, 113), (99, 114), (99, 115), (99, 116), (99, 117), (99, 127), (100, 110), (100, 118), (100, 119), (100, 120), (100, 121), (100, 122), (100, 123), (100, 124), (100, 125), (101, 112), (101, 114), (101, 115), (101, 116))
coordinates_a120_f0 = ((122, 124), (122, 127), (122, 128), (123, 124), (123, 126), (123, 129), (124, 124), (124, 127), (124, 129), (125, 124), (125, 126), (125, 129), (126, 124), (126, 127), (126, 129), (127, 124), (127, 129), (128, 124), (128, 125), (129, 124), (129, 125), (130, 124))
coordinates_a52_a2_a = ((87, 130), (87, 132), (87, 133), (87, 135), (88, 129), (88, 136), (89, 128), (89, 130), (89, 131), (89, 132), (89, 133), (89, 134), (89, 135), (89, 137), (90, 127), (90, 129), (90, 130), (90, 131), (90, 132), (90, 133), (90, 134), (90, 135), (90, 136), (90, 138), (91, 128), (91, 129), (91, 130), (91, 131), (91, 132), (91, 133), (91, 134), (91, 135), (91, 136), (91, 138), (92, 127), (92, 129), (92, 130), (92, 131), (92, 132), (92, 133), (92, 134), (92, 135), (92, 136), (92, 138), (93, 127), (93, 129), (93, 130), (93, 131), (93, 132), (93, 135), (93, 136), (93, 137), (93, 138), (93, 139), (94, 127), (94, 129), (94, 130), (94, 131), (94, 134), (94, 136), (94, 137), (94, 139), (95, 128), (95, 130), (95, 132), (95, 139), (96, 128), (96, 131), (96, 136), (96, 139), (97, 129), (97, 131), (98, 129), (98, 131), (99, 129), (99, 130))
coordinates_adff2_f = ((98, 136), (98, 139), (99, 132), (99, 137), (99, 139), (100, 133), (100, 134), (100, 137), (100, 139), (101, 134), (101, 136), (101, 137), (101, 138), (101, 140), (102, 135), (102, 137), (102, 138), (102, 139), (102, 141), (103, 135), (103, 137), (103, 143), (104, 135), (104, 137), (104, 138), (104, 139), (104, 140), (104, 141), (104, 143), (105, 135), (105, 137), (105, 141), (105, 143), (106, 136), (106, 137), (106, 141), (106, 144), (107, 136), (107, 140), (107, 141), (107, 142), (107, 144), (108, 137), (108, 141), (108, 142), (108, 144), (109, 138), (109, 140), (109, 143), (109, 145), (110, 141), (110, 143), (110, 144), (110, 146), (111, 142), (111, 144), (111, 145), (111, 147), (112, 143), (112, 145), (112, 148), (113, 144), (113, 146), (113, 147), (113, 149), (114, 144), (114, 150), (115, 146), (115, 148), (115, 150))
coordinates_a020_f0 = ((114, 134), (115, 134), (116, 135), (116, 138), (117, 135), (117, 138), (118, 135), (118, 138), (119, 137), (119, 138), (120, 137), (120, 138))
coordinates_b03060 = ((115, 140), (116, 140), (116, 142), (116, 144), (117, 140), (117, 145), (117, 146), (117, 147), (117, 148), (117, 150), (118, 140), (118, 142), (118, 143), (118, 144), (118, 150), (119, 140), (119, 149), (120, 140), (120, 142), (120, 143), (120, 146), (120, 147), (120, 149), (121, 140), (121, 143))
coordinates_acd8_e6 = ((85, 126), (86, 125), (86, 126), (86, 129), (87, 125), (88, 125), (89, 125)) |
async def test_on_open(monkeypatch, async_junos_driver):
_input_counter = 0
async def _get_prompt(cls):
return "scrapli>"
async def _send_input(cls, channel_input, **kwargs):
nonlocal _input_counter
if _input_counter == 0:
assert channel_input == "set cli screen-length 0"
elif _input_counter == 1:
assert channel_input == "set cli screen-width 511"
else:
assert channel_input == "set cli complete-on-space off"
_input_counter += 1
return b"", b""
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.get_prompt", _get_prompt)
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.send_input", _send_input)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels["exec"]
await async_junos_driver.on_open(async_junos_driver)
async def test_on_close(monkeypatch, async_junos_driver):
async def _get_prompt(cls):
return "scrapli>"
def _write(cls, channel_input, **kwargs):
assert channel_input == "exit"
def _send_return(cls):
pass
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.get_prompt", _get_prompt)
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.write", _write)
monkeypatch.setattr("scrapli.channel.async_channel.AsyncChannel.send_return", _send_return)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels["exec"]
await async_junos_driver.on_close(async_junos_driver)
| async def test_on_open(monkeypatch, async_junos_driver):
_input_counter = 0
async def _get_prompt(cls):
return 'scrapli>'
async def _send_input(cls, channel_input, **kwargs):
nonlocal _input_counter
if _input_counter == 0:
assert channel_input == 'set cli screen-length 0'
elif _input_counter == 1:
assert channel_input == 'set cli screen-width 511'
else:
assert channel_input == 'set cli complete-on-space off'
_input_counter += 1
return (b'', b'')
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.get_prompt', _get_prompt)
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.send_input', _send_input)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels['exec']
await async_junos_driver.on_open(async_junos_driver)
async def test_on_close(monkeypatch, async_junos_driver):
async def _get_prompt(cls):
return 'scrapli>'
def _write(cls, channel_input, **kwargs):
assert channel_input == 'exit'
def _send_return(cls):
pass
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.get_prompt', _get_prompt)
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.write', _write)
monkeypatch.setattr('scrapli.channel.async_channel.AsyncChannel.send_return', _send_return)
async_junos_driver._current_priv_level = async_junos_driver.privilege_levels['exec']
await async_junos_driver.on_close(async_junos_driver) |
# -----------------------------------------------------------
# Information of the atomic_mass from:
# https://en.wikipedia.org/wiki/Periodic_table
# -----------------------------------------------------------
class Element:
def __init__(self, number=None, mass=None, symbol=None):
self.number = int(number) if number != None else None
self.mass = float(mass) if mass != None else None
self.symbol = str(symbol) if symbol != None else None
element = {
"H": Element(1, 1.008, "H"),
"He": Element(2, 4.002602, "He"),
"Li": Element(3, 6.94, "Li"),
"Be": Element(4, 9.012183, "Be"),
"B": Element(5, 10.81, "B"),
"C": Element(6, 12.011, "C"),
"N": Element(7, 14.007, "N"),
"O": Element(8, 15.999, "O"),
"F": Element(9, 18.99840316, "F"),
"Ne": Element(10, 20.1797, "Ne"),
"Na": Element(11, 22.98976928, "Na"),
"Mg": Element(12, 24.305, "Mg"),
"Al": Element(13, 26.9815384, "Al"),
"Si": Element(14, 28.085, "Si"),
"P": Element(15, 30.973761998, "P"),
"S": Element(16, 32.06, "S"),
"Cl": Element(17, 35.45, "Cl"),
"Ar": Element(18, 39.95, "Ar"),
"K": Element(19, 39.0983, "K"),
"Ca": Element(20, 40.078, "Ca"),
"Sc": Element(21, 44.955908, "Sc"),
"Ti": Element(22, 47.867, "Ti"),
"V": Element(23, 50.9415, "V"),
"Cr": Element(24, 51.9961, "Cr"),
"Mn": Element(25, 54.938043, "Mn"),
"Fe": Element(26, 55.845, "Fe"),
"Co": Element(27, 58.933154, "Co"),
"Ni": Element(28, 58.6934, "Ni"),
"Cu": Element(29, 63.546, "Cu"),
"Zn": Element(30, 65.38, "Zn"),
"Ga": Element(31, 69.723, "Ga"),
"Ge": Element(32, 72.630, "Ge"),
"As": Element(33, 74.921595, "As"),
"Se": Element(34, 78.971, "Se"),
"Br": Element(35, 79.904, "Br"),
"Kr": Element(36, 83.798, "Kr"),
"Rb": Element(37, 85.4678, "Rb"),
"Sr": Element(38, 87.62, "Sr"),
"Y": Element(39, 88.90584, "Y"),
"Zr": Element(40, 91.224, "Zr"),
"Nb": Element(41, 92.90637, "Nb"),
"Mo": Element(42, 95.95, "Mo"),
"Tc": Element(43, 97.0, "Tc"), # mass number
"Ru": Element(44, 101.07, "Ru"),
"Rh": Element(45, 102.90549, "Rh"),
"Pd": Element(46, 106.42, "Pd"),
"Ag": Element(47, 107.8682, "Ag"),
"Cd": Element(48, 112.414, "Cd"),
"In": Element(49, 114.818, "In"),
"Sn": Element(50, 118.710, "Sn"),
"Sb": Element(51, 121.760, "Sb"),
"Te": Element(52, 127.60, "Te"),
"I": Element(53, 126.90447, "I"),
"Xe": Element(54, 131.293, "Xe"),
"Cs": Element(55, 132.90545196, "Cs"),
"Ba": Element(56, 137.327, "Ba"),
"La": Element(57, 138.90547, "La"),
"Ce": Element(58, 140.116, "Ce"),
"Pr": Element(59, 140.90766, "Pr"),
"Nd": Element(60, 144.242, "Nd"),
"Pm": Element(61, 145.0, "Pm"), # mass number
"Sm": Element(62, 150.36, "Sm"),
"Eu": Element(63, 151.964, "Eu"),
"Gd": Element(64, 157.25, "Gd"),
"Tb": Element(65, 158.925354, "Tb"),
"Dy": Element(66, 162.500, "Dy"),
"Ho": Element(67, 164.930328, "Ho"),
"Er": Element(68, 167.259, "Er"),
"Tm": Element(69, 168.934218, "Tm"),
"Yb": Element(70, 173.045, "Yb"),
"Lu": Element(71, 174.9668, "Lu"),
"Hf": Element(72, 178.49, "Hf"),
"Ta": Element(73, 180.94788, "Ta"),
"W": Element(74, 183.84, "W"),
"Re": Element(75, 186.207, "Re"),
"Os": Element(76, 190.23, "Os"),
"Ir": Element(77, 192.217, "Os"),
"Pt": Element(78, 195.084, "Pt"),
"Au": Element(79, 196.966570, "Au"),
"Hg": Element(80, 200.592, "Hg"),
"Tl": Element(81, 204.38, "Tl"),
"Pb": Element(82, 207.2, "Pb"),
"Bi": Element(83, 208.98040, "Bi"),
"Po": Element(84, 209, "Po"), # mass number
"At": Element(85, 210, "At"), # mass number
"Rn": Element(86, 222, "Rn"), # mass number
"Fr": Element(87, 223, "Fr"), # mass number
"Ra": Element(88, 226, "Ra"), # mass number
"Ac": Element(89, 227, "Ac"), # mass number
"Th": Element(90, 232.0377, "Th"),
"Pa": Element(91, 231.03588, "Pa"),
"U": Element(92, 238.02891, "U"),
"Np": Element(93, 237, "Np"),
"Pu": Element(94, 244, "Pu"), # mass number
"Am": Element(95, 243, "Am"), # mass number
"Cm": Element(96, 247, "Cm"), # mass number
"Bk": Element(97, 247, "Bk"), # mass number
"Cf": Element(98, 251, "Cf"), # mass number
"Es": Element(99, 252, "Es"), # mass number
"Fm": Element(100, 257, "Fm"), # mass number
"Md": Element(101, 258, "Md"), # mass number
"No": Element(102, 259, "No"), # mass number
"Lr": Element(103, 266, "Lr"), # mass number
"Rf": Element(104, 267, "Rf"), # mass number
"Db": Element(105, 268, "Db"), # mass number
"Sg": Element(106, 269, "Sg"), # mass number
"Bh": Element(107, 270, "Bh"), # mass number, unconfirmed: 278
"Hs": Element(108, 269, "Hs"), # mass number
"Mt": Element(109, 278, "Mt"), # mass number, unconfirmed: 282
"Ds": Element(110, 281, "Ds"), # mass number
"Rg": Element(111, 282, "Rg"), # mass number, unconfirmed: 286
"Cn": Element(112, 285, "Cn"), # mass number
"Nh": Element(113, 286, "Nh"), # mass number
"Fl": Element(114, 289, "Fl"), # mass number, unconfirmed: 290
"Mc": Element(115, 290, "Mc"), # mass number
"Lv": Element(116, 293, "Lv"), # mass number
"Ts": Element(117, 294, "Ts"), # mass number
"Og": Element(118, 294, "Og"), # mass number, unconfirmed: 295
}
| class Element:
def __init__(self, number=None, mass=None, symbol=None):
self.number = int(number) if number != None else None
self.mass = float(mass) if mass != None else None
self.symbol = str(symbol) if symbol != None else None
element = {'H': element(1, 1.008, 'H'), 'He': element(2, 4.002602, 'He'), 'Li': element(3, 6.94, 'Li'), 'Be': element(4, 9.012183, 'Be'), 'B': element(5, 10.81, 'B'), 'C': element(6, 12.011, 'C'), 'N': element(7, 14.007, 'N'), 'O': element(8, 15.999, 'O'), 'F': element(9, 18.99840316, 'F'), 'Ne': element(10, 20.1797, 'Ne'), 'Na': element(11, 22.98976928, 'Na'), 'Mg': element(12, 24.305, 'Mg'), 'Al': element(13, 26.9815384, 'Al'), 'Si': element(14, 28.085, 'Si'), 'P': element(15, 30.973761998, 'P'), 'S': element(16, 32.06, 'S'), 'Cl': element(17, 35.45, 'Cl'), 'Ar': element(18, 39.95, 'Ar'), 'K': element(19, 39.0983, 'K'), 'Ca': element(20, 40.078, 'Ca'), 'Sc': element(21, 44.955908, 'Sc'), 'Ti': element(22, 47.867, 'Ti'), 'V': element(23, 50.9415, 'V'), 'Cr': element(24, 51.9961, 'Cr'), 'Mn': element(25, 54.938043, 'Mn'), 'Fe': element(26, 55.845, 'Fe'), 'Co': element(27, 58.933154, 'Co'), 'Ni': element(28, 58.6934, 'Ni'), 'Cu': element(29, 63.546, 'Cu'), 'Zn': element(30, 65.38, 'Zn'), 'Ga': element(31, 69.723, 'Ga'), 'Ge': element(32, 72.63, 'Ge'), 'As': element(33, 74.921595, 'As'), 'Se': element(34, 78.971, 'Se'), 'Br': element(35, 79.904, 'Br'), 'Kr': element(36, 83.798, 'Kr'), 'Rb': element(37, 85.4678, 'Rb'), 'Sr': element(38, 87.62, 'Sr'), 'Y': element(39, 88.90584, 'Y'), 'Zr': element(40, 91.224, 'Zr'), 'Nb': element(41, 92.90637, 'Nb'), 'Mo': element(42, 95.95, 'Mo'), 'Tc': element(43, 97.0, 'Tc'), 'Ru': element(44, 101.07, 'Ru'), 'Rh': element(45, 102.90549, 'Rh'), 'Pd': element(46, 106.42, 'Pd'), 'Ag': element(47, 107.8682, 'Ag'), 'Cd': element(48, 112.414, 'Cd'), 'In': element(49, 114.818, 'In'), 'Sn': element(50, 118.71, 'Sn'), 'Sb': element(51, 121.76, 'Sb'), 'Te': element(52, 127.6, 'Te'), 'I': element(53, 126.90447, 'I'), 'Xe': element(54, 131.293, 'Xe'), 'Cs': element(55, 132.90545196, 'Cs'), 'Ba': element(56, 137.327, 'Ba'), 'La': element(57, 138.90547, 'La'), 'Ce': element(58, 140.116, 'Ce'), 'Pr': element(59, 140.90766, 'Pr'), 'Nd': element(60, 144.242, 'Nd'), 'Pm': element(61, 145.0, 'Pm'), 'Sm': element(62, 150.36, 'Sm'), 'Eu': element(63, 151.964, 'Eu'), 'Gd': element(64, 157.25, 'Gd'), 'Tb': element(65, 158.925354, 'Tb'), 'Dy': element(66, 162.5, 'Dy'), 'Ho': element(67, 164.930328, 'Ho'), 'Er': element(68, 167.259, 'Er'), 'Tm': element(69, 168.934218, 'Tm'), 'Yb': element(70, 173.045, 'Yb'), 'Lu': element(71, 174.9668, 'Lu'), 'Hf': element(72, 178.49, 'Hf'), 'Ta': element(73, 180.94788, 'Ta'), 'W': element(74, 183.84, 'W'), 'Re': element(75, 186.207, 'Re'), 'Os': element(76, 190.23, 'Os'), 'Ir': element(77, 192.217, 'Os'), 'Pt': element(78, 195.084, 'Pt'), 'Au': element(79, 196.96657, 'Au'), 'Hg': element(80, 200.592, 'Hg'), 'Tl': element(81, 204.38, 'Tl'), 'Pb': element(82, 207.2, 'Pb'), 'Bi': element(83, 208.9804, 'Bi'), 'Po': element(84, 209, 'Po'), 'At': element(85, 210, 'At'), 'Rn': element(86, 222, 'Rn'), 'Fr': element(87, 223, 'Fr'), 'Ra': element(88, 226, 'Ra'), 'Ac': element(89, 227, 'Ac'), 'Th': element(90, 232.0377, 'Th'), 'Pa': element(91, 231.03588, 'Pa'), 'U': element(92, 238.02891, 'U'), 'Np': element(93, 237, 'Np'), 'Pu': element(94, 244, 'Pu'), 'Am': element(95, 243, 'Am'), 'Cm': element(96, 247, 'Cm'), 'Bk': element(97, 247, 'Bk'), 'Cf': element(98, 251, 'Cf'), 'Es': element(99, 252, 'Es'), 'Fm': element(100, 257, 'Fm'), 'Md': element(101, 258, 'Md'), 'No': element(102, 259, 'No'), 'Lr': element(103, 266, 'Lr'), 'Rf': element(104, 267, 'Rf'), 'Db': element(105, 268, 'Db'), 'Sg': element(106, 269, 'Sg'), 'Bh': element(107, 270, 'Bh'), 'Hs': element(108, 269, 'Hs'), 'Mt': element(109, 278, 'Mt'), 'Ds': element(110, 281, 'Ds'), 'Rg': element(111, 282, 'Rg'), 'Cn': element(112, 285, 'Cn'), 'Nh': element(113, 286, 'Nh'), 'Fl': element(114, 289, 'Fl'), 'Mc': element(115, 290, 'Mc'), 'Lv': element(116, 293, 'Lv'), 'Ts': element(117, 294, 'Ts'), 'Og': element(118, 294, 'Og')} |
# Python program for Memoized version of nth Fibonacci number
# Function to calculate nth Fibonacci number
def fib(n, lookup):
# Base case
if n == 0 or n == 1 :
lookup[n] = n
# If the value is not calculated previously then calculate it
if lookup[n] is None:
lookup[n] = fib(n-1 , lookup) + fib(n-2 , lookup)
# return the value corresponding to that value of n
return lookup[n]
# end of function
if __name__=="__main__":
n = int(input())
# Declaration of lookup table
# Handles till n = 100
lookup = [None]*(101)
print("Fibonacci Number is ", fib(n, lookup))
# This code is contributed by Nikhil Kumar Singh(nickzuck_007) | def fib(n, lookup):
if n == 0 or n == 1:
lookup[n] = n
if lookup[n] is None:
lookup[n] = fib(n - 1, lookup) + fib(n - 2, lookup)
return lookup[n]
if __name__ == '__main__':
n = int(input())
lookup = [None] * 101
print('Fibonacci Number is ', fib(n, lookup)) |
# Create a list of odd numbers between 1 and n (including 1)
n = int(input("n: "))
odds = []
for i in range(1, n + 1):
if (i % 2) == True:
odds.append(i)
print(odds) | n = int(input('n: '))
odds = []
for i in range(1, n + 1):
if i % 2 == True:
odds.append(i)
print(odds) |
class UnknownTypeNameException(Exception):
"""
Exception for when a type is specified by name and no translation
for that name exists.
"""
def __init__(self, type_name: str):
super().__init__(f"Unknown type-name '{type_name}'")
| class Unknowntypenameexception(Exception):
"""
Exception for when a type is specified by name and no translation
for that name exists.
"""
def __init__(self, type_name: str):
super().__init__(f"Unknown type-name '{type_name}'") |
"""variable constants used in the api"""
server_error = 'Internal server error'
bad_request = 'Bad request, kindly enter key pair values'
not_allowed = 'Method not allowed for this request'
not_found = 'not found'
msg_key = 'message'
status_200 = 200
status_201 = 201
status_409 = 409
status_405 = 405
status_400 = 400
status_404 = 404
status_500 = 500
post_method = 'POST'
get_method = 'GET'
delete_method = 'DELETE'
patch_method = 'PATCH'
status_key = 'status'
data_key = 'data'
error_key = 'error'
name_key = 'name'
id_key = 'id'
type_key = 'type'
too_short_str = 'too short'
ok_str = 'OK'
ver_1_url_prefix = '/api/v1'
ver_2_url_prefix = '/api/v2'
| """variable constants used in the api"""
server_error = 'Internal server error'
bad_request = 'Bad request, kindly enter key pair values'
not_allowed = 'Method not allowed for this request'
not_found = 'not found'
msg_key = 'message'
status_200 = 200
status_201 = 201
status_409 = 409
status_405 = 405
status_400 = 400
status_404 = 404
status_500 = 500
post_method = 'POST'
get_method = 'GET'
delete_method = 'DELETE'
patch_method = 'PATCH'
status_key = 'status'
data_key = 'data'
error_key = 'error'
name_key = 'name'
id_key = 'id'
type_key = 'type'
too_short_str = 'too short'
ok_str = 'OK'
ver_1_url_prefix = '/api/v1'
ver_2_url_prefix = '/api/v2' |
# Copyright 2020 Uber Technologies, 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.
# ==============================================================================
SPARK_CONF_MAX_INT = '2147483647'
SPARK_CONF_MAX_INT_MINUS_ONE = '2147483646'
# required for elastic fault-tolerance and auto-scale
# Horovod has retry counters and limits, no need to limit Spark's retries
SPARK_CONF_ALWAYS_RESTART_FAILED_TASK = ('spark.task.maxFailures', SPARK_CONF_MAX_INT)
# executor and node retry counters (Spark blacklist)
# see https://spark.apache.org/docs/latest/configuration.html#scheduling
SPARK_CONF_BLACKLIST_DISABLED = ('spark.blacklist.enabled', 'false')
SPARK_CONF_BLACKLIST_ENABLED = ('spark.blacklist.enabled', 'true')
# executors where any task fails due to exceptions can potentially be reused for any other task,
# including the task itself, unless SPARK_CONF_DONT_REUSE_EXECUTOR_FOR_SAME_TASK is set
# executors lost e.g. due to node failure can't be reused in any way
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_FAILED_EXECUTOR = ('spark.blacklist.stage.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
SPARK_CONF_DONT_REUSE_FAILED_EXECUTOR = ('spark.blacklist.stage.maxFailedTasksPerExecutor', '1')
# nodes with failed executors may have other executors that can still be used
# requires SPARK_CONF_BLACKLIST_ENABLED
# SPARK_CONF_REUSE_FAILING_NODE requires SPARK_CONF_REUSE_FAILED_EXECUTOR
SPARK_CONF_REUSE_FAILING_NODE = ('spark.blacklist.stage.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
SPARK_CONF_DONT_REUSE_FAILING_NODE = ('spark.blacklist.stage.maxFailedExecutorsPerNode', '1')
# executors where tasks fail due to exceptions can potentially be reused for the same task
# executors lost e.g. due to node failure can't be reused in any way
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_EXECUTOR_ALWAYS_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', SPARK_CONF_MAX_INT)
SPARK_CONF_REUSE_EXECUTOR_ONCE_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '2')
SPARK_CONF_DONT_REUSE_EXECUTOR_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '1')
# nodes (with multiple executors) where tasks fail due to exceptions can potentially be reused for the same task
# nodes lost e.g. due to node failure can't be reused in any way
# requires SPARK_CONF_BLACKLIST_ENABLED
# ? SPARK_CONF_REUSE_NODE_ALWAYS_FOR_SAME_TASK requires SPARK_CONF_REUSE_EXECUTOR_ALWAYS_FOR_SAME_TASK
SPARK_CONF_REUSE_NODE_ALWAYS_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
SPARK_CONF_REUSE_NODE_ONCE_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerNode', '2')
SPARK_CONF_DONT_REUSE_NODE_FOR_SAME_TASK = ('spark.blacklist.task.maxTaskAttemptsPerNode', '1')
# executors where any task fails due to exceptions can potentially be reused for any other task,
# including the task itself, unless SPARK_CONF_DONT_REUSE_EXECUTOR_FOR_SAME_TASK is set
# executors lost e.g. due to node failure can't be reused in any way
# NOTE: in dynamic allocation, only executors blacklisted for the entire app
# can get reclaimed by the cluster manager
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_FAILED_EXECUTOR_IN_APP = ('spark.blacklist.application.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
SPARK_CONF_DONT_REUSE_FAILED_EXECUTOR_IN_APP = ('spark.blacklist.application.maxFailedTasksPerExecutor', '1')
# nodes with failed executors may have other executors that can still be used across the app
# NOTE: in dynamic allocation, only executors blacklisted for the entire app
# can get reclaimed by the cluster manager
# requires SPARK_CONF_BLACKLIST_ENABLED
SPARK_CONF_REUSE_FAILING_NODE_IN_APP = ('spark.blacklist.application.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT)
SPARK_CONF_DONT_REUSE_FAILING_NODE_IN_APP = ('spark.blacklist.application.maxFailedExecutorsPerNode', '1')
# default values: https://spark.apache.org/docs/latest/configuration.html
SPARK_CONF_DEFAULT_VALUES = {
'spark.task.maxFailures': '4',
'spark.blacklist.enabled': 'false',
'spark.blacklist.stage.maxFailedTasksPerExecutor': '2',
'spark.blacklist.stage.maxFailedExecutorsPerNode': '2',
'spark.blacklist.task.maxTaskAttemptsPerExecutor': '1',
'spark.blacklist.task.maxTaskAttemptsPerNode': '2',
'spark.blacklist.application.maxFailedTasksPerExecutor': '2',
'spark.blacklist.application.maxFailedExecutorsPerNode': '2'
}
| spark_conf_max_int = '2147483647'
spark_conf_max_int_minus_one = '2147483646'
spark_conf_always_restart_failed_task = ('spark.task.maxFailures', SPARK_CONF_MAX_INT)
spark_conf_blacklist_disabled = ('spark.blacklist.enabled', 'false')
spark_conf_blacklist_enabled = ('spark.blacklist.enabled', 'true')
spark_conf_reuse_failed_executor = ('spark.blacklist.stage.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
spark_conf_dont_reuse_failed_executor = ('spark.blacklist.stage.maxFailedTasksPerExecutor', '1')
spark_conf_reuse_failing_node = ('spark.blacklist.stage.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
spark_conf_dont_reuse_failing_node = ('spark.blacklist.stage.maxFailedExecutorsPerNode', '1')
spark_conf_reuse_executor_always_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', SPARK_CONF_MAX_INT)
spark_conf_reuse_executor_once_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '2')
spark_conf_dont_reuse_executor_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerExecutor', '1')
spark_conf_reuse_node_always_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerNode', SPARK_CONF_MAX_INT_MINUS_ONE)
spark_conf_reuse_node_once_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerNode', '2')
spark_conf_dont_reuse_node_for_same_task = ('spark.blacklist.task.maxTaskAttemptsPerNode', '1')
spark_conf_reuse_failed_executor_in_app = ('spark.blacklist.application.maxFailedTasksPerExecutor', SPARK_CONF_MAX_INT)
spark_conf_dont_reuse_failed_executor_in_app = ('spark.blacklist.application.maxFailedTasksPerExecutor', '1')
spark_conf_reuse_failing_node_in_app = ('spark.blacklist.application.maxFailedExecutorsPerNode', SPARK_CONF_MAX_INT)
spark_conf_dont_reuse_failing_node_in_app = ('spark.blacklist.application.maxFailedExecutorsPerNode', '1')
spark_conf_default_values = {'spark.task.maxFailures': '4', 'spark.blacklist.enabled': 'false', 'spark.blacklist.stage.maxFailedTasksPerExecutor': '2', 'spark.blacklist.stage.maxFailedExecutorsPerNode': '2', 'spark.blacklist.task.maxTaskAttemptsPerExecutor': '1', 'spark.blacklist.task.maxTaskAttemptsPerNode': '2', 'spark.blacklist.application.maxFailedTasksPerExecutor': '2', 'spark.blacklist.application.maxFailedExecutorsPerNode': '2'} |
#
# PySNMP MIB module CPQHSV110V3-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CPQHSV110V3-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 18:11:47 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
iso, Unsigned32, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, IpAddress, MibIdentifier, ObjectIdentity, Bits, ModuleIdentity, Counter32, NotificationType, Integer32, Counter64, TimeTicks, enterprises = mibBuilder.importSymbols("SNMPv2-SMI", "iso", "Unsigned32", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "IpAddress", "MibIdentifier", "ObjectIdentity", "Bits", "ModuleIdentity", "Counter32", "NotificationType", "Integer32", "Counter64", "TimeTicks", "enterprises")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
compaq = MibIdentifier((1, 3, 6, 1, 4, 1, 232))
cpqElementManager = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136))
cpqHSV = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1))
cpqHSVAgent = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 1))
cpqHSVServer = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 2))
hsvObject = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3))
maHSVMibRev = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 4))
scell = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1))
agent = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 2))
host = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3))
nsc = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4))
shelf = MibIdentifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8))
agManufacturer = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agManufacturer.setStatus('mandatory')
agMajVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agMajVersion.setStatus('mandatory')
agMinVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agMinVersion.setStatus('mandatory')
agHostName = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agHostName.setStatus('mandatory')
agEnterprise = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 5), ObjectIdentifier()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agEnterprise.setStatus('mandatory')
agDescription = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agDescription.setStatus('mandatory')
agStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7), )
if mibBuilder.loadTexts: agStatusTable.setStatus('mandatory')
agentEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "agentEntryIndex"))
if mibBuilder.loadTexts: agentEntry.setStatus('mandatory')
agentEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEntryIndex.setStatus('mandatory')
agentStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("ok", 2), ("degraded", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentStatus.setStatus('mandatory')
agentEventCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventCode.setStatus('mandatory')
agentEventLevel = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventLevel.setStatus('mandatory')
agentEventTimeDate = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventTimeDate.setStatus('mandatory')
agentEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: agentEventDescription.setStatus('mandatory')
srvCPU = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 1), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvCPU.setStatus('mandatory')
srvComputerType = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvComputerType.setStatus('mandatory')
srvModel = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvModel.setStatus('mandatory')
srvSubModel = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvSubModel.setStatus('mandatory')
srvBiosVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvBiosVersion.setStatus('mandatory')
srvOS = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOS.setStatus('mandatory')
srvOSMajVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOSMajVersion.setStatus('mandatory')
srvOSMinVersion = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: srvOSMinVersion.setStatus('mandatory')
maHSVMibRevMajor = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: maHSVMibRevMajor.setStatus('mandatory')
maHSVMibRevMinor = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: maHSVMibRevMinor.setStatus('mandatory')
scellTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellTotal.setStatus('mandatory')
scellStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2), )
if mibBuilder.loadTexts: scellStatusTable.setStatus('mandatory')
scellEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "scellEntryIndex"))
if mibBuilder.loadTexts: scellEntry.setStatus('mandatory')
scellEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEntryIndex.setStatus('mandatory')
scellName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellName.setStatus('mandatory')
scellUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellUUID.setStatus('mandatory')
scellStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("informational", 1), ("minor", 2), ("major", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellStatus.setStatus('mandatory')
scellEventDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventDescription.setStatus('mandatory')
scellEventTimeDate = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventTimeDate.setStatus('mandatory')
scellEventCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEventCode.setStatus('mandatory')
scellSWComponent = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellSWComponent.setStatus('mandatory')
scellECode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellECode.setStatus('mandatory')
scellCAC = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellCAC.setStatus('mandatory')
scellEIP = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellEIP.setStatus('mandatory')
scellNameDateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 12), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: scellNameDateTime.setStatus('mandatory')
hostTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostTotal.setStatus('mandatory')
hostStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2), )
if mibBuilder.loadTexts: hostStatusTable.setStatus('mandatory')
hostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "hostEntryIndex"))
if mibBuilder.loadTexts: hostEntry.setStatus('mandatory')
hostEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostEntryIndex.setStatus('mandatory')
hostName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostName.setStatus('mandatory')
hostUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostUUID.setStatus('mandatory')
hostStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("informational", 0), ("minor", 1), ("major", 2), ("critical", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hostStatus.setStatus('mandatory')
nscTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscTotal.setStatus('mandatory')
nscStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2), )
if mibBuilder.loadTexts: nscStatusTable.setStatus('mandatory')
nscEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "nscEntryIndex"))
if mibBuilder.loadTexts: nscEntry.setStatus('mandatory')
nscEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscEntryIndex.setStatus('mandatory')
nscName = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscName.setStatus('mandatory')
nscUUID = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscUUID.setStatus('mandatory')
nscStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("informational", 0), ("minor", 1), ("major", 2), ("critical", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nscStatus.setStatus('mandatory')
shelfTotal = MibScalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfTotal.setStatus('mandatory')
shelfStatusTable = MibTable((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2), )
if mibBuilder.loadTexts: shelfStatusTable.setStatus('mandatory')
shelfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1), ).setIndexNames((0, "CPQHSV110V3-MIB", "shelfEntryIndex"))
if mibBuilder.loadTexts: shelfEntry.setStatus('mandatory')
shelfEntryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfEntryIndex.setStatus('mandatory')
shelfStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("other", 1), ("ok", 2), ("degraded", 3), ("failed", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfStatus.setStatus('mandatory')
shelfId = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfId.setStatus('mandatory')
shelfElementType = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfElementType.setStatus('mandatory')
shelfElementNum = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfElementNum.setStatus('mandatory')
shelfErrorCode = MibTableColumn((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfErrorCode.setStatus('mandatory')
emuEventTrapInformative = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
emuEventTrapNoncritical = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
emuEventTrapCritical = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
emuEventTrapUnrecoverable = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "shelfId"), ("CPQHSV110V3-MIB", "shelfElementType"), ("CPQHSV110V3-MIB", "shelfElementNum"), ("CPQHSV110V3-MIB", "shelfErrorCode"))
sCellEventTrap_1_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600256)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_1_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600257)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600768)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600769)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600770)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600771)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600772)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600773)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600774)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600775)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_3_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13600776)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601024)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601025)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601026)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601027)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601028)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601029)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601030)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601031)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601032)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601033)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601034)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601035)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601036)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601037)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601038)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601039)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601040)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_4_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601041)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601536)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601537)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601538)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601539)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601540)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601541)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601543)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601544)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601545)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601546)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601547)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601548)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601549)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601550)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601551)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601552)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601554)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601555)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601556)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601557)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601558)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601560)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601561)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601562)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601563)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601564)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601565)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601566)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601567)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601568)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601569)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601571)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601572)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601573)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601574)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601575)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601576)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601577)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601578)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601579)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601580)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601581)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_2e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601582)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601584)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601585)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601586)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601587)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601588)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601589)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601590)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601591)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601592)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601593)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601594)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601595)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601596)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601597)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_6_3e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601598)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601792)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601793)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601794)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601795)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601796)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601797)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601798)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601799)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_7_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13601800)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602305)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602306)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602307)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602308)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602309)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602310)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602311)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602312)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602313)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602314)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602316)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602317)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602318)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602319)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602321)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602322)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602323)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602324)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602325)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602326)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602327)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602328)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602329)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602330)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602331)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602332)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602333)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602334)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_1f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602335)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602336)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602337)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602338)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602339)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602340)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602341)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602342)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602343)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602344)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602345)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602346)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602347)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602348)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602349)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602350)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_2f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602351)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602352)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602353)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602354)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602355)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602356)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602357)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602358)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602359)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602360)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602361)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602362)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602363)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602364)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602365)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602366)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_3f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602367)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602368)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602369)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602371)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_44 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602372)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_45 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602373)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_46 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602374)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602375)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_48 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602376)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_49 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602377)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_65 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602405)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_66 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602406)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_67 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602407)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_68 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602408)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_69 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602409)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602410)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602411)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602412)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602413)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_6e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602414)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_70 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602416)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602417)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602418)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_73 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602419)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_74 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602420)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_75 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602421)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_76 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602422)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_77 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602423)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_78 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602424)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_79 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602425)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_7a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602426)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_c8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602504)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_c9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602505)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_ca = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602506)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cb = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602507)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cc = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602508)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cd = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602509)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_ce = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602510)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_cf = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602511)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602512)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602513)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602514)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602515)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602516)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602517)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602518)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_9_d7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602519)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_b_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13602816)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603072)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603073)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603074)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603075)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603076)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603077)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603078)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603079)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603080)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603081)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_a = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603082)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603084)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603087)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603088)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603089)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603090)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_c_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603093)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603328)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603329)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603330)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603331)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603332)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603379)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603380)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603381)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603399)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_4b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603403)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_4c = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603404)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_5b = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603419)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_5f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603423)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_6f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603439)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603441)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603442)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_7e = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603454)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_7f = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603455)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_82 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603458)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_83 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603459)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_85 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603461)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_8d = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603469)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_a1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603489)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_b5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603509)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_d8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603544)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_d9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603545)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_dd = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603549)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_de = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603550)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_ec = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603564)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_d_f0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13603568)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616896)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616897)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616899)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616900)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_42_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13616901)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_0 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633536)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633537)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633538)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633539)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633540)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633541)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
sCellEventTrap_83_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,13633542)).setObjects(("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "scellSWComponent"), ("CPQHSV110V3-MIB", "scellECode"), ("CPQHSV110V3-MIB", "scellCAC"), ("CPQHSV110V3-MIB", "scellEIP"))
mngmtAgentTrap_1 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_7 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_19 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_22 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_23 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_28 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_29 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_30 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_31 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_32 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_33 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_34 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_35 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_36 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_37 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_38 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_39 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_40 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_41 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_42 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_43 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_44 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_45 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_46 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_47 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_48 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_49 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_50 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_51 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_52 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_53 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_54 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_55 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000055)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_56 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000056)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_57 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_58 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_59 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_60 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_61 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_62 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_63 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_64 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_65 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_66 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_67 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_68 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_69 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_70 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_71 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_72 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000072)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_73 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_74 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_75 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_76 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_77 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_78 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_79 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_80 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_81 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_82 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000082)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_83 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_84 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_85 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000085)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_86 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_87 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000087)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_88 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000088)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_89 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000089)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_90 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_91 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000091)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_92 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000092)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_93 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000093)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_94 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000094)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_95 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000095)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_96 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000096)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_97 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000097)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_98 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000098)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_99 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000099)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_100 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000100)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_101 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000101)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_102 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000102)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_103 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000103)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_104 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000104)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_105 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000105)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_106 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000106)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_107 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000107)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_108 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000108)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_109 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000109)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_110 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000110)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_111 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000111)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_112 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000112)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_113 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000113)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_114 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000114)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_115 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000115)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_116 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000116)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_117 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000117)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_118 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000118)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_119 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000119)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_120 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000120)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_121 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000121)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_122 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000122)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_123 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000123)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_124 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000124)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_125 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000125)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_126 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000126)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_127 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000127)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_128 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000128)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_129 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000129)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_130 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000130)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_131 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000131)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_132 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000132)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_133 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136000133)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1000 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001000)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_1014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136001014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2072 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002072)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2082 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002082)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2085 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002085)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2087 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002087)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2088 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002088)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2089 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002089)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002091)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002092)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2093 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002093)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002095)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2096 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002096)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2097 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002097)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2098 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002098)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2099 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002099)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2100 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002100)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2102 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002102)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_2103 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136002103)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3055 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003055)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3056 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003056)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3072 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003072)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3091 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003091)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3092 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003092)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3094 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003094)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_3095 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136003095)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4000 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004000)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_4059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136004059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_5019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136005019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_6038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136006038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8053 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008053)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8054 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008054)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8055 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008055)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8056 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008056)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8057 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008057)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8058 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008058)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8061 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008061)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8062 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008062)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8064 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008064)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8069 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008069)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8077 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008077)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8078 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008078)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8079 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008079)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8082 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008082)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8083 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008083)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8084 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008084)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8085 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008085)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8086 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008086)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8087 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008087)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8088 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008088)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8089 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008089)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_8090 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136008090)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_9036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136009036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_10044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136010044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_11004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136011004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_12008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136012008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_13020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136013020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_14017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136014017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_15009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136015009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_16040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136016040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_17017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136017017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18050 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018050)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18051 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018051)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18052 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018052)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18059 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018059)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18060 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018060)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18063 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018063)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18065 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018065)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18066 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018066)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18067 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018067)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18068 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018068)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18070 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018070)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18071 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018071)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18073 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018073)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18074 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018074)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18075 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018075)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18076 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018076)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18080 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018080)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_18081 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136018081)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_20023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136020023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_21019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136021019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_22001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136022001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_22002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136022002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_23002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136023002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_23003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136023003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_24004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136024004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_25019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136025019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_26016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136026016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27001 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027001)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27002 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027002)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27003 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027003)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27004 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027004)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27005 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027005)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27006 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027006)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27007 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027007)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27008 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027008)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27009 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027009)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27010 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027010)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27011 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027011)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27012 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027012)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27013 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027013)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27014 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027014)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27015 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027015)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27016 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027016)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27017 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027017)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27018 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027018)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27019 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027019)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27020 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027020)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27021 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027021)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27022 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027022)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27023 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027023)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27024 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027024)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27025 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027025)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27026 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027026)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27027 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027027)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27028 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027028)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27029 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027029)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27030 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027030)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27031 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027031)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27032 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027032)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27033 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027033)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27034 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027034)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27035 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027035)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27036 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027036)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27037 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027037)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27038 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027038)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27039 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027039)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27040 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027040)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27041 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027041)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27042 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027042)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27043 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027043)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27044 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027044)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27045 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027045)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27046 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027046)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27047 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027047)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27048 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027048)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mngmtAgentTrap_27049 = NotificationType((1, 3, 6, 1, 4, 1, 232) + (0,136027049)).setObjects(("CPQHSV110V3-MIB", "hostName"), ("CPQHSV110V3-MIB", "scellNameDateTime"), ("CPQHSV110V3-MIB", "agentEventCode"), ("CPQHSV110V3-MIB", "agentEventDescription"))
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_103=mngmtAgentTrap_103, mngmtAgentTrap_3021=mngmtAgentTrap_3021, mngmtAgentTrap_8001=mngmtAgentTrap_8001, sCellEventTrap_9_6=sCellEventTrap_9_6, scellEventDescription=scellEventDescription, mngmtAgentTrap_3072=mngmtAgentTrap_3072, sCellEventTrap_6_2c=sCellEventTrap_6_2c, mngmtAgentTrap_2072=mngmtAgentTrap_2072, mngmtAgentTrap_8078=mngmtAgentTrap_8078, mngmtAgentTrap_16001=mngmtAgentTrap_16001, mngmtAgentTrap_2008=mngmtAgentTrap_2008, mngmtAgentTrap_83=mngmtAgentTrap_83, sCellEventTrap_6_2d=sCellEventTrap_6_2d, sCellEventTrap_9_72=sCellEventTrap_9_72, mngmtAgentTrap_8044=mngmtAgentTrap_8044, mngmtAgentTrap_18038=mngmtAgentTrap_18038, sCellEventTrap_d_ec=sCellEventTrap_d_ec, mngmtAgentTrap_27020=mngmtAgentTrap_27020, mngmtAgentTrap_4000=mngmtAgentTrap_4000, mngmtAgentTrap_26009=mngmtAgentTrap_26009, mngmtAgentTrap_27042=mngmtAgentTrap_27042, mngmtAgentTrap_4050=mngmtAgentTrap_4050, mngmtAgentTrap_27046=mngmtAgentTrap_27046, mngmtAgentTrap_9027=mngmtAgentTrap_9027, mngmtAgentTrap_27048=mngmtAgentTrap_27048, mngmtAgentTrap_18025=mngmtAgentTrap_18025, mngmtAgentTrap_8013=mngmtAgentTrap_8013, mngmtAgentTrap_9035=mngmtAgentTrap_9035, mngmtAgentTrap_2007=mngmtAgentTrap_2007, mngmtAgentTrap_11003=mngmtAgentTrap_11003, mngmtAgentTrap_16037=mngmtAgentTrap_16037, mngmtAgentTrap_88=mngmtAgentTrap_88, mngmtAgentTrap_20019=mngmtAgentTrap_20019, mngmtAgentTrap_25005=mngmtAgentTrap_25005, sCellEventTrap_6_1e=sCellEventTrap_6_1e, sCellEventTrap_9_3f=sCellEventTrap_9_3f, maHSVMibRevMinor=maHSVMibRevMinor, mngmtAgentTrap_68=mngmtAgentTrap_68, sCellEventTrap_9_c=sCellEventTrap_9_c, mngmtAgentTrap_15=mngmtAgentTrap_15, sCellEventTrap_6_f=sCellEventTrap_6_f, mngmtAgentTrap_2079=mngmtAgentTrap_2079, mngmtAgentTrap_8030=mngmtAgentTrap_8030, mngmtAgentTrap_14017=mngmtAgentTrap_14017, mngmtAgentTrap_18048=mngmtAgentTrap_18048, sCellEventTrap_6_1=sCellEventTrap_6_1, mngmtAgentTrap_99=mngmtAgentTrap_99, mngmtAgentTrap_8054=mngmtAgentTrap_8054, mngmtAgentTrap_21009=mngmtAgentTrap_21009, mngmtAgentTrap_6016=mngmtAgentTrap_6016, mngmtAgentTrap_21014=mngmtAgentTrap_21014, mngmtAgentTrap_9025=mngmtAgentTrap_9025, mngmtAgentTrap_94=mngmtAgentTrap_94, mngmtAgentTrap_15007=mngmtAgentTrap_15007, sCellEventTrap_9_34=sCellEventTrap_9_34, mngmtAgentTrap_6023=mngmtAgentTrap_6023, sCellEventTrap_9_30=sCellEventTrap_9_30, mngmtAgentTrap_57=mngmtAgentTrap_57, sCellEventTrap_9_41=sCellEventTrap_9_41, mngmtAgentTrap_14005=mngmtAgentTrap_14005, sCellEventTrap_83_4=sCellEventTrap_83_4, mngmtAgentTrap_13017=mngmtAgentTrap_13017, sCellEventTrap_9_19=sCellEventTrap_9_19, mngmtAgentTrap_15002=mngmtAgentTrap_15002, nscName=nscName, mngmtAgentTrap_18005=mngmtAgentTrap_18005, mngmtAgentTrap_2033=mngmtAgentTrap_2033, agManufacturer=agManufacturer, mngmtAgentTrap_9013=mngmtAgentTrap_9013, mngmtAgentTrap_2010=mngmtAgentTrap_2010, sCellEventTrap_6_1a=sCellEventTrap_6_1a, mngmtAgentTrap_26007=mngmtAgentTrap_26007, mngmtAgentTrap_10031=mngmtAgentTrap_10031, mngmtAgentTrap_130=mngmtAgentTrap_130, mngmtAgentTrap_3044=mngmtAgentTrap_3044, mngmtAgentTrap_8064=mngmtAgentTrap_8064, mngmtAgentTrap_20011=mngmtAgentTrap_20011, sCellEventTrap_6_19=sCellEventTrap_6_19, mngmtAgentTrap_8071=mngmtAgentTrap_8071, agMajVersion=agMajVersion, sCellEventTrap_4_4=sCellEventTrap_4_4, mngmtAgentTrap_17012=mngmtAgentTrap_17012, mngmtAgentTrap_27018=mngmtAgentTrap_27018, emuEventTrapInformative=emuEventTrapInformative, scellEntry=scellEntry, sCellEventTrap_4_8=sCellEventTrap_4_8, mngmtAgentTrap_2092=mngmtAgentTrap_2092, mngmtAgentTrap_21007=mngmtAgentTrap_21007, mngmtAgentTrap_111=mngmtAgentTrap_111, sCellEventTrap_7_1=sCellEventTrap_7_1, sCellEventTrap_6_2a=sCellEventTrap_6_2a, sCellEventTrap_c_9=sCellEventTrap_c_9, srvModel=srvModel, mngmtAgentTrap_1010=mngmtAgentTrap_1010, mngmtAgentTrap_18=mngmtAgentTrap_18, mngmtAgentTrap_4042=mngmtAgentTrap_4042, mngmtAgentTrap_2081=mngmtAgentTrap_2081, hostName=hostName, mngmtAgentTrap_27006=mngmtAgentTrap_27006, mngmtAgentTrap_42=mngmtAgentTrap_42, mngmtAgentTrap_6036=mngmtAgentTrap_6036, mngmtAgentTrap_3067=mngmtAgentTrap_3067, mngmtAgentTrap_16012=mngmtAgentTrap_16012, sCellEventTrap_4_3=sCellEventTrap_4_3, mngmtAgentTrap_74=mngmtAgentTrap_74, mngmtAgentTrap_17002=mngmtAgentTrap_17002, mngmtAgentTrap_8052=mngmtAgentTrap_8052, mngmtAgentTrap_6028=mngmtAgentTrap_6028, mngmtAgentTrap_9021=mngmtAgentTrap_9021, sCellEventTrap_9_23=sCellEventTrap_9_23, mngmtAgentTrap_17=mngmtAgentTrap_17, mngmtAgentTrap_27028=mngmtAgentTrap_27028, mngmtAgentTrap_110=mngmtAgentTrap_110, mngmtAgentTrap_5011=mngmtAgentTrap_5011, sCellEventTrap_d_82=sCellEventTrap_d_82, sCellEventTrap_9_24=sCellEventTrap_9_24, mngmtAgentTrap_6018=mngmtAgentTrap_6018, mngmtAgentTrap_4034=mngmtAgentTrap_4034, sCellEventTrap_d_7e=sCellEventTrap_d_7e, sCellEventTrap_9_40=sCellEventTrap_9_40, mngmtAgentTrap_27=mngmtAgentTrap_27, mngmtAgentTrap_2021=mngmtAgentTrap_2021, sCellEventTrap_9_2f=sCellEventTrap_9_2f, mngmtAgentTrap_55=mngmtAgentTrap_55, sCellEventTrap_83_2=sCellEventTrap_83_2, mngmtAgentTrap_1008=mngmtAgentTrap_1008, mngmtAgentTrap_79=mngmtAgentTrap_79, mngmtAgentTrap_1011=mngmtAgentTrap_1011, mngmtAgentTrap_77=mngmtAgentTrap_77, sCellEventTrap_3_6=sCellEventTrap_3_6, mngmtAgentTrap_18002=mngmtAgentTrap_18002, mngmtAgentTrap_24004=mngmtAgentTrap_24004, sCellEventTrap_3_3=sCellEventTrap_3_3, mngmtAgentTrap_8050=mngmtAgentTrap_8050, agentEntry=agentEntry, mngmtAgentTrap_20005=mngmtAgentTrap_20005, mngmtAgentTrap_10010=mngmtAgentTrap_10010, sCellEventTrap_6_8=sCellEventTrap_6_8, mngmtAgentTrap_27047=mngmtAgentTrap_27047, sCellEventTrap_9_d7=sCellEventTrap_9_d7, mngmtAgentTrap_9002=mngmtAgentTrap_9002, mngmtAgentTrap_9020=mngmtAgentTrap_9020, mngmtAgentTrap_5018=mngmtAgentTrap_5018, sCellEventTrap_d_33=sCellEventTrap_d_33, mngmtAgentTrap_109=mngmtAgentTrap_109, mngmtAgentTrap_2042=mngmtAgentTrap_2042, mngmtAgentTrap_3062=mngmtAgentTrap_3062, mngmtAgentTrap_8021=mngmtAgentTrap_8021, mngmtAgentTrap_3012=mngmtAgentTrap_3012, mngmtAgentTrap_10035=mngmtAgentTrap_10035, mngmtAgentTrap_17005=mngmtAgentTrap_17005, mngmtAgentTrap_9032=mngmtAgentTrap_9032, mngmtAgentTrap_20023=mngmtAgentTrap_20023, mngmtAgentTrap_4005=mngmtAgentTrap_4005, mngmtAgentTrap_5019=mngmtAgentTrap_5019, mngmtAgentTrap_10038=mngmtAgentTrap_10038, sCellEventTrap_9_f=sCellEventTrap_9_f, mngmtAgentTrap_13020=mngmtAgentTrap_13020, mngmtAgentTrap_14007=mngmtAgentTrap_14007, mngmtAgentTrap_27031=mngmtAgentTrap_27031, mngmtAgentTrap_6=mngmtAgentTrap_6, mngmtAgentTrap_18070=mngmtAgentTrap_18070, agDescription=agDescription, sCellEventTrap_c_10=sCellEventTrap_c_10, mngmtAgentTrap_4036=mngmtAgentTrap_4036, mngmtAgentTrap_8058=mngmtAgentTrap_8058, mngmtAgentTrap_16008=mngmtAgentTrap_16008, mngmtAgentTrap_21016=mngmtAgentTrap_21016, mngmtAgentTrap_24002=mngmtAgentTrap_24002, sCellEventTrap_9_76=sCellEventTrap_9_76, mngmtAgentTrap_4014=mngmtAgentTrap_4014, mngmtAgentTrap_8084=mngmtAgentTrap_8084, sCellEventTrap_9_3c=sCellEventTrap_9_3c, mngmtAgentTrap_8046=mngmtAgentTrap_8046, mngmtAgentTrap_26016=mngmtAgentTrap_26016, mngmtAgentTrap_78=mngmtAgentTrap_78, sCellEventTrap_4_f=sCellEventTrap_4_f, sCellEventTrap_6_21=sCellEventTrap_6_21, mngmtAgentTrap_85=mngmtAgentTrap_85, mngmtAgentTrap_3079=mngmtAgentTrap_3079, mngmtAgentTrap_4017=mngmtAgentTrap_4017, mngmtAgentTrap_6013=mngmtAgentTrap_6013, mngmtAgentTrap_4021=mngmtAgentTrap_4021, mngmtAgentTrap_16023=mngmtAgentTrap_16023, mngmtAgentTrap_19=mngmtAgentTrap_19, mngmtAgentTrap_8014=mngmtAgentTrap_8014, mngmtAgentTrap_21001=mngmtAgentTrap_21001, mngmtAgentTrap_21019=mngmtAgentTrap_21019, sCellEventTrap_9_67=sCellEventTrap_9_67, mngmtAgentTrap_53=mngmtAgentTrap_53, mngmtAgentTrap_2096=mngmtAgentTrap_2096, mngmtAgentTrap_71=mngmtAgentTrap_71, mngmtAgentTrap_27036=mngmtAgentTrap_27036, mngmtAgentTrap_89=mngmtAgentTrap_89, mngmtAgentTrap_1012=mngmtAgentTrap_1012, mngmtAgentTrap_1013=mngmtAgentTrap_1013, mngmtAgentTrap_8081=mngmtAgentTrap_8081, mngmtAgentTrap_11002=mngmtAgentTrap_11002, shelf=shelf, sCellEventTrap_6_16=sCellEventTrap_6_16, mngmtAgentTrap_17001=mngmtAgentTrap_17001, mngmtAgentTrap_6037=mngmtAgentTrap_6037, mngmtAgentTrap_2086=mngmtAgentTrap_2086, mngmtAgentTrap_6035=mngmtAgentTrap_6035, sCellEventTrap_d_83=sCellEventTrap_d_83, mngmtAgentTrap_8074=mngmtAgentTrap_8074, mngmtAgentTrap_26002=mngmtAgentTrap_26002, sCellEventTrap_6_32=sCellEventTrap_6_32, mngmtAgentTrap_27023=mngmtAgentTrap_27023, srvCPU=srvCPU, agEnterprise=agEnterprise, mngmtAgentTrap_18066=mngmtAgentTrap_18066, mngmtAgentTrap_126=mngmtAgentTrap_126, mngmtAgentTrap_16022=mngmtAgentTrap_16022, sCellEventTrap_9_47=sCellEventTrap_9_47, sCellEventTrap_9_7a=sCellEventTrap_9_7a, sCellEventTrap_c_7=sCellEventTrap_c_7, mngmtAgentTrap_2002=mngmtAgentTrap_2002, mngmtAgentTrap_9006=mngmtAgentTrap_9006, sCellEventTrap_c_5=sCellEventTrap_c_5, sCellEventTrap_d_dd=sCellEventTrap_d_dd, mngmtAgentTrap_12=mngmtAgentTrap_12, mngmtAgentTrap_2089=mngmtAgentTrap_2089, mngmtAgentTrap_3057=mngmtAgentTrap_3057, mngmtAgentTrap_6019=mngmtAgentTrap_6019, mngmtAgentTrap_6021=mngmtAgentTrap_6021, sCellEventTrap_6_10=sCellEventTrap_6_10, mngmtAgentTrap_3050=mngmtAgentTrap_3050, sCellEventTrap_6_29=sCellEventTrap_6_29, mngmtAgentTrap_8018=mngmtAgentTrap_8018, shelfTotal=shelfTotal, sCellEventTrap_9_1d=sCellEventTrap_9_1d, mngmtAgentTrap_106=mngmtAgentTrap_106, mngmtAgentTrap_17008=mngmtAgentTrap_17008, mngmtAgentTrap_21006=mngmtAgentTrap_21006, sCellEventTrap_9_2=sCellEventTrap_9_2, mngmtAgentTrap_16030=mngmtAgentTrap_16030, mngmtAgentTrap_3028=mngmtAgentTrap_3028, mngmtAgentTrap_3077=mngmtAgentTrap_3077, mngmtAgentTrap_26=mngmtAgentTrap_26, mngmtAgentTrap_122=mngmtAgentTrap_122, mngmtAgentTrap_9011=mngmtAgentTrap_9011, mngmtAgentTrap_27011=mngmtAgentTrap_27011, mngmtAgentTrap_90=mngmtAgentTrap_90, mngmtAgentTrap_26014=mngmtAgentTrap_26014, sCellEventTrap_4_11=sCellEventTrap_4_11, mngmtAgentTrap_25010=mngmtAgentTrap_25010, mngmtAgentTrap_4015=mngmtAgentTrap_4015, sCellEventTrap_d_0=sCellEventTrap_d_0, mngmtAgentTrap_113=mngmtAgentTrap_113, sCellEventTrap_9_3b=sCellEventTrap_9_3b, mngmtAgentTrap_8088=mngmtAgentTrap_8088, mngmtAgentTrap_27012=mngmtAgentTrap_27012, sCellEventTrap_4_a=sCellEventTrap_4_a)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_3080=mngmtAgentTrap_3080, mngmtAgentTrap_16026=mngmtAgentTrap_16026, sCellEventTrap_9_2b=sCellEventTrap_9_2b, mngmtAgentTrap_39=mngmtAgentTrap_39, scellEventTimeDate=scellEventTimeDate, srvOS=srvOS, mngmtAgentTrap_17014=mngmtAgentTrap_17014, mngmtAgentTrap_5001=mngmtAgentTrap_5001, mngmtAgentTrap_6029=mngmtAgentTrap_6029, mngmtAgentTrap_8047=mngmtAgentTrap_8047, mngmtAgentTrap_16021=mngmtAgentTrap_16021, mngmtAgentTrap_1014=mngmtAgentTrap_1014, mngmtAgentTrap_3071=mngmtAgentTrap_3071, mngmtAgentTrap_16027=mngmtAgentTrap_16027, mngmtAgentTrap_26013=mngmtAgentTrap_26013, mngmtAgentTrap_8004=mngmtAgentTrap_8004, mngmtAgentTrap_20015=mngmtAgentTrap_20015, sCellEventTrap_4_0=sCellEventTrap_4_0, sCellEventTrap_9_6e=sCellEventTrap_9_6e, mngmtAgentTrap_8089=mngmtAgentTrap_8089, mngmtAgentTrap_25014=mngmtAgentTrap_25014, mngmtAgentTrap_21008=mngmtAgentTrap_21008, sCellEventTrap_3_5=sCellEventTrap_3_5, mngmtAgentTrap_4025=mngmtAgentTrap_4025, mngmtAgentTrap_23=mngmtAgentTrap_23, mngmtAgentTrap_2083=mngmtAgentTrap_2083, mngmtAgentTrap_3002=mngmtAgentTrap_3002, sCellEventTrap_9_2d=sCellEventTrap_9_2d, sCellEventTrap_6_33=sCellEventTrap_6_33, mngmtAgentTrap_3092=mngmtAgentTrap_3092, mngmtAgentTrap_6038=mngmtAgentTrap_6038, sCellEventTrap_9_6b=sCellEventTrap_9_6b, sCellEventTrap_6_2b=sCellEventTrap_6_2b, sCellEventTrap_9_cd=sCellEventTrap_9_cd, sCellEventTrap_4_10=sCellEventTrap_4_10, nscEntryIndex=nscEntryIndex, scellEIP=scellEIP, mngmtAgentTrap_12008=mngmtAgentTrap_12008, mngmtAgentTrap_10042=mngmtAgentTrap_10042, mngmtAgentTrap_24003=mngmtAgentTrap_24003, mngmtAgentTrap_25003=mngmtAgentTrap_25003, sCellEventTrap_9_13=sCellEventTrap_9_13, mngmtAgentTrap_30=mngmtAgentTrap_30, sCellEventTrap_9_65=sCellEventTrap_9_65, mngmtAgentTrap_21004=mngmtAgentTrap_21004, mngmtAgentTrap_27027=mngmtAgentTrap_27027, srvBiosVersion=srvBiosVersion, mngmtAgentTrap_5012=mngmtAgentTrap_5012, cpqHSVServer=cpqHSVServer, mngmtAgentTrap_33=mngmtAgentTrap_33, sCellEventTrap_6_23=sCellEventTrap_6_23, mngmtAgentTrap_16033=mngmtAgentTrap_16033, cpqHSVAgent=cpqHSVAgent, mngmtAgentTrap_18076=mngmtAgentTrap_18076, mngmtAgentTrap_27035=mngmtAgentTrap_27035, mngmtAgentTrap_9026=mngmtAgentTrap_9026, mngmtAgentTrap_1009=mngmtAgentTrap_1009, sCellEventTrap_6_12=sCellEventTrap_6_12, mngmtAgentTrap_2022=mngmtAgentTrap_2022, mngmtAgentTrap_16013=mngmtAgentTrap_16013, mngmtAgentTrap_6007=mngmtAgentTrap_6007, mngmtAgentTrap_3076=mngmtAgentTrap_3076, mngmtAgentTrap_9029=mngmtAgentTrap_9029, agentEventCode=agentEventCode, mngmtAgentTrap_3009=mngmtAgentTrap_3009, mngmtAgentTrap_8020=mngmtAgentTrap_8020, mngmtAgentTrap_81=mngmtAgentTrap_81, mngmtAgentTrap_6025=mngmtAgentTrap_6025, mngmtAgentTrap_18019=mngmtAgentTrap_18019, mngmtAgentTrap_95=mngmtAgentTrap_95, mngmtAgentTrap_2090=mngmtAgentTrap_2090, mngmtAgentTrap_8061=mngmtAgentTrap_8061, mngmtAgentTrap_18047=mngmtAgentTrap_18047, sCellEventTrap_7_8=sCellEventTrap_7_8, mngmtAgentTrap_18067=mngmtAgentTrap_18067, sCellEventTrap_4_6=sCellEventTrap_4_6, srvSubModel=srvSubModel, mngmtAgentTrap_108=mngmtAgentTrap_108, mngmtAgentTrap_6015=mngmtAgentTrap_6015, mngmtAgentTrap_8035=mngmtAgentTrap_8035, scellStatusTable=scellStatusTable, sCellEventTrap_c_1=sCellEventTrap_c_1, sCellEventTrap_83_5=sCellEventTrap_83_5, mngmtAgentTrap_6009=mngmtAgentTrap_6009, mngmtAgentTrap_8026=mngmtAgentTrap_8026, mngmtAgentTrap_8045=mngmtAgentTrap_8045, mngmtAgentTrap_14004=mngmtAgentTrap_14004, mngmtAgentTrap_2016=mngmtAgentTrap_2016, mngmtAgentTrap_18080=mngmtAgentTrap_18080, mngmtAgentTrap_26008=mngmtAgentTrap_26008, sCellEventTrap_1_1=sCellEventTrap_1_1, sCellEventTrap_3_8=sCellEventTrap_3_8, mngmtAgentTrap_8065=mngmtAgentTrap_8065, mngmtAgentTrap_115=mngmtAgentTrap_115, mngmtAgentTrap_128=mngmtAgentTrap_128, sCellEventTrap_9_38=sCellEventTrap_9_38, sCellEventTrap_9_36=sCellEventTrap_9_36, mngmtAgentTrap_8032=mngmtAgentTrap_8032, sCellEventTrap_6_b=sCellEventTrap_6_b, mngmtAgentTrap_4027=mngmtAgentTrap_4027, mngmtAgentTrap_2082=mngmtAgentTrap_2082, mngmtAgentTrap_10024=mngmtAgentTrap_10024, sCellEventTrap_4_c=sCellEventTrap_4_c, mngmtAgentTrap_27007=mngmtAgentTrap_27007, mngmtAgentTrap_10004=mngmtAgentTrap_10004, mngmtAgentTrap_21011=mngmtAgentTrap_21011, sCellEventTrap_9_6a=sCellEventTrap_9_6a, mngmtAgentTrap_2025=mngmtAgentTrap_2025, mngmtAgentTrap_3036=mngmtAgentTrap_3036, mngmtAgentTrap_18042=mngmtAgentTrap_18042, sCellEventTrap_9_27=sCellEventTrap_9_27, mngmtAgentTrap_15004=mngmtAgentTrap_15004, mngmtAgentTrap_132=mngmtAgentTrap_132, sCellEventTrap_83_1=sCellEventTrap_83_1, mngmtAgentTrap_9=mngmtAgentTrap_9, mngmtAgentTrap_17009=mngmtAgentTrap_17009, mngmtAgentTrap_9014=mngmtAgentTrap_9014, mngmtAgentTrap_4011=mngmtAgentTrap_4011, mngmtAgentTrap_13015=mngmtAgentTrap_13015, mngmtAgentTrap_8016=mngmtAgentTrap_8016, mngmtAgentTrap_9010=mngmtAgentTrap_9010, mngmtAgentTrap_18010=mngmtAgentTrap_18010, mngmtAgentTrap_119=mngmtAgentTrap_119, mngmtAgentTrap_131=mngmtAgentTrap_131, scellEntryIndex=scellEntryIndex, sCellEventTrap_9_32=sCellEventTrap_9_32, mngmtAgentTrap_18068=mngmtAgentTrap_18068, scellECode=scellECode, sCellEventTrap_6_1f=sCellEventTrap_6_1f, sCellEventTrap_4_5=sCellEventTrap_4_5, mngmtAgentTrap_6026=mngmtAgentTrap_6026, sCellEventTrap_9_1e=sCellEventTrap_9_1e, sCellEventTrap_9_29=sCellEventTrap_9_29, mngmtAgentTrap_6027=mngmtAgentTrap_6027, mngmtAgentTrap_4001=mngmtAgentTrap_4001, mngmtAgentTrap_3024=mngmtAgentTrap_3024, mngmtAgentTrap_16025=mngmtAgentTrap_16025, mngmtAgentTrap_13009=mngmtAgentTrap_13009, sCellEventTrap_6_d=sCellEventTrap_6_d, sCellEventTrap_9_11=sCellEventTrap_9_11, mngmtAgentTrap_2075=mngmtAgentTrap_2075, mngmtAgentTrap_8076=mngmtAgentTrap_8076, mngmtAgentTrap_8082=mngmtAgentTrap_8082, mngmtAgentTrap_25=mngmtAgentTrap_25, sCellEventTrap_6_1c=sCellEventTrap_6_1c, mngmtAgentTrap_4051=mngmtAgentTrap_4051, sCellEventTrap_d_47=sCellEventTrap_d_47, sCellEventTrap_6_9=sCellEventTrap_6_9, mngmtAgentTrap_125=mngmtAgentTrap_125, mngmtAgentTrap_10011=mngmtAgentTrap_10011, mngmtAgentTrap_2074=mngmtAgentTrap_2074, mngmtAgentTrap_12004=mngmtAgentTrap_12004, mngmtAgentTrap_3091=mngmtAgentTrap_3091, mngmtAgentTrap_6017=mngmtAgentTrap_6017, nsc=nsc, mngmtAgentTrap_14006=mngmtAgentTrap_14006, sCellEventTrap_c_8=sCellEventTrap_c_8, mngmtAgentTrap_16029=mngmtAgentTrap_16029, mngmtAgentTrap_3=mngmtAgentTrap_3, mngmtAgentTrap_8003=mngmtAgentTrap_8003, host=host, mngmtAgentTrap_10013=mngmtAgentTrap_10013, sCellEventTrap_d_34=sCellEventTrap_d_34, mngmtAgentTrap_18081=mngmtAgentTrap_18081, mngmtAgentTrap_82=mngmtAgentTrap_82, mngmtAgentTrap_5006=mngmtAgentTrap_5006, mngmtAgentTrap_2048=mngmtAgentTrap_2048, mngmtAgentTrap_3065=mngmtAgentTrap_3065, sCellEventTrap_c_a=sCellEventTrap_c_a, mngmtAgentTrap_58=mngmtAgentTrap_58, mngmtAgentTrap_8017=mngmtAgentTrap_8017, mngmtAgentTrap_25017=mngmtAgentTrap_25017, mngmtAgentTrap_13004=mngmtAgentTrap_13004, mngmtAgentTrap_8059=mngmtAgentTrap_8059, sCellEventTrap_6_27=sCellEventTrap_6_27, sCellEventTrap_9_2c=sCellEventTrap_9_2c, mngmtAgentTrap_51=mngmtAgentTrap_51, hsvObject=hsvObject, sCellEventTrap_6_39=sCellEventTrap_6_39, mngmtAgentTrap_76=mngmtAgentTrap_76, sCellEventTrap_9_68=sCellEventTrap_9_68, mngmtAgentTrap_133=mngmtAgentTrap_133, mngmtAgentTrap_2034=mngmtAgentTrap_2034, mngmtAgentTrap_2069=mngmtAgentTrap_2069, mngmtAgentTrap_10025=mngmtAgentTrap_10025, mngmtAgentTrap_2026=mngmtAgentTrap_2026, mngmtAgentTrap_2084=mngmtAgentTrap_2084, sCellEventTrap_9_1b=sCellEventTrap_9_1b, sCellEventTrap_3_7=sCellEventTrap_3_7, sCellEventTrap_1_0=sCellEventTrap_1_0, sCellEventTrap_9_75=sCellEventTrap_9_75, mngmtAgentTrap_5=mngmtAgentTrap_5, mngmtAgentTrap_18036=mngmtAgentTrap_18036, mngmtAgentTrap_5008=mngmtAgentTrap_5008, shelfErrorCode=shelfErrorCode, sCellEventTrap_6_36=sCellEventTrap_6_36, mngmtAgentTrap_8068=mngmtAgentTrap_8068, mngmtAgentTrap_8079=mngmtAgentTrap_8079, mngmtAgentTrap_27039=mngmtAgentTrap_27039, mngmtAgentTrap_17013=mngmtAgentTrap_17013, sCellEventTrap_3_0=sCellEventTrap_3_0, sCellEventTrap_d_3=sCellEventTrap_d_3, mngmtAgentTrap_18063=mngmtAgentTrap_18063, mngmtAgentTrap_8066=mngmtAgentTrap_8066, mngmtAgentTrap_18073=mngmtAgentTrap_18073, cpqElementManager=cpqElementManager, sCellEventTrap_6_31=sCellEventTrap_6_31, mngmtAgentTrap_70=mngmtAgentTrap_70, sCellEventTrap_d_71=sCellEventTrap_d_71, mngmtAgentTrap_18040=mngmtAgentTrap_18040, sCellEventTrap_9_6c=sCellEventTrap_9_6c, mngmtAgentTrap_21012=mngmtAgentTrap_21012, mngmtAgentTrap_4035=mngmtAgentTrap_4035, mngmtAgentTrap_18008=mngmtAgentTrap_18008, mngmtAgentTrap_8069=mngmtAgentTrap_8069, sCellEventTrap_9_d6=sCellEventTrap_9_d6, mngmtAgentTrap_3055=mngmtAgentTrap_3055, mngmtAgentTrap_10030=mngmtAgentTrap_10030, mngmtAgentTrap_73=mngmtAgentTrap_73, mngmtAgentTrap_25006=mngmtAgentTrap_25006, sCellEventTrap_9_d3=sCellEventTrap_9_d3, mngmtAgentTrap_3045=mngmtAgentTrap_3045, sCellEventTrap_d_a1=sCellEventTrap_d_a1, mngmtAgentTrap_66=mngmtAgentTrap_66, mngmtAgentTrap_25011=mngmtAgentTrap_25011, mngmtAgentTrap_10041=mngmtAgentTrap_10041, mngmtAgentTrap_100=mngmtAgentTrap_100, mngmtAgentTrap_26015=mngmtAgentTrap_26015, mngmtAgentTrap_21013=mngmtAgentTrap_21013, agentEventLevel=agentEventLevel, hostEntry=hostEntry, mngmtAgentTrap_4053=mngmtAgentTrap_4053, mngmtAgentTrap_27041=mngmtAgentTrap_27041, sCellEventTrap_d_8d=sCellEventTrap_d_8d, mngmtAgentTrap_7=mngmtAgentTrap_7, emuEventTrapUnrecoverable=emuEventTrapUnrecoverable, mngmtAgentTrap_9005=mngmtAgentTrap_9005, sCellEventTrap_7_0=sCellEventTrap_7_0, mngmtAgentTrap_121=mngmtAgentTrap_121, scellSWComponent=scellSWComponent, sCellEventTrap_4_d=sCellEventTrap_4_d, sCellEventTrap_6_3a=sCellEventTrap_6_3a, mngmtAgentTrap_2093=mngmtAgentTrap_2093, mngmtAgentTrap_2036=mngmtAgentTrap_2036, mngmtAgentTrap_9012=mngmtAgentTrap_9012, mngmtAgentTrap_25019=mngmtAgentTrap_25019, sCellEventTrap_9_37=sCellEventTrap_9_37, mngmtAgentTrap_3081=mngmtAgentTrap_3081, mngmtAgentTrap_9007=mngmtAgentTrap_9007, mngmtAgentTrap_3049=mngmtAgentTrap_3049, mngmtAgentTrap_10012=mngmtAgentTrap_10012, sCellEventTrap_9_49=sCellEventTrap_9_49, mngmtAgentTrap_8028=mngmtAgentTrap_8028, mngmtAgentTrap_16024=mngmtAgentTrap_16024)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_17017=mngmtAgentTrap_17017, mngmtAgentTrap_6034=mngmtAgentTrap_6034, mngmtAgentTrap_4052=mngmtAgentTrap_4052, mngmtAgentTrap_20003=mngmtAgentTrap_20003, mngmtAgentTrap_3046=mngmtAgentTrap_3046, sCellEventTrap_7_4=sCellEventTrap_7_4, mngmtAgentTrap_5016=mngmtAgentTrap_5016, emuEventTrapNoncritical=emuEventTrapNoncritical, sCellEventTrap_9_1=sCellEventTrap_9_1, mngmtAgentTrap_8010=mngmtAgentTrap_8010, mngmtAgentTrap_9001=mngmtAgentTrap_9001, mngmtAgentTrap_18001=mngmtAgentTrap_18001, mngmtAgentTrap_27004=mngmtAgentTrap_27004, mngmtAgentTrap_2013=mngmtAgentTrap_2013, sCellEventTrap_9_7=sCellEventTrap_9_7, mngmtAgentTrap_3020=mngmtAgentTrap_3020, mngmtAgentTrap_2077=mngmtAgentTrap_2077, mngmtAgentTrap_120=mngmtAgentTrap_120, mngmtAgentTrap_14013=mngmtAgentTrap_14013, maHSVMibRev=maHSVMibRev, mngmtAgentTrap_23002=mngmtAgentTrap_23002, agStatusTable=agStatusTable, mngmtAgentTrap_8036=mngmtAgentTrap_8036, mngmtAgentTrap_6008=mngmtAgentTrap_6008, sCellEventTrap_d_4c=sCellEventTrap_d_4c, mngmtAgentTrap_17015=mngmtAgentTrap_17015, sCellEventTrap_d_b5=sCellEventTrap_d_b5, sCellEventTrap_c_11=sCellEventTrap_c_11, mngmtAgentTrap_2040=mngmtAgentTrap_2040, mngmtAgentTrap_8009=mngmtAgentTrap_8009, mngmtAgentTrap_27044=mngmtAgentTrap_27044, mngmtAgentTrap_5014=mngmtAgentTrap_5014, sCellEventTrap_9_44=sCellEventTrap_9_44, srvComputerType=srvComputerType, mngmtAgentTrap_2032=mngmtAgentTrap_2032, sCellEventTrap_9_22=sCellEventTrap_9_22, scellEventCode=scellEventCode, sCellEventTrap_9_2a=sCellEventTrap_9_2a, mngmtAgentTrap_6014=mngmtAgentTrap_6014, mngmtAgentTrap_8006=mngmtAgentTrap_8006, mngmtAgentTrap_15001=mngmtAgentTrap_15001, shelfId=shelfId, sCellEventTrap_3_4=sCellEventTrap_3_4, mngmtAgentTrap_48=mngmtAgentTrap_48, maHSVMibRevMajor=maHSVMibRevMajor, mngmtAgentTrap_16015=mngmtAgentTrap_16015, mngmtAgentTrap_25016=mngmtAgentTrap_25016, mngmtAgentTrap_2041=mngmtAgentTrap_2041, mngmtAgentTrap_6024=mngmtAgentTrap_6024, mngmtAgentTrap_8041=mngmtAgentTrap_8041, hostTotal=hostTotal, mngmtAgentTrap_15008=mngmtAgentTrap_15008, sCellEventTrap_9_20=sCellEventTrap_9_20, mngmtAgentTrap_34=mngmtAgentTrap_34, mngmtAgentTrap_6005=mngmtAgentTrap_6005, nscTotal=nscTotal, agentEventDescription=agentEventDescription, mngmtAgentTrap_9015=mngmtAgentTrap_9015, mngmtAgentTrap_3048=mngmtAgentTrap_3048, mngmtAgentTrap_40=mngmtAgentTrap_40, mngmtAgentTrap_25001=mngmtAgentTrap_25001, sCellEventTrap_9_ca=sCellEventTrap_9_ca, mngmtAgentTrap_8033=mngmtAgentTrap_8033, mngmtAgentTrap_2103=mngmtAgentTrap_2103, mngmtAgentTrap_18004=mngmtAgentTrap_18004, mngmtAgentTrap_25004=mngmtAgentTrap_25004, mngmtAgentTrap_2078=mngmtAgentTrap_2078, sCellEventTrap_6_14=sCellEventTrap_6_14, mngmtAgentTrap_9017=mngmtAgentTrap_9017, emuEventTrapCritical=emuEventTrapCritical, sCellEventTrap_42_3=sCellEventTrap_42_3, mngmtAgentTrap_6012=mngmtAgentTrap_6012, mngmtAgentTrap_8056=mngmtAgentTrap_8056, mngmtAgentTrap_9022=mngmtAgentTrap_9022, mngmtAgentTrap_24001=mngmtAgentTrap_24001, mngmtAgentTrap_27049=mngmtAgentTrap_27049, sCellEventTrap_7_2=sCellEventTrap_7_2, nscStatus=nscStatus, mngmtAgentTrap_3051=mngmtAgentTrap_3051, sCellEventTrap_9_14=sCellEventTrap_9_14, mngmtAgentTrap_16016=mngmtAgentTrap_16016, mngmtAgentTrap_105=mngmtAgentTrap_105, sCellEventTrap_9_3a=sCellEventTrap_9_3a, sCellEventTrap_d_7f=sCellEventTrap_d_7f, mngmtAgentTrap_15006=mngmtAgentTrap_15006, mngmtAgentTrap_3061=mngmtAgentTrap_3061, mngmtAgentTrap_25012=mngmtAgentTrap_25012, mngmtAgentTrap_13002=mngmtAgentTrap_13002, sCellEventTrap_6_5=sCellEventTrap_6_5, mngmtAgentTrap_8=mngmtAgentTrap_8, mngmtAgentTrap_18052=mngmtAgentTrap_18052, mngmtAgentTrap_27014=mngmtAgentTrap_27014, mngmtAgentTrap_3017=mngmtAgentTrap_3017, sCellEventTrap_9_d0=sCellEventTrap_9_d0, agentEntryIndex=agentEntryIndex, sCellEventTrap_d_35=sCellEventTrap_d_35, sCellEventTrap_9_43=sCellEventTrap_9_43, sCellEventTrap_7_3=sCellEventTrap_7_3, mngmtAgentTrap_1003=mngmtAgentTrap_1003, mngmtAgentTrap_10019=mngmtAgentTrap_10019, sCellEventTrap_9_69=sCellEventTrap_9_69, mngmtAgentTrap_2035=mngmtAgentTrap_2035, mngmtAgentTrap_4049=mngmtAgentTrap_4049, mngmtAgentTrap_10017=mngmtAgentTrap_10017, mngmtAgentTrap_8039=mngmtAgentTrap_8039, mngmtAgentTrap_16004=mngmtAgentTrap_16004, mngmtAgentTrap_10043=mngmtAgentTrap_10043, mngmtAgentTrap_10=mngmtAgentTrap_10, mngmtAgentTrap_8051=mngmtAgentTrap_8051, mngmtAgentTrap_8070=mngmtAgentTrap_8070, mngmtAgentTrap_18074=mngmtAgentTrap_18074, sCellEventTrap_c_4=sCellEventTrap_c_4, mngmtAgentTrap_14002=mngmtAgentTrap_14002, mngmtAgentTrap_5010=mngmtAgentTrap_5010, sCellEventTrap_9_cc=sCellEventTrap_9_cc, mngmtAgentTrap_10018=mngmtAgentTrap_10018, sCellEventTrap_b_0=sCellEventTrap_b_0, mngmtAgentTrap_27016=mngmtAgentTrap_27016, mngmtAgentTrap_10014=mngmtAgentTrap_10014, sCellEventTrap_9_28=sCellEventTrap_9_28, mngmtAgentTrap_52=mngmtAgentTrap_52, mngmtAgentTrap_13003=mngmtAgentTrap_13003, mngmtAgentTrap_11001=mngmtAgentTrap_11001, mngmtAgentTrap_4037=mngmtAgentTrap_4037, mngmtAgentTrap_27034=mngmtAgentTrap_27034, mngmtAgentTrap_35=mngmtAgentTrap_35, sCellEventTrap_d_85=sCellEventTrap_d_85, mngmtAgentTrap_2023=mngmtAgentTrap_2023, sCellEventTrap_9_c8=sCellEventTrap_9_c8, sCellEventTrap_c_3=sCellEventTrap_c_3, mngmtAgentTrap_20020=mngmtAgentTrap_20020, hostStatus=hostStatus, mngmtAgentTrap_27002=mngmtAgentTrap_27002, mngmtAgentTrap_10023=mngmtAgentTrap_10023, mngmtAgentTrap_18018=mngmtAgentTrap_18018, sCellEventTrap_6_34=sCellEventTrap_6_34, mngmtAgentTrap_104=mngmtAgentTrap_104, mngmtAgentTrap_12003=mngmtAgentTrap_12003, mngmtAgentTrap_117=mngmtAgentTrap_117, sCellEventTrap_6_24=sCellEventTrap_6_24, mngmtAgentTrap_2085=mngmtAgentTrap_2085, mngmtAgentTrap_8019=mngmtAgentTrap_8019, mngmtAgentTrap_5005=mngmtAgentTrap_5005, mngmtAgentTrap_16014=mngmtAgentTrap_16014, mngmtAgentTrap_2003=mngmtAgentTrap_2003, mngmtAgentTrap_8025=mngmtAgentTrap_8025, mngmtAgentTrap_8087=mngmtAgentTrap_8087, mngmtAgentTrap_14001=mngmtAgentTrap_14001, mngmtAgentTrap_2071=mngmtAgentTrap_2071, mngmtAgentTrap_6033=mngmtAgentTrap_6033, mngmtAgentTrap_2063=mngmtAgentTrap_2063, sCellEventTrap_c_2=sCellEventTrap_c_2, sCellEventTrap_6_1d=sCellEventTrap_6_1d, mngmtAgentTrap_18060=mngmtAgentTrap_18060, mngmtAgentTrap_20021=mngmtAgentTrap_20021, mngmtAgentTrap_27010=mngmtAgentTrap_27010, mngmtAgentTrap_61=mngmtAgentTrap_61, mngmtAgentTrap_3003=mngmtAgentTrap_3003, mngmtAgentTrap_31=mngmtAgentTrap_31, mngmtAgentTrap_17006=mngmtAgentTrap_17006, sCellEventTrap_d_2=sCellEventTrap_d_2, sCellEventTrap_6_30=sCellEventTrap_6_30, mngmtAgentTrap_2006=mngmtAgentTrap_2006, sCellEventTrap_9_2e=sCellEventTrap_9_2e, mngmtAgentTrap_6001=mngmtAgentTrap_6001, sCellEventTrap_9_35=sCellEventTrap_9_35, mngmtAgentTrap_6030=mngmtAgentTrap_6030, sCellEventTrap_9_16=sCellEventTrap_9_16, mngmtAgentTrap_56=mngmtAgentTrap_56, mngmtAgentTrap_118=mngmtAgentTrap_118, mngmtAgentTrap_4032=mngmtAgentTrap_4032, mngmtAgentTrap_3090=mngmtAgentTrap_3090, mngmtAgentTrap_16032=mngmtAgentTrap_16032, sCellEventTrap_9_79=sCellEventTrap_9_79, mngmtAgentTrap_1004=mngmtAgentTrap_1004, mngmtAgentTrap_25018=mngmtAgentTrap_25018, mngmtAgentTrap_8024=mngmtAgentTrap_8024, sCellEventTrap_9_73=sCellEventTrap_9_73, sCellEventTrap_7_6=sCellEventTrap_7_6, mngmtAgentTrap_2070=mngmtAgentTrap_2070, mngmtAgentTrap_9008=mngmtAgentTrap_9008, mngmtAgentTrap_123=mngmtAgentTrap_123, mngmtAgentTrap_28=mngmtAgentTrap_28, mngmtAgentTrap_21015=mngmtAgentTrap_21015, mngmtAgentTrap_15009=mngmtAgentTrap_15009, mngmtAgentTrap_43=mngmtAgentTrap_43, scellUUID=scellUUID, mngmtAgentTrap_93=mngmtAgentTrap_93, sCellEventTrap_d_f0=sCellEventTrap_d_f0, sCellEventTrap_83_6=sCellEventTrap_83_6, mngmtAgentTrap_4031=mngmtAgentTrap_4031, mngmtAgentTrap_2102=mngmtAgentTrap_2102, mngmtAgentTrap_16035=mngmtAgentTrap_16035, mngmtAgentTrap_8023=mngmtAgentTrap_8023, mngmtAgentTrap_38=mngmtAgentTrap_38, mngmtAgentTrap_14=mngmtAgentTrap_14, mngmtAgentTrap_3037=mngmtAgentTrap_3037, mngmtAgentTrap_3053=mngmtAgentTrap_3053, mngmtAgentTrap_4024=mngmtAgentTrap_4024, mngmtAgentTrap_1006=mngmtAgentTrap_1006, mngmtAgentTrap_9019=mngmtAgentTrap_9019, mngmtAgentTrap_62=mngmtAgentTrap_62, sCellEventTrap_6_3d=sCellEventTrap_6_3d, mngmtAgentTrap_13007=mngmtAgentTrap_13007, mngmtAgentTrap_21018=mngmtAgentTrap_21018, mngmtAgentTrap_27005=mngmtAgentTrap_27005, nscUUID=nscUUID, mngmtAgentTrap_6011=mngmtAgentTrap_6011, mngmtAgentTrap_2097=mngmtAgentTrap_2097, mngmtAgentTrap_2073=mngmtAgentTrap_2073, mngmtAgentTrap_60=mngmtAgentTrap_60, mngmtAgentTrap_3066=mngmtAgentTrap_3066, sCellEventTrap_9_45=sCellEventTrap_9_45, mngmtAgentTrap_44=mngmtAgentTrap_44, mngmtAgentTrap_63=mngmtAgentTrap_63, mngmtAgentTrap_3069=mngmtAgentTrap_3069, mngmtAgentTrap_8015=mngmtAgentTrap_8015, mngmtAgentTrap_3025=mngmtAgentTrap_3025, mngmtAgentTrap_4058=mngmtAgentTrap_4058, mngmtAgentTrap_8048=mngmtAgentTrap_8048, sCellEventTrap_6_1b=sCellEventTrap_6_1b, mngmtAgentTrap_6022=mngmtAgentTrap_6022, mngmtAgentTrap_8090=mngmtAgentTrap_8090, mngmtAgentTrap_9031=mngmtAgentTrap_9031, mngmtAgentTrap_14009=mngmtAgentTrap_14009, mngmtAgentTrap_16=mngmtAgentTrap_16, agentStatus=agentStatus, mngmtAgentTrap_10029=mngmtAgentTrap_10029, agent=agent, sCellEventTrap_9_25=sCellEventTrap_9_25, mngmtAgentTrap_4016=mngmtAgentTrap_4016, mngmtAgentTrap_2031=mngmtAgentTrap_2031, mngmtAgentTrap_8053=mngmtAgentTrap_8053, mngmtAgentTrap_10037=mngmtAgentTrap_10037, sCellEventTrap_9_48=sCellEventTrap_9_48, mngmtAgentTrap_3063=mngmtAgentTrap_3063, mngmtAgentTrap_4013=mngmtAgentTrap_4013, mngmtAgentTrap_8037=mngmtAgentTrap_8037, mngmtAgentTrap_2066=mngmtAgentTrap_2066, mngmtAgentTrap_9028=mngmtAgentTrap_9028, sCellEventTrap_9_a=sCellEventTrap_9_a, sCellEventTrap_6_26=sCellEventTrap_6_26, mngmtAgentTrap_1=mngmtAgentTrap_1, mngmtAgentTrap_2057=mngmtAgentTrap_2057, mngmtAgentTrap_26005=mngmtAgentTrap_26005, sCellEventTrap_4_b=sCellEventTrap_4_b, mngmtAgentTrap_8049=mngmtAgentTrap_8049, sCellEventTrap_6_2e=sCellEventTrap_6_2e, mngmtAgentTrap_3086=mngmtAgentTrap_3086, mngmtAgentTrap_4030=mngmtAgentTrap_4030, sCellEventTrap_9_18=sCellEventTrap_9_18, mngmtAgentTrap_6003=mngmtAgentTrap_6003, srvOSMajVersion=srvOSMajVersion, mngmtAgentTrap_6010=mngmtAgentTrap_6010)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", mngmtAgentTrap_18071=mngmtAgentTrap_18071, mngmtAgentTrap_27022=mngmtAgentTrap_27022, mngmtAgentTrap_27045=mngmtAgentTrap_27045, sCellEventTrap_9_71=sCellEventTrap_9_71, agMinVersion=agMinVersion, mngmtAgentTrap_2012=mngmtAgentTrap_2012, mngmtAgentTrap_2065=mngmtAgentTrap_2065, mngmtAgentTrap_4041=mngmtAgentTrap_4041, sCellEventTrap_6_28=sCellEventTrap_6_28, mngmtAgentTrap_8062=mngmtAgentTrap_8062, sCellEventTrap_9_9=sCellEventTrap_9_9, mngmtAgentTrap_27024=mngmtAgentTrap_27024, mngmtAgentTrap_3016=mngmtAgentTrap_3016, mngmtAgentTrap_24=mngmtAgentTrap_24, mngmtAgentTrap_8022=mngmtAgentTrap_8022, mngmtAgentTrap_16017=mngmtAgentTrap_16017, mngmtAgentTrap_4020=mngmtAgentTrap_4020, mngmtAgentTrap_116=mngmtAgentTrap_116, mngmtAgentTrap_2095=mngmtAgentTrap_2095, mngmtAgentTrap_2100=mngmtAgentTrap_2100, mngmtAgentTrap_8038=mngmtAgentTrap_8038, mngmtAgentTrap_8043=mngmtAgentTrap_8043, mngmtAgentTrap_16038=mngmtAgentTrap_16038, mngmtAgentTrap_10028=mngmtAgentTrap_10028, sCellEventTrap_9_39=sCellEventTrap_9_39, mngmtAgentTrap_1007=mngmtAgentTrap_1007, mngmtAgentTrap_2050=mngmtAgentTrap_2050, srvOSMinVersion=srvOSMinVersion, mngmtAgentTrap_2051=mngmtAgentTrap_2051, sCellEventTrap_9_1a=sCellEventTrap_9_1a, mngmtAgentTrap_14008=mngmtAgentTrap_14008, mngmtAgentTrap_18049=mngmtAgentTrap_18049, mngmtAgentTrap_26011=mngmtAgentTrap_26011, sCellEventTrap_c_c=sCellEventTrap_c_c, mngmtAgentTrap_8057=mngmtAgentTrap_8057, mngmtAgentTrap_26006=mngmtAgentTrap_26006, mngmtAgentTrap_2068=mngmtAgentTrap_2068, mngmtAgentTrap_4004=mngmtAgentTrap_4004, sCellEventTrap_d_de=sCellEventTrap_d_de, mngmtAgentTrap_2087=mngmtAgentTrap_2087, mngmtAgentTrap_14010=mngmtAgentTrap_14010, mngmtAgentTrap_22002=mngmtAgentTrap_22002, mngmtAgentTrap_18022=mngmtAgentTrap_18022, agHostName=agHostName, mngmtAgentTrap_2038=mngmtAgentTrap_2038, mngmtAgentTrap_2091=mngmtAgentTrap_2091, mngmtAgentTrap_16028=mngmtAgentTrap_16028, mngmtAgentTrap_1002=mngmtAgentTrap_1002, mngmtAgentTrap_45=mngmtAgentTrap_45, mngmtAgentTrap_8080=mngmtAgentTrap_8080, mngmtAgentTrap_2011=mngmtAgentTrap_2011, mngmtAgentTrap_3095=mngmtAgentTrap_3095, scellName=scellName, mngmtAgentTrap_8034=mngmtAgentTrap_8034, sCellEventTrap_42_1=sCellEventTrap_42_1, mngmtAgentTrap_2030=mngmtAgentTrap_2030, mngmtAgentTrap_3013=mngmtAgentTrap_3013, mngmtAgentTrap_8067=mngmtAgentTrap_8067, mngmtAgentTrap_2080=mngmtAgentTrap_2080, mngmtAgentTrap_9009=mngmtAgentTrap_9009, mngmtAgentTrap_9030=mngmtAgentTrap_9030, mngmtAgentTrap_10015=mngmtAgentTrap_10015, mngmtAgentTrap_16005=mngmtAgentTrap_16005, mngmtAgentTrap_17004=mngmtAgentTrap_17004, mngmtAgentTrap_27013=mngmtAgentTrap_27013, sCellEventTrap_d_72=sCellEventTrap_d_72, mngmtAgentTrap_101=mngmtAgentTrap_101, mngmtAgentTrap_16020=mngmtAgentTrap_16020, sCellEventTrap_6_4=sCellEventTrap_6_4, shelfElementType=shelfElementType, shelfStatusTable=shelfStatusTable, sCellEventTrap_9_d=sCellEventTrap_9_d, sCellEventTrap_6_e=sCellEventTrap_6_e, mngmtAgentTrap_2067=mngmtAgentTrap_2067, mngmtAgentTrap_12002=mngmtAgentTrap_12002, mngmtAgentTrap_37=mngmtAgentTrap_37, mngmtAgentTrap_16019=mngmtAgentTrap_16019, mngmtAgentTrap_17007=mngmtAgentTrap_17007, mngmtAgentTrap_4040=mngmtAgentTrap_4040, mngmtAgentTrap_86=mngmtAgentTrap_86, sCellEventTrap_3_1=sCellEventTrap_3_1, sCellEventTrap_4_2=sCellEventTrap_4_2, mngmtAgentTrap_4=mngmtAgentTrap_4, mngmtAgentTrap_6004=mngmtAgentTrap_6004, mngmtAgentTrap_3083=mngmtAgentTrap_3083, mngmtAgentTrap_8011=mngmtAgentTrap_8011, mngmtAgentTrap_25009=mngmtAgentTrap_25009, mngmtAgentTrap_8040=mngmtAgentTrap_8040, mngmtAgentTrap_20=mngmtAgentTrap_20, mngmtAgentTrap_13018=mngmtAgentTrap_13018, mngmtAgentTrap_80=mngmtAgentTrap_80, mngmtAgentTrap_6006=mngmtAgentTrap_6006, sCellEventTrap_6_3b=sCellEventTrap_6_3b, mngmtAgentTrap_97=mngmtAgentTrap_97, mngmtAgentTrap_3007=mngmtAgentTrap_3007, mngmtAgentTrap_9003=mngmtAgentTrap_9003, mngmtAgentTrap_18041=mngmtAgentTrap_18041, mngmtAgentTrap_20001=mngmtAgentTrap_20001, mngmtAgentTrap_16010=mngmtAgentTrap_16010, sCellEventTrap_7_7=sCellEventTrap_7_7, mngmtAgentTrap_69=mngmtAgentTrap_69, mngmtAgentTrap_25007=mngmtAgentTrap_25007, sCellEventTrap_6_35=sCellEventTrap_6_35, mngmtAgentTrap_3059=mngmtAgentTrap_3059, sCellEventTrap_9_78=sCellEventTrap_9_78, mngmtAgentTrap_2099=mngmtAgentTrap_2099, sCellEventTrap_7_5=sCellEventTrap_7_5, mngmtAgentTrap_1005=mngmtAgentTrap_1005, mngmtAgentTrap_11=mngmtAgentTrap_11, mngmtAgentTrap_3022=mngmtAgentTrap_3022, mngmtAgentTrap_32=mngmtAgentTrap_32, mngmtAgentTrap_3004=mngmtAgentTrap_3004, mngmtAgentTrap_8027=mngmtAgentTrap_8027, mngmtAgentTrap_65=mngmtAgentTrap_65, mngmtAgentTrap_2061=mngmtAgentTrap_2061, mngmtAgentTrap_20004=mngmtAgentTrap_20004, sCellEventTrap_d_6f=sCellEventTrap_d_6f, mngmtAgentTrap_16034=mngmtAgentTrap_16034, mngmtAgentTrap_18059=mngmtAgentTrap_18059, mngmtAgentTrap_3064=mngmtAgentTrap_3064, mngmtAgentTrap_9034=mngmtAgentTrap_9034, mngmtAgentTrap_8086=mngmtAgentTrap_8086, sCellEventTrap_9_6d=sCellEventTrap_9_6d, mngmtAgentTrap_27037=mngmtAgentTrap_27037, mngmtAgentTrap_41=mngmtAgentTrap_41, mngmtAgentTrap_18007=mngmtAgentTrap_18007, sCellEventTrap_6_2=sCellEventTrap_6_2, sCellEventTrap_9_d5=sCellEventTrap_9_d5, sCellEventTrap_d_5b=sCellEventTrap_d_5b, mngmtAgentTrap_2058=mngmtAgentTrap_2058, mngmtAgentTrap_2088=mngmtAgentTrap_2088, mngmtAgentTrap_5002=mngmtAgentTrap_5002, mngmtAgentTrap_4012=mngmtAgentTrap_4012, mngmtAgentTrap_27025=mngmtAgentTrap_27025, mngmtAgentTrap_8085=mngmtAgentTrap_8085, mngmtAgentTrap_3068=mngmtAgentTrap_3068, mngmtAgentTrap_5003=mngmtAgentTrap_5003, mngmtAgentTrap_27038=mngmtAgentTrap_27038, mngmtAgentTrap_21=mngmtAgentTrap_21, mngmtAgentTrap_2047=mngmtAgentTrap_2047, sCellEventTrap_83_0=sCellEventTrap_83_0, agentEventTimeDate=agentEventTimeDate, sCellEventTrap_6_13=sCellEventTrap_6_13, mngmtAgentTrap_3019=mngmtAgentTrap_3019, mngmtAgentTrap_16031=mngmtAgentTrap_16031, mngmtAgentTrap_75=mngmtAgentTrap_75, mngmtAgentTrap_25013=mngmtAgentTrap_25013, mngmtAgentTrap_18003=mngmtAgentTrap_18003, mngmtAgentTrap_3060=mngmtAgentTrap_3060, mngmtAgentTrap_27032=mngmtAgentTrap_27032, mngmtAgentTrap_107=mngmtAgentTrap_107, sCellEventTrap_9_33=sCellEventTrap_9_33, sCellEventTrap_9_e=sCellEventTrap_9_e, mngmtAgentTrap_21010=mngmtAgentTrap_21010, mngmtAgentTrap_127=mngmtAgentTrap_127, mngmtAgentTrap_12001=mngmtAgentTrap_12001, mngmtAgentTrap_16036=mngmtAgentTrap_16036, mngmtAgentTrap_6031=mngmtAgentTrap_6031, mngmtAgentTrap_10022=mngmtAgentTrap_10022, sCellEventTrap_6_7=sCellEventTrap_6_7, mngmtAgentTrap_4043=mngmtAgentTrap_4043, sCellEventTrap_9_1f=sCellEventTrap_9_1f, mngmtAgentTrap_3070=mngmtAgentTrap_3070, mngmtAgentTrap_9033=mngmtAgentTrap_9033, mngmtAgentTrap_10020=mngmtAgentTrap_10020, mngmtAgentTrap_27029=mngmtAgentTrap_27029, sCellEventTrap_9_3d=sCellEventTrap_9_3d, sCellEventTrap_9_66=sCellEventTrap_9_66, hostStatusTable=hostStatusTable, mngmtAgentTrap_102=mngmtAgentTrap_102, mngmtAgentTrap_13019=mngmtAgentTrap_13019, mngmtAgentTrap_3047=mngmtAgentTrap_3047, mngmtAgentTrap_3094=mngmtAgentTrap_3094, sCellEventTrap_d_5f=sCellEventTrap_d_5f, mngmtAgentTrap_27021=mngmtAgentTrap_27021, mngmtAgentTrap_1001=mngmtAgentTrap_1001, compaq=compaq, mngmtAgentTrap_3029=mngmtAgentTrap_3029, mngmtAgentTrap_5007=mngmtAgentTrap_5007, sCellEventTrap_3_2=sCellEventTrap_3_2, sCellEventTrap_9_4=sCellEventTrap_9_4, mngmtAgentTrap_15003=mngmtAgentTrap_15003, mngmtAgentTrap_6032=mngmtAgentTrap_6032, mngmtAgentTrap_18034=mngmtAgentTrap_18034, mngmtAgentTrap_18028=mngmtAgentTrap_18028, mngmtAgentTrap_26010=mngmtAgentTrap_26010, mngmtAgentTrap_5004=mngmtAgentTrap_5004, sCellEventTrap_6_20=sCellEventTrap_6_20, mngmtAgentTrap_50=mngmtAgentTrap_50, mngmtAgentTrap_2098=mngmtAgentTrap_2098, mngmtAgentTrap_4007=mngmtAgentTrap_4007, mngmtAgentTrap_9023=mngmtAgentTrap_9023, hostUUID=hostUUID, mngmtAgentTrap_10040=mngmtAgentTrap_10040, mngmtAgentTrap_25002=mngmtAgentTrap_25002, mngmtAgentTrap_18065=mngmtAgentTrap_18065, sCellEventTrap_9_cf=sCellEventTrap_9_cf, sCellEventTrap_9_74=sCellEventTrap_9_74, mngmtAgentTrap_46=mngmtAgentTrap_46, mngmtAgentTrap_8063=mngmtAgentTrap_8063, sCellEventTrap_4_7=sCellEventTrap_4_7, sCellEventTrap_6_3=sCellEventTrap_6_3, sCellEventTrap_6_18=sCellEventTrap_6_18, mngmtAgentTrap_36=mngmtAgentTrap_36, mngmtAgentTrap_3015=mngmtAgentTrap_3015, mngmtAgentTrap_4048=mngmtAgentTrap_4048, sCellEventTrap_9_17=sCellEventTrap_9_17, mngmtAgentTrap_16039=mngmtAgentTrap_16039, mngmtAgentTrap_2062=mngmtAgentTrap_2062, mngmtAgentTrap_59=mngmtAgentTrap_59, mngmtAgentTrap_4023=mngmtAgentTrap_4023, mngmtAgentTrap_10027=mngmtAgentTrap_10027, sCellEventTrap_9_46=sCellEventTrap_9_46, sCellEventTrap_9_ce=sCellEventTrap_9_ce, mngmtAgentTrap_27019=mngmtAgentTrap_27019, mngmtAgentTrap_27026=mngmtAgentTrap_27026, mngmtAgentTrap_87=mngmtAgentTrap_87, sCellEventTrap_6_a=sCellEventTrap_6_a, sCellEventTrap_6_37=sCellEventTrap_6_37, sCellEventTrap_c_12=sCellEventTrap_c_12, hostEntryIndex=hostEntryIndex, sCellEventTrap_9_26=sCellEventTrap_9_26, mngmtAgentTrap_18045=mngmtAgentTrap_18045, mngmtAgentTrap_4059=mngmtAgentTrap_4059, mngmtAgentTrap_15005=mngmtAgentTrap_15005, sCellEventTrap_6_3c=sCellEventTrap_6_3c, nscStatusTable=nscStatusTable, mngmtAgentTrap_124=mngmtAgentTrap_124, sCellEventTrap_6_c=sCellEventTrap_6_c, sCellEventTrap_9_8=sCellEventTrap_9_8, mngmtAgentTrap_18039=mngmtAgentTrap_18039, sCellEventTrap_9_d1=sCellEventTrap_9_d1, mngmtAgentTrap_9018=mngmtAgentTrap_9018, sCellEventTrap_c_0=sCellEventTrap_c_0, mngmtAgentTrap_8007=mngmtAgentTrap_8007, mngmtAgentTrap_21017=mngmtAgentTrap_21017, sCellEventTrap_6_3e=sCellEventTrap_6_3e, sCellEventTrap_9_1c=sCellEventTrap_9_1c, mngmtAgentTrap_5015=mngmtAgentTrap_5015, mngmtAgentTrap_20016=mngmtAgentTrap_20016, mngmtAgentTrap_20017=mngmtAgentTrap_20017, scellTotal=scellTotal, mngmtAgentTrap_84=mngmtAgentTrap_84, mngmtAgentTrap_8075=mngmtAgentTrap_8075, mngmtAgentTrap_8031=mngmtAgentTrap_8031, mngmtAgentTrap_10036=mngmtAgentTrap_10036, sCellEventTrap_42_5=sCellEventTrap_42_5, mngmtAgentTrap_13012=mngmtAgentTrap_13012, mngmtAgentTrap_6002=mngmtAgentTrap_6002, sCellEventTrap_d_4b=sCellEventTrap_d_4b, mngmtAgentTrap_21002=mngmtAgentTrap_21002, mngmtAgentTrap_27017=mngmtAgentTrap_27017, mngmtAgentTrap_22001=mngmtAgentTrap_22001, mngmtAgentTrap_27040=mngmtAgentTrap_27040)
mibBuilder.exportSymbols("CPQHSV110V3-MIB", sCellEventTrap_9_3e=sCellEventTrap_9_3e, mngmtAgentTrap_18075=mngmtAgentTrap_18075, cpqHSV=cpqHSV, sCellEventTrap_6_38=sCellEventTrap_6_38, sCellEventTrap_42_4=sCellEventTrap_42_4, mngmtAgentTrap_16018=mngmtAgentTrap_16018, mngmtAgentTrap_13=mngmtAgentTrap_13, mngmtAgentTrap_20013=mngmtAgentTrap_20013, mngmtAgentTrap_2001=mngmtAgentTrap_2001, mngmtAgentTrap_8029=mngmtAgentTrap_8029, sCellEventTrap_9_d4=sCellEventTrap_9_d4, sCellEventTrap_6_25=sCellEventTrap_6_25, sCellEventTrap_6_15=sCellEventTrap_6_15, mngmtAgentTrap_4047=mngmtAgentTrap_4047, shelfEntry=shelfEntry, mngmtAgentTrap_4028=mngmtAgentTrap_4028, mngmtAgentTrap_9016=mngmtAgentTrap_9016, sCellEventTrap_d_4=sCellEventTrap_d_4, sCellEventTrap_83_3=sCellEventTrap_83_3, mngmtAgentTrap_8060=mngmtAgentTrap_8060, mngmtAgentTrap_47=mngmtAgentTrap_47, mngmtAgentTrap_2059=mngmtAgentTrap_2059, mngmtAgentTrap_21003=mngmtAgentTrap_21003, mngmtAgentTrap_27009=mngmtAgentTrap_27009, scellCAC=scellCAC, mngmtAgentTrap_9036=mngmtAgentTrap_9036, mngmtAgentTrap_8005=mngmtAgentTrap_8005, sCellEventTrap_9_21=sCellEventTrap_9_21, mngmtAgentTrap_3084=mngmtAgentTrap_3084, mngmtAgentTrap_3039=mngmtAgentTrap_3039, mngmtAgentTrap_2004=mngmtAgentTrap_2004, mngmtAgentTrap_6020=mngmtAgentTrap_6020, mngmtAgentTrap_8042=mngmtAgentTrap_8042, sCellEventTrap_d_d8=sCellEventTrap_d_d8, mngmtAgentTrap_20018=mngmtAgentTrap_20018, mngmtAgentTrap_27003=mngmtAgentTrap_27003, mngmtAgentTrap_27033=mngmtAgentTrap_27033, mngmtAgentTrap_5017=mngmtAgentTrap_5017, sCellEventTrap_c_f=sCellEventTrap_c_f, mngmtAgentTrap_20002=mngmtAgentTrap_20002, sCellEventTrap_4_e=sCellEventTrap_4_e, sCellEventTrap_9_15=sCellEventTrap_9_15, mngmtAgentTrap_3058=mngmtAgentTrap_3058, mngmtAgentTrap_2060=mngmtAgentTrap_2060, mngmtAgentTrap_3056=mngmtAgentTrap_3056, mngmtAgentTrap_8083=mngmtAgentTrap_8083, mngmtAgentTrap_17003=mngmtAgentTrap_17003, mngmtAgentTrap_92=mngmtAgentTrap_92, mngmtAgentTrap_98=mngmtAgentTrap_98, mngmtAgentTrap_23003=mngmtAgentTrap_23003, mngmtAgentTrap_25015=mngmtAgentTrap_25015, scellStatus=scellStatus, mngmtAgentTrap_3054=mngmtAgentTrap_3054, mngmtAgentTrap_4029=mngmtAgentTrap_4029, sCellEventTrap_9_3=sCellEventTrap_9_3, mngmtAgentTrap_11004=mngmtAgentTrap_11004, sCellEventTrap_6_0=sCellEventTrap_6_0, mngmtAgentTrap_2076=mngmtAgentTrap_2076, sCellEventTrap_9_c9=sCellEventTrap_9_c9, mngmtAgentTrap_1000=mngmtAgentTrap_1000, shelfElementNum=shelfElementNum, mngmtAgentTrap_29=mngmtAgentTrap_29, mngmtAgentTrap_8012=mngmtAgentTrap_8012, mngmtAgentTrap_27043=mngmtAgentTrap_27043, mngmtAgentTrap_114=mngmtAgentTrap_114, mngmtAgentTrap_2049=mngmtAgentTrap_2049, mngmtAgentTrap_54=mngmtAgentTrap_54, mngmtAgentTrap_27015=mngmtAgentTrap_27015, sCellEventTrap_c_15=sCellEventTrap_c_15, sCellEventTrap_9_31=sCellEventTrap_9_31, mngmtAgentTrap_22=mngmtAgentTrap_22, mngmtAgentTrap_27001=mngmtAgentTrap_27001, mngmtAgentTrap_10006=mngmtAgentTrap_10006, mngmtAgentTrap_14003=mngmtAgentTrap_14003, mngmtAgentTrap_18024=mngmtAgentTrap_18024, mngmtAgentTrap_49=mngmtAgentTrap_49, nscEntry=nscEntry, sCellEventTrap_9_5=sCellEventTrap_9_5, sCellEventTrap_42_0=sCellEventTrap_42_0, mngmtAgentTrap_72=mngmtAgentTrap_72, mngmtAgentTrap_10001=mngmtAgentTrap_10001, mngmtAgentTrap_18009=mngmtAgentTrap_18009, mngmtAgentTrap_2064=mngmtAgentTrap_2064, mngmtAgentTrap_4033=mngmtAgentTrap_4033, mngmtAgentTrap_10039=mngmtAgentTrap_10039, mngmtAgentTrap_3035=mngmtAgentTrap_3035, mngmtAgentTrap_8002=mngmtAgentTrap_8002, mngmtAgentTrap_17016=mngmtAgentTrap_17016, sCellEventTrap_d_d9=sCellEventTrap_d_d9, sCellEventTrap_d_1=sCellEventTrap_d_1, mngmtAgentTrap_9004=mngmtAgentTrap_9004, mngmtAgentTrap_27030=mngmtAgentTrap_27030, scellNameDateTime=scellNameDateTime, mngmtAgentTrap_3078=mngmtAgentTrap_3078, mngmtAgentTrap_18006=mngmtAgentTrap_18006, sCellEventTrap_9_12=sCellEventTrap_9_12, mngmtAgentTrap_8077=mngmtAgentTrap_8077, sCellEventTrap_9_cb=sCellEventTrap_9_cb, sCellEventTrap_4_9=sCellEventTrap_4_9, mngmtAgentTrap_129=mngmtAgentTrap_129, mngmtAgentTrap_2052=mngmtAgentTrap_2052, mngmtAgentTrap_4054=mngmtAgentTrap_4054, mngmtAgentTrap_10021=mngmtAgentTrap_10021, mngmtAgentTrap_16040=mngmtAgentTrap_16040, mngmtAgentTrap_3075=mngmtAgentTrap_3075, mngmtAgentTrap_96=mngmtAgentTrap_96, mngmtAgentTrap_18050=mngmtAgentTrap_18050, mngmtAgentTrap_25008=mngmtAgentTrap_25008, mngmtAgentTrap_3001=mngmtAgentTrap_3001, mngmtAgentTrap_18051=mngmtAgentTrap_18051, sCellEventTrap_9_d2=sCellEventTrap_9_d2, mngmtAgentTrap_8055=mngmtAgentTrap_8055, sCellEventTrap_9_77=sCellEventTrap_9_77, mngmtAgentTrap_8073=mngmtAgentTrap_8073, sCellEventTrap_c_6=sCellEventTrap_c_6, shelfEntryIndex=shelfEntryIndex, scell=scell, sCellEventTrap_9_70=sCellEventTrap_9_70, mngmtAgentTrap_91=mngmtAgentTrap_91, mngmtAgentTrap_5013=mngmtAgentTrap_5013, mngmtAgentTrap_10026=mngmtAgentTrap_10026, mngmtAgentTrap_10044=mngmtAgentTrap_10044, shelfStatus=shelfStatus, mngmtAgentTrap_14012=mngmtAgentTrap_14012, mngmtAgentTrap_64=mngmtAgentTrap_64, mngmtAgentTrap_67=mngmtAgentTrap_67, mngmtAgentTrap_3038=mngmtAgentTrap_3038, mngmtAgentTrap_4018=mngmtAgentTrap_4018, mngmtAgentTrap_20022=mngmtAgentTrap_20022, mngmtAgentTrap_26012=mngmtAgentTrap_26012, mngmtAgentTrap_27008=mngmtAgentTrap_27008, sCellEventTrap_4_1=sCellEventTrap_4_1, mngmtAgentTrap_12005=mngmtAgentTrap_12005, mngmtAgentTrap_2=mngmtAgentTrap_2, mngmtAgentTrap_112=mngmtAgentTrap_112, mngmtAgentTrap_8008=mngmtAgentTrap_8008)
| (integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, constraints_intersection, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(iso, unsigned32, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, ip_address, mib_identifier, object_identity, bits, module_identity, counter32, notification_type, integer32, counter64, time_ticks, enterprises) = mibBuilder.importSymbols('SNMPv2-SMI', 'iso', 'Unsigned32', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'IpAddress', 'MibIdentifier', 'ObjectIdentity', 'Bits', 'ModuleIdentity', 'Counter32', 'NotificationType', 'Integer32', 'Counter64', 'TimeTicks', 'enterprises')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
compaq = mib_identifier((1, 3, 6, 1, 4, 1, 232))
cpq_element_manager = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136))
cpq_hsv = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1))
cpq_hsv_agent = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 1))
cpq_hsv_server = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 2))
hsv_object = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3))
ma_hsv_mib_rev = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 4))
scell = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1))
agent = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 2))
host = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3))
nsc = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4))
shelf = mib_identifier((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8))
ag_manufacturer = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agManufacturer.setStatus('mandatory')
ag_maj_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agMajVersion.setStatus('mandatory')
ag_min_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agMinVersion.setStatus('mandatory')
ag_host_name = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agHostName.setStatus('mandatory')
ag_enterprise = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 5), object_identifier()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agEnterprise.setStatus('mandatory')
ag_description = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agDescription.setStatus('mandatory')
ag_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7))
if mibBuilder.loadTexts:
agStatusTable.setStatus('mandatory')
agent_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'agentEntryIndex'))
if mibBuilder.loadTexts:
agentEntry.setStatus('mandatory')
agent_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEntryIndex.setStatus('mandatory')
agent_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('ok', 2), ('degraded', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentStatus.setStatus('mandatory')
agent_event_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventCode.setStatus('mandatory')
agent_event_level = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventLevel.setStatus('mandatory')
agent_event_time_date = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventTimeDate.setStatus('mandatory')
agent_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 1, 7, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
agentEventDescription.setStatus('mandatory')
srv_cpu = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 1), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvCPU.setStatus('mandatory')
srv_computer_type = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvComputerType.setStatus('mandatory')
srv_model = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvModel.setStatus('mandatory')
srv_sub_model = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvSubModel.setStatus('mandatory')
srv_bios_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvBiosVersion.setStatus('mandatory')
srv_os = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOS.setStatus('mandatory')
srv_os_maj_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOSMajVersion.setStatus('mandatory')
srv_os_min_version = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
srvOSMinVersion.setStatus('mandatory')
ma_hsv_mib_rev_major = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
maHSVMibRevMajor.setStatus('mandatory')
ma_hsv_mib_rev_minor = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 4, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
maHSVMibRevMinor.setStatus('mandatory')
scell_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellTotal.setStatus('mandatory')
scell_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2))
if mibBuilder.loadTexts:
scellStatusTable.setStatus('mandatory')
scell_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'scellEntryIndex'))
if mibBuilder.loadTexts:
scellEntry.setStatus('mandatory')
scell_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEntryIndex.setStatus('mandatory')
scell_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellName.setStatus('mandatory')
scell_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellUUID.setStatus('mandatory')
scell_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('informational', 1), ('minor', 2), ('major', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellStatus.setStatus('mandatory')
scell_event_description = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventDescription.setStatus('mandatory')
scell_event_time_date = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventTimeDate.setStatus('mandatory')
scell_event_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEventCode.setStatus('mandatory')
scell_sw_component = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellSWComponent.setStatus('mandatory')
scell_e_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellECode.setStatus('mandatory')
scell_cac = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellCAC.setStatus('mandatory')
scell_eip = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellEIP.setStatus('mandatory')
scell_name_date_time = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 1, 2, 1, 12), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
scellNameDateTime.setStatus('mandatory')
host_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostTotal.setStatus('mandatory')
host_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2))
if mibBuilder.loadTexts:
hostStatusTable.setStatus('mandatory')
host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'hostEntryIndex'))
if mibBuilder.loadTexts:
hostEntry.setStatus('mandatory')
host_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostEntryIndex.setStatus('mandatory')
host_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostName.setStatus('mandatory')
host_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostUUID.setStatus('mandatory')
host_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 3, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('informational', 0), ('minor', 1), ('major', 2), ('critical', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hostStatus.setStatus('mandatory')
nsc_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscTotal.setStatus('mandatory')
nsc_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2))
if mibBuilder.loadTexts:
nscStatusTable.setStatus('mandatory')
nsc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'nscEntryIndex'))
if mibBuilder.loadTexts:
nscEntry.setStatus('mandatory')
nsc_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscEntryIndex.setStatus('mandatory')
nsc_name = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscName.setStatus('mandatory')
nsc_uuid = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscUUID.setStatus('mandatory')
nsc_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 4, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('informational', 0), ('minor', 1), ('major', 2), ('critical', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nscStatus.setStatus('mandatory')
shelf_total = mib_scalar((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfTotal.setStatus('mandatory')
shelf_status_table = mib_table((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2))
if mibBuilder.loadTexts:
shelfStatusTable.setStatus('mandatory')
shelf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1)).setIndexNames((0, 'CPQHSV110V3-MIB', 'shelfEntryIndex'))
if mibBuilder.loadTexts:
shelfEntry.setStatus('mandatory')
shelf_entry_index = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfEntryIndex.setStatus('mandatory')
shelf_status = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('other', 1), ('ok', 2), ('degraded', 3), ('failed', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfStatus.setStatus('mandatory')
shelf_id = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfId.setStatus('mandatory')
shelf_element_type = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfElementType.setStatus('mandatory')
shelf_element_num = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfElementNum.setStatus('mandatory')
shelf_error_code = mib_table_column((1, 3, 6, 1, 4, 1, 232, 136, 1, 3, 8, 2, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfErrorCode.setStatus('mandatory')
emu_event_trap_informative = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
emu_event_trap_noncritical = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
emu_event_trap_critical = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
emu_event_trap_unrecoverable = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'shelfId'), ('CPQHSV110V3-MIB', 'shelfElementType'), ('CPQHSV110V3-MIB', 'shelfElementNum'), ('CPQHSV110V3-MIB', 'shelfErrorCode'))
s_cell_event_trap_1_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600256)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_1_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600257)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600768)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600769)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600770)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600771)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600772)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600773)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600774)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600775)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_3_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13600776)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601024)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601025)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601026)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601027)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601028)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601029)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601030)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601031)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601032)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601033)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601034)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601035)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601036)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601037)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601038)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601039)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601040)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_4_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601041)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601536)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601537)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601538)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601539)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601540)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601541)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601543)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601544)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601545)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601546)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601547)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601548)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601549)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601550)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601551)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601552)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601554)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601555)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601556)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601557)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601558)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601560)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601561)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601562)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601563)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601564)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601565)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601566)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601567)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601568)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601569)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601571)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601572)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601573)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601574)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601575)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601576)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601577)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601578)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601579)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601580)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601581)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_2e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601582)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601584)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601585)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601586)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601587)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601588)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601589)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601590)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601591)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601592)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601593)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601594)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601595)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601596)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601597)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_6_3e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601598)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601792)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601793)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601794)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601795)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601796)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601797)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601798)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601799)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_7_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13601800)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602305)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602306)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602307)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602308)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602309)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602310)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602311)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602312)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602313)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602314)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602316)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602317)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602318)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602319)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602321)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602322)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602323)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602324)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602325)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602326)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602327)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602328)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602329)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602330)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602331)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602332)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602333)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602334)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_1f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602335)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602336)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602337)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602338)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602339)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602340)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602341)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602342)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602343)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602344)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602345)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602346)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602347)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602348)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602349)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602350)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_2f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602351)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602352)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602353)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602354)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602355)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602356)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602357)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602358)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602359)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602360)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602361)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602362)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602363)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602364)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602365)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602366)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_3f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602367)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602368)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602369)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602371)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_44 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602372)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_45 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602373)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_46 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602374)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602375)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_48 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602376)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_49 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602377)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_65 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602405)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_66 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602406)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_67 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602407)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_68 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602408)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_69 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602409)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602410)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602411)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602412)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602413)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_6e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602414)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_70 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602416)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602417)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602418)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_73 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602419)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_74 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602420)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_75 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602421)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_76 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602422)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_77 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602423)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_78 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602424)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_79 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602425)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_7a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602426)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_c8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602504)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_c9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602505)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_ca = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602506)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cb = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602507)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cc = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602508)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cd = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602509)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_ce = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602510)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_cf = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602511)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602512)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602513)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602514)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602515)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602516)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602517)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602518)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_9_d7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602519)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_b_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13602816)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603072)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603073)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603074)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603075)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603076)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603077)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603078)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603079)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603080)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603081)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_a = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603082)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603084)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603087)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603088)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603089)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603090)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_c_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603093)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603328)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603329)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603330)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603331)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603332)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603379)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603380)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603381)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603399)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_4b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603403)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_4c = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603404)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_5b = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603419)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_5f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603423)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_6f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603439)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603441)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603442)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_7e = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603454)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_7f = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603455)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_82 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603458)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_83 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603459)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_85 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603461)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_8d = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603469)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_a1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603489)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_b5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603509)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_d8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603544)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_d9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603545)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_dd = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603549)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_de = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603550)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_ec = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603564)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_d_f0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13603568)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616896)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616897)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616899)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616900)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_42_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13616901)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_0 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633536)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633537)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633538)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633539)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633540)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633541)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
s_cell_event_trap_83_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 13633542)).setObjects(('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'scellSWComponent'), ('CPQHSV110V3-MIB', 'scellECode'), ('CPQHSV110V3-MIB', 'scellCAC'), ('CPQHSV110V3-MIB', 'scellEIP'))
mngmt_agent_trap_1 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_7 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_19 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_22 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_23 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_28 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_29 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_30 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_31 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_32 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_33 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_34 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_35 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_36 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_37 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_38 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_39 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_40 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_41 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_42 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_43 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_44 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_45 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_46 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_47 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_48 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_49 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_50 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_51 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_52 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_53 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_54 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_55 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000055)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_56 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000056)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_57 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_58 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_59 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_60 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_61 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_62 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_63 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_64 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_65 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_66 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_67 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_68 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_69 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_70 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_71 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_72 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000072)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_73 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_74 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_75 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_76 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_77 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_78 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_79 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_80 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_81 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_82 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000082)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_83 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_84 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_85 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000085)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_86 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_87 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000087)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_88 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000088)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_89 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000089)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_90 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_91 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000091)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_92 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000092)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_93 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000093)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_94 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000094)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_95 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000095)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_96 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000096)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_97 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000097)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_98 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000098)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_99 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000099)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_100 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000100)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_101 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000101)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_102 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000102)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_103 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000103)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_104 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000104)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_105 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000105)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_106 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000106)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_107 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000107)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_108 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000108)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_109 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000109)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_110 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000110)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_111 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000111)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_112 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000112)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_113 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000113)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_114 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000114)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_115 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000115)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_116 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000116)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_117 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000117)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_118 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000118)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_119 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000119)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_120 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000120)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_121 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000121)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_122 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000122)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_123 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000123)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_124 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000124)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_125 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000125)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_126 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000126)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_127 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000127)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_128 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000128)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_129 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000129)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_130 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000130)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_131 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000131)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_132 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000132)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_133 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136000133)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1000 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001000)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_1014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136001014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2072 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002072)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2082 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002082)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2085 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002085)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2087 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002087)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2088 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002088)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2089 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002089)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002091)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002092)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2093 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002093)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002095)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2096 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002096)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2097 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002097)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2098 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002098)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2099 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002099)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2100 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002100)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2102 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002102)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_2103 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136002103)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3055 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003055)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3056 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003056)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3072 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003072)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3091 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003091)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3092 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003092)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3094 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003094)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_3095 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136003095)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4000 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004000)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_4059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136004059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_5019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136005019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_6038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136006038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8053 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008053)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8054 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008054)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8055 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008055)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8056 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008056)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8057 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008057)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8058 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008058)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8061 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008061)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8062 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008062)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8064 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008064)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8069 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008069)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8077 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008077)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8078 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008078)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8079 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008079)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8082 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008082)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8083 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008083)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8084 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008084)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8085 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008085)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8086 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008086)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8087 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008087)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8088 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008088)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8089 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008089)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_8090 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136008090)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_9036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136009036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_10044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136010044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_11004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136011004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_12008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136012008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_13020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136013020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_14017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136014017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_15009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136015009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_16040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136016040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_17017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136017017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18050 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018050)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18051 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018051)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18052 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018052)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18059 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018059)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18060 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018060)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18063 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018063)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18065 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018065)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18066 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018066)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18067 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018067)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18068 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018068)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18070 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018070)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18071 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018071)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18073 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018073)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18074 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018074)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18075 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018075)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18076 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018076)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18080 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018080)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_18081 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136018081)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_20023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136020023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_21019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136021019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_22001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136022001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_22002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136022002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_23002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136023002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_23003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136023003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_24004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136024004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_25019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136025019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_26016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136026016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27001 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027001)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27002 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027002)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27003 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027003)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27004 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027004)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27005 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027005)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27006 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027006)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27007 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027007)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27008 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027008)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27009 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027009)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27010 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027010)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27011 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027011)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27012 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027012)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27013 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027013)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27014 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027014)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27015 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027015)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27016 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027016)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27017 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027017)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27018 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027018)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27019 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027019)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27020 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027020)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27021 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027021)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27022 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027022)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27023 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027023)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27024 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027024)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27025 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027025)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27026 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027026)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27027 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027027)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27028 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027028)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27029 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027029)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27030 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027030)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27031 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027031)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27032 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027032)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27033 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027033)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27034 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027034)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27035 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027035)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27036 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027036)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27037 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027037)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27038 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027038)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27039 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027039)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27040 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027040)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27041 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027041)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27042 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027042)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27043 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027043)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27044 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027044)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27045 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027045)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27046 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027046)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27047 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027047)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27048 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027048)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mngmt_agent_trap_27049 = notification_type((1, 3, 6, 1, 4, 1, 232) + (0, 136027049)).setObjects(('CPQHSV110V3-MIB', 'hostName'), ('CPQHSV110V3-MIB', 'scellNameDateTime'), ('CPQHSV110V3-MIB', 'agentEventCode'), ('CPQHSV110V3-MIB', 'agentEventDescription'))
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_103=mngmtAgentTrap_103, mngmtAgentTrap_3021=mngmtAgentTrap_3021, mngmtAgentTrap_8001=mngmtAgentTrap_8001, sCellEventTrap_9_6=sCellEventTrap_9_6, scellEventDescription=scellEventDescription, mngmtAgentTrap_3072=mngmtAgentTrap_3072, sCellEventTrap_6_2c=sCellEventTrap_6_2c, mngmtAgentTrap_2072=mngmtAgentTrap_2072, mngmtAgentTrap_8078=mngmtAgentTrap_8078, mngmtAgentTrap_16001=mngmtAgentTrap_16001, mngmtAgentTrap_2008=mngmtAgentTrap_2008, mngmtAgentTrap_83=mngmtAgentTrap_83, sCellEventTrap_6_2d=sCellEventTrap_6_2d, sCellEventTrap_9_72=sCellEventTrap_9_72, mngmtAgentTrap_8044=mngmtAgentTrap_8044, mngmtAgentTrap_18038=mngmtAgentTrap_18038, sCellEventTrap_d_ec=sCellEventTrap_d_ec, mngmtAgentTrap_27020=mngmtAgentTrap_27020, mngmtAgentTrap_4000=mngmtAgentTrap_4000, mngmtAgentTrap_26009=mngmtAgentTrap_26009, mngmtAgentTrap_27042=mngmtAgentTrap_27042, mngmtAgentTrap_4050=mngmtAgentTrap_4050, mngmtAgentTrap_27046=mngmtAgentTrap_27046, mngmtAgentTrap_9027=mngmtAgentTrap_9027, mngmtAgentTrap_27048=mngmtAgentTrap_27048, mngmtAgentTrap_18025=mngmtAgentTrap_18025, mngmtAgentTrap_8013=mngmtAgentTrap_8013, mngmtAgentTrap_9035=mngmtAgentTrap_9035, mngmtAgentTrap_2007=mngmtAgentTrap_2007, mngmtAgentTrap_11003=mngmtAgentTrap_11003, mngmtAgentTrap_16037=mngmtAgentTrap_16037, mngmtAgentTrap_88=mngmtAgentTrap_88, mngmtAgentTrap_20019=mngmtAgentTrap_20019, mngmtAgentTrap_25005=mngmtAgentTrap_25005, sCellEventTrap_6_1e=sCellEventTrap_6_1e, sCellEventTrap_9_3f=sCellEventTrap_9_3f, maHSVMibRevMinor=maHSVMibRevMinor, mngmtAgentTrap_68=mngmtAgentTrap_68, sCellEventTrap_9_c=sCellEventTrap_9_c, mngmtAgentTrap_15=mngmtAgentTrap_15, sCellEventTrap_6_f=sCellEventTrap_6_f, mngmtAgentTrap_2079=mngmtAgentTrap_2079, mngmtAgentTrap_8030=mngmtAgentTrap_8030, mngmtAgentTrap_14017=mngmtAgentTrap_14017, mngmtAgentTrap_18048=mngmtAgentTrap_18048, sCellEventTrap_6_1=sCellEventTrap_6_1, mngmtAgentTrap_99=mngmtAgentTrap_99, mngmtAgentTrap_8054=mngmtAgentTrap_8054, mngmtAgentTrap_21009=mngmtAgentTrap_21009, mngmtAgentTrap_6016=mngmtAgentTrap_6016, mngmtAgentTrap_21014=mngmtAgentTrap_21014, mngmtAgentTrap_9025=mngmtAgentTrap_9025, mngmtAgentTrap_94=mngmtAgentTrap_94, mngmtAgentTrap_15007=mngmtAgentTrap_15007, sCellEventTrap_9_34=sCellEventTrap_9_34, mngmtAgentTrap_6023=mngmtAgentTrap_6023, sCellEventTrap_9_30=sCellEventTrap_9_30, mngmtAgentTrap_57=mngmtAgentTrap_57, sCellEventTrap_9_41=sCellEventTrap_9_41, mngmtAgentTrap_14005=mngmtAgentTrap_14005, sCellEventTrap_83_4=sCellEventTrap_83_4, mngmtAgentTrap_13017=mngmtAgentTrap_13017, sCellEventTrap_9_19=sCellEventTrap_9_19, mngmtAgentTrap_15002=mngmtAgentTrap_15002, nscName=nscName, mngmtAgentTrap_18005=mngmtAgentTrap_18005, mngmtAgentTrap_2033=mngmtAgentTrap_2033, agManufacturer=agManufacturer, mngmtAgentTrap_9013=mngmtAgentTrap_9013, mngmtAgentTrap_2010=mngmtAgentTrap_2010, sCellEventTrap_6_1a=sCellEventTrap_6_1a, mngmtAgentTrap_26007=mngmtAgentTrap_26007, mngmtAgentTrap_10031=mngmtAgentTrap_10031, mngmtAgentTrap_130=mngmtAgentTrap_130, mngmtAgentTrap_3044=mngmtAgentTrap_3044, mngmtAgentTrap_8064=mngmtAgentTrap_8064, mngmtAgentTrap_20011=mngmtAgentTrap_20011, sCellEventTrap_6_19=sCellEventTrap_6_19, mngmtAgentTrap_8071=mngmtAgentTrap_8071, agMajVersion=agMajVersion, sCellEventTrap_4_4=sCellEventTrap_4_4, mngmtAgentTrap_17012=mngmtAgentTrap_17012, mngmtAgentTrap_27018=mngmtAgentTrap_27018, emuEventTrapInformative=emuEventTrapInformative, scellEntry=scellEntry, sCellEventTrap_4_8=sCellEventTrap_4_8, mngmtAgentTrap_2092=mngmtAgentTrap_2092, mngmtAgentTrap_21007=mngmtAgentTrap_21007, mngmtAgentTrap_111=mngmtAgentTrap_111, sCellEventTrap_7_1=sCellEventTrap_7_1, sCellEventTrap_6_2a=sCellEventTrap_6_2a, sCellEventTrap_c_9=sCellEventTrap_c_9, srvModel=srvModel, mngmtAgentTrap_1010=mngmtAgentTrap_1010, mngmtAgentTrap_18=mngmtAgentTrap_18, mngmtAgentTrap_4042=mngmtAgentTrap_4042, mngmtAgentTrap_2081=mngmtAgentTrap_2081, hostName=hostName, mngmtAgentTrap_27006=mngmtAgentTrap_27006, mngmtAgentTrap_42=mngmtAgentTrap_42, mngmtAgentTrap_6036=mngmtAgentTrap_6036, mngmtAgentTrap_3067=mngmtAgentTrap_3067, mngmtAgentTrap_16012=mngmtAgentTrap_16012, sCellEventTrap_4_3=sCellEventTrap_4_3, mngmtAgentTrap_74=mngmtAgentTrap_74, mngmtAgentTrap_17002=mngmtAgentTrap_17002, mngmtAgentTrap_8052=mngmtAgentTrap_8052, mngmtAgentTrap_6028=mngmtAgentTrap_6028, mngmtAgentTrap_9021=mngmtAgentTrap_9021, sCellEventTrap_9_23=sCellEventTrap_9_23, mngmtAgentTrap_17=mngmtAgentTrap_17, mngmtAgentTrap_27028=mngmtAgentTrap_27028, mngmtAgentTrap_110=mngmtAgentTrap_110, mngmtAgentTrap_5011=mngmtAgentTrap_5011, sCellEventTrap_d_82=sCellEventTrap_d_82, sCellEventTrap_9_24=sCellEventTrap_9_24, mngmtAgentTrap_6018=mngmtAgentTrap_6018, mngmtAgentTrap_4034=mngmtAgentTrap_4034, sCellEventTrap_d_7e=sCellEventTrap_d_7e, sCellEventTrap_9_40=sCellEventTrap_9_40, mngmtAgentTrap_27=mngmtAgentTrap_27, mngmtAgentTrap_2021=mngmtAgentTrap_2021, sCellEventTrap_9_2f=sCellEventTrap_9_2f, mngmtAgentTrap_55=mngmtAgentTrap_55, sCellEventTrap_83_2=sCellEventTrap_83_2, mngmtAgentTrap_1008=mngmtAgentTrap_1008, mngmtAgentTrap_79=mngmtAgentTrap_79, mngmtAgentTrap_1011=mngmtAgentTrap_1011, mngmtAgentTrap_77=mngmtAgentTrap_77, sCellEventTrap_3_6=sCellEventTrap_3_6, mngmtAgentTrap_18002=mngmtAgentTrap_18002, mngmtAgentTrap_24004=mngmtAgentTrap_24004, sCellEventTrap_3_3=sCellEventTrap_3_3, mngmtAgentTrap_8050=mngmtAgentTrap_8050, agentEntry=agentEntry, mngmtAgentTrap_20005=mngmtAgentTrap_20005, mngmtAgentTrap_10010=mngmtAgentTrap_10010, sCellEventTrap_6_8=sCellEventTrap_6_8, mngmtAgentTrap_27047=mngmtAgentTrap_27047, sCellEventTrap_9_d7=sCellEventTrap_9_d7, mngmtAgentTrap_9002=mngmtAgentTrap_9002, mngmtAgentTrap_9020=mngmtAgentTrap_9020, mngmtAgentTrap_5018=mngmtAgentTrap_5018, sCellEventTrap_d_33=sCellEventTrap_d_33, mngmtAgentTrap_109=mngmtAgentTrap_109, mngmtAgentTrap_2042=mngmtAgentTrap_2042, mngmtAgentTrap_3062=mngmtAgentTrap_3062, mngmtAgentTrap_8021=mngmtAgentTrap_8021, mngmtAgentTrap_3012=mngmtAgentTrap_3012, mngmtAgentTrap_10035=mngmtAgentTrap_10035, mngmtAgentTrap_17005=mngmtAgentTrap_17005, mngmtAgentTrap_9032=mngmtAgentTrap_9032, mngmtAgentTrap_20023=mngmtAgentTrap_20023, mngmtAgentTrap_4005=mngmtAgentTrap_4005, mngmtAgentTrap_5019=mngmtAgentTrap_5019, mngmtAgentTrap_10038=mngmtAgentTrap_10038, sCellEventTrap_9_f=sCellEventTrap_9_f, mngmtAgentTrap_13020=mngmtAgentTrap_13020, mngmtAgentTrap_14007=mngmtAgentTrap_14007, mngmtAgentTrap_27031=mngmtAgentTrap_27031, mngmtAgentTrap_6=mngmtAgentTrap_6, mngmtAgentTrap_18070=mngmtAgentTrap_18070, agDescription=agDescription, sCellEventTrap_c_10=sCellEventTrap_c_10, mngmtAgentTrap_4036=mngmtAgentTrap_4036, mngmtAgentTrap_8058=mngmtAgentTrap_8058, mngmtAgentTrap_16008=mngmtAgentTrap_16008, mngmtAgentTrap_21016=mngmtAgentTrap_21016, mngmtAgentTrap_24002=mngmtAgentTrap_24002, sCellEventTrap_9_76=sCellEventTrap_9_76, mngmtAgentTrap_4014=mngmtAgentTrap_4014, mngmtAgentTrap_8084=mngmtAgentTrap_8084, sCellEventTrap_9_3c=sCellEventTrap_9_3c, mngmtAgentTrap_8046=mngmtAgentTrap_8046, mngmtAgentTrap_26016=mngmtAgentTrap_26016, mngmtAgentTrap_78=mngmtAgentTrap_78, sCellEventTrap_4_f=sCellEventTrap_4_f, sCellEventTrap_6_21=sCellEventTrap_6_21, mngmtAgentTrap_85=mngmtAgentTrap_85, mngmtAgentTrap_3079=mngmtAgentTrap_3079, mngmtAgentTrap_4017=mngmtAgentTrap_4017, mngmtAgentTrap_6013=mngmtAgentTrap_6013, mngmtAgentTrap_4021=mngmtAgentTrap_4021, mngmtAgentTrap_16023=mngmtAgentTrap_16023, mngmtAgentTrap_19=mngmtAgentTrap_19, mngmtAgentTrap_8014=mngmtAgentTrap_8014, mngmtAgentTrap_21001=mngmtAgentTrap_21001, mngmtAgentTrap_21019=mngmtAgentTrap_21019, sCellEventTrap_9_67=sCellEventTrap_9_67, mngmtAgentTrap_53=mngmtAgentTrap_53, mngmtAgentTrap_2096=mngmtAgentTrap_2096, mngmtAgentTrap_71=mngmtAgentTrap_71, mngmtAgentTrap_27036=mngmtAgentTrap_27036, mngmtAgentTrap_89=mngmtAgentTrap_89, mngmtAgentTrap_1012=mngmtAgentTrap_1012, mngmtAgentTrap_1013=mngmtAgentTrap_1013, mngmtAgentTrap_8081=mngmtAgentTrap_8081, mngmtAgentTrap_11002=mngmtAgentTrap_11002, shelf=shelf, sCellEventTrap_6_16=sCellEventTrap_6_16, mngmtAgentTrap_17001=mngmtAgentTrap_17001, mngmtAgentTrap_6037=mngmtAgentTrap_6037, mngmtAgentTrap_2086=mngmtAgentTrap_2086, mngmtAgentTrap_6035=mngmtAgentTrap_6035, sCellEventTrap_d_83=sCellEventTrap_d_83, mngmtAgentTrap_8074=mngmtAgentTrap_8074, mngmtAgentTrap_26002=mngmtAgentTrap_26002, sCellEventTrap_6_32=sCellEventTrap_6_32, mngmtAgentTrap_27023=mngmtAgentTrap_27023, srvCPU=srvCPU, agEnterprise=agEnterprise, mngmtAgentTrap_18066=mngmtAgentTrap_18066, mngmtAgentTrap_126=mngmtAgentTrap_126, mngmtAgentTrap_16022=mngmtAgentTrap_16022, sCellEventTrap_9_47=sCellEventTrap_9_47, sCellEventTrap_9_7a=sCellEventTrap_9_7a, sCellEventTrap_c_7=sCellEventTrap_c_7, mngmtAgentTrap_2002=mngmtAgentTrap_2002, mngmtAgentTrap_9006=mngmtAgentTrap_9006, sCellEventTrap_c_5=sCellEventTrap_c_5, sCellEventTrap_d_dd=sCellEventTrap_d_dd, mngmtAgentTrap_12=mngmtAgentTrap_12, mngmtAgentTrap_2089=mngmtAgentTrap_2089, mngmtAgentTrap_3057=mngmtAgentTrap_3057, mngmtAgentTrap_6019=mngmtAgentTrap_6019, mngmtAgentTrap_6021=mngmtAgentTrap_6021, sCellEventTrap_6_10=sCellEventTrap_6_10, mngmtAgentTrap_3050=mngmtAgentTrap_3050, sCellEventTrap_6_29=sCellEventTrap_6_29, mngmtAgentTrap_8018=mngmtAgentTrap_8018, shelfTotal=shelfTotal, sCellEventTrap_9_1d=sCellEventTrap_9_1d, mngmtAgentTrap_106=mngmtAgentTrap_106, mngmtAgentTrap_17008=mngmtAgentTrap_17008, mngmtAgentTrap_21006=mngmtAgentTrap_21006, sCellEventTrap_9_2=sCellEventTrap_9_2, mngmtAgentTrap_16030=mngmtAgentTrap_16030, mngmtAgentTrap_3028=mngmtAgentTrap_3028, mngmtAgentTrap_3077=mngmtAgentTrap_3077, mngmtAgentTrap_26=mngmtAgentTrap_26, mngmtAgentTrap_122=mngmtAgentTrap_122, mngmtAgentTrap_9011=mngmtAgentTrap_9011, mngmtAgentTrap_27011=mngmtAgentTrap_27011, mngmtAgentTrap_90=mngmtAgentTrap_90, mngmtAgentTrap_26014=mngmtAgentTrap_26014, sCellEventTrap_4_11=sCellEventTrap_4_11, mngmtAgentTrap_25010=mngmtAgentTrap_25010, mngmtAgentTrap_4015=mngmtAgentTrap_4015, sCellEventTrap_d_0=sCellEventTrap_d_0, mngmtAgentTrap_113=mngmtAgentTrap_113, sCellEventTrap_9_3b=sCellEventTrap_9_3b, mngmtAgentTrap_8088=mngmtAgentTrap_8088, mngmtAgentTrap_27012=mngmtAgentTrap_27012, sCellEventTrap_4_a=sCellEventTrap_4_a)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_3080=mngmtAgentTrap_3080, mngmtAgentTrap_16026=mngmtAgentTrap_16026, sCellEventTrap_9_2b=sCellEventTrap_9_2b, mngmtAgentTrap_39=mngmtAgentTrap_39, scellEventTimeDate=scellEventTimeDate, srvOS=srvOS, mngmtAgentTrap_17014=mngmtAgentTrap_17014, mngmtAgentTrap_5001=mngmtAgentTrap_5001, mngmtAgentTrap_6029=mngmtAgentTrap_6029, mngmtAgentTrap_8047=mngmtAgentTrap_8047, mngmtAgentTrap_16021=mngmtAgentTrap_16021, mngmtAgentTrap_1014=mngmtAgentTrap_1014, mngmtAgentTrap_3071=mngmtAgentTrap_3071, mngmtAgentTrap_16027=mngmtAgentTrap_16027, mngmtAgentTrap_26013=mngmtAgentTrap_26013, mngmtAgentTrap_8004=mngmtAgentTrap_8004, mngmtAgentTrap_20015=mngmtAgentTrap_20015, sCellEventTrap_4_0=sCellEventTrap_4_0, sCellEventTrap_9_6e=sCellEventTrap_9_6e, mngmtAgentTrap_8089=mngmtAgentTrap_8089, mngmtAgentTrap_25014=mngmtAgentTrap_25014, mngmtAgentTrap_21008=mngmtAgentTrap_21008, sCellEventTrap_3_5=sCellEventTrap_3_5, mngmtAgentTrap_4025=mngmtAgentTrap_4025, mngmtAgentTrap_23=mngmtAgentTrap_23, mngmtAgentTrap_2083=mngmtAgentTrap_2083, mngmtAgentTrap_3002=mngmtAgentTrap_3002, sCellEventTrap_9_2d=sCellEventTrap_9_2d, sCellEventTrap_6_33=sCellEventTrap_6_33, mngmtAgentTrap_3092=mngmtAgentTrap_3092, mngmtAgentTrap_6038=mngmtAgentTrap_6038, sCellEventTrap_9_6b=sCellEventTrap_9_6b, sCellEventTrap_6_2b=sCellEventTrap_6_2b, sCellEventTrap_9_cd=sCellEventTrap_9_cd, sCellEventTrap_4_10=sCellEventTrap_4_10, nscEntryIndex=nscEntryIndex, scellEIP=scellEIP, mngmtAgentTrap_12008=mngmtAgentTrap_12008, mngmtAgentTrap_10042=mngmtAgentTrap_10042, mngmtAgentTrap_24003=mngmtAgentTrap_24003, mngmtAgentTrap_25003=mngmtAgentTrap_25003, sCellEventTrap_9_13=sCellEventTrap_9_13, mngmtAgentTrap_30=mngmtAgentTrap_30, sCellEventTrap_9_65=sCellEventTrap_9_65, mngmtAgentTrap_21004=mngmtAgentTrap_21004, mngmtAgentTrap_27027=mngmtAgentTrap_27027, srvBiosVersion=srvBiosVersion, mngmtAgentTrap_5012=mngmtAgentTrap_5012, cpqHSVServer=cpqHSVServer, mngmtAgentTrap_33=mngmtAgentTrap_33, sCellEventTrap_6_23=sCellEventTrap_6_23, mngmtAgentTrap_16033=mngmtAgentTrap_16033, cpqHSVAgent=cpqHSVAgent, mngmtAgentTrap_18076=mngmtAgentTrap_18076, mngmtAgentTrap_27035=mngmtAgentTrap_27035, mngmtAgentTrap_9026=mngmtAgentTrap_9026, mngmtAgentTrap_1009=mngmtAgentTrap_1009, sCellEventTrap_6_12=sCellEventTrap_6_12, mngmtAgentTrap_2022=mngmtAgentTrap_2022, mngmtAgentTrap_16013=mngmtAgentTrap_16013, mngmtAgentTrap_6007=mngmtAgentTrap_6007, mngmtAgentTrap_3076=mngmtAgentTrap_3076, mngmtAgentTrap_9029=mngmtAgentTrap_9029, agentEventCode=agentEventCode, mngmtAgentTrap_3009=mngmtAgentTrap_3009, mngmtAgentTrap_8020=mngmtAgentTrap_8020, mngmtAgentTrap_81=mngmtAgentTrap_81, mngmtAgentTrap_6025=mngmtAgentTrap_6025, mngmtAgentTrap_18019=mngmtAgentTrap_18019, mngmtAgentTrap_95=mngmtAgentTrap_95, mngmtAgentTrap_2090=mngmtAgentTrap_2090, mngmtAgentTrap_8061=mngmtAgentTrap_8061, mngmtAgentTrap_18047=mngmtAgentTrap_18047, sCellEventTrap_7_8=sCellEventTrap_7_8, mngmtAgentTrap_18067=mngmtAgentTrap_18067, sCellEventTrap_4_6=sCellEventTrap_4_6, srvSubModel=srvSubModel, mngmtAgentTrap_108=mngmtAgentTrap_108, mngmtAgentTrap_6015=mngmtAgentTrap_6015, mngmtAgentTrap_8035=mngmtAgentTrap_8035, scellStatusTable=scellStatusTable, sCellEventTrap_c_1=sCellEventTrap_c_1, sCellEventTrap_83_5=sCellEventTrap_83_5, mngmtAgentTrap_6009=mngmtAgentTrap_6009, mngmtAgentTrap_8026=mngmtAgentTrap_8026, mngmtAgentTrap_8045=mngmtAgentTrap_8045, mngmtAgentTrap_14004=mngmtAgentTrap_14004, mngmtAgentTrap_2016=mngmtAgentTrap_2016, mngmtAgentTrap_18080=mngmtAgentTrap_18080, mngmtAgentTrap_26008=mngmtAgentTrap_26008, sCellEventTrap_1_1=sCellEventTrap_1_1, sCellEventTrap_3_8=sCellEventTrap_3_8, mngmtAgentTrap_8065=mngmtAgentTrap_8065, mngmtAgentTrap_115=mngmtAgentTrap_115, mngmtAgentTrap_128=mngmtAgentTrap_128, sCellEventTrap_9_38=sCellEventTrap_9_38, sCellEventTrap_9_36=sCellEventTrap_9_36, mngmtAgentTrap_8032=mngmtAgentTrap_8032, sCellEventTrap_6_b=sCellEventTrap_6_b, mngmtAgentTrap_4027=mngmtAgentTrap_4027, mngmtAgentTrap_2082=mngmtAgentTrap_2082, mngmtAgentTrap_10024=mngmtAgentTrap_10024, sCellEventTrap_4_c=sCellEventTrap_4_c, mngmtAgentTrap_27007=mngmtAgentTrap_27007, mngmtAgentTrap_10004=mngmtAgentTrap_10004, mngmtAgentTrap_21011=mngmtAgentTrap_21011, sCellEventTrap_9_6a=sCellEventTrap_9_6a, mngmtAgentTrap_2025=mngmtAgentTrap_2025, mngmtAgentTrap_3036=mngmtAgentTrap_3036, mngmtAgentTrap_18042=mngmtAgentTrap_18042, sCellEventTrap_9_27=sCellEventTrap_9_27, mngmtAgentTrap_15004=mngmtAgentTrap_15004, mngmtAgentTrap_132=mngmtAgentTrap_132, sCellEventTrap_83_1=sCellEventTrap_83_1, mngmtAgentTrap_9=mngmtAgentTrap_9, mngmtAgentTrap_17009=mngmtAgentTrap_17009, mngmtAgentTrap_9014=mngmtAgentTrap_9014, mngmtAgentTrap_4011=mngmtAgentTrap_4011, mngmtAgentTrap_13015=mngmtAgentTrap_13015, mngmtAgentTrap_8016=mngmtAgentTrap_8016, mngmtAgentTrap_9010=mngmtAgentTrap_9010, mngmtAgentTrap_18010=mngmtAgentTrap_18010, mngmtAgentTrap_119=mngmtAgentTrap_119, mngmtAgentTrap_131=mngmtAgentTrap_131, scellEntryIndex=scellEntryIndex, sCellEventTrap_9_32=sCellEventTrap_9_32, mngmtAgentTrap_18068=mngmtAgentTrap_18068, scellECode=scellECode, sCellEventTrap_6_1f=sCellEventTrap_6_1f, sCellEventTrap_4_5=sCellEventTrap_4_5, mngmtAgentTrap_6026=mngmtAgentTrap_6026, sCellEventTrap_9_1e=sCellEventTrap_9_1e, sCellEventTrap_9_29=sCellEventTrap_9_29, mngmtAgentTrap_6027=mngmtAgentTrap_6027, mngmtAgentTrap_4001=mngmtAgentTrap_4001, mngmtAgentTrap_3024=mngmtAgentTrap_3024, mngmtAgentTrap_16025=mngmtAgentTrap_16025, mngmtAgentTrap_13009=mngmtAgentTrap_13009, sCellEventTrap_6_d=sCellEventTrap_6_d, sCellEventTrap_9_11=sCellEventTrap_9_11, mngmtAgentTrap_2075=mngmtAgentTrap_2075, mngmtAgentTrap_8076=mngmtAgentTrap_8076, mngmtAgentTrap_8082=mngmtAgentTrap_8082, mngmtAgentTrap_25=mngmtAgentTrap_25, sCellEventTrap_6_1c=sCellEventTrap_6_1c, mngmtAgentTrap_4051=mngmtAgentTrap_4051, sCellEventTrap_d_47=sCellEventTrap_d_47, sCellEventTrap_6_9=sCellEventTrap_6_9, mngmtAgentTrap_125=mngmtAgentTrap_125, mngmtAgentTrap_10011=mngmtAgentTrap_10011, mngmtAgentTrap_2074=mngmtAgentTrap_2074, mngmtAgentTrap_12004=mngmtAgentTrap_12004, mngmtAgentTrap_3091=mngmtAgentTrap_3091, mngmtAgentTrap_6017=mngmtAgentTrap_6017, nsc=nsc, mngmtAgentTrap_14006=mngmtAgentTrap_14006, sCellEventTrap_c_8=sCellEventTrap_c_8, mngmtAgentTrap_16029=mngmtAgentTrap_16029, mngmtAgentTrap_3=mngmtAgentTrap_3, mngmtAgentTrap_8003=mngmtAgentTrap_8003, host=host, mngmtAgentTrap_10013=mngmtAgentTrap_10013, sCellEventTrap_d_34=sCellEventTrap_d_34, mngmtAgentTrap_18081=mngmtAgentTrap_18081, mngmtAgentTrap_82=mngmtAgentTrap_82, mngmtAgentTrap_5006=mngmtAgentTrap_5006, mngmtAgentTrap_2048=mngmtAgentTrap_2048, mngmtAgentTrap_3065=mngmtAgentTrap_3065, sCellEventTrap_c_a=sCellEventTrap_c_a, mngmtAgentTrap_58=mngmtAgentTrap_58, mngmtAgentTrap_8017=mngmtAgentTrap_8017, mngmtAgentTrap_25017=mngmtAgentTrap_25017, mngmtAgentTrap_13004=mngmtAgentTrap_13004, mngmtAgentTrap_8059=mngmtAgentTrap_8059, sCellEventTrap_6_27=sCellEventTrap_6_27, sCellEventTrap_9_2c=sCellEventTrap_9_2c, mngmtAgentTrap_51=mngmtAgentTrap_51, hsvObject=hsvObject, sCellEventTrap_6_39=sCellEventTrap_6_39, mngmtAgentTrap_76=mngmtAgentTrap_76, sCellEventTrap_9_68=sCellEventTrap_9_68, mngmtAgentTrap_133=mngmtAgentTrap_133, mngmtAgentTrap_2034=mngmtAgentTrap_2034, mngmtAgentTrap_2069=mngmtAgentTrap_2069, mngmtAgentTrap_10025=mngmtAgentTrap_10025, mngmtAgentTrap_2026=mngmtAgentTrap_2026, mngmtAgentTrap_2084=mngmtAgentTrap_2084, sCellEventTrap_9_1b=sCellEventTrap_9_1b, sCellEventTrap_3_7=sCellEventTrap_3_7, sCellEventTrap_1_0=sCellEventTrap_1_0, sCellEventTrap_9_75=sCellEventTrap_9_75, mngmtAgentTrap_5=mngmtAgentTrap_5, mngmtAgentTrap_18036=mngmtAgentTrap_18036, mngmtAgentTrap_5008=mngmtAgentTrap_5008, shelfErrorCode=shelfErrorCode, sCellEventTrap_6_36=sCellEventTrap_6_36, mngmtAgentTrap_8068=mngmtAgentTrap_8068, mngmtAgentTrap_8079=mngmtAgentTrap_8079, mngmtAgentTrap_27039=mngmtAgentTrap_27039, mngmtAgentTrap_17013=mngmtAgentTrap_17013, sCellEventTrap_3_0=sCellEventTrap_3_0, sCellEventTrap_d_3=sCellEventTrap_d_3, mngmtAgentTrap_18063=mngmtAgentTrap_18063, mngmtAgentTrap_8066=mngmtAgentTrap_8066, mngmtAgentTrap_18073=mngmtAgentTrap_18073, cpqElementManager=cpqElementManager, sCellEventTrap_6_31=sCellEventTrap_6_31, mngmtAgentTrap_70=mngmtAgentTrap_70, sCellEventTrap_d_71=sCellEventTrap_d_71, mngmtAgentTrap_18040=mngmtAgentTrap_18040, sCellEventTrap_9_6c=sCellEventTrap_9_6c, mngmtAgentTrap_21012=mngmtAgentTrap_21012, mngmtAgentTrap_4035=mngmtAgentTrap_4035, mngmtAgentTrap_18008=mngmtAgentTrap_18008, mngmtAgentTrap_8069=mngmtAgentTrap_8069, sCellEventTrap_9_d6=sCellEventTrap_9_d6, mngmtAgentTrap_3055=mngmtAgentTrap_3055, mngmtAgentTrap_10030=mngmtAgentTrap_10030, mngmtAgentTrap_73=mngmtAgentTrap_73, mngmtAgentTrap_25006=mngmtAgentTrap_25006, sCellEventTrap_9_d3=sCellEventTrap_9_d3, mngmtAgentTrap_3045=mngmtAgentTrap_3045, sCellEventTrap_d_a1=sCellEventTrap_d_a1, mngmtAgentTrap_66=mngmtAgentTrap_66, mngmtAgentTrap_25011=mngmtAgentTrap_25011, mngmtAgentTrap_10041=mngmtAgentTrap_10041, mngmtAgentTrap_100=mngmtAgentTrap_100, mngmtAgentTrap_26015=mngmtAgentTrap_26015, mngmtAgentTrap_21013=mngmtAgentTrap_21013, agentEventLevel=agentEventLevel, hostEntry=hostEntry, mngmtAgentTrap_4053=mngmtAgentTrap_4053, mngmtAgentTrap_27041=mngmtAgentTrap_27041, sCellEventTrap_d_8d=sCellEventTrap_d_8d, mngmtAgentTrap_7=mngmtAgentTrap_7, emuEventTrapUnrecoverable=emuEventTrapUnrecoverable, mngmtAgentTrap_9005=mngmtAgentTrap_9005, sCellEventTrap_7_0=sCellEventTrap_7_0, mngmtAgentTrap_121=mngmtAgentTrap_121, scellSWComponent=scellSWComponent, sCellEventTrap_4_d=sCellEventTrap_4_d, sCellEventTrap_6_3a=sCellEventTrap_6_3a, mngmtAgentTrap_2093=mngmtAgentTrap_2093, mngmtAgentTrap_2036=mngmtAgentTrap_2036, mngmtAgentTrap_9012=mngmtAgentTrap_9012, mngmtAgentTrap_25019=mngmtAgentTrap_25019, sCellEventTrap_9_37=sCellEventTrap_9_37, mngmtAgentTrap_3081=mngmtAgentTrap_3081, mngmtAgentTrap_9007=mngmtAgentTrap_9007, mngmtAgentTrap_3049=mngmtAgentTrap_3049, mngmtAgentTrap_10012=mngmtAgentTrap_10012, sCellEventTrap_9_49=sCellEventTrap_9_49, mngmtAgentTrap_8028=mngmtAgentTrap_8028, mngmtAgentTrap_16024=mngmtAgentTrap_16024)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_17017=mngmtAgentTrap_17017, mngmtAgentTrap_6034=mngmtAgentTrap_6034, mngmtAgentTrap_4052=mngmtAgentTrap_4052, mngmtAgentTrap_20003=mngmtAgentTrap_20003, mngmtAgentTrap_3046=mngmtAgentTrap_3046, sCellEventTrap_7_4=sCellEventTrap_7_4, mngmtAgentTrap_5016=mngmtAgentTrap_5016, emuEventTrapNoncritical=emuEventTrapNoncritical, sCellEventTrap_9_1=sCellEventTrap_9_1, mngmtAgentTrap_8010=mngmtAgentTrap_8010, mngmtAgentTrap_9001=mngmtAgentTrap_9001, mngmtAgentTrap_18001=mngmtAgentTrap_18001, mngmtAgentTrap_27004=mngmtAgentTrap_27004, mngmtAgentTrap_2013=mngmtAgentTrap_2013, sCellEventTrap_9_7=sCellEventTrap_9_7, mngmtAgentTrap_3020=mngmtAgentTrap_3020, mngmtAgentTrap_2077=mngmtAgentTrap_2077, mngmtAgentTrap_120=mngmtAgentTrap_120, mngmtAgentTrap_14013=mngmtAgentTrap_14013, maHSVMibRev=maHSVMibRev, mngmtAgentTrap_23002=mngmtAgentTrap_23002, agStatusTable=agStatusTable, mngmtAgentTrap_8036=mngmtAgentTrap_8036, mngmtAgentTrap_6008=mngmtAgentTrap_6008, sCellEventTrap_d_4c=sCellEventTrap_d_4c, mngmtAgentTrap_17015=mngmtAgentTrap_17015, sCellEventTrap_d_b5=sCellEventTrap_d_b5, sCellEventTrap_c_11=sCellEventTrap_c_11, mngmtAgentTrap_2040=mngmtAgentTrap_2040, mngmtAgentTrap_8009=mngmtAgentTrap_8009, mngmtAgentTrap_27044=mngmtAgentTrap_27044, mngmtAgentTrap_5014=mngmtAgentTrap_5014, sCellEventTrap_9_44=sCellEventTrap_9_44, srvComputerType=srvComputerType, mngmtAgentTrap_2032=mngmtAgentTrap_2032, sCellEventTrap_9_22=sCellEventTrap_9_22, scellEventCode=scellEventCode, sCellEventTrap_9_2a=sCellEventTrap_9_2a, mngmtAgentTrap_6014=mngmtAgentTrap_6014, mngmtAgentTrap_8006=mngmtAgentTrap_8006, mngmtAgentTrap_15001=mngmtAgentTrap_15001, shelfId=shelfId, sCellEventTrap_3_4=sCellEventTrap_3_4, mngmtAgentTrap_48=mngmtAgentTrap_48, maHSVMibRevMajor=maHSVMibRevMajor, mngmtAgentTrap_16015=mngmtAgentTrap_16015, mngmtAgentTrap_25016=mngmtAgentTrap_25016, mngmtAgentTrap_2041=mngmtAgentTrap_2041, mngmtAgentTrap_6024=mngmtAgentTrap_6024, mngmtAgentTrap_8041=mngmtAgentTrap_8041, hostTotal=hostTotal, mngmtAgentTrap_15008=mngmtAgentTrap_15008, sCellEventTrap_9_20=sCellEventTrap_9_20, mngmtAgentTrap_34=mngmtAgentTrap_34, mngmtAgentTrap_6005=mngmtAgentTrap_6005, nscTotal=nscTotal, agentEventDescription=agentEventDescription, mngmtAgentTrap_9015=mngmtAgentTrap_9015, mngmtAgentTrap_3048=mngmtAgentTrap_3048, mngmtAgentTrap_40=mngmtAgentTrap_40, mngmtAgentTrap_25001=mngmtAgentTrap_25001, sCellEventTrap_9_ca=sCellEventTrap_9_ca, mngmtAgentTrap_8033=mngmtAgentTrap_8033, mngmtAgentTrap_2103=mngmtAgentTrap_2103, mngmtAgentTrap_18004=mngmtAgentTrap_18004, mngmtAgentTrap_25004=mngmtAgentTrap_25004, mngmtAgentTrap_2078=mngmtAgentTrap_2078, sCellEventTrap_6_14=sCellEventTrap_6_14, mngmtAgentTrap_9017=mngmtAgentTrap_9017, emuEventTrapCritical=emuEventTrapCritical, sCellEventTrap_42_3=sCellEventTrap_42_3, mngmtAgentTrap_6012=mngmtAgentTrap_6012, mngmtAgentTrap_8056=mngmtAgentTrap_8056, mngmtAgentTrap_9022=mngmtAgentTrap_9022, mngmtAgentTrap_24001=mngmtAgentTrap_24001, mngmtAgentTrap_27049=mngmtAgentTrap_27049, sCellEventTrap_7_2=sCellEventTrap_7_2, nscStatus=nscStatus, mngmtAgentTrap_3051=mngmtAgentTrap_3051, sCellEventTrap_9_14=sCellEventTrap_9_14, mngmtAgentTrap_16016=mngmtAgentTrap_16016, mngmtAgentTrap_105=mngmtAgentTrap_105, sCellEventTrap_9_3a=sCellEventTrap_9_3a, sCellEventTrap_d_7f=sCellEventTrap_d_7f, mngmtAgentTrap_15006=mngmtAgentTrap_15006, mngmtAgentTrap_3061=mngmtAgentTrap_3061, mngmtAgentTrap_25012=mngmtAgentTrap_25012, mngmtAgentTrap_13002=mngmtAgentTrap_13002, sCellEventTrap_6_5=sCellEventTrap_6_5, mngmtAgentTrap_8=mngmtAgentTrap_8, mngmtAgentTrap_18052=mngmtAgentTrap_18052, mngmtAgentTrap_27014=mngmtAgentTrap_27014, mngmtAgentTrap_3017=mngmtAgentTrap_3017, sCellEventTrap_9_d0=sCellEventTrap_9_d0, agentEntryIndex=agentEntryIndex, sCellEventTrap_d_35=sCellEventTrap_d_35, sCellEventTrap_9_43=sCellEventTrap_9_43, sCellEventTrap_7_3=sCellEventTrap_7_3, mngmtAgentTrap_1003=mngmtAgentTrap_1003, mngmtAgentTrap_10019=mngmtAgentTrap_10019, sCellEventTrap_9_69=sCellEventTrap_9_69, mngmtAgentTrap_2035=mngmtAgentTrap_2035, mngmtAgentTrap_4049=mngmtAgentTrap_4049, mngmtAgentTrap_10017=mngmtAgentTrap_10017, mngmtAgentTrap_8039=mngmtAgentTrap_8039, mngmtAgentTrap_16004=mngmtAgentTrap_16004, mngmtAgentTrap_10043=mngmtAgentTrap_10043, mngmtAgentTrap_10=mngmtAgentTrap_10, mngmtAgentTrap_8051=mngmtAgentTrap_8051, mngmtAgentTrap_8070=mngmtAgentTrap_8070, mngmtAgentTrap_18074=mngmtAgentTrap_18074, sCellEventTrap_c_4=sCellEventTrap_c_4, mngmtAgentTrap_14002=mngmtAgentTrap_14002, mngmtAgentTrap_5010=mngmtAgentTrap_5010, sCellEventTrap_9_cc=sCellEventTrap_9_cc, mngmtAgentTrap_10018=mngmtAgentTrap_10018, sCellEventTrap_b_0=sCellEventTrap_b_0, mngmtAgentTrap_27016=mngmtAgentTrap_27016, mngmtAgentTrap_10014=mngmtAgentTrap_10014, sCellEventTrap_9_28=sCellEventTrap_9_28, mngmtAgentTrap_52=mngmtAgentTrap_52, mngmtAgentTrap_13003=mngmtAgentTrap_13003, mngmtAgentTrap_11001=mngmtAgentTrap_11001, mngmtAgentTrap_4037=mngmtAgentTrap_4037, mngmtAgentTrap_27034=mngmtAgentTrap_27034, mngmtAgentTrap_35=mngmtAgentTrap_35, sCellEventTrap_d_85=sCellEventTrap_d_85, mngmtAgentTrap_2023=mngmtAgentTrap_2023, sCellEventTrap_9_c8=sCellEventTrap_9_c8, sCellEventTrap_c_3=sCellEventTrap_c_3, mngmtAgentTrap_20020=mngmtAgentTrap_20020, hostStatus=hostStatus, mngmtAgentTrap_27002=mngmtAgentTrap_27002, mngmtAgentTrap_10023=mngmtAgentTrap_10023, mngmtAgentTrap_18018=mngmtAgentTrap_18018, sCellEventTrap_6_34=sCellEventTrap_6_34, mngmtAgentTrap_104=mngmtAgentTrap_104, mngmtAgentTrap_12003=mngmtAgentTrap_12003, mngmtAgentTrap_117=mngmtAgentTrap_117, sCellEventTrap_6_24=sCellEventTrap_6_24, mngmtAgentTrap_2085=mngmtAgentTrap_2085, mngmtAgentTrap_8019=mngmtAgentTrap_8019, mngmtAgentTrap_5005=mngmtAgentTrap_5005, mngmtAgentTrap_16014=mngmtAgentTrap_16014, mngmtAgentTrap_2003=mngmtAgentTrap_2003, mngmtAgentTrap_8025=mngmtAgentTrap_8025, mngmtAgentTrap_8087=mngmtAgentTrap_8087, mngmtAgentTrap_14001=mngmtAgentTrap_14001, mngmtAgentTrap_2071=mngmtAgentTrap_2071, mngmtAgentTrap_6033=mngmtAgentTrap_6033, mngmtAgentTrap_2063=mngmtAgentTrap_2063, sCellEventTrap_c_2=sCellEventTrap_c_2, sCellEventTrap_6_1d=sCellEventTrap_6_1d, mngmtAgentTrap_18060=mngmtAgentTrap_18060, mngmtAgentTrap_20021=mngmtAgentTrap_20021, mngmtAgentTrap_27010=mngmtAgentTrap_27010, mngmtAgentTrap_61=mngmtAgentTrap_61, mngmtAgentTrap_3003=mngmtAgentTrap_3003, mngmtAgentTrap_31=mngmtAgentTrap_31, mngmtAgentTrap_17006=mngmtAgentTrap_17006, sCellEventTrap_d_2=sCellEventTrap_d_2, sCellEventTrap_6_30=sCellEventTrap_6_30, mngmtAgentTrap_2006=mngmtAgentTrap_2006, sCellEventTrap_9_2e=sCellEventTrap_9_2e, mngmtAgentTrap_6001=mngmtAgentTrap_6001, sCellEventTrap_9_35=sCellEventTrap_9_35, mngmtAgentTrap_6030=mngmtAgentTrap_6030, sCellEventTrap_9_16=sCellEventTrap_9_16, mngmtAgentTrap_56=mngmtAgentTrap_56, mngmtAgentTrap_118=mngmtAgentTrap_118, mngmtAgentTrap_4032=mngmtAgentTrap_4032, mngmtAgentTrap_3090=mngmtAgentTrap_3090, mngmtAgentTrap_16032=mngmtAgentTrap_16032, sCellEventTrap_9_79=sCellEventTrap_9_79, mngmtAgentTrap_1004=mngmtAgentTrap_1004, mngmtAgentTrap_25018=mngmtAgentTrap_25018, mngmtAgentTrap_8024=mngmtAgentTrap_8024, sCellEventTrap_9_73=sCellEventTrap_9_73, sCellEventTrap_7_6=sCellEventTrap_7_6, mngmtAgentTrap_2070=mngmtAgentTrap_2070, mngmtAgentTrap_9008=mngmtAgentTrap_9008, mngmtAgentTrap_123=mngmtAgentTrap_123, mngmtAgentTrap_28=mngmtAgentTrap_28, mngmtAgentTrap_21015=mngmtAgentTrap_21015, mngmtAgentTrap_15009=mngmtAgentTrap_15009, mngmtAgentTrap_43=mngmtAgentTrap_43, scellUUID=scellUUID, mngmtAgentTrap_93=mngmtAgentTrap_93, sCellEventTrap_d_f0=sCellEventTrap_d_f0, sCellEventTrap_83_6=sCellEventTrap_83_6, mngmtAgentTrap_4031=mngmtAgentTrap_4031, mngmtAgentTrap_2102=mngmtAgentTrap_2102, mngmtAgentTrap_16035=mngmtAgentTrap_16035, mngmtAgentTrap_8023=mngmtAgentTrap_8023, mngmtAgentTrap_38=mngmtAgentTrap_38, mngmtAgentTrap_14=mngmtAgentTrap_14, mngmtAgentTrap_3037=mngmtAgentTrap_3037, mngmtAgentTrap_3053=mngmtAgentTrap_3053, mngmtAgentTrap_4024=mngmtAgentTrap_4024, mngmtAgentTrap_1006=mngmtAgentTrap_1006, mngmtAgentTrap_9019=mngmtAgentTrap_9019, mngmtAgentTrap_62=mngmtAgentTrap_62, sCellEventTrap_6_3d=sCellEventTrap_6_3d, mngmtAgentTrap_13007=mngmtAgentTrap_13007, mngmtAgentTrap_21018=mngmtAgentTrap_21018, mngmtAgentTrap_27005=mngmtAgentTrap_27005, nscUUID=nscUUID, mngmtAgentTrap_6011=mngmtAgentTrap_6011, mngmtAgentTrap_2097=mngmtAgentTrap_2097, mngmtAgentTrap_2073=mngmtAgentTrap_2073, mngmtAgentTrap_60=mngmtAgentTrap_60, mngmtAgentTrap_3066=mngmtAgentTrap_3066, sCellEventTrap_9_45=sCellEventTrap_9_45, mngmtAgentTrap_44=mngmtAgentTrap_44, mngmtAgentTrap_63=mngmtAgentTrap_63, mngmtAgentTrap_3069=mngmtAgentTrap_3069, mngmtAgentTrap_8015=mngmtAgentTrap_8015, mngmtAgentTrap_3025=mngmtAgentTrap_3025, mngmtAgentTrap_4058=mngmtAgentTrap_4058, mngmtAgentTrap_8048=mngmtAgentTrap_8048, sCellEventTrap_6_1b=sCellEventTrap_6_1b, mngmtAgentTrap_6022=mngmtAgentTrap_6022, mngmtAgentTrap_8090=mngmtAgentTrap_8090, mngmtAgentTrap_9031=mngmtAgentTrap_9031, mngmtAgentTrap_14009=mngmtAgentTrap_14009, mngmtAgentTrap_16=mngmtAgentTrap_16, agentStatus=agentStatus, mngmtAgentTrap_10029=mngmtAgentTrap_10029, agent=agent, sCellEventTrap_9_25=sCellEventTrap_9_25, mngmtAgentTrap_4016=mngmtAgentTrap_4016, mngmtAgentTrap_2031=mngmtAgentTrap_2031, mngmtAgentTrap_8053=mngmtAgentTrap_8053, mngmtAgentTrap_10037=mngmtAgentTrap_10037, sCellEventTrap_9_48=sCellEventTrap_9_48, mngmtAgentTrap_3063=mngmtAgentTrap_3063, mngmtAgentTrap_4013=mngmtAgentTrap_4013, mngmtAgentTrap_8037=mngmtAgentTrap_8037, mngmtAgentTrap_2066=mngmtAgentTrap_2066, mngmtAgentTrap_9028=mngmtAgentTrap_9028, sCellEventTrap_9_a=sCellEventTrap_9_a, sCellEventTrap_6_26=sCellEventTrap_6_26, mngmtAgentTrap_1=mngmtAgentTrap_1, mngmtAgentTrap_2057=mngmtAgentTrap_2057, mngmtAgentTrap_26005=mngmtAgentTrap_26005, sCellEventTrap_4_b=sCellEventTrap_4_b, mngmtAgentTrap_8049=mngmtAgentTrap_8049, sCellEventTrap_6_2e=sCellEventTrap_6_2e, mngmtAgentTrap_3086=mngmtAgentTrap_3086, mngmtAgentTrap_4030=mngmtAgentTrap_4030, sCellEventTrap_9_18=sCellEventTrap_9_18, mngmtAgentTrap_6003=mngmtAgentTrap_6003, srvOSMajVersion=srvOSMajVersion, mngmtAgentTrap_6010=mngmtAgentTrap_6010)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', mngmtAgentTrap_18071=mngmtAgentTrap_18071, mngmtAgentTrap_27022=mngmtAgentTrap_27022, mngmtAgentTrap_27045=mngmtAgentTrap_27045, sCellEventTrap_9_71=sCellEventTrap_9_71, agMinVersion=agMinVersion, mngmtAgentTrap_2012=mngmtAgentTrap_2012, mngmtAgentTrap_2065=mngmtAgentTrap_2065, mngmtAgentTrap_4041=mngmtAgentTrap_4041, sCellEventTrap_6_28=sCellEventTrap_6_28, mngmtAgentTrap_8062=mngmtAgentTrap_8062, sCellEventTrap_9_9=sCellEventTrap_9_9, mngmtAgentTrap_27024=mngmtAgentTrap_27024, mngmtAgentTrap_3016=mngmtAgentTrap_3016, mngmtAgentTrap_24=mngmtAgentTrap_24, mngmtAgentTrap_8022=mngmtAgentTrap_8022, mngmtAgentTrap_16017=mngmtAgentTrap_16017, mngmtAgentTrap_4020=mngmtAgentTrap_4020, mngmtAgentTrap_116=mngmtAgentTrap_116, mngmtAgentTrap_2095=mngmtAgentTrap_2095, mngmtAgentTrap_2100=mngmtAgentTrap_2100, mngmtAgentTrap_8038=mngmtAgentTrap_8038, mngmtAgentTrap_8043=mngmtAgentTrap_8043, mngmtAgentTrap_16038=mngmtAgentTrap_16038, mngmtAgentTrap_10028=mngmtAgentTrap_10028, sCellEventTrap_9_39=sCellEventTrap_9_39, mngmtAgentTrap_1007=mngmtAgentTrap_1007, mngmtAgentTrap_2050=mngmtAgentTrap_2050, srvOSMinVersion=srvOSMinVersion, mngmtAgentTrap_2051=mngmtAgentTrap_2051, sCellEventTrap_9_1a=sCellEventTrap_9_1a, mngmtAgentTrap_14008=mngmtAgentTrap_14008, mngmtAgentTrap_18049=mngmtAgentTrap_18049, mngmtAgentTrap_26011=mngmtAgentTrap_26011, sCellEventTrap_c_c=sCellEventTrap_c_c, mngmtAgentTrap_8057=mngmtAgentTrap_8057, mngmtAgentTrap_26006=mngmtAgentTrap_26006, mngmtAgentTrap_2068=mngmtAgentTrap_2068, mngmtAgentTrap_4004=mngmtAgentTrap_4004, sCellEventTrap_d_de=sCellEventTrap_d_de, mngmtAgentTrap_2087=mngmtAgentTrap_2087, mngmtAgentTrap_14010=mngmtAgentTrap_14010, mngmtAgentTrap_22002=mngmtAgentTrap_22002, mngmtAgentTrap_18022=mngmtAgentTrap_18022, agHostName=agHostName, mngmtAgentTrap_2038=mngmtAgentTrap_2038, mngmtAgentTrap_2091=mngmtAgentTrap_2091, mngmtAgentTrap_16028=mngmtAgentTrap_16028, mngmtAgentTrap_1002=mngmtAgentTrap_1002, mngmtAgentTrap_45=mngmtAgentTrap_45, mngmtAgentTrap_8080=mngmtAgentTrap_8080, mngmtAgentTrap_2011=mngmtAgentTrap_2011, mngmtAgentTrap_3095=mngmtAgentTrap_3095, scellName=scellName, mngmtAgentTrap_8034=mngmtAgentTrap_8034, sCellEventTrap_42_1=sCellEventTrap_42_1, mngmtAgentTrap_2030=mngmtAgentTrap_2030, mngmtAgentTrap_3013=mngmtAgentTrap_3013, mngmtAgentTrap_8067=mngmtAgentTrap_8067, mngmtAgentTrap_2080=mngmtAgentTrap_2080, mngmtAgentTrap_9009=mngmtAgentTrap_9009, mngmtAgentTrap_9030=mngmtAgentTrap_9030, mngmtAgentTrap_10015=mngmtAgentTrap_10015, mngmtAgentTrap_16005=mngmtAgentTrap_16005, mngmtAgentTrap_17004=mngmtAgentTrap_17004, mngmtAgentTrap_27013=mngmtAgentTrap_27013, sCellEventTrap_d_72=sCellEventTrap_d_72, mngmtAgentTrap_101=mngmtAgentTrap_101, mngmtAgentTrap_16020=mngmtAgentTrap_16020, sCellEventTrap_6_4=sCellEventTrap_6_4, shelfElementType=shelfElementType, shelfStatusTable=shelfStatusTable, sCellEventTrap_9_d=sCellEventTrap_9_d, sCellEventTrap_6_e=sCellEventTrap_6_e, mngmtAgentTrap_2067=mngmtAgentTrap_2067, mngmtAgentTrap_12002=mngmtAgentTrap_12002, mngmtAgentTrap_37=mngmtAgentTrap_37, mngmtAgentTrap_16019=mngmtAgentTrap_16019, mngmtAgentTrap_17007=mngmtAgentTrap_17007, mngmtAgentTrap_4040=mngmtAgentTrap_4040, mngmtAgentTrap_86=mngmtAgentTrap_86, sCellEventTrap_3_1=sCellEventTrap_3_1, sCellEventTrap_4_2=sCellEventTrap_4_2, mngmtAgentTrap_4=mngmtAgentTrap_4, mngmtAgentTrap_6004=mngmtAgentTrap_6004, mngmtAgentTrap_3083=mngmtAgentTrap_3083, mngmtAgentTrap_8011=mngmtAgentTrap_8011, mngmtAgentTrap_25009=mngmtAgentTrap_25009, mngmtAgentTrap_8040=mngmtAgentTrap_8040, mngmtAgentTrap_20=mngmtAgentTrap_20, mngmtAgentTrap_13018=mngmtAgentTrap_13018, mngmtAgentTrap_80=mngmtAgentTrap_80, mngmtAgentTrap_6006=mngmtAgentTrap_6006, sCellEventTrap_6_3b=sCellEventTrap_6_3b, mngmtAgentTrap_97=mngmtAgentTrap_97, mngmtAgentTrap_3007=mngmtAgentTrap_3007, mngmtAgentTrap_9003=mngmtAgentTrap_9003, mngmtAgentTrap_18041=mngmtAgentTrap_18041, mngmtAgentTrap_20001=mngmtAgentTrap_20001, mngmtAgentTrap_16010=mngmtAgentTrap_16010, sCellEventTrap_7_7=sCellEventTrap_7_7, mngmtAgentTrap_69=mngmtAgentTrap_69, mngmtAgentTrap_25007=mngmtAgentTrap_25007, sCellEventTrap_6_35=sCellEventTrap_6_35, mngmtAgentTrap_3059=mngmtAgentTrap_3059, sCellEventTrap_9_78=sCellEventTrap_9_78, mngmtAgentTrap_2099=mngmtAgentTrap_2099, sCellEventTrap_7_5=sCellEventTrap_7_5, mngmtAgentTrap_1005=mngmtAgentTrap_1005, mngmtAgentTrap_11=mngmtAgentTrap_11, mngmtAgentTrap_3022=mngmtAgentTrap_3022, mngmtAgentTrap_32=mngmtAgentTrap_32, mngmtAgentTrap_3004=mngmtAgentTrap_3004, mngmtAgentTrap_8027=mngmtAgentTrap_8027, mngmtAgentTrap_65=mngmtAgentTrap_65, mngmtAgentTrap_2061=mngmtAgentTrap_2061, mngmtAgentTrap_20004=mngmtAgentTrap_20004, sCellEventTrap_d_6f=sCellEventTrap_d_6f, mngmtAgentTrap_16034=mngmtAgentTrap_16034, mngmtAgentTrap_18059=mngmtAgentTrap_18059, mngmtAgentTrap_3064=mngmtAgentTrap_3064, mngmtAgentTrap_9034=mngmtAgentTrap_9034, mngmtAgentTrap_8086=mngmtAgentTrap_8086, sCellEventTrap_9_6d=sCellEventTrap_9_6d, mngmtAgentTrap_27037=mngmtAgentTrap_27037, mngmtAgentTrap_41=mngmtAgentTrap_41, mngmtAgentTrap_18007=mngmtAgentTrap_18007, sCellEventTrap_6_2=sCellEventTrap_6_2, sCellEventTrap_9_d5=sCellEventTrap_9_d5, sCellEventTrap_d_5b=sCellEventTrap_d_5b, mngmtAgentTrap_2058=mngmtAgentTrap_2058, mngmtAgentTrap_2088=mngmtAgentTrap_2088, mngmtAgentTrap_5002=mngmtAgentTrap_5002, mngmtAgentTrap_4012=mngmtAgentTrap_4012, mngmtAgentTrap_27025=mngmtAgentTrap_27025, mngmtAgentTrap_8085=mngmtAgentTrap_8085, mngmtAgentTrap_3068=mngmtAgentTrap_3068, mngmtAgentTrap_5003=mngmtAgentTrap_5003, mngmtAgentTrap_27038=mngmtAgentTrap_27038, mngmtAgentTrap_21=mngmtAgentTrap_21, mngmtAgentTrap_2047=mngmtAgentTrap_2047, sCellEventTrap_83_0=sCellEventTrap_83_0, agentEventTimeDate=agentEventTimeDate, sCellEventTrap_6_13=sCellEventTrap_6_13, mngmtAgentTrap_3019=mngmtAgentTrap_3019, mngmtAgentTrap_16031=mngmtAgentTrap_16031, mngmtAgentTrap_75=mngmtAgentTrap_75, mngmtAgentTrap_25013=mngmtAgentTrap_25013, mngmtAgentTrap_18003=mngmtAgentTrap_18003, mngmtAgentTrap_3060=mngmtAgentTrap_3060, mngmtAgentTrap_27032=mngmtAgentTrap_27032, mngmtAgentTrap_107=mngmtAgentTrap_107, sCellEventTrap_9_33=sCellEventTrap_9_33, sCellEventTrap_9_e=sCellEventTrap_9_e, mngmtAgentTrap_21010=mngmtAgentTrap_21010, mngmtAgentTrap_127=mngmtAgentTrap_127, mngmtAgentTrap_12001=mngmtAgentTrap_12001, mngmtAgentTrap_16036=mngmtAgentTrap_16036, mngmtAgentTrap_6031=mngmtAgentTrap_6031, mngmtAgentTrap_10022=mngmtAgentTrap_10022, sCellEventTrap_6_7=sCellEventTrap_6_7, mngmtAgentTrap_4043=mngmtAgentTrap_4043, sCellEventTrap_9_1f=sCellEventTrap_9_1f, mngmtAgentTrap_3070=mngmtAgentTrap_3070, mngmtAgentTrap_9033=mngmtAgentTrap_9033, mngmtAgentTrap_10020=mngmtAgentTrap_10020, mngmtAgentTrap_27029=mngmtAgentTrap_27029, sCellEventTrap_9_3d=sCellEventTrap_9_3d, sCellEventTrap_9_66=sCellEventTrap_9_66, hostStatusTable=hostStatusTable, mngmtAgentTrap_102=mngmtAgentTrap_102, mngmtAgentTrap_13019=mngmtAgentTrap_13019, mngmtAgentTrap_3047=mngmtAgentTrap_3047, mngmtAgentTrap_3094=mngmtAgentTrap_3094, sCellEventTrap_d_5f=sCellEventTrap_d_5f, mngmtAgentTrap_27021=mngmtAgentTrap_27021, mngmtAgentTrap_1001=mngmtAgentTrap_1001, compaq=compaq, mngmtAgentTrap_3029=mngmtAgentTrap_3029, mngmtAgentTrap_5007=mngmtAgentTrap_5007, sCellEventTrap_3_2=sCellEventTrap_3_2, sCellEventTrap_9_4=sCellEventTrap_9_4, mngmtAgentTrap_15003=mngmtAgentTrap_15003, mngmtAgentTrap_6032=mngmtAgentTrap_6032, mngmtAgentTrap_18034=mngmtAgentTrap_18034, mngmtAgentTrap_18028=mngmtAgentTrap_18028, mngmtAgentTrap_26010=mngmtAgentTrap_26010, mngmtAgentTrap_5004=mngmtAgentTrap_5004, sCellEventTrap_6_20=sCellEventTrap_6_20, mngmtAgentTrap_50=mngmtAgentTrap_50, mngmtAgentTrap_2098=mngmtAgentTrap_2098, mngmtAgentTrap_4007=mngmtAgentTrap_4007, mngmtAgentTrap_9023=mngmtAgentTrap_9023, hostUUID=hostUUID, mngmtAgentTrap_10040=mngmtAgentTrap_10040, mngmtAgentTrap_25002=mngmtAgentTrap_25002, mngmtAgentTrap_18065=mngmtAgentTrap_18065, sCellEventTrap_9_cf=sCellEventTrap_9_cf, sCellEventTrap_9_74=sCellEventTrap_9_74, mngmtAgentTrap_46=mngmtAgentTrap_46, mngmtAgentTrap_8063=mngmtAgentTrap_8063, sCellEventTrap_4_7=sCellEventTrap_4_7, sCellEventTrap_6_3=sCellEventTrap_6_3, sCellEventTrap_6_18=sCellEventTrap_6_18, mngmtAgentTrap_36=mngmtAgentTrap_36, mngmtAgentTrap_3015=mngmtAgentTrap_3015, mngmtAgentTrap_4048=mngmtAgentTrap_4048, sCellEventTrap_9_17=sCellEventTrap_9_17, mngmtAgentTrap_16039=mngmtAgentTrap_16039, mngmtAgentTrap_2062=mngmtAgentTrap_2062, mngmtAgentTrap_59=mngmtAgentTrap_59, mngmtAgentTrap_4023=mngmtAgentTrap_4023, mngmtAgentTrap_10027=mngmtAgentTrap_10027, sCellEventTrap_9_46=sCellEventTrap_9_46, sCellEventTrap_9_ce=sCellEventTrap_9_ce, mngmtAgentTrap_27019=mngmtAgentTrap_27019, mngmtAgentTrap_27026=mngmtAgentTrap_27026, mngmtAgentTrap_87=mngmtAgentTrap_87, sCellEventTrap_6_a=sCellEventTrap_6_a, sCellEventTrap_6_37=sCellEventTrap_6_37, sCellEventTrap_c_12=sCellEventTrap_c_12, hostEntryIndex=hostEntryIndex, sCellEventTrap_9_26=sCellEventTrap_9_26, mngmtAgentTrap_18045=mngmtAgentTrap_18045, mngmtAgentTrap_4059=mngmtAgentTrap_4059, mngmtAgentTrap_15005=mngmtAgentTrap_15005, sCellEventTrap_6_3c=sCellEventTrap_6_3c, nscStatusTable=nscStatusTable, mngmtAgentTrap_124=mngmtAgentTrap_124, sCellEventTrap_6_c=sCellEventTrap_6_c, sCellEventTrap_9_8=sCellEventTrap_9_8, mngmtAgentTrap_18039=mngmtAgentTrap_18039, sCellEventTrap_9_d1=sCellEventTrap_9_d1, mngmtAgentTrap_9018=mngmtAgentTrap_9018, sCellEventTrap_c_0=sCellEventTrap_c_0, mngmtAgentTrap_8007=mngmtAgentTrap_8007, mngmtAgentTrap_21017=mngmtAgentTrap_21017, sCellEventTrap_6_3e=sCellEventTrap_6_3e, sCellEventTrap_9_1c=sCellEventTrap_9_1c, mngmtAgentTrap_5015=mngmtAgentTrap_5015, mngmtAgentTrap_20016=mngmtAgentTrap_20016, mngmtAgentTrap_20017=mngmtAgentTrap_20017, scellTotal=scellTotal, mngmtAgentTrap_84=mngmtAgentTrap_84, mngmtAgentTrap_8075=mngmtAgentTrap_8075, mngmtAgentTrap_8031=mngmtAgentTrap_8031, mngmtAgentTrap_10036=mngmtAgentTrap_10036, sCellEventTrap_42_5=sCellEventTrap_42_5, mngmtAgentTrap_13012=mngmtAgentTrap_13012, mngmtAgentTrap_6002=mngmtAgentTrap_6002, sCellEventTrap_d_4b=sCellEventTrap_d_4b, mngmtAgentTrap_21002=mngmtAgentTrap_21002, mngmtAgentTrap_27017=mngmtAgentTrap_27017, mngmtAgentTrap_22001=mngmtAgentTrap_22001, mngmtAgentTrap_27040=mngmtAgentTrap_27040)
mibBuilder.exportSymbols('CPQHSV110V3-MIB', sCellEventTrap_9_3e=sCellEventTrap_9_3e, mngmtAgentTrap_18075=mngmtAgentTrap_18075, cpqHSV=cpqHSV, sCellEventTrap_6_38=sCellEventTrap_6_38, sCellEventTrap_42_4=sCellEventTrap_42_4, mngmtAgentTrap_16018=mngmtAgentTrap_16018, mngmtAgentTrap_13=mngmtAgentTrap_13, mngmtAgentTrap_20013=mngmtAgentTrap_20013, mngmtAgentTrap_2001=mngmtAgentTrap_2001, mngmtAgentTrap_8029=mngmtAgentTrap_8029, sCellEventTrap_9_d4=sCellEventTrap_9_d4, sCellEventTrap_6_25=sCellEventTrap_6_25, sCellEventTrap_6_15=sCellEventTrap_6_15, mngmtAgentTrap_4047=mngmtAgentTrap_4047, shelfEntry=shelfEntry, mngmtAgentTrap_4028=mngmtAgentTrap_4028, mngmtAgentTrap_9016=mngmtAgentTrap_9016, sCellEventTrap_d_4=sCellEventTrap_d_4, sCellEventTrap_83_3=sCellEventTrap_83_3, mngmtAgentTrap_8060=mngmtAgentTrap_8060, mngmtAgentTrap_47=mngmtAgentTrap_47, mngmtAgentTrap_2059=mngmtAgentTrap_2059, mngmtAgentTrap_21003=mngmtAgentTrap_21003, mngmtAgentTrap_27009=mngmtAgentTrap_27009, scellCAC=scellCAC, mngmtAgentTrap_9036=mngmtAgentTrap_9036, mngmtAgentTrap_8005=mngmtAgentTrap_8005, sCellEventTrap_9_21=sCellEventTrap_9_21, mngmtAgentTrap_3084=mngmtAgentTrap_3084, mngmtAgentTrap_3039=mngmtAgentTrap_3039, mngmtAgentTrap_2004=mngmtAgentTrap_2004, mngmtAgentTrap_6020=mngmtAgentTrap_6020, mngmtAgentTrap_8042=mngmtAgentTrap_8042, sCellEventTrap_d_d8=sCellEventTrap_d_d8, mngmtAgentTrap_20018=mngmtAgentTrap_20018, mngmtAgentTrap_27003=mngmtAgentTrap_27003, mngmtAgentTrap_27033=mngmtAgentTrap_27033, mngmtAgentTrap_5017=mngmtAgentTrap_5017, sCellEventTrap_c_f=sCellEventTrap_c_f, mngmtAgentTrap_20002=mngmtAgentTrap_20002, sCellEventTrap_4_e=sCellEventTrap_4_e, sCellEventTrap_9_15=sCellEventTrap_9_15, mngmtAgentTrap_3058=mngmtAgentTrap_3058, mngmtAgentTrap_2060=mngmtAgentTrap_2060, mngmtAgentTrap_3056=mngmtAgentTrap_3056, mngmtAgentTrap_8083=mngmtAgentTrap_8083, mngmtAgentTrap_17003=mngmtAgentTrap_17003, mngmtAgentTrap_92=mngmtAgentTrap_92, mngmtAgentTrap_98=mngmtAgentTrap_98, mngmtAgentTrap_23003=mngmtAgentTrap_23003, mngmtAgentTrap_25015=mngmtAgentTrap_25015, scellStatus=scellStatus, mngmtAgentTrap_3054=mngmtAgentTrap_3054, mngmtAgentTrap_4029=mngmtAgentTrap_4029, sCellEventTrap_9_3=sCellEventTrap_9_3, mngmtAgentTrap_11004=mngmtAgentTrap_11004, sCellEventTrap_6_0=sCellEventTrap_6_0, mngmtAgentTrap_2076=mngmtAgentTrap_2076, sCellEventTrap_9_c9=sCellEventTrap_9_c9, mngmtAgentTrap_1000=mngmtAgentTrap_1000, shelfElementNum=shelfElementNum, mngmtAgentTrap_29=mngmtAgentTrap_29, mngmtAgentTrap_8012=mngmtAgentTrap_8012, mngmtAgentTrap_27043=mngmtAgentTrap_27043, mngmtAgentTrap_114=mngmtAgentTrap_114, mngmtAgentTrap_2049=mngmtAgentTrap_2049, mngmtAgentTrap_54=mngmtAgentTrap_54, mngmtAgentTrap_27015=mngmtAgentTrap_27015, sCellEventTrap_c_15=sCellEventTrap_c_15, sCellEventTrap_9_31=sCellEventTrap_9_31, mngmtAgentTrap_22=mngmtAgentTrap_22, mngmtAgentTrap_27001=mngmtAgentTrap_27001, mngmtAgentTrap_10006=mngmtAgentTrap_10006, mngmtAgentTrap_14003=mngmtAgentTrap_14003, mngmtAgentTrap_18024=mngmtAgentTrap_18024, mngmtAgentTrap_49=mngmtAgentTrap_49, nscEntry=nscEntry, sCellEventTrap_9_5=sCellEventTrap_9_5, sCellEventTrap_42_0=sCellEventTrap_42_0, mngmtAgentTrap_72=mngmtAgentTrap_72, mngmtAgentTrap_10001=mngmtAgentTrap_10001, mngmtAgentTrap_18009=mngmtAgentTrap_18009, mngmtAgentTrap_2064=mngmtAgentTrap_2064, mngmtAgentTrap_4033=mngmtAgentTrap_4033, mngmtAgentTrap_10039=mngmtAgentTrap_10039, mngmtAgentTrap_3035=mngmtAgentTrap_3035, mngmtAgentTrap_8002=mngmtAgentTrap_8002, mngmtAgentTrap_17016=mngmtAgentTrap_17016, sCellEventTrap_d_d9=sCellEventTrap_d_d9, sCellEventTrap_d_1=sCellEventTrap_d_1, mngmtAgentTrap_9004=mngmtAgentTrap_9004, mngmtAgentTrap_27030=mngmtAgentTrap_27030, scellNameDateTime=scellNameDateTime, mngmtAgentTrap_3078=mngmtAgentTrap_3078, mngmtAgentTrap_18006=mngmtAgentTrap_18006, sCellEventTrap_9_12=sCellEventTrap_9_12, mngmtAgentTrap_8077=mngmtAgentTrap_8077, sCellEventTrap_9_cb=sCellEventTrap_9_cb, sCellEventTrap_4_9=sCellEventTrap_4_9, mngmtAgentTrap_129=mngmtAgentTrap_129, mngmtAgentTrap_2052=mngmtAgentTrap_2052, mngmtAgentTrap_4054=mngmtAgentTrap_4054, mngmtAgentTrap_10021=mngmtAgentTrap_10021, mngmtAgentTrap_16040=mngmtAgentTrap_16040, mngmtAgentTrap_3075=mngmtAgentTrap_3075, mngmtAgentTrap_96=mngmtAgentTrap_96, mngmtAgentTrap_18050=mngmtAgentTrap_18050, mngmtAgentTrap_25008=mngmtAgentTrap_25008, mngmtAgentTrap_3001=mngmtAgentTrap_3001, mngmtAgentTrap_18051=mngmtAgentTrap_18051, sCellEventTrap_9_d2=sCellEventTrap_9_d2, mngmtAgentTrap_8055=mngmtAgentTrap_8055, sCellEventTrap_9_77=sCellEventTrap_9_77, mngmtAgentTrap_8073=mngmtAgentTrap_8073, sCellEventTrap_c_6=sCellEventTrap_c_6, shelfEntryIndex=shelfEntryIndex, scell=scell, sCellEventTrap_9_70=sCellEventTrap_9_70, mngmtAgentTrap_91=mngmtAgentTrap_91, mngmtAgentTrap_5013=mngmtAgentTrap_5013, mngmtAgentTrap_10026=mngmtAgentTrap_10026, mngmtAgentTrap_10044=mngmtAgentTrap_10044, shelfStatus=shelfStatus, mngmtAgentTrap_14012=mngmtAgentTrap_14012, mngmtAgentTrap_64=mngmtAgentTrap_64, mngmtAgentTrap_67=mngmtAgentTrap_67, mngmtAgentTrap_3038=mngmtAgentTrap_3038, mngmtAgentTrap_4018=mngmtAgentTrap_4018, mngmtAgentTrap_20022=mngmtAgentTrap_20022, mngmtAgentTrap_26012=mngmtAgentTrap_26012, mngmtAgentTrap_27008=mngmtAgentTrap_27008, sCellEventTrap_4_1=sCellEventTrap_4_1, mngmtAgentTrap_12005=mngmtAgentTrap_12005, mngmtAgentTrap_2=mngmtAgentTrap_2, mngmtAgentTrap_112=mngmtAgentTrap_112, mngmtAgentTrap_8008=mngmtAgentTrap_8008) |
# -*- coding: utf-8 -*-
"""UPC character sets."""
EDGE = '101'
MIDDLE = '01010'
CODES = {
'L': ('0001101', '0011001', '0010011', '0111101', '0100011',
'0110001', '0101111', '0111011', '0110111', '0001011'),
'R': ('1110010', '1100110', '1101100', '1000010', '1011100',
'1001110', '1010000', '1000100', '1001000', '1110100')
}
| """UPC character sets."""
edge = '101'
middle = '01010'
codes = {'L': ('0001101', '0011001', '0010011', '0111101', '0100011', '0110001', '0101111', '0111011', '0110111', '0001011'), 'R': ('1110010', '1100110', '1101100', '1000010', '1011100', '1001110', '1010000', '1000100', '1001000', '1110100')} |
class Solution:
def toGoatLatin(self, S: str) -> str:
W = S.split(" ")
out = ''
for i, s in enumerate(W):
if s[0].lower() in ['a', 'e', 'i', 'o', 'u']:
s = s + "ma"
else:
s = s[1:] + s[0]
s = s + "ma"
while(i>=0):
s = s + 'a'
i = i-1
out = out + s + " "
return out[0:len(out)-1] | class Solution:
def to_goat_latin(self, S: str) -> str:
w = S.split(' ')
out = ''
for (i, s) in enumerate(W):
if s[0].lower() in ['a', 'e', 'i', 'o', 'u']:
s = s + 'ma'
else:
s = s[1:] + s[0]
s = s + 'ma'
while i >= 0:
s = s + 'a'
i = i - 1
out = out + s + ' '
return out[0:len(out) - 1] |
# Local function definitions; returning functions
def make_adder(n):
"""Return a function that takes one argument K and returns K + N.
"""
def adder(k):
return k + n
return adder
add_three = make_adder(3)
print(add_three(4)) # 7
print(make_adder(3)(4)) # 7
# Lambda expressions
'''
x = 10
square = x * x
square = lambda x: x * x
print(square(4))
''' | def make_adder(n):
"""Return a function that takes one argument K and returns K + N.
"""
def adder(k):
return k + n
return adder
add_three = make_adder(3)
print(add_three(4))
print(make_adder(3)(4))
'\nx = 10\nsquare = x * x\nsquare = lambda x: x * x\nprint(square(4))\n' |
current_max = 0 # x <= 1
stack = []
queries = int(input().strip())
for _ in range(queries):
query = input().strip().split()
if query[0] == '1':
val = int(query[1])
current_max = max(val, stack[-1][1]) if stack else val
stack.append((val, current_max),)
elif query[0] == '2':
stack.pop()
current_max = stack[-1][1] if stack else 0
elif query[0] == '3':
print(current_max)
# cat solution_2_input_1.txt | python3 solution_2.txt
# cat solution_2_input_2.txt | python3 solution_2.txt
| current_max = 0
stack = []
queries = int(input().strip())
for _ in range(queries):
query = input().strip().split()
if query[0] == '1':
val = int(query[1])
current_max = max(val, stack[-1][1]) if stack else val
stack.append((val, current_max))
elif query[0] == '2':
stack.pop()
current_max = stack[-1][1] if stack else 0
elif query[0] == '3':
print(current_max) |
# sqlite header
def sqliteTest(filePath, file):
file.seek(0)
header = file.read(13)
return header == b'SQLite format'
# bplist header
def bplistTest(filePath, file):
# result = filePath[-6:] == '.plist'
# if result:
file.seek(0)
header = file.read(8)
result = header == b'bplist00'
return result
def xmlTest(filePath, file):
return filePath[-4:] == '.xml'
def wazeLogTest(filePath, file):
return filePath[-12:] == 'waze_log.txt'
def checkAll(filePath, file):
if sqliteTest(filePath, file) or bplistTest(filePath, file) or xmlTest(filePath, file) or wazeLogTest(filePath, file):
return True
return False | def sqlite_test(filePath, file):
file.seek(0)
header = file.read(13)
return header == b'SQLite format'
def bplist_test(filePath, file):
file.seek(0)
header = file.read(8)
result = header == b'bplist00'
return result
def xml_test(filePath, file):
return filePath[-4:] == '.xml'
def waze_log_test(filePath, file):
return filePath[-12:] == 'waze_log.txt'
def check_all(filePath, file):
if sqlite_test(filePath, file) or bplist_test(filePath, file) or xml_test(filePath, file) or waze_log_test(filePath, file):
return True
return False |
def calc(x, y):
return x * y
# Display a welcome message for the program.
print("\nWelcome to the fiber optic calculator 3000!\n")
# Get the company name from the user.
prompt1 = "What is the company's name for the order?\n"
# Get the number of feet of fiber optic to be installed from the user.
prompt2 = "How many feet are they looking to buy?\n"
# Set up variables
price = 0.87
company_name = ""
feet = ""
# Check the input company_name
bad_input = True
while bad_input:
company_name = str(input(prompt1))
if not company_name:
print("\nYou didn't type anything.\n")
else:
bad_input = False
# Check the input feet
bad_input = True
while bad_input:
try:
feet = float(input(prompt2))
bad_input = False
except ValueError:
print("\nYour input didn't seem right, try again.\n")
# Multiply the total cost as the number of feet times $0.87.
cost = calc(price, feet)
# Display the calculated information and company name.
print(
f"\nThe company {company_name} wishes to buy {feet} feet of fiber optic cable. This will cost ${cost}.\n"
)
| def calc(x, y):
return x * y
print('\nWelcome to the fiber optic calculator 3000!\n')
prompt1 = "What is the company's name for the order?\n"
prompt2 = 'How many feet are they looking to buy?\n'
price = 0.87
company_name = ''
feet = ''
bad_input = True
while bad_input:
company_name = str(input(prompt1))
if not company_name:
print("\nYou didn't type anything.\n")
else:
bad_input = False
bad_input = True
while bad_input:
try:
feet = float(input(prompt2))
bad_input = False
except ValueError:
print("\nYour input didn't seem right, try again.\n")
cost = calc(price, feet)
print(f'\nThe company {company_name} wishes to buy {feet} feet of fiber optic cable. This will cost ${cost}.\n') |
class Casa:
def __init__(self, paredes):
self.__paredes = paredes
def paredes(self):
return self.__paredes
def superficie_cristal(self):
superficie = 0
for pared in self.paredes():
superficie += pared.superficie_cristal()
return superficie | class Casa:
def __init__(self, paredes):
self.__paredes = paredes
def paredes(self):
return self.__paredes
def superficie_cristal(self):
superficie = 0
for pared in self.paredes():
superficie += pared.superficie_cristal()
return superficie |
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 11 09:20:53 2022
@author: Diesel soft server
"""
| """
Created on Fri Feb 11 09:20:53 2022
@author: Diesel soft server
""" |
{
"targets": [
{
"target_name": "test_napi_arguments",
"sources": [ "test_napi_arguments.c" ]
},
{
"target_name": "test_napi_array",
"sources": [ "test_napi_array.c" ]
},
{
"target_name": "test_napi_async",
"sources": [ "test_napi_async.c" ]
},
{
"target_name": "test_napi_buffer",
"sources": [ "test_napi_buffer.c" ]
},
{
"target_name": "test_napi_construct",
"sources": [ "test_napi_construct.c" ]
},
{
"target_name": "test_napi_conversions",
"sources": [ "test_napi_conversions.c" ]
},
{
"target_name": "test_napi_env_compare",
"sources": [ "test_napi_env_compare.c" ]
},
{
"target_name": "test_napi_env_store",
"sources": [ "test_napi_env_store.c" ]
},
{
"target_name": "test_napi_error_handling",
"sources": [ "test_napi_error_handling.c" ]
},
{
"target_name": "test_napi_general",
"sources": [ "test_napi_general.c" ]
},
{
"target_name": "test_napi_make_callback",
"sources": [ "test_napi_make_callback.c" ]
},
{
"target_name": "test_napi_object_wrap",
"sources": [ "test_napi_object_wrap.c" ]
},
{
"target_name": "test_napi_handle_scope",
"sources": [ "test_napi_handle_scope.c" ]
},
{
"target_name": "test_napi_promise",
"sources": [ "test_napi_promise.c" ]
},
{
"target_name": "test_napi_properties",
"sources": [ "test_napi_properties.c" ]
},
{
"target_name": "test_napi_reference",
"sources": [ "test_napi_reference.c" ]
},
{
"target_name": "test_napi_strictequal_and_instanceof",
"sources": [ "test_napi_strictequal_and_instanceof.c" ]
},
{
"target_name": "test_napi_string",
"sources": [ "test_napi_string.c" ]
},
{
"target_name": "test_napi_symbol",
"sources": [ "test_napi_symbol.c" ]
}
]
}
| {'targets': [{'target_name': 'test_napi_arguments', 'sources': ['test_napi_arguments.c']}, {'target_name': 'test_napi_array', 'sources': ['test_napi_array.c']}, {'target_name': 'test_napi_async', 'sources': ['test_napi_async.c']}, {'target_name': 'test_napi_buffer', 'sources': ['test_napi_buffer.c']}, {'target_name': 'test_napi_construct', 'sources': ['test_napi_construct.c']}, {'target_name': 'test_napi_conversions', 'sources': ['test_napi_conversions.c']}, {'target_name': 'test_napi_env_compare', 'sources': ['test_napi_env_compare.c']}, {'target_name': 'test_napi_env_store', 'sources': ['test_napi_env_store.c']}, {'target_name': 'test_napi_error_handling', 'sources': ['test_napi_error_handling.c']}, {'target_name': 'test_napi_general', 'sources': ['test_napi_general.c']}, {'target_name': 'test_napi_make_callback', 'sources': ['test_napi_make_callback.c']}, {'target_name': 'test_napi_object_wrap', 'sources': ['test_napi_object_wrap.c']}, {'target_name': 'test_napi_handle_scope', 'sources': ['test_napi_handle_scope.c']}, {'target_name': 'test_napi_promise', 'sources': ['test_napi_promise.c']}, {'target_name': 'test_napi_properties', 'sources': ['test_napi_properties.c']}, {'target_name': 'test_napi_reference', 'sources': ['test_napi_reference.c']}, {'target_name': 'test_napi_strictequal_and_instanceof', 'sources': ['test_napi_strictequal_and_instanceof.c']}, {'target_name': 'test_napi_string', 'sources': ['test_napi_string.c']}, {'target_name': 'test_napi_symbol', 'sources': ['test_napi_symbol.c']}]} |
#Binary search tree class
#This module includes:
#The Node class implementation to represent the nodes on the tree
#The BST class Which will construct a tree from the Node class
#The testing code
#Node implemented for binary tree use
class Node:
def __init__(self, data):
self.data = data
self.left_child = None
self.right_child = None
#Insert a node into the tree recursively if need be
def insert(self, data):
if data < self.data:
if self.left_child is None:
self.left_child = Node(data)
else:
self.left_child.insert(data)
else:
if self.right_child is None:
self.right_child = Node(data)
else:
self.right_child.insert(data)
#Remove a node from the tree recursively
#In the event of their being a left and right child node attached
#to the node we're removing, we select the smallest smallest number
#from the right childs tree and set that to be the node we just
#removed and then attach other nodes to it
def remove(self, data, parent_node=None):
if data < self.data:
if self.left_child is not None:
self.left_child.remove(data, self)
elif data > self.data:
if self.right_child is not None:
self.right_child.remove(data, self)
else:
if self.left_child and self.right_child:
self.data = self.right_child.get_min()
self.right_child.remove(self.data, self)
elif parent_node.left_child == self:
#Attach branch of tree to the parent node
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.left_child = temp_node
elif parent_node.right_child == self:
#Attach branch of tree to the parent node
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.right_child = temp_node
#Get the data that the node is holding
def get_data(self):
return self.data
#Retrieve the smallest number from the tree recursively
def get_min(self):
if self.left_child is None:
return self.data
else:
return self.left_child.get_min()
#Retrieve the largest number from the tree recursively
def get_max(self):
if self.right_child is None:
return self.data
else:
return self.right_child.get_max()
#Traverse the tree in order (Ascending value)
def traverse_in_order(self):
if self.left_child is not None:
self.left_child.traverse_in_order()
print(self.data)
if self.right_child is not None:
self.right_child.traverse_in_order()
#Binary search tree implementation
class BST:
def __init__(self):
self.root_node = None
#Insert a node into the tree
def insert(self, data):
if self.root_node is None:
self.root_node = Node(data)
else:
self.root_node.insert(data)
#Remove node from the tree
def remove(self, data_to_remove):
if self.root_node:
if self.root_node.get_data() == data_to_remove:
temp_node = Node(None)
temp_node.left_child = self.root_node
self.root_node.remove(data_to_remove, temp_node)
else:
self.root_node.remove(data_to_remove)
#Get the max value from the tree if a root node is set
def get_max(self):
if self.root_node:
return self.root_node.get_max()
#get the minimum value from the tree if a root node is set
def get_min(self):
if self.root_node:
return self.root_node.get_min()
#Traverse the tree in ascending order if a root node is set
def traverse_in_order(self):
if self.root_node:
print('Traversing the tree:')
self.root_node.traverse_in_order()
#Testing area to make sure the Binary search tree works,
#It does!
if __name__ == '__main__':
bst = BST()
bst.insert(12)
bst.insert(10)
bst.insert(-2)
bst.insert(1)
bst.traverse_in_order()
bst.remove(10)
bst.traverse_in_order()
| class Node:
def __init__(self, data):
self.data = data
self.left_child = None
self.right_child = None
def insert(self, data):
if data < self.data:
if self.left_child is None:
self.left_child = node(data)
else:
self.left_child.insert(data)
elif self.right_child is None:
self.right_child = node(data)
else:
self.right_child.insert(data)
def remove(self, data, parent_node=None):
if data < self.data:
if self.left_child is not None:
self.left_child.remove(data, self)
elif data > self.data:
if self.right_child is not None:
self.right_child.remove(data, self)
elif self.left_child and self.right_child:
self.data = self.right_child.get_min()
self.right_child.remove(self.data, self)
elif parent_node.left_child == self:
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.left_child = temp_node
elif parent_node.right_child == self:
if self.left_child:
temp_node = self.left_child
else:
temp_node = self.right_child
parent_node.right_child = temp_node
def get_data(self):
return self.data
def get_min(self):
if self.left_child is None:
return self.data
else:
return self.left_child.get_min()
def get_max(self):
if self.right_child is None:
return self.data
else:
return self.right_child.get_max()
def traverse_in_order(self):
if self.left_child is not None:
self.left_child.traverse_in_order()
print(self.data)
if self.right_child is not None:
self.right_child.traverse_in_order()
class Bst:
def __init__(self):
self.root_node = None
def insert(self, data):
if self.root_node is None:
self.root_node = node(data)
else:
self.root_node.insert(data)
def remove(self, data_to_remove):
if self.root_node:
if self.root_node.get_data() == data_to_remove:
temp_node = node(None)
temp_node.left_child = self.root_node
self.root_node.remove(data_to_remove, temp_node)
else:
self.root_node.remove(data_to_remove)
def get_max(self):
if self.root_node:
return self.root_node.get_max()
def get_min(self):
if self.root_node:
return self.root_node.get_min()
def traverse_in_order(self):
if self.root_node:
print('Traversing the tree:')
self.root_node.traverse_in_order()
if __name__ == '__main__':
bst = bst()
bst.insert(12)
bst.insert(10)
bst.insert(-2)
bst.insert(1)
bst.traverse_in_order()
bst.remove(10)
bst.traverse_in_order() |
#user tablet settings
LEFT_HANDED = False #rotate pen and track 180 if true
# playing with these pressure curves types
PRESSURE_CURVE = False # LINEAR, SOFT, HARD
#soft = sqrt(z); hard = x^2
#false means no additional calcs
FULL_PRESSURE = 1.0 # force needed for full pressure, eg 0.8 pen pressure will give a full stroke
| left_handed = False
pressure_curve = False
full_pressure = 1.0 |
class SinglyLinkedList:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return "Error: This is an empty list."
sll_list = []
curr = self.head
while curr:
sll_list.append(str(curr.val))
curr = curr.next
return " -> ".join(sll_list)
class Node:
def __init__(self, val):
self.val = val
self.next = None
class DoublyLinkedList:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return "Error: This is an empty list."
dll_list = []
curr = self.head
while curr:
dll_list.append(str(curr.val))
curr = curr.next
return " <-> ".join(dll_list)
class DNode:
def __init__(self, val):
self.val = val
self.next = None
self.prev = None | class Singlylinkedlist:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return 'Error: This is an empty list.'
sll_list = []
curr = self.head
while curr:
sll_list.append(str(curr.val))
curr = curr.next
return ' -> '.join(sll_list)
class Node:
def __init__(self, val):
self.val = val
self.next = None
class Doublylinkedlist:
def __init__(self, head):
self.head = head
def __str__(self):
if not self.head:
return 'Error: This is an empty list.'
dll_list = []
curr = self.head
while curr:
dll_list.append(str(curr.val))
curr = curr.next
return ' <-> '.join(dll_list)
class Dnode:
def __init__(self, val):
self.val = val
self.next = None
self.prev = None |
def floodFill(image, sr, sc, newColor):
if image[sr][sc] == newColor: return image
origColor = image[sr][sc]
def rec(r, c):
if not (0 <= r < len(image) and 0 <= c < len(image[0])):
return
if image[r][c] != origColor:
return
image[r][c] = newColor
rec(r+1, c)
rec(r-1, c)
rec(r, c+1)
rec(r, c-1)
rec(sr, sc)
return image
print(floodFill([[1, 1, 1],
[1, 1, 0],
[1, 0, 1]], 1, 1, 2))
# [[2, 2, 2],
# [2, 2, 0],
# [2, 0, 1]])
print(floodFill([[0, 0, 0],
[0, 1, 1]], 1, 1, 1)) | def flood_fill(image, sr, sc, newColor):
if image[sr][sc] == newColor:
return image
orig_color = image[sr][sc]
def rec(r, c):
if not (0 <= r < len(image) and 0 <= c < len(image[0])):
return
if image[r][c] != origColor:
return
image[r][c] = newColor
rec(r + 1, c)
rec(r - 1, c)
rec(r, c + 1)
rec(r, c - 1)
rec(sr, sc)
return image
print(flood_fill([[1, 1, 1], [1, 1, 0], [1, 0, 1]], 1, 1, 2))
print(flood_fill([[0, 0, 0], [0, 1, 1]], 1, 1, 1)) |
def uses_only(word, letters):
for c in "".join(word.split()):
#print c # test
if c not in letters:
return False
return True
print (uses_only("hoe alfalfa", "acefhlo" ))
# Ace, lohf? | def uses_only(word, letters):
for c in ''.join(word.split()):
if c not in letters:
return False
return True
print(uses_only('hoe alfalfa', 'acefhlo')) |
pattern_zero=[0.0, 0.015380859375, 0.0302734375, 0.03125, 0.044677734375, 0.046630859375, 0.05859375, 0.0615234375, 0.0625, 0.072021484375, 0.075927734375, 0.077880859375, 0.0849609375, 0.08984375, 0.0927734375, 0.09375, 0.097412109375, 0.103271484375, 0.107177734375, 0.109130859375, 0.109375, 0.1162109375, 0.120849609375, 0.12109375, 0.1240234375, 0.125, 0.128662109375, 0.1318359375, 0.134521484375, 0.138427734375, 0.140380859375, 0.140625, 0.142333984375, 0.1474609375, 0.152099609375, 0.15234375, 0.1552734375, 0.15625, 0.159912109375, 0.161865234375, 0.1630859375, 0.165771484375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.1787109375, 0.179443359375, 0.183349609375, 0.18359375, 0.1865234375, 0.1875, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.208740234375, 0.2099609375, 0.210693359375, 0.214599609375, 0.21484375, 0.2177734375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_odd=[0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_even=[0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
averages_even={0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]}
averages_odd={0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]} | pattern_zero = [0.0, 0.015380859375, 0.0302734375, 0.03125, 0.044677734375, 0.046630859375, 0.05859375, 0.0615234375, 0.0625, 0.072021484375, 0.075927734375, 0.077880859375, 0.0849609375, 0.08984375, 0.0927734375, 0.09375, 0.097412109375, 0.103271484375, 0.107177734375, 0.109130859375, 0.109375, 0.1162109375, 0.120849609375, 0.12109375, 0.1240234375, 0.125, 0.128662109375, 0.1318359375, 0.134521484375, 0.138427734375, 0.140380859375, 0.140625, 0.142333984375, 0.1474609375, 0.152099609375, 0.15234375, 0.1552734375, 0.15625, 0.159912109375, 0.161865234375, 0.1630859375, 0.165771484375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.1787109375, 0.179443359375, 0.183349609375, 0.18359375, 0.1865234375, 0.1875, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.208740234375, 0.2099609375, 0.210693359375, 0.214599609375, 0.21484375, 0.2177734375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_odd = [0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
pattern_even = [0.0, 0.001708984375, 0.003662109375, 0.005615234375, 0.0068359375, 0.007568359375, 0.009521484375, 0.011474609375, 0.013427734375, 0.0146484375, 0.015380859375, 0.015625, 0.017333984375, 0.019287109375, 0.021240234375, 0.0224609375, 0.023193359375, 0.025146484375, 0.027099609375, 0.02734375, 0.029052734375, 0.0302734375, 0.031005859375, 0.03125, 0.032958984375, 0.034912109375, 0.036865234375, 0.0380859375, 0.038818359375, 0.040771484375, 0.042724609375, 0.044677734375, 0.0458984375, 0.046630859375, 0.046875, 0.048583984375, 0.050537109375, 0.052490234375, 0.0537109375, 0.054443359375, 0.056396484375, 0.058349609375, 0.05859375, 0.060302734375, 0.0615234375, 0.062255859375, 0.0625, 0.064208984375, 0.066162109375, 0.068115234375, 0.0693359375, 0.070068359375, 0.072021484375, 0.073974609375, 0.075927734375, 0.0771484375, 0.077880859375, 0.078125, 0.079833984375, 0.081787109375, 0.083740234375, 0.0849609375, 0.085693359375, 0.087646484375, 0.089599609375, 0.08984375, 0.091552734375, 0.0927734375, 0.093505859375, 0.09375, 0.095458984375, 0.097412109375, 0.099365234375, 0.1005859375, 0.101318359375, 0.103271484375, 0.105224609375, 0.107177734375, 0.1083984375, 0.109130859375, 0.109375, 0.111083984375, 0.113037109375, 0.114990234375, 0.1162109375, 0.116943359375, 0.118896484375, 0.120849609375, 0.12109375, 0.122802734375, 0.1240234375, 0.124755859375, 0.125, 0.126708984375, 0.128662109375, 0.130615234375, 0.1318359375, 0.132568359375, 0.134521484375, 0.136474609375, 0.138427734375, 0.1396484375, 0.140380859375, 0.140625, 0.142333984375, 0.144287109375, 0.146240234375, 0.1474609375, 0.148193359375, 0.150146484375, 0.152099609375, 0.15234375, 0.154052734375, 0.1552734375, 0.156005859375, 0.15625, 0.157958984375, 0.159912109375, 0.161865234375, 0.1630859375, 0.163818359375, 0.165771484375, 0.167724609375, 0.169677734375, 0.1708984375, 0.171630859375, 0.171875, 0.173583984375, 0.175537109375, 0.177490234375, 0.1787109375, 0.179443359375, 0.181396484375, 0.183349609375, 0.18359375, 0.185302734375, 0.1865234375, 0.187255859375, 0.1875, 0.189208984375, 0.191162109375, 0.193115234375, 0.1943359375, 0.195068359375, 0.197021484375, 0.198974609375, 0.200927734375, 0.2021484375, 0.202880859375, 0.203125, 0.204833984375, 0.206787109375, 0.208740234375, 0.2099609375, 0.210693359375, 0.212646484375, 0.214599609375, 0.21484375, 0.216552734375, 0.2177734375, 0.218505859375, 0.21875, 0.220458984375, 0.222412109375, 0.224365234375, 0.2255859375, 0.226318359375, 0.228271484375, 0.230224609375, 0.232177734375, 0.2333984375, 0.234130859375, 0.234375, 0.236083984375, 0.238037109375, 0.239990234375, 0.2412109375, 0.241943359375, 0.243896484375, 0.245849609375, 0.24609375, 0.247802734375, 0.2490234375, 0.249755859375, 0.25, 0.251708984375, 0.253662109375, 0.255615234375, 0.2568359375, 0.257568359375, 0.259521484375, 0.261474609375, 0.263427734375, 0.2646484375, 0.265380859375, 0.265625, 0.267333984375, 0.269287109375, 0.271240234375, 0.2724609375, 0.273193359375, 0.275146484375, 0.277099609375, 0.27734375, 0.279052734375, 0.2802734375, 0.281005859375, 0.28125, 0.282958984375, 0.284912109375, 0.286865234375, 0.2880859375, 0.288818359375, 0.290771484375, 0.292724609375, 0.294677734375, 0.2958984375, 0.296630859375, 0.296875, 0.298583984375, 0.300537109375, 0.302490234375, 0.3037109375, 0.304443359375, 0.306396484375, 0.308349609375, 0.30859375, 0.310302734375, 0.3115234375, 0.312255859375, 0.3125, 0.314208984375, 0.316162109375, 0.318115234375, 0.3193359375, 0.320068359375, 0.322021484375, 0.323974609375, 0.325927734375, 0.3271484375, 0.327880859375, 0.328125, 0.329833984375, 0.331787109375, 0.333740234375, 0.3349609375, 0.335693359375, 0.337646484375, 0.339599609375, 0.33984375, 0.341552734375, 0.3427734375, 0.343505859375, 0.34375, 0.345458984375, 0.347412109375, 0.349365234375, 0.3505859375, 0.351318359375, 0.353271484375, 0.355224609375, 0.357177734375, 0.3583984375, 0.359130859375, 0.359375, 0.361083984375, 0.363037109375, 0.364990234375, 0.3662109375, 0.366943359375, 0.368896484375, 0.370849609375, 0.37109375, 0.372802734375, 0.3740234375, 0.374755859375, 0.375, 0.376708984375, 0.378662109375, 0.380615234375, 0.3818359375, 0.382568359375, 0.384521484375, 0.386474609375, 0.388427734375, 0.3896484375, 0.390380859375, 0.390625, 0.392333984375, 0.394287109375, 0.396240234375, 0.3974609375, 0.398193359375, 0.400146484375, 0.402099609375, 0.40234375, 0.404052734375, 0.4052734375, 0.406005859375, 0.40625, 0.407958984375, 0.409912109375, 0.411865234375, 0.4130859375, 0.413818359375, 0.415771484375, 0.417724609375, 0.419677734375, 0.4208984375, 0.421630859375, 0.421875, 0.423583984375, 0.425537109375, 0.427490234375, 0.4287109375, 0.429443359375, 0.431396484375, 0.433349609375, 0.43359375, 0.435302734375, 0.4365234375, 0.437255859375, 0.4375, 0.439208984375, 0.441162109375, 0.443115234375, 0.4443359375, 0.445068359375, 0.447021484375, 0.448974609375, 0.450927734375, 0.4521484375, 0.452880859375, 0.453125, 0.454833984375, 0.456787109375, 0.458740234375, 0.4599609375, 0.460693359375, 0.462646484375, 0.464599609375, 0.46484375, 0.466552734375, 0.4677734375, 0.468505859375, 0.46875, 0.470458984375, 0.472412109375, 0.474365234375, 0.4755859375, 0.476318359375, 0.478271484375, 0.480224609375, 0.482177734375, 0.4833984375, 0.484130859375, 0.484375, 0.486083984375, 0.488037109375, 0.489990234375, 0.4912109375, 0.491943359375, 0.493896484375, 0.495849609375, 0.49609375, 0.497802734375, 0.4990234375, 0.499755859375, 0.5, 0.501708984375, 0.503662109375, 0.505615234375, 0.5068359375, 0.507568359375, 0.509521484375, 0.511474609375, 0.513427734375, 0.5146484375, 0.515380859375, 0.515625, 0.517333984375, 0.519287109375, 0.521240234375, 0.5224609375, 0.523193359375, 0.525146484375, 0.527099609375, 0.52734375, 0.529052734375, 0.5302734375, 0.531005859375, 0.53125, 0.532958984375, 0.534912109375, 0.536865234375, 0.5380859375, 0.538818359375, 0.540771484375, 0.542724609375, 0.544677734375, 0.5458984375, 0.546630859375, 0.546875, 0.548583984375, 0.550537109375, 0.552490234375, 0.5537109375, 0.554443359375, 0.556396484375, 0.558349609375, 0.55859375, 0.560302734375, 0.5615234375, 0.562255859375, 0.5625, 0.564208984375, 0.566162109375, 0.568115234375, 0.5693359375, 0.570068359375, 0.572021484375, 0.573974609375, 0.575927734375, 0.5771484375, 0.577880859375, 0.578125, 0.579833984375, 0.581787109375, 0.583740234375, 0.5849609375, 0.585693359375, 0.587646484375, 0.589599609375, 0.58984375, 0.591552734375, 0.5927734375, 0.593505859375, 0.59375, 0.595458984375, 0.597412109375, 0.599365234375, 0.6005859375, 0.601318359375, 0.603271484375, 0.605224609375, 0.607177734375, 0.6083984375, 0.609130859375, 0.609375, 0.611083984375, 0.613037109375, 0.614990234375, 0.6162109375, 0.616943359375, 0.618896484375, 0.620849609375, 0.62109375, 0.622802734375, 0.6240234375, 0.624755859375, 0.625, 0.626708984375, 0.628662109375, 0.630615234375, 0.6318359375, 0.632568359375, 0.634521484375, 0.636474609375, 0.638427734375, 0.6396484375, 0.640380859375, 0.640625, 0.642333984375, 0.644287109375, 0.646240234375, 0.6474609375, 0.648193359375, 0.650146484375, 0.652099609375, 0.65234375, 0.654052734375, 0.6552734375, 0.656005859375, 0.65625, 0.657958984375, 0.659912109375, 0.661865234375, 0.6630859375, 0.663818359375, 0.665771484375, 0.667724609375, 0.669677734375, 0.6708984375, 0.671630859375, 0.671875, 0.673583984375, 0.675537109375, 0.677490234375, 0.6787109375, 0.679443359375, 0.681396484375, 0.683349609375, 0.68359375, 0.685302734375, 0.6865234375, 0.687255859375, 0.6875, 0.689208984375, 0.691162109375, 0.693115234375, 0.6943359375, 0.695068359375, 0.697021484375, 0.698974609375, 0.700927734375, 0.7021484375, 0.702880859375, 0.703125, 0.704833984375, 0.706787109375, 0.708740234375, 0.7099609375, 0.710693359375, 0.712646484375, 0.714599609375, 0.71484375, 0.716552734375, 0.7177734375, 0.718505859375, 0.71875, 0.720458984375, 0.722412109375, 0.724365234375, 0.7255859375, 0.726318359375, 0.728271484375, 0.730224609375, 0.732177734375, 0.7333984375, 0.734130859375, 0.734375, 0.736083984375, 0.738037109375, 0.739990234375, 0.7412109375, 0.741943359375, 0.743896484375, 0.745849609375, 0.74609375, 0.747802734375, 0.7490234375, 0.749755859375, 0.75, 0.751708984375, 0.753662109375, 0.755615234375, 0.7568359375, 0.757568359375, 0.759521484375, 0.761474609375, 0.763427734375, 0.7646484375, 0.765380859375, 0.765625, 0.767333984375, 0.769287109375, 0.771240234375, 0.7724609375, 0.773193359375, 0.775146484375, 0.777099609375, 0.77734375, 0.779052734375, 0.7802734375, 0.781005859375, 0.78125, 0.782958984375, 0.784912109375, 0.786865234375, 0.7880859375, 0.788818359375, 0.790771484375, 0.792724609375, 0.794677734375, 0.7958984375, 0.796630859375, 0.796875, 0.798583984375, 0.800537109375, 0.802490234375, 0.8037109375, 0.804443359375, 0.806396484375, 0.808349609375, 0.80859375, 0.810302734375, 0.8115234375, 0.812255859375, 0.8125, 0.814208984375, 0.816162109375, 0.818115234375, 0.8193359375, 0.820068359375, 0.822021484375, 0.823974609375, 0.825927734375, 0.8271484375, 0.827880859375, 0.828125, 0.829833984375, 0.831787109375, 0.833740234375, 0.8349609375, 0.835693359375, 0.837646484375, 0.839599609375, 0.83984375, 0.841552734375, 0.8427734375, 0.843505859375, 0.84375, 0.845458984375, 0.847412109375, 0.849365234375, 0.8505859375, 0.851318359375, 0.853271484375, 0.855224609375, 0.857177734375, 0.8583984375, 0.859130859375, 0.859375, 0.861083984375, 0.863037109375, 0.864990234375, 0.8662109375, 0.866943359375, 0.868896484375, 0.870849609375, 0.87109375, 0.872802734375, 0.8740234375, 0.874755859375, 0.875, 0.876708984375, 0.878662109375, 0.880615234375, 0.8818359375, 0.882568359375, 0.884521484375, 0.886474609375, 0.888427734375, 0.8896484375, 0.890380859375, 0.890625, 0.892333984375, 0.894287109375, 0.896240234375, 0.8974609375, 0.898193359375, 0.900146484375, 0.902099609375, 0.90234375, 0.904052734375, 0.9052734375, 0.906005859375, 0.90625, 0.907958984375, 0.909912109375, 0.911865234375, 0.9130859375, 0.913818359375, 0.915771484375, 0.917724609375, 0.919677734375, 0.9208984375, 0.921630859375, 0.921875, 0.923583984375, 0.925537109375, 0.927490234375, 0.9287109375, 0.929443359375, 0.931396484375, 0.933349609375, 0.93359375, 0.935302734375, 0.9365234375, 0.937255859375, 0.9375, 0.939208984375, 0.941162109375, 0.943115234375, 0.9443359375, 0.945068359375, 0.947021484375, 0.948974609375, 0.950927734375, 0.9521484375, 0.952880859375, 0.953125, 0.954833984375, 0.956787109375, 0.958740234375, 0.9599609375, 0.960693359375, 0.962646484375, 0.964599609375, 0.96484375, 0.966552734375, 0.9677734375, 0.968505859375, 0.96875, 0.970458984375, 0.972412109375, 0.974365234375, 0.9755859375, 0.976318359375, 0.978271484375, 0.980224609375, 0.982177734375, 0.9833984375, 0.984130859375, 0.984375, 0.986083984375, 0.988037109375, 0.989990234375, 0.9912109375, 0.991943359375, 0.993896484375, 0.995849609375, 0.99609375, 0.997802734375, 0.9990234375, 0.999755859375]
averages_even = {0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]}
averages_odd = {0.0: [0.25, 0.5, 0.75, 0.0], 0.001708984375: [0.328125, 0.671875], 0.216552734375: [0.453125, 0.546875], 0.974365234375: [0.796875, 0.203125], 0.0068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.029052734375: [0.453125, 0.546875], 0.505615234375: [0.796875, 0.203125], 0.0693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.681396484375: [0.421875, 0.578125], 0.425537109375: [0.390625, 0.609375], 0.732177734375: [0.953125, 0.046875], 0.892333984375: [0.828125, 0.171875], 0.5380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.915771484375: [0.921875, 0.078125], 0.5: [0.5, 0.75, 0.0, 0.25], 0.4208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.800537109375: [0.390625, 0.609375], 0.595458984375: [0.671875, 0.328125], 0.493896484375: [0.421875, 0.578125], 0.052490234375: [0.296875, 0.703125], 0.966552734375: [0.453125, 0.546875], 0.558349609375: [0.859375, 0.140625], 0.007568359375: [0.265625, 0.734375], 0.937255859375: [0.484375, 0.515625], 0.372802734375: [0.453125, 0.546875], 0.148193359375: [0.234375, 0.765625], 0.568115234375: [0.796875, 0.203125], 0.8115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.695068359375: [0.734375, 0.265625], 0.65625: [0.5, 0.75, 0.0, 0.25], 0.251708984375: [0.328125, 0.671875], 0.441162109375: [0.890625, 0.109375], 0.40234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.154052734375: [0.453125, 0.546875], 0.081787109375: [0.390625, 0.609375], 0.650146484375: [0.421875, 0.578125], 0.5693359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.4365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.831787109375: [0.390625, 0.609375], 0.320068359375: [0.265625, 0.734375], 0.28125: [0.25, 0.5, 0.75, 0.0], 0.7802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.625: [0.5, 0.75, 0.0, 0.25], 0.054443359375: [0.234375, 0.765625], 0.589599609375: [0.859375, 0.140625], 0.968505859375: [0.484375, 0.515625], 0.388427734375: [0.953125, 0.046875], 0.156005859375: [0.484375, 0.515625], 0.8427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.507568359375: [0.734375, 0.265625], 0.0771484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.267333984375: [0.828125, 0.171875], 0.456787109375: [0.390625, 0.609375], 0.794677734375: [0.953125, 0.046875], 0.085693359375: [0.765625, 0.234375], 0.6005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.53125: [0.5, 0.75, 0.0, 0.25], 0.24609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.4521484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.863037109375: [0.390625, 0.609375], 0.335693359375: [0.765625, 0.234375], 0.296875: [0.375, 0.625, 0.875, 0.125], 0.552490234375: [0.703125, 0.296875], 0.224365234375: [0.796875, 0.203125], 0.620849609375: [0.859375, 0.140625], 0.1240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.999755859375: [0.484375, 0.515625], 0.404052734375: [0.453125, 0.546875], 0.163818359375: [0.265625, 0.734375], 0.759521484375: [0.921875, 0.078125], 0.125: [0.25, 0.5, 0.75, 0.0], 0.8740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.757568359375: [0.734375, 0.265625], 0.71875: [0.5, 0.75, 0.0, 0.25], 0.282958984375: [0.328125, 0.671875], 0.015380859375: [0.984375, 0.015625], 0.825927734375: [0.953125, 0.046875], 0.089599609375: [0.859375, 0.140625], 0.407958984375: [0.328125, 0.671875], 0.4677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.894287109375: [0.390625, 0.609375], 0.351318359375: [0.734375, 0.265625], 0.3125: [0.25, 0.5, 0.75, 0.0], 0.583740234375: [0.703125, 0.296875], 0.665771484375: [0.921875, 0.078125], 0.232177734375: [0.953125, 0.046875], 0.017333984375: [0.828125, 0.171875], 0.652099609375: [0.859375, 0.140625], 0.814208984375: [0.671875, 0.328125], 0.419677734375: [0.953125, 0.046875], 0.171630859375: [0.984375, 0.015625], 0.9052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.509521484375: [0.921875, 0.078125], 0.0849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.009521484375: [0.921875, 0.078125], 0.736083984375: [0.828125, 0.171875], 0.488037109375: [0.390625, 0.609375], 0.857177734375: [0.953125, 0.046875], 0.093505859375: [0.484375, 0.515625], 0.236083984375: [0.828125, 0.171875], 0.6630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.546630859375: [0.984375, 0.015625], 0.4833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.925537109375: [0.390625, 0.609375], 0.208740234375: [0.296875, 0.703125], 0.328125: [0.375, 0.625, 0.875, 0.125], 0.614990234375: [0.296875, 0.703125], 0.048583984375: [0.828125, 0.171875], 0.239990234375: [0.296875, 0.703125], 0.683349609375: [0.859375, 0.140625], 0.572021484375: [0.921875, 0.078125], 0.806396484375: [0.421875, 0.578125], 0.435302734375: [0.453125, 0.546875], 0.179443359375: [0.765625, 0.234375], 0.140625: [0.375, 0.625, 0.875, 0.125], 0.9365234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.820068359375: [0.734375, 0.265625], 0.78125: [0.5, 0.75, 0.0, 0.25], 0.314208984375: [0.328125, 0.671875], 0.46484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.097412109375: [0.890625, 0.109375], 0.6943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.577880859375: [0.984375, 0.015625], 0.566162109375: [0.890625, 0.109375], 0.4990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.956787109375: [0.390625, 0.609375], 0.382568359375: [0.734375, 0.265625], 0.34375: [0.5, 0.75, 0.0, 0.25], 0.646240234375: [0.703125, 0.296875], 0.626708984375: [0.328125, 0.671875], 0.247802734375: [0.453125, 0.546875], 0.714599609375: [0.859375, 0.140625], 0.261474609375: [0.359375, 0.640625], 0.02734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.7568359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.450927734375: [0.953125, 0.046875], 0.187255859375: [0.484375, 0.515625], 0.2568359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.0458984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.9677734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.511474609375: [0.359375, 0.640625], 0.0927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.329833984375: [0.828125, 0.171875], 0.126708984375: [0.328125, 0.671875], 0.919677734375: [0.953125, 0.046875], 0.101318359375: [0.265625, 0.734375], 0.161865234375: [0.796875, 0.203125], 0.7255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.609130859375: [0.984375, 0.015625], 0.0625: [0.25, 0.5, 0.75, 0.0], 0.579833984375: [0.828125, 0.171875], 0.988037109375: [0.390625, 0.609375], 0.398193359375: [0.765625, 0.234375], 0.359375: [0.375, 0.625, 0.875, 0.125], 0.677490234375: [0.703125, 0.296875], 0.745849609375: [0.859375, 0.140625], 0.277099609375: [0.859375, 0.140625], 0.466552734375: [0.453125, 0.546875], 0.195068359375: [0.265625, 0.734375], 0.15625: [0.25, 0.5, 0.75, 0.0], 0.2724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.822021484375: [0.921875, 0.078125], 0.9990234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.882568359375: [0.734375, 0.265625], 0.84375: [0.5, 0.75, 0.0, 0.25], 0.345458984375: [0.328125, 0.671875], 0.134521484375: [0.921875, 0.078125], 0.49609375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.950927734375: [0.953125, 0.046875], 0.105224609375: [0.359375, 0.640625], 0.363037109375: [0.390625, 0.609375], 0.640380859375: [0.984375, 0.015625], 0.413818359375: [0.734375, 0.265625], 0.375: [0.5, 0.75, 0.0, 0.25], 0.708740234375: [0.703125, 0.296875], 0.763427734375: [0.953125, 0.046875], 0.777099609375: [0.859375, 0.140625], 0.292724609375: [0.359375, 0.640625], 0.43359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.482177734375: [0.953125, 0.046875], 0.202880859375: [0.984375, 0.015625], 0.790771484375: [0.921875, 0.078125], 0.534912109375: [0.890625, 0.109375], 0.663818359375: [0.734375, 0.265625], 0.513427734375: [0.953125, 0.046875], 0.1005859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.361083984375: [0.828125, 0.171875], 0.603271484375: [0.921875, 0.078125], 0.0615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.109130859375: [0.984375, 0.015625], 0.7880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.671630859375: [0.984375, 0.015625], 0.429443359375: [0.765625, 0.234375], 0.390625: [0.375, 0.625, 0.875, 0.125], 0.739990234375: [0.703125, 0.296875], 0.5458984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.808349609375: [0.859375, 0.140625], 0.845458984375: [0.671875, 0.328125], 0.077880859375: [0.984375, 0.015625], 0.861083984375: [0.828125, 0.171875], 0.497802734375: [0.453125, 0.546875], 0.210693359375: [0.234375, 0.765625], 0.3037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.548583984375: [0.828125, 0.171875], 0.945068359375: [0.734375, 0.265625], 0.90625: [0.5, 0.75, 0.0, 0.25], 0.376708984375: [0.328125, 0.671875], 0.150146484375: [0.421875, 0.578125], 0.113037109375: [0.390625, 0.609375], 0.8193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.5068359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.255615234375: [0.796875, 0.203125], 0.445068359375: [0.265625, 0.734375], 0.40625: [0.5, 0.75, 0.0, 0.25], 0.771240234375: [0.703125, 0.296875], 0.900146484375: [0.421875, 0.578125], 0.5771484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.839599609375: [0.859375, 0.140625], 0.323974609375: [0.359375, 0.640625], 0.913818359375: [0.734375, 0.265625], 0.875: [0.5, 0.75, 0.0, 0.25], 0.218505859375: [0.484375, 0.515625], 0.3193359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.597412109375: [0.890625, 0.109375], 0.55859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.515380859375: [0.984375, 0.015625], 0.9375: [0.5, 0.75, 0.0, 0.25], 0.392333984375: [0.828125, 0.171875], 0.157958984375: [0.328125, 0.671875], 0.116943359375: [0.234375, 0.765625], 0.8505859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.734130859375: [0.984375, 0.015625], 0.078125: [0.375, 0.625, 0.875, 0.125], 0.954833984375: [0.828125, 0.171875], 0.634521484375: [0.921875, 0.078125], 0.460693359375: [0.765625, 0.234375], 0.421875: [0.375, 0.625, 0.875, 0.125], 0.802490234375: [0.703125, 0.296875], 0.6083984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.870849609375: [0.859375, 0.140625], 0.339599609375: [0.859375, 0.140625], 0.982177734375: [0.953125, 0.046875], 0.560302734375: [0.453125, 0.546875], 0.09375: [0.25, 0.5, 0.75, 0.0], 0.226318359375: [0.265625, 0.734375], 0.1875: [0.25, 0.5, 0.75, 0.0], 0.021240234375: [0.296875, 0.703125], 0.628662109375: [0.890625, 0.109375], 0.58984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.704833984375: [0.828125, 0.171875], 0.96875: [0.5, 0.75, 0.0, 0.25], 0.165771484375: [0.921875, 0.078125], 0.120849609375: [0.859375, 0.140625], 0.271240234375: [0.296875, 0.703125], 0.169677734375: [0.953125, 0.046875], 0.286865234375: [0.796875, 0.203125], 0.046630859375: [0.984375, 0.015625], 0.476318359375: [0.734375, 0.265625], 0.4375: [0.5, 0.75, 0.0, 0.25], 0.833740234375: [0.703125, 0.296875], 0.6396484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.6875: [0.5, 0.75, 0.0, 0.25], 0.902099609375: [0.859375, 0.140625], 0.355224609375: [0.359375, 0.640625], 0.591552734375: [0.453125, 0.546875], 0.234130859375: [0.984375, 0.015625], 0.3505859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.659912109375: [0.890625, 0.109375], 0.62109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.517333984375: [0.828125, 0.171875], 0.1162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.013427734375: [0.953125, 0.046875], 0.173583984375: [0.828125, 0.171875], 0.767333984375: [0.828125, 0.171875], 0.124755859375: [0.484375, 0.515625], 0.245849609375: [0.859375, 0.140625], 0.9130859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.796630859375: [0.984375, 0.015625], 0.302490234375: [0.296875, 0.703125], 0.491943359375: [0.765625, 0.234375], 0.453125: [0.375, 0.625, 0.875, 0.125], 0.864990234375: [0.703125, 0.296875], 0.6708984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.554443359375: [0.765625, 0.234375], 0.933349609375: [0.859375, 0.140625], 0.370849609375: [0.859375, 0.140625], 0.622802734375: [0.453125, 0.546875], 0.064208984375: [0.328125, 0.671875], 0.005615234375: [0.796875, 0.203125], 0.241943359375: [0.765625, 0.234375], 0.203125: [0.375, 0.625, 0.875, 0.125], 0.3662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.691162109375: [0.890625, 0.109375], 0.65234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.962646484375: [0.421875, 0.578125], 0.439208984375: [0.328125, 0.671875], 0.181396484375: [0.421875, 0.578125], 0.015625: [0.375, 0.625, 0.875, 0.125], 0.796875: [0.375, 0.625, 0.875, 0.125], 0.21484375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.9443359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.827880859375: [0.984375, 0.015625], 0.08984375: [0.1875, 0.3125, 0.6875, 0.9375, 0.0625, 0.4375, 0.5625, 0.8125], 0.318115234375: [0.796875, 0.203125], 0.538818359375: [0.734375, 0.265625], 0.6552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.986083984375: [0.828125, 0.171875], 0.46875: [0.5, 0.75, 0.0, 0.25], 0.896240234375: [0.703125, 0.296875], 0.7021484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.585693359375: [0.765625, 0.234375], 0.546875: [0.375, 0.625, 0.875, 0.125], 0.964599609375: [0.859375, 0.140625], 0.386474609375: [0.359375, 0.640625], 0.654052734375: [0.453125, 0.546875], 0.068115234375: [0.796875, 0.203125], 0.618896484375: [0.421875, 0.578125], 0.4052734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.019287109375: [0.390625, 0.609375], 0.249755859375: [0.484375, 0.515625], 0.3818359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.722412109375: [0.890625, 0.109375], 0.68359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.265380859375: [0.984375, 0.015625], 0.519287109375: [0.390625, 0.609375], 0.454833984375: [0.828125, 0.171875], 0.189208984375: [0.328125, 0.671875], 0.9755859375: [0.65625, 0.84375, 0.15625, 0.34375], 0.859130859375: [0.984375, 0.015625], 0.333740234375: [0.296875, 0.703125], 0.128662109375: [0.890625, 0.109375], 0.689208984375: [0.671875, 0.328125], 0.484375: [0.375, 0.625, 0.875, 0.125], 0.927490234375: [0.703125, 0.296875], 0.056396484375: [0.421875, 0.578125], 0.7333984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.616943359375: [0.765625, 0.234375], 0.578125: [0.375, 0.625, 0.875, 0.125], 0.995849609375: [0.859375, 0.140625], 0.402099609375: [0.859375, 0.140625], 0.685302734375: [0.453125, 0.546875], 0.072021484375: [0.921875, 0.078125], 0.1083984375: [0.21875, 0.28125, 0.71875, 0.78125], 0.21875: [0.25, 0.5, 0.75, 0.0], 0.3974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.753662109375: [0.890625, 0.109375], 0.71484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.281005859375: [0.484375, 0.515625], 0.470458984375: [0.328125, 0.671875], 0.197021484375: [0.921875, 0.078125], 0.931396484375: [0.421875, 0.578125], 0.304443359375: [0.765625, 0.234375], 0.890380859375: [0.984375, 0.015625], 0.349365234375: [0.796875, 0.203125], 0.702880859375: [0.984375, 0.015625], 0.136474609375: [0.359375, 0.640625], 0.958740234375: [0.703125, 0.296875], 0.7646484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.648193359375: [0.765625, 0.234375], 0.609375: [0.375, 0.625, 0.875, 0.125], 0.829833984375: [0.828125, 0.171875], 0.417724609375: [0.359375, 0.640625], 0.716552734375: [0.453125, 0.546875], 0.075927734375: [0.953125, 0.046875], 0.1318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.265625: [0.375, 0.625, 0.875, 0.125], 0.2958984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.4130859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.784912109375: [0.890625, 0.109375], 0.74609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.2880859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.773193359375: [0.765625, 0.234375], 0.521240234375: [0.703125, 0.296875], 0.486083984375: [0.828125, 0.171875], 0.204833984375: [0.828125, 0.171875], 0.542724609375: [0.359375, 0.640625], 0.921630859375: [0.984375, 0.015625], 0.364990234375: [0.296875, 0.703125], 0.144287109375: [0.390625, 0.609375], 0.989990234375: [0.703125, 0.296875], 0.7958984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.679443359375: [0.765625, 0.234375], 0.640625: [0.375, 0.625, 0.875, 0.125], 0.433349609375: [0.859375, 0.140625], 0.747802734375: [0.453125, 0.546875], 0.079833984375: [0.828125, 0.171875], 0.1396484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.5537109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.234375: [0.375, 0.625, 0.875, 0.125], 0.027099609375: [0.859375, 0.140625], 0.296630859375: [0.984375, 0.015625], 0.77734375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.312255859375: [0.484375, 0.515625], 0.212646484375: [0.421875, 0.578125], 0.573974609375: [0.359375, 0.640625], 0.5146484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.380615234375: [0.796875, 0.203125], 0.152099609375: [0.859375, 0.140625], 0.472412109375: [0.890625, 0.109375], 0.710693359375: [0.765625, 0.234375], 0.671875: [0.375, 0.625, 0.875, 0.125], 0.259521484375: [0.921875, 0.078125], 0.6318359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.448974609375: [0.359375, 0.640625], 0.779052734375: [0.453125, 0.546875], 0.083740234375: [0.296875, 0.703125], 0.1474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.5849609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.673583984375: [0.828125, 0.171875], 0.4443359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.847412109375: [0.890625, 0.109375], 0.80859375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.327880859375: [0.984375, 0.015625], 0.853271484375: [0.921875, 0.078125], 0.536865234375: [0.796875, 0.203125], 0.523193359375: [0.765625, 0.234375], 0.976318359375: [0.734375, 0.265625], 0.220458984375: [0.328125, 0.671875], 0.130615234375: [0.796875, 0.203125], 0.556396484375: [0.421875, 0.578125], 0.515625: [0.375, 0.625, 0.875, 0.125], 0.109375: [0.375, 0.625, 0.875, 0.125], 0.396240234375: [0.296875, 0.703125], 0.159912109375: [0.890625, 0.109375], 0.743896484375: [0.421875, 0.578125], 0.8583984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.741943359375: [0.765625, 0.234375], 0.703125: [0.375, 0.625, 0.875, 0.125], 0.275146484375: [0.421875, 0.578125], 0.111083984375: [0.828125, 0.171875], 0.464599609375: [0.859375, 0.140625], 0.810302734375: [0.453125, 0.546875], 0.087646484375: [0.421875, 0.578125], 0.1552734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.6162109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.878662109375: [0.890625, 0.109375], 0.83984375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.343505859375: [0.484375, 0.515625], 0.4912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.228271484375: [0.921875, 0.078125], 0.636474609375: [0.359375, 0.640625], 0.0146484375: [0.21875, 0.28125, 0.71875, 0.78125], 0.306396484375: [0.421875, 0.578125], 0.411865234375: [0.796875, 0.203125], 0.167724609375: [0.359375, 0.640625], 0.638427734375: [0.953125, 0.046875], 0.8896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.058349609375: [0.859375, 0.140625], 0.734375: [0.375, 0.625, 0.875, 0.125], 0.290771484375: [0.921875, 0.078125], 0.480224609375: [0.359375, 0.640625], 0.841552734375: [0.453125, 0.546875], 0.091552734375: [0.453125, 0.546875], 0.1630859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.6474609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4755859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.909912109375: [0.890625, 0.109375], 0.87109375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.359130859375: [0.984375, 0.015625], 0.599365234375: [0.796875, 0.203125], 0.525146484375: [0.421875, 0.578125], 0.978271484375: [0.921875, 0.078125], 0.0224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.667724609375: [0.359375, 0.640625], 0.060302734375: [0.453125, 0.546875], 0.177490234375: [0.296875, 0.703125], 0.427490234375: [0.296875, 0.703125], 0.175537109375: [0.390625, 0.609375], 0.9208984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.804443359375: [0.765625, 0.234375], 0.765625: [0.375, 0.625, 0.875, 0.125], 0.720458984375: [0.328125, 0.671875], 0.587646484375: [0.421875, 0.578125], 0.062255859375: [0.484375, 0.515625], 0.495849609375: [0.859375, 0.140625], 0.872802734375: [0.453125, 0.546875], 0.1708984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.6787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.562255859375: [0.484375, 0.515625], 0.031005859375: [0.484375, 0.515625], 0.941162109375: [0.890625, 0.109375], 0.90234375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.374755859375: [0.484375, 0.515625], 0.630615234375: [0.796875, 0.203125], 0.243896484375: [0.421875, 0.578125], 0.698974609375: [0.359375, 0.640625], 0.761474609375: [0.359375, 0.640625], 0.253662109375: [0.890625, 0.109375], 0.657958984375: [0.328125, 0.671875], 0.12109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.443115234375: [0.796875, 0.203125], 0.183349609375: [0.859375, 0.140625], 0.775146484375: [0.421875, 0.578125], 0.9521484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.835693359375: [0.765625, 0.234375], 0.298583984375: [0.828125, 0.171875], 0.322021484375: [0.921875, 0.078125], 0.788818359375: [0.734375, 0.265625], 0.601318359375: [0.734375, 0.265625], 0.75: [0.5, 0.75, 0.0, 0.25], 0.904052734375: [0.453125, 0.546875], 0.099365234375: [0.203125, 0.796875], 0.1787109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.593505859375: [0.484375, 0.515625], 0.972412109375: [0.890625, 0.109375], 0.93359375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.390380859375: [0.984375, 0.015625], 0.661865234375: [0.796875, 0.203125], 0.816162109375: [0.890625, 0.109375], 0.527099609375: [0.859375, 0.140625], 0.730224609375: [0.359375, 0.640625], 0.269287109375: [0.390625, 0.609375], 0.458740234375: [0.296875, 0.703125], 0.191162109375: [0.890625, 0.109375], 0.15234375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.2646484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9599609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.798583984375: [0.828125, 0.171875], 0.9833984375: [0.71875, 0.78125, 0.21875, 0.28125], 0.866943359375: [0.765625, 0.234375], 0.828125: [0.375, 0.625, 0.875, 0.125], 0.337646484375: [0.421875, 0.578125], 0.032958984375: [0.328125, 0.671875], 0.935302734375: [0.453125, 0.546875], 0.103271484375: [0.921875, 0.078125], 0.7412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.624755859375: [0.484375, 0.515625], 0.96484375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.406005859375: [0.484375, 0.515625], 0.693115234375: [0.796875, 0.203125], 0.884521484375: [0.921875, 0.078125], 0.868896484375: [0.421875, 0.578125], 0.034912109375: [0.890625, 0.109375], 0.284912109375: [0.890625, 0.109375], 0.859375: [0.375, 0.625, 0.875, 0.125], 0.308349609375: [0.859375, 0.140625], 0.474365234375: [0.796875, 0.203125], 0.198974609375: [0.359375, 0.640625], 0.2802734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.898193359375: [0.765625, 0.234375], 0.366943359375: [0.765625, 0.234375], 0.353271484375: [0.921875, 0.078125], 0.138427734375: [0.953125, 0.046875], 0.05859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.107177734375: [0.953125, 0.046875], 0.3349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.7724609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.656005859375: [0.484375, 0.515625], 0.939208984375: [0.671875, 0.328125], 0.99609375: [0.4375, 0.5625, 0.9375, 0.8125, 0.1875, 0.3125, 0.6875, 0.0625], 0.724365234375: [0.796875, 0.203125], 0.952880859375: [0.984375, 0.015625], 0.642333984375: [0.828125, 0.171875], 0.529052734375: [0.453125, 0.546875], 0.1943359375: [0.34375, 0.65625, 0.84375, 0.15625], 0.300537109375: [0.390625, 0.609375], 0.046875: [0.375, 0.625, 0.875, 0.125], 0.489990234375: [0.296875, 0.703125], 0.501708984375: [0.328125, 0.671875], 0.206787109375: [0.390625, 0.609375], 0.550537109375: [0.390625, 0.609375], 0.929443359375: [0.765625, 0.234375], 0.890625: [0.625, 0.875, 0.125, 0.375], 0.368896484375: [0.421875, 0.578125], 0.146240234375: [0.296875, 0.703125], 0.997802734375: [0.453125, 0.546875], 0.095458984375: [0.328125, 0.671875], 0.2021484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.8037109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.687255859375: [0.484375, 0.515625], 0.697021484375: [0.921875, 0.078125], 0.769287109375: [0.390625, 0.609375], 0.437255859375: [0.484375, 0.515625], 0.755615234375: [0.796875, 0.203125], 0.5615234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8271484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.823974609375: [0.359375, 0.640625], 0.316162109375: [0.890625, 0.109375], 0.27734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.712646484375: [0.421875, 0.578125], 0.1865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.5224609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.984130859375: [0.984375, 0.015625], 0.214599609375: [0.859375, 0.140625], 0.3115234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.581787109375: [0.390625, 0.609375], 0.960693359375: [0.765625, 0.234375], 0.921875: [0.625, 0.875, 0.125, 0.375], 0.384521484375: [0.921875, 0.078125], 0.038818359375: [0.265625, 0.734375], 0.751708984375: [0.671875, 0.328125], 0.114990234375: [0.296875, 0.703125], 0.2099609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.8349609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.718505859375: [0.484375, 0.515625], 0.765380859375: [0.984375, 0.015625], 0.8818359375: [0.65625, 0.84375, 0.15625, 0.34375], 0.452880859375: [0.984375, 0.015625], 0.786865234375: [0.796875, 0.203125], 0.5927734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.531005859375: [0.484375, 0.515625], 0.855224609375: [0.640625, 0.359375], 0.331787109375: [0.390625, 0.609375], 0.792724609375: [0.359375, 0.640625], 0.544677734375: [0.953125, 0.046875], 0.726318359375: [0.734375, 0.265625], 0.222412109375: [0.890625, 0.109375], 0.18359375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.3271484375: [0.28125, 0.71875, 0.78125, 0.21875], 0.613037109375: [0.390625, 0.609375], 0.991943359375: [0.765625, 0.234375], 0.953125: [0.375, 0.625, 0.875, 0.125], 0.040771484375: [0.921875, 0.078125], 0.118896484375: [0.421875, 0.578125], 0.2177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.8662109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.749755859375: [0.484375, 0.515625], 0.279052734375: [0.453125, 0.546875], 0.468505859375: [0.484375, 0.515625], 0.818115234375: [0.796875, 0.203125], 0.6240234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.923583984375: [0.828125, 0.171875], 0.886474609375: [0.640625, 0.359375], 0.347412109375: [0.890625, 0.109375], 0.30859375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.575927734375: [0.953125, 0.046875], 0.263427734375: [0.953125, 0.046875], 0.876708984375: [0.671875, 0.328125], 0.230224609375: [0.359375, 0.640625], 0.3427734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.644287109375: [0.390625, 0.609375], 0.564208984375: [0.328125, 0.671875], 0.984375: [0.625, 0.875, 0.125, 0.375], 0.415771484375: [0.921875, 0.078125], 0.042724609375: [0.359375, 0.640625], 0.888427734375: [0.953125, 0.046875], 0.993896484375: [0.421875, 0.578125], 0.122802734375: [0.453125, 0.546875], 0.2255859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.8974609375: [0.40625, 0.59375, 0.90625, 0.09375], 0.781005859375: [0.484375, 0.515625], 0.294677734375: [0.953125, 0.046875], 0.484130859375: [0.984375, 0.015625], 0.849365234375: [0.796875, 0.203125], 0.605224609375: [0.359375, 0.640625], 0.532958984375: [0.328125, 0.671875], 0.025146484375: [0.421875, 0.578125], 0.0302734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.917724609375: [0.640625, 0.359375], 0.036865234375: [0.796875, 0.203125], 0.607177734375: [0.953125, 0.046875], 0.140380859375: [0.984375, 0.015625], 0.003662109375: [0.890625, 0.109375], 0.238037109375: [0.390625, 0.609375], 0.3583984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.675537109375: [0.390625, 0.609375], 0.431396484375: [0.421875, 0.578125], 0.044677734375: [0.953125, 0.046875], 0.2333984375: [0.28125, 0.71875, 0.78125, 0.21875], 0.9287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.812255859375: [0.484375, 0.515625], 0.310302734375: [0.453125, 0.546875], 0.970458984375: [0.671875, 0.328125], 0.499755859375: [0.484375, 0.515625], 0.880615234375: [0.796875, 0.203125], 0.6865234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.570068359375: [0.734375, 0.265625], 0.948974609375: [0.359375, 0.640625], 0.378662109375: [0.890625, 0.109375], 0.33984375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.0380859375: [0.34375, 0.65625, 0.84375, 0.15625], 0.066162109375: [0.890625, 0.109375], 0.171875: [0.375, 0.625, 0.875, 0.125], 0.011474609375: [0.359375, 0.640625], 0.3740234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.706787109375: [0.390625, 0.609375], 0.257568359375: [0.265625, 0.734375], 0.447021484375: [0.921875, 0.078125], 0.185302734375: [0.453125, 0.546875], 0.023193359375: [0.234375, 0.765625], 0.2412109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.4287109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.843505859375: [0.484375, 0.515625], 0.423583984375: [0.828125, 0.171875], 0.325927734375: [0.953125, 0.046875], 0.728271484375: [0.921875, 0.078125], 0.837646484375: [0.421875, 0.578125], 0.911865234375: [0.796875, 0.203125], 0.7177734375: [0.46875, 0.53125, 0.96875, 0.03125], 0.503662109375: [0.890625, 0.109375], 0.5625: [0.5, 0.75, 0.0, 0.25], 0.947021484375: [0.921875, 0.078125], 0.980224609375: [0.640625, 0.359375], 0.394287109375: [0.390625, 0.609375], 0.669677734375: [0.953125, 0.046875], 0.070068359375: [0.265625, 0.734375], 0.52734375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.03125: [0.25, 0.5, 0.75, 0.0], 0.3896484375: [0.71875, 0.78125, 0.21875, 0.28125], 0.738037109375: [0.390625, 0.609375], 0.273193359375: [0.765625, 0.234375], 0.907958984375: [0.671875, 0.328125], 0.462646484375: [0.421875, 0.578125], 0.193115234375: [0.796875, 0.203125], 0.782958984375: [0.671875, 0.328125], 0.2490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.9912109375: [0.40625, 0.59375, 0.90625, 0.09375], 0.874755859375: [0.484375, 0.515625], 0.341552734375: [0.453125, 0.546875], 0.132568359375: [0.265625, 0.734375], 0.851318359375: [0.734375, 0.265625], 0.943115234375: [0.796875, 0.203125], 0.7490234375: [0.46875, 0.53125, 0.96875, 0.03125], 0.632568359375: [0.734375, 0.265625], 0.59375: [0.5, 0.75, 0.0, 0.25], 0.409912109375: [0.890625, 0.109375], 0.37109375: [0.3125, 0.4375, 0.8125, 0.6875, 0.0625, 0.1875, 0.5625, 0.9375], 0.700927734375: [0.953125, 0.046875], 0.073974609375: [0.359375, 0.640625], 0.421630859375: [0.984375, 0.015625], 0.142333984375: [0.828125, 0.171875], 0.050537109375: [0.390625, 0.609375], 0.288818359375: [0.265625, 0.734375], 0.25: [0.5, 0.75, 0.0, 0.25], 0.611083984375: [0.828125, 0.171875], 0.478271484375: [0.921875, 0.078125], 0.200927734375: [0.953125, 0.046875], 0.540771484375: [0.921875, 0.078125], 0.8125: [0.5, 0.75, 0.0, 0.25], 0.906005859375: [0.484375, 0.515625], 0.357177734375: [0.953125, 0.046875], 0.400146484375: [0.421875, 0.578125]} |
def test_calc_hand_val(create_computer_hand):
c = create_computer_hand
# Check basevalue calculation
assert c.calc_hand_value() == 17
# Check that calculation with trumpsuit is correct
assert c.calc_hand_value(trumpsuit='Spades') == 36
# Ensure that cards are correctly reset to basevalue before recalculation
assert c.calc_hand_value() == 17
def test_get_cards_matching_suit(create_computer_hand):
c = create_computer_hand
assert c.get_cards_matching_suit(suit="Diamonds") == [2, 3]
def test_find_lowest_card(create_computer_hand):
c = create_computer_hand
# Check function with basevalue of cards
assert c.find_lowest_card() == 5
# Recalculate value of cards and attempt again
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_lowest_card() == 3
def test_find_highest_card(create_computer_hand):
c = create_computer_hand
# Check function with basevalue of cards
assert c.find_highest_card() == 2
# Recalculate value of cards and attempt again
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_highest_card() == 5
def test_computer_pick_up_bidcard(create_computer_hand, create_card):
computer = create_computer_hand
# Save the card which should be dropped for checking later
card_to_drop = computer.cards[3]
bidcard = create_card
computer.pickup_bidcard(bidcard)
# Check card added to hand
assert bidcard in computer.cards.values()
# Check card removed from hand
assert card_to_drop not in computer.cards.values()
def test_computer_trick_decide(create_computer_hand, create_card):
computer = create_computer_hand
played_card = create_card
card_to_be_played = computer.cards[2]
# The next step is normally performed in euchre.py prior to calling trickPhase
computer.set_values(trumpsuit="Diamonds", evaltrumpsuit=True)
# Check that the computer leads with the correct card
assert computer.trick_decide() == card_to_be_played
# The next step is normally performed in euchre.py prior to calling trickDecide
computer.set_values(trumpsuit="Diamonds", leadsuit=played_card.get_suit())
card_to_be_played = computer.cards[5]
# Check that the computer plays a matching suit if possible
assert computer.trick_decide(playedcard=played_card) == card_to_be_played
def test_computer_bid_decide(create_computer_hand, create_card):
c = create_computer_hand
bidcard = create_card
# Check that computer passes on bidcard
assert c.bid_decide(bidcard=bidcard) == 'pass'
# Check that computer chooses 'Clubs'
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'Clubs'
# Set to nondealer
c.dealer = False
c.set_values(basevaluereset=True)
# Should pass on bidcard
assert c.bid_decide(bidcard=bidcard) == 'pass'
# Then choose a suit
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'pass'
# If clubs is excluded, should pass
assert c.bid_decide(rnd=2, excludesuit='Clubs') == 'pass'
# TODO Add case for handvalue > 65 and nondealer
# TODO Add case for order-up and accepts
def test_set_dealer(create_computer_hand_nondealer):
c = create_computer_hand_nondealer
assert c.dealer is False
c.set_dealer()
assert c.dealer is True
def test_user_bid_decide_dealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
user.set_dealer()
bidcard = create_card
list_of_responses_dealer = [1, 3, 2, 4] # accept, pass, choose suit
def user_response_dealer(dummy1, dummy2):
return list_of_responses_dealer.pop(0)
monkeypatch.setattr("src.euchre.hands.get_user_response", user_response_dealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'accept'
assert user.cards[3] == bidcard
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Hearts'
def test_user_bid_decide_nondealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
bidcard = create_card
list_of_responses_nondealer = [1, 2, 1, 3] # order-up, pass, pass, choose suit
def user_response_nondealer(dummy1, dummy2):
return list_of_responses_nondealer.pop(0)
monkeypatch.setattr("src.euchre.hands.get_user_response", user_response_nondealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'order-up'
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Diamonds'
| def test_calc_hand_val(create_computer_hand):
c = create_computer_hand
assert c.calc_hand_value() == 17
assert c.calc_hand_value(trumpsuit='Spades') == 36
assert c.calc_hand_value() == 17
def test_get_cards_matching_suit(create_computer_hand):
c = create_computer_hand
assert c.get_cards_matching_suit(suit='Diamonds') == [2, 3]
def test_find_lowest_card(create_computer_hand):
c = create_computer_hand
assert c.find_lowest_card() == 5
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_lowest_card() == 3
def test_find_highest_card(create_computer_hand):
c = create_computer_hand
assert c.find_highest_card() == 2
c.set_values(trumpsuit='Hearts', evaltrumpsuit=True)
assert c.find_highest_card() == 5
def test_computer_pick_up_bidcard(create_computer_hand, create_card):
computer = create_computer_hand
card_to_drop = computer.cards[3]
bidcard = create_card
computer.pickup_bidcard(bidcard)
assert bidcard in computer.cards.values()
assert card_to_drop not in computer.cards.values()
def test_computer_trick_decide(create_computer_hand, create_card):
computer = create_computer_hand
played_card = create_card
card_to_be_played = computer.cards[2]
computer.set_values(trumpsuit='Diamonds', evaltrumpsuit=True)
assert computer.trick_decide() == card_to_be_played
computer.set_values(trumpsuit='Diamonds', leadsuit=played_card.get_suit())
card_to_be_played = computer.cards[5]
assert computer.trick_decide(playedcard=played_card) == card_to_be_played
def test_computer_bid_decide(create_computer_hand, create_card):
c = create_computer_hand
bidcard = create_card
assert c.bid_decide(bidcard=bidcard) == 'pass'
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'Clubs'
c.dealer = False
c.set_values(basevaluereset=True)
assert c.bid_decide(bidcard=bidcard) == 'pass'
assert c.bid_decide(rnd=2, excludesuit='Hearts') == 'pass'
assert c.bid_decide(rnd=2, excludesuit='Clubs') == 'pass'
def test_set_dealer(create_computer_hand_nondealer):
c = create_computer_hand_nondealer
assert c.dealer is False
c.set_dealer()
assert c.dealer is True
def test_user_bid_decide_dealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
user.set_dealer()
bidcard = create_card
list_of_responses_dealer = [1, 3, 2, 4]
def user_response_dealer(dummy1, dummy2):
return list_of_responses_dealer.pop(0)
monkeypatch.setattr('src.euchre.hands.get_user_response', user_response_dealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'accept'
assert user.cards[3] == bidcard
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Hearts'
def test_user_bid_decide_nondealer(create_user_hand, create_card, monkeypatch):
user = create_user_hand
bidcard = create_card
list_of_responses_nondealer = [1, 2, 1, 3]
def user_response_nondealer(dummy1, dummy2):
return list_of_responses_nondealer.pop(0)
monkeypatch.setattr('src.euchre.hands.get_user_response', user_response_nondealer)
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'order-up'
decision = user.bid_decide(bidcard=bidcard)
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'pass'
decision = user.bid_decide(rnd=2, excludesuit='Clubs')
assert decision == 'Diamonds' |
"""
:;: What is meant by Hough Transform..??
:: It is a technique used to detect any shape in a image.
If we can able to represent that shape in a mathematical expression we can find that shape in a image even if it is broken or distorted little bit.
"""
"""
A line in an image space can be expressed in two ways:
1. y = m*x+c # In the Cartesian co-ordinate system
2. x*cos(theta) + y*sin(theta) = r # In the Polar co-ordinate system
It would be easier to use the polar co-ordinate system rather than the Cartesian co-ordinate system.
:;:Why..??
:: As we cannot represent the straight lines through the cartesian system compared to the Polar co-ordinate system.
"""
"""
Using the Hough Transform Algorithm:
It totally includes 4 steps:
Step-1: Finding the edges of Image through any Edge Detection Technique(like CannyEdgeDetector)
Step-2: Mapping of the edge points to the hough space and storing this in a accumulator.(Know what is the Accumulator)
Step-3: Interpretation of the Accumulator data to yield the lines of the infinite length. (This interpretation is done by the Thresholding and some other constraints)
Step-4: Conversion of the Infinite lengths to finite length.
"""
"""
There are two methods in OpenCV for the Hough Line Transformation
Method-1: The standard hough-lines transformation method i.e., cv2.HoughLines()
Method-2: The probablistic Hough line transformation. i.e., cv2.HoughLinesP()
Method-1: lines = HoughLines(img, rho, theta , threshold)
img : The source image on which we would like to find the Houghline transformation
rho :
""" | """
:;: What is meant by Hough Transform..??
:: It is a technique used to detect any shape in a image.
If we can able to represent that shape in a mathematical expression we can find that shape in a image even if it is broken or distorted little bit.
"""
'\nA line in an image space can be expressed in two ways:\n 1. y = m*x+c # In the Cartesian co-ordinate system\n 2. x*cos(theta) + y*sin(theta) = r # In the Polar co-ordinate system\n \nIt would be easier to use the polar co-ordinate system rather than the Cartesian co-ordinate system.\n:;:Why..??\n:: As we cannot represent the straight lines through the cartesian system compared to the Polar co-ordinate system.\n'
'\nUsing the Hough Transform Algorithm:\nIt totally includes 4 steps:\n Step-1: Finding the edges of Image through any Edge Detection Technique(like CannyEdgeDetector)\n Step-2: Mapping of the edge points to the hough space and storing this in a accumulator.(Know what is the Accumulator)\n Step-3: Interpretation of the Accumulator data to yield the lines of the infinite length. (This interpretation is done by the Thresholding and some other constraints)\n Step-4: Conversion of the Infinite lengths to finite length.\n\n'
'\nThere are two methods in OpenCV for the Hough Line Transformation\n\tMethod-1: The standard hough-lines transformation method i.e., cv2.HoughLines()\n\tMethod-2: The probablistic Hough line transformation. i.e., cv2.HoughLinesP()\n\tMethod-1: lines = HoughLines(img, rho, theta , threshold)\n\t\t\t img : The source image on which we would like to find the Houghline transformation\n\t\t\t rho :\n\n' |
'''
Subarray with given sum
Given an unsorted array A of size N of non-negative integers, find a continuous sub-array
which adds to a given number. Find starting and ending positions(1 indexing) of first such
occuring subarray from the left if sum equals to subarray, else print -1.
Input: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15
Output: 1, 5
=========================================
Adjust the start and end index, in each step increase start or end idx.
If sum is bigger than K, remove element from the start idx from the sum.
Else add element from the end idx to the sum.
Time Complexity: O(N)
Space Complexity: O(1)
'''
############
# Solution #
############
def find_subarray(arr, k):
n = len(arr)
if n == 0:
return -1
start = 0
end = 0
current_sum = arr[0]
while end < n:
if current_sum == k:
return (start + 1, end + 1)
if current_sum < k:
end += 1
current_sum += arr[end]
else:
current_sum -= arr[start]
start += 1
return -1
###########
# Testing #
###########
# Test 1
# Correct result => (1, 5)
print(find_subarray([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15))
# Test 2
# Correct result => (2, 4)
print(find_subarray([1, 2, 3, 7, 5], 12))
# Test 3
# Correct result => (5, 5)
print(find_subarray([6, 6, 6, 6, 3], 3)) | """
Subarray with given sum
Given an unsorted array A of size N of non-negative integers, find a continuous sub-array
which adds to a given number. Find starting and ending positions(1 indexing) of first such
occuring subarray from the left if sum equals to subarray, else print -1.
Input: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15
Output: 1, 5
=========================================
Adjust the start and end index, in each step increase start or end idx.
If sum is bigger than K, remove element from the start idx from the sum.
Else add element from the end idx to the sum.
Time Complexity: O(N)
Space Complexity: O(1)
"""
def find_subarray(arr, k):
n = len(arr)
if n == 0:
return -1
start = 0
end = 0
current_sum = arr[0]
while end < n:
if current_sum == k:
return (start + 1, end + 1)
if current_sum < k:
end += 1
current_sum += arr[end]
else:
current_sum -= arr[start]
start += 1
return -1
print(find_subarray([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 15))
print(find_subarray([1, 2, 3, 7, 5], 12))
print(find_subarray([6, 6, 6, 6, 3], 3)) |
#Part 1
f = open('day2.txt','r')
i=0
for line in f:
minmax, letter, password = line.split()
min,max = minmax.split('-')
letter = letter.split(':')[0]
if letter in password:
if int(min) <= password.count(letter) <= int(max):
i+=1
#print(f'{i} -- {min} -- {max} --- {letter} --- {password}' )
print(f'Valid passwords {i}')
f.close()
#Part 2
f = open('day2.txt','r')
i=0
for line in f:
minmax, letter, password = line.split()
min,max = minmax.split('-')
min = int(min)
max = int(max)
letter = letter.split(':')[0]
if letter in password:
if (password[min-1] == letter and password[max-1] != letter) or (password[min-1] != letter and password[max-1] == letter):
i+=1
#print(f'{i} -- {min} -- {max} --- {letter} --- {password}' )
print(f'Valid passwords {i}')
f.close()
| f = open('day2.txt', 'r')
i = 0
for line in f:
(minmax, letter, password) = line.split()
(min, max) = minmax.split('-')
letter = letter.split(':')[0]
if letter in password:
if int(min) <= password.count(letter) <= int(max):
i += 1
print(f'Valid passwords {i}')
f.close()
f = open('day2.txt', 'r')
i = 0
for line in f:
(minmax, letter, password) = line.split()
(min, max) = minmax.split('-')
min = int(min)
max = int(max)
letter = letter.split(':')[0]
if letter in password:
if password[min - 1] == letter and password[max - 1] != letter or (password[min - 1] != letter and password[max - 1] == letter):
i += 1
print(f'Valid passwords {i}')
f.close() |
uctable = [ [ 40 ],
[ 91 ],
[ 123 ],
[ 224, 188, 186 ],
[ 224, 188, 188 ],
[ 225, 154, 155 ],
[ 226, 128, 154 ],
[ 226, 128, 158 ],
[ 226, 129, 133 ],
[ 226, 129, 189 ],
[ 226, 130, 141 ],
[ 226, 140, 136 ],
[ 226, 140, 138 ],
[ 226, 140, 169 ],
[ 226, 157, 168 ],
[ 226, 157, 170 ],
[ 226, 157, 172 ],
[ 226, 157, 174 ],
[ 226, 157, 176 ],
[ 226, 157, 178 ],
[ 226, 157, 180 ],
[ 226, 159, 133 ],
[ 226, 159, 166 ],
[ 226, 159, 168 ],
[ 226, 159, 170 ],
[ 226, 159, 172 ],
[ 226, 159, 174 ],
[ 226, 166, 131 ],
[ 226, 166, 133 ],
[ 226, 166, 135 ],
[ 226, 166, 137 ],
[ 226, 166, 139 ],
[ 226, 166, 141 ],
[ 226, 166, 143 ],
[ 226, 166, 145 ],
[ 226, 166, 147 ],
[ 226, 166, 149 ],
[ 226, 166, 151 ],
[ 226, 167, 152 ],
[ 226, 167, 154 ],
[ 226, 167, 188 ],
[ 226, 184, 162 ],
[ 226, 184, 164 ],
[ 226, 184, 166 ],
[ 226, 184, 168 ],
[ 226, 185, 130 ],
[ 227, 128, 136 ],
[ 227, 128, 138 ],
[ 227, 128, 140 ],
[ 227, 128, 142 ],
[ 227, 128, 144 ],
[ 227, 128, 148 ],
[ 227, 128, 150 ],
[ 227, 128, 152 ],
[ 227, 128, 154 ],
[ 227, 128, 157 ],
[ 239, 180, 191 ],
[ 239, 184, 151 ],
[ 239, 184, 181 ],
[ 239, 184, 183 ],
[ 239, 184, 185 ],
[ 239, 184, 187 ],
[ 239, 184, 189 ],
[ 239, 184, 191 ],
[ 239, 185, 129 ],
[ 239, 185, 131 ],
[ 239, 185, 135 ],
[ 239, 185, 153 ],
[ 239, 185, 155 ],
[ 239, 185, 157 ],
[ 239, 188, 136 ],
[ 239, 188, 187 ],
[ 239, 189, 155 ],
[ 239, 189, 159 ],
[ 239, 189, 162 ] ]
| uctable = [[40], [91], [123], [224, 188, 186], [224, 188, 188], [225, 154, 155], [226, 128, 154], [226, 128, 158], [226, 129, 133], [226, 129, 189], [226, 130, 141], [226, 140, 136], [226, 140, 138], [226, 140, 169], [226, 157, 168], [226, 157, 170], [226, 157, 172], [226, 157, 174], [226, 157, 176], [226, 157, 178], [226, 157, 180], [226, 159, 133], [226, 159, 166], [226, 159, 168], [226, 159, 170], [226, 159, 172], [226, 159, 174], [226, 166, 131], [226, 166, 133], [226, 166, 135], [226, 166, 137], [226, 166, 139], [226, 166, 141], [226, 166, 143], [226, 166, 145], [226, 166, 147], [226, 166, 149], [226, 166, 151], [226, 167, 152], [226, 167, 154], [226, 167, 188], [226, 184, 162], [226, 184, 164], [226, 184, 166], [226, 184, 168], [226, 185, 130], [227, 128, 136], [227, 128, 138], [227, 128, 140], [227, 128, 142], [227, 128, 144], [227, 128, 148], [227, 128, 150], [227, 128, 152], [227, 128, 154], [227, 128, 157], [239, 180, 191], [239, 184, 151], [239, 184, 181], [239, 184, 183], [239, 184, 185], [239, 184, 187], [239, 184, 189], [239, 184, 191], [239, 185, 129], [239, 185, 131], [239, 185, 135], [239, 185, 153], [239, 185, 155], [239, 185, 157], [239, 188, 136], [239, 188, 187], [239, 189, 155], [239, 189, 159], [239, 189, 162]] |
try:
p =10
q = 5
p = q/0
f = open("abc.txt")
# except Exception as e: #prints exception message as type
# print(type(e))
#
#
# except Exception as e: #prints exception message
# print(e)
except ZeroDivisionError:
print("Where is my Destiny.!")
except FileNotFoundError as e:
print("No such file or directory:", e.filename)
except (FileNotFoundError, ZeroDivisionError):
print("Kitne error krega bhai.!!")
| try:
p = 10
q = 5
p = q / 0
f = open('abc.txt')
except ZeroDivisionError:
print('Where is my Destiny.!')
except FileNotFoundError as e:
print('No such file or directory:', e.filename)
except (FileNotFoundError, ZeroDivisionError):
print('Kitne error krega bhai.!!') |
class comment:
def __init__(self, text):
self.text = text
def get_text(self):
return f"<!-- {self.text} -->" | class Comment:
def __init__(self, text):
self.text = text
def get_text(self):
return f'<!-- {self.text} -->' |
# coding: utf-8
n = int()
b = int()
m = int()
n = 10
b = 2
p = n / b
x = zeros((n,n), double)
y = zeros((n,n), double)
z = zeros((n,n), double)
r = zeros((b,b), double)
u = zeros((b,b), double)
v = zeros((b,b), double)
for i in range(0, p):
for j in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
r[k1,k2] = z[i+k1,j+k2]
for k in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
u[k1,k2] = x[i+k1,k+k2]
v[k1,k2] = y[k+k1,j+k2]
for ii in range(0, b):
for jj in range(0, b):
for kk in range(0, b):
r[ii,jj] = r[ii,jj] + u[ii,kk]*v[kk,jj]
for k1 in range(0, b):
for k2 in range(0, b):
z[i+k1,j+k2] = r[k1,k2]
| n = int()
b = int()
m = int()
n = 10
b = 2
p = n / b
x = zeros((n, n), double)
y = zeros((n, n), double)
z = zeros((n, n), double)
r = zeros((b, b), double)
u = zeros((b, b), double)
v = zeros((b, b), double)
for i in range(0, p):
for j in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
r[k1, k2] = z[i + k1, j + k2]
for k in range(0, p):
for k1 in range(0, b):
for k2 in range(0, b):
u[k1, k2] = x[i + k1, k + k2]
v[k1, k2] = y[k + k1, j + k2]
for ii in range(0, b):
for jj in range(0, b):
for kk in range(0, b):
r[ii, jj] = r[ii, jj] + u[ii, kk] * v[kk, jj]
for k1 in range(0, b):
for k2 in range(0, b):
z[i + k1, j + k2] = r[k1, k2] |
ENVIRONMENT = 'sandbox'
LOG_CONFIG = None
def set_environment(env):
global ENVIRONMENT
ENVIRONMENT = env
configure_logging(ENVIRONMENT)
def get_env_parameter(property):
return property.get(ENVIRONMENT, property['sandbox'])
METRICS_ENABLED = True
def configure_logging(env):
global LOG_CONFIG
LOG_CONFIG = {
"version": 1,
"disable_existing_loggers": False,
"formatters": {
"simple": {
"format": "%(asctime)s - %(levelname)s %(name)s:%(funcName)s - %(message)s",
"datefmt": "%Y-%m-%d %H:%M:%S"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"level": "DEBUG",
"formatter": "simple",
"stream": "ext://sys.stdout"
},
},
"loggers": {
"app": {
"level": "INFO",
"handlers": ["console"],
"propagate": True
},
}
}
configure_logging(ENVIRONMENT)
| environment = 'sandbox'
log_config = None
def set_environment(env):
global ENVIRONMENT
environment = env
configure_logging(ENVIRONMENT)
def get_env_parameter(property):
return property.get(ENVIRONMENT, property['sandbox'])
metrics_enabled = True
def configure_logging(env):
global LOG_CONFIG
log_config = {'version': 1, 'disable_existing_loggers': False, 'formatters': {'simple': {'format': '%(asctime)s - %(levelname)s %(name)s:%(funcName)s - %(message)s', 'datefmt': '%Y-%m-%d %H:%M:%S'}}, 'handlers': {'console': {'class': 'logging.StreamHandler', 'level': 'DEBUG', 'formatter': 'simple', 'stream': 'ext://sys.stdout'}}, 'loggers': {'app': {'level': 'INFO', 'handlers': ['console'], 'propagate': True}}}
configure_logging(ENVIRONMENT) |
#
# PySNMP MIB module AIDIALOUT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/AIDIALOUT-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:00:32 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ModuleIdentity, enterprises, Counter64, ObjectIdentity, Bits, Counter32, TimeTicks, Integer32, Unsigned32, NotificationType, IpAddress, iso, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "enterprises", "Counter64", "ObjectIdentity", "Bits", "Counter32", "TimeTicks", "Integer32", "Unsigned32", "NotificationType", "IpAddress", "iso", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier")
TextualConvention, DisplayString, TruthValue = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "TruthValue")
class PositiveInteger(Integer32):
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 2147483647)
aii = MibIdentifier((1, 3, 6, 1, 4, 1, 539))
aiDialOut = ModuleIdentity((1, 3, 6, 1, 4, 1, 539, 36))
if mibBuilder.loadTexts: aiDialOut.setLastUpdated('9909151700Z')
if mibBuilder.loadTexts: aiDialOut.setOrganization('Applied Innovation Inc.')
aiDialOutTable = MibTable((1, 3, 6, 1, 4, 1, 539, 36, 1), )
if mibBuilder.loadTexts: aiDialOutTable.setStatus('current')
aiDialOutEntry = MibTableRow((1, 3, 6, 1, 4, 1, 539, 36, 1, 1), ).setIndexNames((0, "AIDIALOUT-MIB", "aiDialOutLinkNumber"))
if mibBuilder.loadTexts: aiDialOutEntry.setStatus('current')
aiDialOutLinkNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 1), PositiveInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: aiDialOutLinkNumber.setStatus('current')
aiDialOutStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 2), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutStatus.setStatus('current')
aiDialOutPrimaryDialString = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 3), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutPrimaryDialString.setStatus('current')
aiDialOutSecondaryDialString = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutSecondaryDialString.setStatus('current')
aiDialOutTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 300))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutTimeOut.setStatus('current')
aiDialOutAttempts = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutAttempts.setStatus('current')
aiDialOutInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 300))).setUnits('seconds').setMaxAccess("readwrite")
if mibBuilder.loadTexts: aiDialOutInterval.setStatus('current')
mibBuilder.exportSymbols("AIDIALOUT-MIB", aiDialOut=aiDialOut, aiDialOutPrimaryDialString=aiDialOutPrimaryDialString, aiDialOutStatus=aiDialOutStatus, aiDialOutTable=aiDialOutTable, PYSNMP_MODULE_ID=aiDialOut, aiDialOutLinkNumber=aiDialOutLinkNumber, aii=aii, aiDialOutSecondaryDialString=aiDialOutSecondaryDialString, aiDialOutTimeOut=aiDialOutTimeOut, aiDialOutEntry=aiDialOutEntry, aiDialOutInterval=aiDialOutInterval, PositiveInteger=PositiveInteger, aiDialOutAttempts=aiDialOutAttempts)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, constraints_union, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(module_identity, enterprises, counter64, object_identity, bits, counter32, time_ticks, integer32, unsigned32, notification_type, ip_address, iso, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'enterprises', 'Counter64', 'ObjectIdentity', 'Bits', 'Counter32', 'TimeTicks', 'Integer32', 'Unsigned32', 'NotificationType', 'IpAddress', 'iso', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier')
(textual_convention, display_string, truth_value) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'TruthValue')
class Positiveinteger(Integer32):
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 2147483647)
aii = mib_identifier((1, 3, 6, 1, 4, 1, 539))
ai_dial_out = module_identity((1, 3, 6, 1, 4, 1, 539, 36))
if mibBuilder.loadTexts:
aiDialOut.setLastUpdated('9909151700Z')
if mibBuilder.loadTexts:
aiDialOut.setOrganization('Applied Innovation Inc.')
ai_dial_out_table = mib_table((1, 3, 6, 1, 4, 1, 539, 36, 1))
if mibBuilder.loadTexts:
aiDialOutTable.setStatus('current')
ai_dial_out_entry = mib_table_row((1, 3, 6, 1, 4, 1, 539, 36, 1, 1)).setIndexNames((0, 'AIDIALOUT-MIB', 'aiDialOutLinkNumber'))
if mibBuilder.loadTexts:
aiDialOutEntry.setStatus('current')
ai_dial_out_link_number = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 1), positive_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
aiDialOutLinkNumber.setStatus('current')
ai_dial_out_status = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 2), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutStatus.setStatus('current')
ai_dial_out_primary_dial_string = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 3), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutPrimaryDialString.setStatus('current')
ai_dial_out_secondary_dial_string = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutSecondaryDialString.setStatus('current')
ai_dial_out_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(5, 300))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutTimeOut.setStatus('current')
ai_dial_out_attempts = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 10))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutAttempts.setStatus('current')
ai_dial_out_interval = mib_table_column((1, 3, 6, 1, 4, 1, 539, 36, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 300))).setUnits('seconds').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
aiDialOutInterval.setStatus('current')
mibBuilder.exportSymbols('AIDIALOUT-MIB', aiDialOut=aiDialOut, aiDialOutPrimaryDialString=aiDialOutPrimaryDialString, aiDialOutStatus=aiDialOutStatus, aiDialOutTable=aiDialOutTable, PYSNMP_MODULE_ID=aiDialOut, aiDialOutLinkNumber=aiDialOutLinkNumber, aii=aii, aiDialOutSecondaryDialString=aiDialOutSecondaryDialString, aiDialOutTimeOut=aiDialOutTimeOut, aiDialOutEntry=aiDialOutEntry, aiDialOutInterval=aiDialOutInterval, PositiveInteger=PositiveInteger, aiDialOutAttempts=aiDialOutAttempts) |
vowels = ["a", "e", "i", "o", "u",
"A", "E", "I", "O", "U"]
word = input("Provide a word to search for vowels:")
found = []
for letter in word:
if letter in vowels:
if letter not in found:
found.append(letter)
for vowels in found:
print(vowels)
| vowels = ['a', 'e', 'i', 'o', 'u', 'A', 'E', 'I', 'O', 'U']
word = input('Provide a word to search for vowels:')
found = []
for letter in word:
if letter in vowels:
if letter not in found:
found.append(letter)
for vowels in found:
print(vowels) |
class Solution(object):
_num = [0]
def numSquares(self, n):
num = self._num
while len(num) <= n:
num += min(num[-i * i] for i in xrange(1, int(len(num) ** 0.5 + 1))) + 1
return num[n]
n = 12
res = Solution().numSquares(n)
print(res) | class Solution(object):
_num = [0]
def num_squares(self, n):
num = self._num
while len(num) <= n:
num += min((num[-i * i] for i in xrange(1, int(len(num) ** 0.5 + 1)))) + 1
return num[n]
n = 12
res = solution().numSquares(n)
print(res) |
#Herencia Multiple
class Telefono:
def __init__(self):
pass
def llamar(self):
print("llamando . . . ")
def ocupado(self):
print("ocpado . . .")
class Camara:
def __init__(self):
pass
def fotografia(self):
print("tomando fotos..")
class Reproduccion:
def __init__(self):
pass
def reproducciondemusica(self):
print("reproducir musica")
def reproducirvideo(self):
print("reproducir un video")
class smartphone(Telefono, Camara, Reproduccion):
def __del__(self): #este metodo es para limpiar recursos (destructor)
print("telefono apagado")
movil = smartphone()
print(dir(movil)) #nos da las funciones que podemos usar
print(movil.llamar())
| class Telefono:
def __init__(self):
pass
def llamar(self):
print('llamando . . . ')
def ocupado(self):
print('ocpado . . .')
class Camara:
def __init__(self):
pass
def fotografia(self):
print('tomando fotos..')
class Reproduccion:
def __init__(self):
pass
def reproducciondemusica(self):
print('reproducir musica')
def reproducirvideo(self):
print('reproducir un video')
class Smartphone(Telefono, Camara, Reproduccion):
def __del__(self):
print('telefono apagado')
movil = smartphone()
print(dir(movil))
print(movil.llamar()) |
"""
PASSENGERS
"""
numPassengers = 4041
passenger_arriving = (
(3, 10, 7, 5, 3, 0, 7, 9, 4, 9, 3, 0), # 0
(1, 4, 8, 8, 1, 0, 10, 12, 4, 5, 2, 0), # 1
(6, 12, 13, 3, 1, 0, 10, 12, 3, 4, 5, 0), # 2
(7, 5, 7, 4, 3, 0, 5, 9, 5, 10, 1, 0), # 3
(6, 12, 8, 4, 4, 0, 11, 8, 5, 2, 5, 0), # 4
(3, 11, 6, 5, 2, 0, 8, 17, 13, 2, 3, 0), # 5
(5, 6, 7, 7, 3, 0, 5, 7, 3, 3, 3, 0), # 6
(1, 10, 3, 6, 3, 0, 12, 12, 5, 4, 2, 0), # 7
(3, 9, 4, 4, 4, 0, 9, 13, 9, 12, 4, 0), # 8
(7, 8, 6, 4, 1, 0, 4, 11, 8, 7, 2, 0), # 9
(5, 13, 17, 6, 0, 0, 6, 10, 5, 7, 2, 0), # 10
(1, 12, 10, 3, 1, 0, 6, 8, 8, 4, 1, 0), # 11
(6, 11, 5, 8, 2, 0, 10, 6, 4, 11, 1, 0), # 12
(2, 4, 11, 5, 3, 0, 9, 18, 8, 7, 4, 0), # 13
(5, 12, 13, 5, 3, 0, 7, 6, 7, 3, 2, 0), # 14
(6, 8, 6, 5, 3, 0, 17, 10, 5, 3, 4, 0), # 15
(2, 8, 11, 2, 2, 0, 3, 5, 6, 10, 4, 0), # 16
(5, 12, 10, 2, 1, 0, 10, 9, 10, 7, 3, 0), # 17
(9, 16, 10, 6, 1, 0, 7, 7, 7, 8, 6, 0), # 18
(2, 16, 12, 4, 4, 0, 7, 10, 8, 4, 1, 0), # 19
(5, 13, 11, 5, 1, 0, 10, 8, 12, 10, 3, 0), # 20
(6, 11, 16, 6, 2, 0, 5, 9, 5, 7, 6, 0), # 21
(4, 5, 14, 6, 4, 0, 8, 14, 7, 7, 4, 0), # 22
(11, 14, 11, 6, 1, 0, 8, 6, 5, 5, 3, 0), # 23
(3, 13, 9, 3, 4, 0, 8, 12, 8, 6, 5, 0), # 24
(5, 13, 9, 5, 2, 0, 6, 12, 5, 6, 5, 0), # 25
(6, 7, 9, 10, 5, 0, 10, 14, 7, 8, 3, 0), # 26
(3, 9, 9, 2, 5, 0, 8, 13, 9, 6, 2, 0), # 27
(4, 13, 9, 6, 4, 0, 8, 10, 4, 10, 2, 0), # 28
(8, 7, 13, 4, 4, 0, 4, 12, 10, 4, 4, 0), # 29
(5, 10, 9, 4, 2, 0, 6, 10, 3, 10, 4, 0), # 30
(1, 9, 16, 4, 2, 0, 8, 15, 8, 4, 2, 0), # 31
(4, 15, 10, 5, 2, 0, 7, 17, 7, 5, 0, 0), # 32
(5, 9, 13, 7, 3, 0, 9, 15, 8, 5, 1, 0), # 33
(5, 12, 10, 5, 4, 0, 6, 19, 3, 6, 2, 0), # 34
(8, 12, 9, 6, 3, 0, 9, 15, 10, 7, 4, 0), # 35
(8, 15, 11, 3, 2, 0, 10, 14, 5, 3, 7, 0), # 36
(8, 15, 8, 4, 4, 0, 5, 9, 10, 5, 3, 0), # 37
(5, 13, 13, 3, 5, 0, 3, 15, 7, 8, 8, 0), # 38
(6, 11, 7, 4, 7, 0, 3, 10, 6, 9, 7, 0), # 39
(3, 9, 12, 6, 4, 0, 12, 7, 4, 8, 5, 0), # 40
(7, 12, 14, 6, 6, 0, 4, 10, 7, 11, 3, 0), # 41
(6, 10, 6, 5, 6, 0, 8, 14, 6, 6, 4, 0), # 42
(12, 16, 9, 5, 5, 0, 15, 13, 1, 5, 6, 0), # 43
(9, 10, 10, 4, 2, 0, 11, 9, 5, 3, 2, 0), # 44
(7, 11, 9, 4, 1, 0, 11, 11, 8, 7, 3, 0), # 45
(2, 17, 11, 2, 3, 0, 4, 13, 9, 9, 5, 0), # 46
(5, 9, 11, 7, 3, 0, 7, 4, 8, 5, 2, 0), # 47
(5, 14, 13, 5, 5, 0, 5, 13, 8, 9, 10, 0), # 48
(6, 9, 14, 1, 1, 0, 5, 16, 2, 12, 3, 0), # 49
(6, 12, 12, 6, 1, 0, 6, 13, 5, 9, 2, 0), # 50
(1, 8, 4, 7, 4, 0, 5, 7, 9, 7, 1, 0), # 51
(4, 14, 7, 4, 0, 0, 2, 10, 6, 5, 1, 0), # 52
(6, 15, 7, 4, 2, 0, 10, 14, 5, 9, 4, 0), # 53
(4, 14, 7, 4, 5, 0, 7, 11, 8, 4, 5, 0), # 54
(8, 8, 5, 7, 1, 0, 8, 17, 6, 5, 5, 0), # 55
(4, 18, 10, 7, 2, 0, 7, 7, 2, 4, 5, 0), # 56
(5, 13, 9, 4, 2, 0, 7, 10, 8, 7, 2, 0), # 57
(2, 11, 5, 6, 2, 0, 4, 13, 14, 0, 2, 0), # 58
(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), # 59
)
station_arriving_intensity = (
(4.769372805092186, 12.233629261363635, 14.389624839331619, 11.405298913043477, 12.857451923076923, 8.562228260869567), # 0
(4.81413961808604, 12.369674877683082, 14.46734796754499, 11.46881589673913, 12.953819711538461, 8.559309850543478), # 1
(4.8583952589991215, 12.503702525252525, 14.54322622107969, 11.530934782608696, 13.048153846153847, 8.556302173913043), # 2
(4.902102161984196, 12.635567578125, 14.617204169344474, 11.591602581521737, 13.14036778846154, 8.553205638586958), # 3
(4.94522276119403, 12.765125410353535, 14.689226381748071, 11.650766304347826, 13.230375, 8.550020652173911), # 4
(4.987719490781387, 12.892231395991162, 14.759237427699228, 11.708372961956522, 13.318088942307691, 8.546747622282608), # 5
(5.029554784899035, 13.01674090909091, 14.827181876606687, 11.764369565217393, 13.403423076923078, 8.54338695652174), # 6
(5.0706910776997365, 13.138509323705808, 14.893004297879177, 11.818703125, 13.486290865384618, 8.5399390625), # 7
(5.1110908033362605, 13.257392013888888, 14.956649260925452, 11.871320652173912, 13.56660576923077, 8.536404347826087), # 8
(5.1507163959613695, 13.373244353693181, 15.018061335154243, 11.922169157608696, 13.644281249999999, 8.532783220108696), # 9
(5.1895302897278315, 13.485921717171717, 15.077185089974291, 11.971195652173915, 13.719230769230771, 8.529076086956522), # 10
(5.227494918788412, 13.595279478377526, 15.133965094794343, 12.018347146739131, 13.791367788461539, 8.525283355978262), # 11
(5.2645727172958745, 13.701173011363636, 15.188345919023137, 12.063570652173912, 13.860605769230768, 8.521405434782608), # 12
(5.3007261194029835, 13.803457690183082, 15.240272132069407, 12.106813179347826, 13.926858173076925, 8.51744273097826), # 13
(5.335917559262511, 13.90198888888889, 15.289688303341899, 12.148021739130433, 13.99003846153846, 8.513395652173912), # 14
(5.370109471027217, 13.996621981534089, 15.336539002249355, 12.187143342391304, 14.050060096153846, 8.509264605978261), # 15
(5.403264288849868, 14.087212342171718, 15.380768798200515, 12.224124999999999, 14.10683653846154, 8.50505), # 16
(5.4353444468832315, 14.173615344854797, 15.422322260604112, 12.258913722826087, 14.16028125, 8.500752241847827), # 17
(5.46631237928007, 14.255686363636363, 15.461143958868895, 12.291456521739132, 14.210307692307696, 8.496371739130435), # 18
(5.496130520193152, 14.333280772569443, 15.4971784624036, 12.321700407608695, 14.256829326923079, 8.491908899456522), # 19
(5.524761303775241, 14.40625394570707, 15.530370340616965, 12.349592391304348, 14.299759615384616, 8.487364130434782), # 20
(5.552167164179106, 14.47446125710227, 15.56066416291774, 12.375079483695652, 14.339012019230768, 8.482737839673913), # 21
(5.578310535557506, 14.537758080808082, 15.588004498714653, 12.398108695652175, 14.374499999999998, 8.47803043478261), # 22
(5.603153852063214, 14.595999790877526, 15.612335917416454, 12.418627038043478, 14.40613701923077, 8.473242323369567), # 23
(5.62665954784899, 14.649041761363636, 15.633602988431875, 12.43658152173913, 14.433836538461538, 8.468373913043479), # 24
(5.648790057067603, 14.696739366319445, 15.651750281169667, 12.451919157608696, 14.457512019230768, 8.463425611413044), # 25
(5.669507813871817, 14.738947979797977, 15.66672236503856, 12.464586956521739, 14.477076923076922, 8.458397826086957), # 26
(5.688775252414398, 14.77552297585227, 15.6784638094473, 12.474531929347828, 14.492444711538463, 8.453290964673915), # 27
(5.7065548068481124, 14.806319728535353, 15.68691918380463, 12.481701086956523, 14.503528846153845, 8.448105434782608), # 28
(5.722808911325724, 14.831193611900254, 15.69203305751928, 12.486041440217392, 14.510242788461538, 8.44284164402174), # 29
(5.7375, 14.85, 15.69375, 12.4875, 14.512500000000001, 8.4375), # 30
(5.751246651214834, 14.865621839488634, 15.692462907608693, 12.487236580882353, 14.511678590425532, 8.430077267616193), # 31
(5.7646965153452685, 14.881037215909092, 15.68863804347826, 12.486451470588234, 14.509231914893617, 8.418644565217393), # 32
(5.777855634590792, 14.896244211647728, 15.682330027173915, 12.485152389705883, 14.50518630319149, 8.403313830584706), # 33
(5.790730051150895, 14.91124090909091, 15.67359347826087, 12.483347058823531, 14.499568085106382, 8.38419700149925), # 34
(5.803325807225064, 14.926025390624996, 15.662483016304348, 12.481043198529411, 14.492403590425532, 8.361406015742128), # 35
(5.815648945012788, 14.940595738636366, 15.649053260869564, 12.478248529411767, 14.48371914893617, 8.335052811094453), # 36
(5.8277055067135555, 14.954950035511365, 15.63335883152174, 12.474970772058823, 14.47354109042553, 8.305249325337332), # 37
(5.839501534526853, 14.969086363636364, 15.615454347826088, 12.471217647058824, 14.461895744680852, 8.272107496251873), # 38
(5.851043070652174, 14.983002805397728, 15.595394429347825, 12.466996875000001, 14.44880944148936, 8.23573926161919), # 39
(5.862336157289003, 14.99669744318182, 15.573233695652176, 12.462316176470589, 14.434308510638296, 8.196256559220389), # 40
(5.873386836636828, 15.010168359374997, 15.549026766304348, 12.457183272058824, 14.418419281914893, 8.153771326836583), # 41
(5.88420115089514, 15.023413636363639, 15.522828260869566, 12.451605882352942, 14.401168085106384, 8.108395502248875), # 42
(5.894785142263428, 15.03643135653409, 15.494692798913043, 12.445591727941178, 14.38258125, 8.060241023238381), # 43
(5.905144852941176, 15.049219602272727, 15.464675, 12.439148529411764, 14.36268510638298, 8.009419827586207), # 44
(5.915286325127877, 15.061776455965909, 15.432829483695656, 12.43228400735294, 14.341505984042554, 7.956043853073464), # 45
(5.925215601023019, 15.074100000000003, 15.39921086956522, 12.425005882352941, 14.319070212765958, 7.90022503748126), # 46
(5.934938722826087, 15.086188316761364, 15.363873777173913, 12.417321874999999, 14.295404122340427, 7.842075318590705), # 47
(5.944461732736574, 15.098039488636365, 15.326872826086957, 12.409239705882353, 14.27053404255319, 7.7817066341829095), # 48
(5.953790672953963, 15.10965159801136, 15.288262635869566, 12.400767095588236, 14.24448630319149, 7.71923092203898), # 49
(5.96293158567775, 15.121022727272724, 15.248097826086958, 12.391911764705883, 14.217287234042553, 7.65476011994003), # 50
(5.971890513107417, 15.132150958806818, 15.206433016304347, 12.38268143382353, 14.188963164893616, 7.588406165667167), # 51
(5.980673497442456, 15.143034375, 15.163322826086954, 12.373083823529411, 14.159540425531915, 7.5202809970015), # 52
(5.989286580882353, 15.153671058238638, 15.118821875, 12.363126654411765, 14.129045345744682, 7.450496551724138), # 53
(5.9977358056266, 15.164059090909088, 15.072984782608694, 12.352817647058824, 14.09750425531915, 7.379164767616192), # 54
(6.00602721387468, 15.174196555397728, 15.02586616847826, 12.342164522058825, 14.064943484042553, 7.306397582458771), # 55
(6.014166847826087, 15.184081534090907, 14.977520652173913, 12.331175, 14.031389361702129, 7.232306934032984), # 56
(6.022160749680308, 15.193712109375003, 14.92800285326087, 12.319856801470587, 13.996868218085105, 7.15700476011994), # 57
(6.030014961636829, 15.203086363636363, 14.877367391304347, 12.308217647058825, 13.961406382978723, 7.0806029985007495), # 58
(0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 59
)
passenger_arriving_acc = (
(3, 10, 7, 5, 3, 0, 7, 9, 4, 9, 3, 0), # 0
(4, 14, 15, 13, 4, 0, 17, 21, 8, 14, 5, 0), # 1
(10, 26, 28, 16, 5, 0, 27, 33, 11, 18, 10, 0), # 2
(17, 31, 35, 20, 8, 0, 32, 42, 16, 28, 11, 0), # 3
(23, 43, 43, 24, 12, 0, 43, 50, 21, 30, 16, 0), # 4
(26, 54, 49, 29, 14, 0, 51, 67, 34, 32, 19, 0), # 5
(31, 60, 56, 36, 17, 0, 56, 74, 37, 35, 22, 0), # 6
(32, 70, 59, 42, 20, 0, 68, 86, 42, 39, 24, 0), # 7
(35, 79, 63, 46, 24, 0, 77, 99, 51, 51, 28, 0), # 8
(42, 87, 69, 50, 25, 0, 81, 110, 59, 58, 30, 0), # 9
(47, 100, 86, 56, 25, 0, 87, 120, 64, 65, 32, 0), # 10
(48, 112, 96, 59, 26, 0, 93, 128, 72, 69, 33, 0), # 11
(54, 123, 101, 67, 28, 0, 103, 134, 76, 80, 34, 0), # 12
(56, 127, 112, 72, 31, 0, 112, 152, 84, 87, 38, 0), # 13
(61, 139, 125, 77, 34, 0, 119, 158, 91, 90, 40, 0), # 14
(67, 147, 131, 82, 37, 0, 136, 168, 96, 93, 44, 0), # 15
(69, 155, 142, 84, 39, 0, 139, 173, 102, 103, 48, 0), # 16
(74, 167, 152, 86, 40, 0, 149, 182, 112, 110, 51, 0), # 17
(83, 183, 162, 92, 41, 0, 156, 189, 119, 118, 57, 0), # 18
(85, 199, 174, 96, 45, 0, 163, 199, 127, 122, 58, 0), # 19
(90, 212, 185, 101, 46, 0, 173, 207, 139, 132, 61, 0), # 20
(96, 223, 201, 107, 48, 0, 178, 216, 144, 139, 67, 0), # 21
(100, 228, 215, 113, 52, 0, 186, 230, 151, 146, 71, 0), # 22
(111, 242, 226, 119, 53, 0, 194, 236, 156, 151, 74, 0), # 23
(114, 255, 235, 122, 57, 0, 202, 248, 164, 157, 79, 0), # 24
(119, 268, 244, 127, 59, 0, 208, 260, 169, 163, 84, 0), # 25
(125, 275, 253, 137, 64, 0, 218, 274, 176, 171, 87, 0), # 26
(128, 284, 262, 139, 69, 0, 226, 287, 185, 177, 89, 0), # 27
(132, 297, 271, 145, 73, 0, 234, 297, 189, 187, 91, 0), # 28
(140, 304, 284, 149, 77, 0, 238, 309, 199, 191, 95, 0), # 29
(145, 314, 293, 153, 79, 0, 244, 319, 202, 201, 99, 0), # 30
(146, 323, 309, 157, 81, 0, 252, 334, 210, 205, 101, 0), # 31
(150, 338, 319, 162, 83, 0, 259, 351, 217, 210, 101, 0), # 32
(155, 347, 332, 169, 86, 0, 268, 366, 225, 215, 102, 0), # 33
(160, 359, 342, 174, 90, 0, 274, 385, 228, 221, 104, 0), # 34
(168, 371, 351, 180, 93, 0, 283, 400, 238, 228, 108, 0), # 35
(176, 386, 362, 183, 95, 0, 293, 414, 243, 231, 115, 0), # 36
(184, 401, 370, 187, 99, 0, 298, 423, 253, 236, 118, 0), # 37
(189, 414, 383, 190, 104, 0, 301, 438, 260, 244, 126, 0), # 38
(195, 425, 390, 194, 111, 0, 304, 448, 266, 253, 133, 0), # 39
(198, 434, 402, 200, 115, 0, 316, 455, 270, 261, 138, 0), # 40
(205, 446, 416, 206, 121, 0, 320, 465, 277, 272, 141, 0), # 41
(211, 456, 422, 211, 127, 0, 328, 479, 283, 278, 145, 0), # 42
(223, 472, 431, 216, 132, 0, 343, 492, 284, 283, 151, 0), # 43
(232, 482, 441, 220, 134, 0, 354, 501, 289, 286, 153, 0), # 44
(239, 493, 450, 224, 135, 0, 365, 512, 297, 293, 156, 0), # 45
(241, 510, 461, 226, 138, 0, 369, 525, 306, 302, 161, 0), # 46
(246, 519, 472, 233, 141, 0, 376, 529, 314, 307, 163, 0), # 47
(251, 533, 485, 238, 146, 0, 381, 542, 322, 316, 173, 0), # 48
(257, 542, 499, 239, 147, 0, 386, 558, 324, 328, 176, 0), # 49
(263, 554, 511, 245, 148, 0, 392, 571, 329, 337, 178, 0), # 50
(264, 562, 515, 252, 152, 0, 397, 578, 338, 344, 179, 0), # 51
(268, 576, 522, 256, 152, 0, 399, 588, 344, 349, 180, 0), # 52
(274, 591, 529, 260, 154, 0, 409, 602, 349, 358, 184, 0), # 53
(278, 605, 536, 264, 159, 0, 416, 613, 357, 362, 189, 0), # 54
(286, 613, 541, 271, 160, 0, 424, 630, 363, 367, 194, 0), # 55
(290, 631, 551, 278, 162, 0, 431, 637, 365, 371, 199, 0), # 56
(295, 644, 560, 282, 164, 0, 438, 647, 373, 378, 201, 0), # 57
(297, 655, 565, 288, 166, 0, 442, 660, 387, 378, 203, 0), # 58
(297, 655, 565, 288, 166, 0, 442, 660, 387, 378, 203, 0), # 59
)
passenger_arriving_rate = (
(4.769372805092186, 9.786903409090908, 8.63377490359897, 4.56211956521739, 2.5714903846153843, 0.0, 8.562228260869567, 10.285961538461537, 6.843179347826086, 5.755849935732647, 2.446725852272727, 0.0), # 0
(4.81413961808604, 9.895739902146465, 8.680408780526994, 4.587526358695651, 2.5907639423076922, 0.0, 8.559309850543478, 10.363055769230769, 6.881289538043478, 5.786939187017995, 2.4739349755366162, 0.0), # 1
(4.8583952589991215, 10.00296202020202, 8.725935732647814, 4.612373913043478, 2.609630769230769, 0.0, 8.556302173913043, 10.438523076923076, 6.918560869565217, 5.817290488431875, 2.500740505050505, 0.0), # 2
(4.902102161984196, 10.1084540625, 8.770322501606683, 4.636641032608694, 2.628073557692308, 0.0, 8.553205638586958, 10.512294230769232, 6.954961548913042, 5.846881667737789, 2.527113515625, 0.0), # 3
(4.94522276119403, 10.212100328282828, 8.813535829048842, 4.66030652173913, 2.6460749999999997, 0.0, 8.550020652173911, 10.584299999999999, 6.990459782608696, 5.875690552699228, 2.553025082070707, 0.0), # 4
(4.987719490781387, 10.313785116792928, 8.855542456619537, 4.6833491847826085, 2.663617788461538, 0.0, 8.546747622282608, 10.654471153846153, 7.025023777173913, 5.90369497107969, 2.578446279198232, 0.0), # 5
(5.029554784899035, 10.413392727272727, 8.896309125964011, 4.705747826086957, 2.680684615384615, 0.0, 8.54338695652174, 10.72273846153846, 7.058621739130436, 5.930872750642674, 2.603348181818182, 0.0), # 6
(5.0706910776997365, 10.510807458964646, 8.935802578727506, 4.72748125, 2.697258173076923, 0.0, 8.5399390625, 10.789032692307693, 7.0912218750000005, 5.95720171915167, 2.6277018647411614, 0.0), # 7
(5.1110908033362605, 10.60591361111111, 8.97398955655527, 4.7485282608695645, 2.7133211538461537, 0.0, 8.536404347826087, 10.853284615384615, 7.122792391304347, 5.982659704370181, 2.6514784027777774, 0.0), # 8
(5.1507163959613695, 10.698595482954543, 9.010836801092546, 4.768867663043478, 2.7288562499999993, 0.0, 8.532783220108696, 10.915424999999997, 7.153301494565217, 6.007224534061697, 2.6746488707386358, 0.0), # 9
(5.1895302897278315, 10.788737373737373, 9.046311053984574, 4.7884782608695655, 2.743846153846154, 0.0, 8.529076086956522, 10.975384615384616, 7.182717391304348, 6.030874035989716, 2.697184343434343, 0.0), # 10
(5.227494918788412, 10.87622358270202, 9.080379056876605, 4.807338858695652, 2.7582735576923074, 0.0, 8.525283355978262, 11.03309423076923, 7.2110082880434785, 6.053586037917737, 2.719055895675505, 0.0), # 11
(5.2645727172958745, 10.960938409090907, 9.113007551413881, 4.825428260869565, 2.7721211538461534, 0.0, 8.521405434782608, 11.088484615384614, 7.238142391304347, 6.0753383676092545, 2.740234602272727, 0.0), # 12
(5.3007261194029835, 11.042766152146465, 9.144163279241644, 4.8427252717391305, 2.7853716346153847, 0.0, 8.51744273097826, 11.141486538461539, 7.264087907608696, 6.096108852827762, 2.760691538036616, 0.0), # 13
(5.335917559262511, 11.121591111111112, 9.173812982005138, 4.859208695652173, 2.7980076923076918, 0.0, 8.513395652173912, 11.192030769230767, 7.288813043478259, 6.115875321336759, 2.780397777777778, 0.0), # 14
(5.370109471027217, 11.19729758522727, 9.201923401349612, 4.874857336956521, 2.810012019230769, 0.0, 8.509264605978261, 11.240048076923076, 7.312286005434782, 6.134615600899742, 2.7993243963068175, 0.0), # 15
(5.403264288849868, 11.269769873737372, 9.228461278920308, 4.88965, 2.8213673076923076, 0.0, 8.50505, 11.28546923076923, 7.334474999999999, 6.152307519280206, 2.817442468434343, 0.0), # 16
(5.4353444468832315, 11.338892275883836, 9.253393356362468, 4.903565489130434, 2.83205625, 0.0, 8.500752241847827, 11.328225, 7.3553482336956515, 6.168928904241644, 2.834723068970959, 0.0), # 17
(5.46631237928007, 11.40454909090909, 9.276686375321336, 4.916582608695652, 2.842061538461539, 0.0, 8.496371739130435, 11.368246153846156, 7.374873913043479, 6.184457583547558, 2.8511372727272724, 0.0), # 18
(5.496130520193152, 11.466624618055553, 9.298307077442159, 4.928680163043477, 2.8513658653846155, 0.0, 8.491908899456522, 11.405463461538462, 7.393020244565217, 6.198871384961439, 2.866656154513888, 0.0), # 19
(5.524761303775241, 11.525003156565655, 9.318222204370178, 4.939836956521739, 2.859951923076923, 0.0, 8.487364130434782, 11.439807692307692, 7.409755434782609, 6.212148136246785, 2.8812507891414136, 0.0), # 20
(5.552167164179106, 11.579569005681815, 9.336398497750643, 4.95003179347826, 2.8678024038461536, 0.0, 8.482737839673913, 11.471209615384614, 7.425047690217391, 6.224265665167096, 2.894892251420454, 0.0), # 21
(5.578310535557506, 11.630206464646465, 9.352802699228791, 4.95924347826087, 2.8748999999999993, 0.0, 8.47803043478261, 11.499599999999997, 7.438865217391305, 6.235201799485861, 2.907551616161616, 0.0), # 22
(5.603153852063214, 11.67679983270202, 9.367401550449872, 4.967450815217391, 2.8812274038461534, 0.0, 8.473242323369567, 11.524909615384614, 7.451176222826087, 6.244934366966581, 2.919199958175505, 0.0), # 23
(5.62665954784899, 11.719233409090908, 9.380161793059125, 4.974632608695652, 2.8867673076923075, 0.0, 8.468373913043479, 11.54706923076923, 7.461948913043478, 6.25344119537275, 2.929808352272727, 0.0), # 24
(5.648790057067603, 11.757391493055556, 9.391050168701799, 4.980767663043478, 2.8915024038461534, 0.0, 8.463425611413044, 11.566009615384614, 7.471151494565217, 6.260700112467866, 2.939347873263889, 0.0), # 25
(5.669507813871817, 11.79115838383838, 9.400033419023135, 4.985834782608695, 2.8954153846153843, 0.0, 8.458397826086957, 11.581661538461537, 7.478752173913043, 6.266688946015424, 2.947789595959595, 0.0), # 26
(5.688775252414398, 11.820418380681815, 9.40707828566838, 4.989812771739131, 2.8984889423076923, 0.0, 8.453290964673915, 11.593955769230769, 7.484719157608696, 6.271385523778919, 2.9551045951704538, 0.0), # 27
(5.7065548068481124, 11.84505578282828, 9.412151510282778, 4.992680434782609, 2.9007057692307687, 0.0, 8.448105434782608, 11.602823076923075, 7.489020652173913, 6.274767673521851, 2.96126394570707, 0.0), # 28
(5.722808911325724, 11.864954889520202, 9.415219834511568, 4.994416576086956, 2.902048557692307, 0.0, 8.44284164402174, 11.608194230769229, 7.491624864130435, 6.276813223007712, 2.9662387223800506, 0.0), # 29
(5.7375, 11.879999999999999, 9.41625, 4.995, 2.9025, 0.0, 8.4375, 11.61, 7.4925, 6.277499999999999, 2.9699999999999998, 0.0), # 30
(5.751246651214834, 11.892497471590906, 9.415477744565216, 4.994894632352941, 2.9023357180851064, 0.0, 8.430077267616193, 11.609342872340426, 7.492341948529411, 6.276985163043476, 2.9731243678977264, 0.0), # 31
(5.7646965153452685, 11.904829772727274, 9.413182826086956, 4.994580588235293, 2.901846382978723, 0.0, 8.418644565217393, 11.607385531914892, 7.49187088235294, 6.275455217391303, 2.9762074431818184, 0.0), # 32
(5.777855634590792, 11.916995369318181, 9.40939801630435, 4.994060955882353, 2.9010372606382977, 0.0, 8.403313830584706, 11.60414904255319, 7.491091433823529, 6.272932010869566, 2.9792488423295453, 0.0), # 33
(5.790730051150895, 11.928992727272727, 9.40415608695652, 4.993338823529412, 2.899913617021276, 0.0, 8.38419700149925, 11.599654468085104, 7.490008235294118, 6.269437391304347, 2.9822481818181816, 0.0), # 34
(5.803325807225064, 11.940820312499996, 9.39748980978261, 4.9924172794117645, 2.898480718085106, 0.0, 8.361406015742128, 11.593922872340425, 7.488625919117647, 6.264993206521739, 2.985205078124999, 0.0), # 35
(5.815648945012788, 11.952476590909091, 9.389431956521738, 4.9912994117647065, 2.896743829787234, 0.0, 8.335052811094453, 11.586975319148936, 7.486949117647059, 6.259621304347825, 2.988119147727273, 0.0), # 36
(5.8277055067135555, 11.96396002840909, 9.380015298913044, 4.989988308823529, 2.8947082180851056, 0.0, 8.305249325337332, 11.578832872340422, 7.484982463235293, 6.253343532608695, 2.9909900071022726, 0.0), # 37
(5.839501534526853, 11.97526909090909, 9.369272608695653, 4.988487058823529, 2.89237914893617, 0.0, 8.272107496251873, 11.56951659574468, 7.4827305882352935, 6.246181739130434, 2.9938172727272727, 0.0), # 38
(5.851043070652174, 11.986402244318182, 9.357236657608695, 4.98679875, 2.8897618882978717, 0.0, 8.23573926161919, 11.559047553191487, 7.480198125, 6.23815777173913, 2.9966005610795454, 0.0), # 39
(5.862336157289003, 11.997357954545455, 9.343940217391305, 4.984926470588235, 2.886861702127659, 0.0, 8.196256559220389, 11.547446808510635, 7.477389705882353, 6.22929347826087, 2.999339488636364, 0.0), # 40
(5.873386836636828, 12.008134687499997, 9.329416059782607, 4.982873308823529, 2.8836838563829783, 0.0, 8.153771326836583, 11.534735425531913, 7.474309963235294, 6.219610706521738, 3.002033671874999, 0.0), # 41
(5.88420115089514, 12.01873090909091, 9.31369695652174, 4.980642352941176, 2.880233617021277, 0.0, 8.108395502248875, 11.520934468085107, 7.4709635294117644, 6.209131304347826, 3.0046827272727277, 0.0), # 42
(5.894785142263428, 12.02914508522727, 9.296815679347825, 4.978236691176471, 2.8765162499999994, 0.0, 8.060241023238381, 11.506064999999998, 7.467355036764706, 6.1978771195652165, 3.0072862713068176, 0.0), # 43
(5.905144852941176, 12.03937568181818, 9.278805, 4.975659411764705, 2.8725370212765955, 0.0, 8.009419827586207, 11.490148085106382, 7.4634891176470575, 6.1858699999999995, 3.009843920454545, 0.0), # 44
(5.915286325127877, 12.049421164772726, 9.259697690217394, 4.972913602941176, 2.8683011968085106, 0.0, 7.956043853073464, 11.473204787234042, 7.459370404411764, 6.1731317934782615, 3.0123552911931815, 0.0), # 45
(5.925215601023019, 12.059280000000001, 9.239526521739132, 4.970002352941176, 2.8638140425531913, 0.0, 7.90022503748126, 11.455256170212765, 7.455003529411765, 6.159684347826087, 3.0148200000000003, 0.0), # 46
(5.934938722826087, 12.06895065340909, 9.218324266304347, 4.966928749999999, 2.859080824468085, 0.0, 7.842075318590705, 11.43632329787234, 7.450393124999999, 6.145549510869564, 3.0172376633522724, 0.0), # 47
(5.944461732736574, 12.07843159090909, 9.196123695652174, 4.9636958823529405, 2.854106808510638, 0.0, 7.7817066341829095, 11.416427234042551, 7.445543823529412, 6.130749130434782, 3.0196078977272727, 0.0), # 48
(5.953790672953963, 12.087721278409088, 9.17295758152174, 4.960306838235294, 2.8488972606382976, 0.0, 7.71923092203898, 11.39558904255319, 7.4404602573529415, 6.115305054347826, 3.021930319602272, 0.0), # 49
(5.96293158567775, 12.096818181818177, 9.148858695652175, 4.956764705882353, 2.8434574468085105, 0.0, 7.65476011994003, 11.373829787234042, 7.43514705882353, 6.099239130434783, 3.0242045454545443, 0.0), # 50
(5.971890513107417, 12.105720767045453, 9.123859809782608, 4.953072573529411, 2.837792632978723, 0.0, 7.588406165667167, 11.351170531914892, 7.429608860294118, 6.082573206521738, 3.026430191761363, 0.0), # 51
(5.980673497442456, 12.114427499999998, 9.097993695652173, 4.949233529411764, 2.8319080851063827, 0.0, 7.5202809970015, 11.32763234042553, 7.4238502941176465, 6.065329130434781, 3.0286068749999995, 0.0), # 52
(5.989286580882353, 12.122936846590909, 9.071293125, 4.945250661764706, 2.8258090691489364, 0.0, 7.450496551724138, 11.303236276595745, 7.417875992647058, 6.04752875, 3.030734211647727, 0.0), # 53
(5.9977358056266, 12.13124727272727, 9.043790869565216, 4.941127058823529, 2.8195008510638297, 0.0, 7.379164767616192, 11.278003404255319, 7.411690588235294, 6.0291939130434775, 3.0328118181818176, 0.0), # 54
(6.00602721387468, 12.139357244318182, 9.015519701086955, 4.93686580882353, 2.8129886968085103, 0.0, 7.306397582458771, 11.251954787234041, 7.405298713235295, 6.010346467391304, 3.0348393110795455, 0.0), # 55
(6.014166847826087, 12.147265227272724, 8.986512391304348, 4.9324699999999995, 2.8062778723404254, 0.0, 7.232306934032984, 11.225111489361701, 7.398705, 5.991008260869565, 3.036816306818181, 0.0), # 56
(6.022160749680308, 12.154969687500001, 8.95680171195652, 4.927942720588234, 2.7993736436170207, 0.0, 7.15700476011994, 11.197494574468083, 7.391914080882352, 5.9712011413043475, 3.0387424218750003, 0.0), # 57
(6.030014961636829, 12.16246909090909, 8.926420434782608, 4.923287058823529, 2.792281276595744, 0.0, 7.0806029985007495, 11.169125106382976, 7.384930588235295, 5.950946956521738, 3.0406172727272724, 0.0), # 58
(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0), # 59
)
passenger_allighting_rate = (
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 0
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 1
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 2
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 3
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 4
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 5
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 6
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 7
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 8
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 9
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 10
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 11
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 12
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 13
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 14
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 15
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 16
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 17
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 18
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 19
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 20
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 21
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 22
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 23
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 24
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 25
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 26
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 27
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 28
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 29
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 30
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 31
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 32
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 33
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 34
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 35
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 36
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 37
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 38
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 39
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 40
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 41
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 42
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 43
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 44
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 45
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 46
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 47
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 48
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 49
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 50
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 51
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 52
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 53
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 54
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 55
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 56
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 57
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 58
(0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), # 59
)
"""
parameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html
"""
#initial entropy
entropy = 258194110137029475889902652135037600173
#index for seed sequence child
child_seed_index = (
1, # 0
55, # 1
)
| """
PASSENGERS
"""
num_passengers = 4041
passenger_arriving = ((3, 10, 7, 5, 3, 0, 7, 9, 4, 9, 3, 0), (1, 4, 8, 8, 1, 0, 10, 12, 4, 5, 2, 0), (6, 12, 13, 3, 1, 0, 10, 12, 3, 4, 5, 0), (7, 5, 7, 4, 3, 0, 5, 9, 5, 10, 1, 0), (6, 12, 8, 4, 4, 0, 11, 8, 5, 2, 5, 0), (3, 11, 6, 5, 2, 0, 8, 17, 13, 2, 3, 0), (5, 6, 7, 7, 3, 0, 5, 7, 3, 3, 3, 0), (1, 10, 3, 6, 3, 0, 12, 12, 5, 4, 2, 0), (3, 9, 4, 4, 4, 0, 9, 13, 9, 12, 4, 0), (7, 8, 6, 4, 1, 0, 4, 11, 8, 7, 2, 0), (5, 13, 17, 6, 0, 0, 6, 10, 5, 7, 2, 0), (1, 12, 10, 3, 1, 0, 6, 8, 8, 4, 1, 0), (6, 11, 5, 8, 2, 0, 10, 6, 4, 11, 1, 0), (2, 4, 11, 5, 3, 0, 9, 18, 8, 7, 4, 0), (5, 12, 13, 5, 3, 0, 7, 6, 7, 3, 2, 0), (6, 8, 6, 5, 3, 0, 17, 10, 5, 3, 4, 0), (2, 8, 11, 2, 2, 0, 3, 5, 6, 10, 4, 0), (5, 12, 10, 2, 1, 0, 10, 9, 10, 7, 3, 0), (9, 16, 10, 6, 1, 0, 7, 7, 7, 8, 6, 0), (2, 16, 12, 4, 4, 0, 7, 10, 8, 4, 1, 0), (5, 13, 11, 5, 1, 0, 10, 8, 12, 10, 3, 0), (6, 11, 16, 6, 2, 0, 5, 9, 5, 7, 6, 0), (4, 5, 14, 6, 4, 0, 8, 14, 7, 7, 4, 0), (11, 14, 11, 6, 1, 0, 8, 6, 5, 5, 3, 0), (3, 13, 9, 3, 4, 0, 8, 12, 8, 6, 5, 0), (5, 13, 9, 5, 2, 0, 6, 12, 5, 6, 5, 0), (6, 7, 9, 10, 5, 0, 10, 14, 7, 8, 3, 0), (3, 9, 9, 2, 5, 0, 8, 13, 9, 6, 2, 0), (4, 13, 9, 6, 4, 0, 8, 10, 4, 10, 2, 0), (8, 7, 13, 4, 4, 0, 4, 12, 10, 4, 4, 0), (5, 10, 9, 4, 2, 0, 6, 10, 3, 10, 4, 0), (1, 9, 16, 4, 2, 0, 8, 15, 8, 4, 2, 0), (4, 15, 10, 5, 2, 0, 7, 17, 7, 5, 0, 0), (5, 9, 13, 7, 3, 0, 9, 15, 8, 5, 1, 0), (5, 12, 10, 5, 4, 0, 6, 19, 3, 6, 2, 0), (8, 12, 9, 6, 3, 0, 9, 15, 10, 7, 4, 0), (8, 15, 11, 3, 2, 0, 10, 14, 5, 3, 7, 0), (8, 15, 8, 4, 4, 0, 5, 9, 10, 5, 3, 0), (5, 13, 13, 3, 5, 0, 3, 15, 7, 8, 8, 0), (6, 11, 7, 4, 7, 0, 3, 10, 6, 9, 7, 0), (3, 9, 12, 6, 4, 0, 12, 7, 4, 8, 5, 0), (7, 12, 14, 6, 6, 0, 4, 10, 7, 11, 3, 0), (6, 10, 6, 5, 6, 0, 8, 14, 6, 6, 4, 0), (12, 16, 9, 5, 5, 0, 15, 13, 1, 5, 6, 0), (9, 10, 10, 4, 2, 0, 11, 9, 5, 3, 2, 0), (7, 11, 9, 4, 1, 0, 11, 11, 8, 7, 3, 0), (2, 17, 11, 2, 3, 0, 4, 13, 9, 9, 5, 0), (5, 9, 11, 7, 3, 0, 7, 4, 8, 5, 2, 0), (5, 14, 13, 5, 5, 0, 5, 13, 8, 9, 10, 0), (6, 9, 14, 1, 1, 0, 5, 16, 2, 12, 3, 0), (6, 12, 12, 6, 1, 0, 6, 13, 5, 9, 2, 0), (1, 8, 4, 7, 4, 0, 5, 7, 9, 7, 1, 0), (4, 14, 7, 4, 0, 0, 2, 10, 6, 5, 1, 0), (6, 15, 7, 4, 2, 0, 10, 14, 5, 9, 4, 0), (4, 14, 7, 4, 5, 0, 7, 11, 8, 4, 5, 0), (8, 8, 5, 7, 1, 0, 8, 17, 6, 5, 5, 0), (4, 18, 10, 7, 2, 0, 7, 7, 2, 4, 5, 0), (5, 13, 9, 4, 2, 0, 7, 10, 8, 7, 2, 0), (2, 11, 5, 6, 2, 0, 4, 13, 14, 0, 2, 0), (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0))
station_arriving_intensity = ((4.769372805092186, 12.233629261363635, 14.389624839331619, 11.405298913043477, 12.857451923076923, 8.562228260869567), (4.81413961808604, 12.369674877683082, 14.46734796754499, 11.46881589673913, 12.953819711538461, 8.559309850543478), (4.8583952589991215, 12.503702525252525, 14.54322622107969, 11.530934782608696, 13.048153846153847, 8.556302173913043), (4.902102161984196, 12.635567578125, 14.617204169344474, 11.591602581521737, 13.14036778846154, 8.553205638586958), (4.94522276119403, 12.765125410353535, 14.689226381748071, 11.650766304347826, 13.230375, 8.550020652173911), (4.987719490781387, 12.892231395991162, 14.759237427699228, 11.708372961956522, 13.318088942307691, 8.546747622282608), (5.029554784899035, 13.01674090909091, 14.827181876606687, 11.764369565217393, 13.403423076923078, 8.54338695652174), (5.0706910776997365, 13.138509323705808, 14.893004297879177, 11.818703125, 13.486290865384618, 8.5399390625), (5.1110908033362605, 13.257392013888888, 14.956649260925452, 11.871320652173912, 13.56660576923077, 8.536404347826087), (5.1507163959613695, 13.373244353693181, 15.018061335154243, 11.922169157608696, 13.644281249999999, 8.532783220108696), (5.1895302897278315, 13.485921717171717, 15.077185089974291, 11.971195652173915, 13.719230769230771, 8.529076086956522), (5.227494918788412, 13.595279478377526, 15.133965094794343, 12.018347146739131, 13.791367788461539, 8.525283355978262), (5.2645727172958745, 13.701173011363636, 15.188345919023137, 12.063570652173912, 13.860605769230768, 8.521405434782608), (5.3007261194029835, 13.803457690183082, 15.240272132069407, 12.106813179347826, 13.926858173076925, 8.51744273097826), (5.335917559262511, 13.90198888888889, 15.289688303341899, 12.148021739130433, 13.99003846153846, 8.513395652173912), (5.370109471027217, 13.996621981534089, 15.336539002249355, 12.187143342391304, 14.050060096153846, 8.509264605978261), (5.403264288849868, 14.087212342171718, 15.380768798200515, 12.224124999999999, 14.10683653846154, 8.50505), (5.4353444468832315, 14.173615344854797, 15.422322260604112, 12.258913722826087, 14.16028125, 8.500752241847827), (5.46631237928007, 14.255686363636363, 15.461143958868895, 12.291456521739132, 14.210307692307696, 8.496371739130435), (5.496130520193152, 14.333280772569443, 15.4971784624036, 12.321700407608695, 14.256829326923079, 8.491908899456522), (5.524761303775241, 14.40625394570707, 15.530370340616965, 12.349592391304348, 14.299759615384616, 8.487364130434782), (5.552167164179106, 14.47446125710227, 15.56066416291774, 12.375079483695652, 14.339012019230768, 8.482737839673913), (5.578310535557506, 14.537758080808082, 15.588004498714653, 12.398108695652175, 14.374499999999998, 8.47803043478261), (5.603153852063214, 14.595999790877526, 15.612335917416454, 12.418627038043478, 14.40613701923077, 8.473242323369567), (5.62665954784899, 14.649041761363636, 15.633602988431875, 12.43658152173913, 14.433836538461538, 8.468373913043479), (5.648790057067603, 14.696739366319445, 15.651750281169667, 12.451919157608696, 14.457512019230768, 8.463425611413044), (5.669507813871817, 14.738947979797977, 15.66672236503856, 12.464586956521739, 14.477076923076922, 8.458397826086957), (5.688775252414398, 14.77552297585227, 15.6784638094473, 12.474531929347828, 14.492444711538463, 8.453290964673915), (5.7065548068481124, 14.806319728535353, 15.68691918380463, 12.481701086956523, 14.503528846153845, 8.448105434782608), (5.722808911325724, 14.831193611900254, 15.69203305751928, 12.486041440217392, 14.510242788461538, 8.44284164402174), (5.7375, 14.85, 15.69375, 12.4875, 14.512500000000001, 8.4375), (5.751246651214834, 14.865621839488634, 15.692462907608693, 12.487236580882353, 14.511678590425532, 8.430077267616193), (5.7646965153452685, 14.881037215909092, 15.68863804347826, 12.486451470588234, 14.509231914893617, 8.418644565217393), (5.777855634590792, 14.896244211647728, 15.682330027173915, 12.485152389705883, 14.50518630319149, 8.403313830584706), (5.790730051150895, 14.91124090909091, 15.67359347826087, 12.483347058823531, 14.499568085106382, 8.38419700149925), (5.803325807225064, 14.926025390624996, 15.662483016304348, 12.481043198529411, 14.492403590425532, 8.361406015742128), (5.815648945012788, 14.940595738636366, 15.649053260869564, 12.478248529411767, 14.48371914893617, 8.335052811094453), (5.8277055067135555, 14.954950035511365, 15.63335883152174, 12.474970772058823, 14.47354109042553, 8.305249325337332), (5.839501534526853, 14.969086363636364, 15.615454347826088, 12.471217647058824, 14.461895744680852, 8.272107496251873), (5.851043070652174, 14.983002805397728, 15.595394429347825, 12.466996875000001, 14.44880944148936, 8.23573926161919), (5.862336157289003, 14.99669744318182, 15.573233695652176, 12.462316176470589, 14.434308510638296, 8.196256559220389), (5.873386836636828, 15.010168359374997, 15.549026766304348, 12.457183272058824, 14.418419281914893, 8.153771326836583), (5.88420115089514, 15.023413636363639, 15.522828260869566, 12.451605882352942, 14.401168085106384, 8.108395502248875), (5.894785142263428, 15.03643135653409, 15.494692798913043, 12.445591727941178, 14.38258125, 8.060241023238381), (5.905144852941176, 15.049219602272727, 15.464675, 12.439148529411764, 14.36268510638298, 8.009419827586207), (5.915286325127877, 15.061776455965909, 15.432829483695656, 12.43228400735294, 14.341505984042554, 7.956043853073464), (5.925215601023019, 15.074100000000003, 15.39921086956522, 12.425005882352941, 14.319070212765958, 7.90022503748126), (5.934938722826087, 15.086188316761364, 15.363873777173913, 12.417321874999999, 14.295404122340427, 7.842075318590705), (5.944461732736574, 15.098039488636365, 15.326872826086957, 12.409239705882353, 14.27053404255319, 7.7817066341829095), (5.953790672953963, 15.10965159801136, 15.288262635869566, 12.400767095588236, 14.24448630319149, 7.71923092203898), (5.96293158567775, 15.121022727272724, 15.248097826086958, 12.391911764705883, 14.217287234042553, 7.65476011994003), (5.971890513107417, 15.132150958806818, 15.206433016304347, 12.38268143382353, 14.188963164893616, 7.588406165667167), (5.980673497442456, 15.143034375, 15.163322826086954, 12.373083823529411, 14.159540425531915, 7.5202809970015), (5.989286580882353, 15.153671058238638, 15.118821875, 12.363126654411765, 14.129045345744682, 7.450496551724138), (5.9977358056266, 15.164059090909088, 15.072984782608694, 12.352817647058824, 14.09750425531915, 7.379164767616192), (6.00602721387468, 15.174196555397728, 15.02586616847826, 12.342164522058825, 14.064943484042553, 7.306397582458771), (6.014166847826087, 15.184081534090907, 14.977520652173913, 12.331175, 14.031389361702129, 7.232306934032984), (6.022160749680308, 15.193712109375003, 14.92800285326087, 12.319856801470587, 13.996868218085105, 7.15700476011994), (6.030014961636829, 15.203086363636363, 14.877367391304347, 12.308217647058825, 13.961406382978723, 7.0806029985007495), (0.0, 0.0, 0.0, 0.0, 0.0, 0.0))
passenger_arriving_acc = ((3, 10, 7, 5, 3, 0, 7, 9, 4, 9, 3, 0), (4, 14, 15, 13, 4, 0, 17, 21, 8, 14, 5, 0), (10, 26, 28, 16, 5, 0, 27, 33, 11, 18, 10, 0), (17, 31, 35, 20, 8, 0, 32, 42, 16, 28, 11, 0), (23, 43, 43, 24, 12, 0, 43, 50, 21, 30, 16, 0), (26, 54, 49, 29, 14, 0, 51, 67, 34, 32, 19, 0), (31, 60, 56, 36, 17, 0, 56, 74, 37, 35, 22, 0), (32, 70, 59, 42, 20, 0, 68, 86, 42, 39, 24, 0), (35, 79, 63, 46, 24, 0, 77, 99, 51, 51, 28, 0), (42, 87, 69, 50, 25, 0, 81, 110, 59, 58, 30, 0), (47, 100, 86, 56, 25, 0, 87, 120, 64, 65, 32, 0), (48, 112, 96, 59, 26, 0, 93, 128, 72, 69, 33, 0), (54, 123, 101, 67, 28, 0, 103, 134, 76, 80, 34, 0), (56, 127, 112, 72, 31, 0, 112, 152, 84, 87, 38, 0), (61, 139, 125, 77, 34, 0, 119, 158, 91, 90, 40, 0), (67, 147, 131, 82, 37, 0, 136, 168, 96, 93, 44, 0), (69, 155, 142, 84, 39, 0, 139, 173, 102, 103, 48, 0), (74, 167, 152, 86, 40, 0, 149, 182, 112, 110, 51, 0), (83, 183, 162, 92, 41, 0, 156, 189, 119, 118, 57, 0), (85, 199, 174, 96, 45, 0, 163, 199, 127, 122, 58, 0), (90, 212, 185, 101, 46, 0, 173, 207, 139, 132, 61, 0), (96, 223, 201, 107, 48, 0, 178, 216, 144, 139, 67, 0), (100, 228, 215, 113, 52, 0, 186, 230, 151, 146, 71, 0), (111, 242, 226, 119, 53, 0, 194, 236, 156, 151, 74, 0), (114, 255, 235, 122, 57, 0, 202, 248, 164, 157, 79, 0), (119, 268, 244, 127, 59, 0, 208, 260, 169, 163, 84, 0), (125, 275, 253, 137, 64, 0, 218, 274, 176, 171, 87, 0), (128, 284, 262, 139, 69, 0, 226, 287, 185, 177, 89, 0), (132, 297, 271, 145, 73, 0, 234, 297, 189, 187, 91, 0), (140, 304, 284, 149, 77, 0, 238, 309, 199, 191, 95, 0), (145, 314, 293, 153, 79, 0, 244, 319, 202, 201, 99, 0), (146, 323, 309, 157, 81, 0, 252, 334, 210, 205, 101, 0), (150, 338, 319, 162, 83, 0, 259, 351, 217, 210, 101, 0), (155, 347, 332, 169, 86, 0, 268, 366, 225, 215, 102, 0), (160, 359, 342, 174, 90, 0, 274, 385, 228, 221, 104, 0), (168, 371, 351, 180, 93, 0, 283, 400, 238, 228, 108, 0), (176, 386, 362, 183, 95, 0, 293, 414, 243, 231, 115, 0), (184, 401, 370, 187, 99, 0, 298, 423, 253, 236, 118, 0), (189, 414, 383, 190, 104, 0, 301, 438, 260, 244, 126, 0), (195, 425, 390, 194, 111, 0, 304, 448, 266, 253, 133, 0), (198, 434, 402, 200, 115, 0, 316, 455, 270, 261, 138, 0), (205, 446, 416, 206, 121, 0, 320, 465, 277, 272, 141, 0), (211, 456, 422, 211, 127, 0, 328, 479, 283, 278, 145, 0), (223, 472, 431, 216, 132, 0, 343, 492, 284, 283, 151, 0), (232, 482, 441, 220, 134, 0, 354, 501, 289, 286, 153, 0), (239, 493, 450, 224, 135, 0, 365, 512, 297, 293, 156, 0), (241, 510, 461, 226, 138, 0, 369, 525, 306, 302, 161, 0), (246, 519, 472, 233, 141, 0, 376, 529, 314, 307, 163, 0), (251, 533, 485, 238, 146, 0, 381, 542, 322, 316, 173, 0), (257, 542, 499, 239, 147, 0, 386, 558, 324, 328, 176, 0), (263, 554, 511, 245, 148, 0, 392, 571, 329, 337, 178, 0), (264, 562, 515, 252, 152, 0, 397, 578, 338, 344, 179, 0), (268, 576, 522, 256, 152, 0, 399, 588, 344, 349, 180, 0), (274, 591, 529, 260, 154, 0, 409, 602, 349, 358, 184, 0), (278, 605, 536, 264, 159, 0, 416, 613, 357, 362, 189, 0), (286, 613, 541, 271, 160, 0, 424, 630, 363, 367, 194, 0), (290, 631, 551, 278, 162, 0, 431, 637, 365, 371, 199, 0), (295, 644, 560, 282, 164, 0, 438, 647, 373, 378, 201, 0), (297, 655, 565, 288, 166, 0, 442, 660, 387, 378, 203, 0), (297, 655, 565, 288, 166, 0, 442, 660, 387, 378, 203, 0))
passenger_arriving_rate = ((4.769372805092186, 9.786903409090908, 8.63377490359897, 4.56211956521739, 2.5714903846153843, 0.0, 8.562228260869567, 10.285961538461537, 6.843179347826086, 5.755849935732647, 2.446725852272727, 0.0), (4.81413961808604, 9.895739902146465, 8.680408780526994, 4.587526358695651, 2.5907639423076922, 0.0, 8.559309850543478, 10.363055769230769, 6.881289538043478, 5.786939187017995, 2.4739349755366162, 0.0), (4.8583952589991215, 10.00296202020202, 8.725935732647814, 4.612373913043478, 2.609630769230769, 0.0, 8.556302173913043, 10.438523076923076, 6.918560869565217, 5.817290488431875, 2.500740505050505, 0.0), (4.902102161984196, 10.1084540625, 8.770322501606683, 4.636641032608694, 2.628073557692308, 0.0, 8.553205638586958, 10.512294230769232, 6.954961548913042, 5.846881667737789, 2.527113515625, 0.0), (4.94522276119403, 10.212100328282828, 8.813535829048842, 4.66030652173913, 2.6460749999999997, 0.0, 8.550020652173911, 10.584299999999999, 6.990459782608696, 5.875690552699228, 2.553025082070707, 0.0), (4.987719490781387, 10.313785116792928, 8.855542456619537, 4.6833491847826085, 2.663617788461538, 0.0, 8.546747622282608, 10.654471153846153, 7.025023777173913, 5.90369497107969, 2.578446279198232, 0.0), (5.029554784899035, 10.413392727272727, 8.896309125964011, 4.705747826086957, 2.680684615384615, 0.0, 8.54338695652174, 10.72273846153846, 7.058621739130436, 5.930872750642674, 2.603348181818182, 0.0), (5.0706910776997365, 10.510807458964646, 8.935802578727506, 4.72748125, 2.697258173076923, 0.0, 8.5399390625, 10.789032692307693, 7.0912218750000005, 5.95720171915167, 2.6277018647411614, 0.0), (5.1110908033362605, 10.60591361111111, 8.97398955655527, 4.7485282608695645, 2.7133211538461537, 0.0, 8.536404347826087, 10.853284615384615, 7.122792391304347, 5.982659704370181, 2.6514784027777774, 0.0), (5.1507163959613695, 10.698595482954543, 9.010836801092546, 4.768867663043478, 2.7288562499999993, 0.0, 8.532783220108696, 10.915424999999997, 7.153301494565217, 6.007224534061697, 2.6746488707386358, 0.0), (5.1895302897278315, 10.788737373737373, 9.046311053984574, 4.7884782608695655, 2.743846153846154, 0.0, 8.529076086956522, 10.975384615384616, 7.182717391304348, 6.030874035989716, 2.697184343434343, 0.0), (5.227494918788412, 10.87622358270202, 9.080379056876605, 4.807338858695652, 2.7582735576923074, 0.0, 8.525283355978262, 11.03309423076923, 7.2110082880434785, 6.053586037917737, 2.719055895675505, 0.0), (5.2645727172958745, 10.960938409090907, 9.113007551413881, 4.825428260869565, 2.7721211538461534, 0.0, 8.521405434782608, 11.088484615384614, 7.238142391304347, 6.0753383676092545, 2.740234602272727, 0.0), (5.3007261194029835, 11.042766152146465, 9.144163279241644, 4.8427252717391305, 2.7853716346153847, 0.0, 8.51744273097826, 11.141486538461539, 7.264087907608696, 6.096108852827762, 2.760691538036616, 0.0), (5.335917559262511, 11.121591111111112, 9.173812982005138, 4.859208695652173, 2.7980076923076918, 0.0, 8.513395652173912, 11.192030769230767, 7.288813043478259, 6.115875321336759, 2.780397777777778, 0.0), (5.370109471027217, 11.19729758522727, 9.201923401349612, 4.874857336956521, 2.810012019230769, 0.0, 8.509264605978261, 11.240048076923076, 7.312286005434782, 6.134615600899742, 2.7993243963068175, 0.0), (5.403264288849868, 11.269769873737372, 9.228461278920308, 4.88965, 2.8213673076923076, 0.0, 8.50505, 11.28546923076923, 7.334474999999999, 6.152307519280206, 2.817442468434343, 0.0), (5.4353444468832315, 11.338892275883836, 9.253393356362468, 4.903565489130434, 2.83205625, 0.0, 8.500752241847827, 11.328225, 7.3553482336956515, 6.168928904241644, 2.834723068970959, 0.0), (5.46631237928007, 11.40454909090909, 9.276686375321336, 4.916582608695652, 2.842061538461539, 0.0, 8.496371739130435, 11.368246153846156, 7.374873913043479, 6.184457583547558, 2.8511372727272724, 0.0), (5.496130520193152, 11.466624618055553, 9.298307077442159, 4.928680163043477, 2.8513658653846155, 0.0, 8.491908899456522, 11.405463461538462, 7.393020244565217, 6.198871384961439, 2.866656154513888, 0.0), (5.524761303775241, 11.525003156565655, 9.318222204370178, 4.939836956521739, 2.859951923076923, 0.0, 8.487364130434782, 11.439807692307692, 7.409755434782609, 6.212148136246785, 2.8812507891414136, 0.0), (5.552167164179106, 11.579569005681815, 9.336398497750643, 4.95003179347826, 2.8678024038461536, 0.0, 8.482737839673913, 11.471209615384614, 7.425047690217391, 6.224265665167096, 2.894892251420454, 0.0), (5.578310535557506, 11.630206464646465, 9.352802699228791, 4.95924347826087, 2.8748999999999993, 0.0, 8.47803043478261, 11.499599999999997, 7.438865217391305, 6.235201799485861, 2.907551616161616, 0.0), (5.603153852063214, 11.67679983270202, 9.367401550449872, 4.967450815217391, 2.8812274038461534, 0.0, 8.473242323369567, 11.524909615384614, 7.451176222826087, 6.244934366966581, 2.919199958175505, 0.0), (5.62665954784899, 11.719233409090908, 9.380161793059125, 4.974632608695652, 2.8867673076923075, 0.0, 8.468373913043479, 11.54706923076923, 7.461948913043478, 6.25344119537275, 2.929808352272727, 0.0), (5.648790057067603, 11.757391493055556, 9.391050168701799, 4.980767663043478, 2.8915024038461534, 0.0, 8.463425611413044, 11.566009615384614, 7.471151494565217, 6.260700112467866, 2.939347873263889, 0.0), (5.669507813871817, 11.79115838383838, 9.400033419023135, 4.985834782608695, 2.8954153846153843, 0.0, 8.458397826086957, 11.581661538461537, 7.478752173913043, 6.266688946015424, 2.947789595959595, 0.0), (5.688775252414398, 11.820418380681815, 9.40707828566838, 4.989812771739131, 2.8984889423076923, 0.0, 8.453290964673915, 11.593955769230769, 7.484719157608696, 6.271385523778919, 2.9551045951704538, 0.0), (5.7065548068481124, 11.84505578282828, 9.412151510282778, 4.992680434782609, 2.9007057692307687, 0.0, 8.448105434782608, 11.602823076923075, 7.489020652173913, 6.274767673521851, 2.96126394570707, 0.0), (5.722808911325724, 11.864954889520202, 9.415219834511568, 4.994416576086956, 2.902048557692307, 0.0, 8.44284164402174, 11.608194230769229, 7.491624864130435, 6.276813223007712, 2.9662387223800506, 0.0), (5.7375, 11.879999999999999, 9.41625, 4.995, 2.9025, 0.0, 8.4375, 11.61, 7.4925, 6.277499999999999, 2.9699999999999998, 0.0), (5.751246651214834, 11.892497471590906, 9.415477744565216, 4.994894632352941, 2.9023357180851064, 0.0, 8.430077267616193, 11.609342872340426, 7.492341948529411, 6.276985163043476, 2.9731243678977264, 0.0), (5.7646965153452685, 11.904829772727274, 9.413182826086956, 4.994580588235293, 2.901846382978723, 0.0, 8.418644565217393, 11.607385531914892, 7.49187088235294, 6.275455217391303, 2.9762074431818184, 0.0), (5.777855634590792, 11.916995369318181, 9.40939801630435, 4.994060955882353, 2.9010372606382977, 0.0, 8.403313830584706, 11.60414904255319, 7.491091433823529, 6.272932010869566, 2.9792488423295453, 0.0), (5.790730051150895, 11.928992727272727, 9.40415608695652, 4.993338823529412, 2.899913617021276, 0.0, 8.38419700149925, 11.599654468085104, 7.490008235294118, 6.269437391304347, 2.9822481818181816, 0.0), (5.803325807225064, 11.940820312499996, 9.39748980978261, 4.9924172794117645, 2.898480718085106, 0.0, 8.361406015742128, 11.593922872340425, 7.488625919117647, 6.264993206521739, 2.985205078124999, 0.0), (5.815648945012788, 11.952476590909091, 9.389431956521738, 4.9912994117647065, 2.896743829787234, 0.0, 8.335052811094453, 11.586975319148936, 7.486949117647059, 6.259621304347825, 2.988119147727273, 0.0), (5.8277055067135555, 11.96396002840909, 9.380015298913044, 4.989988308823529, 2.8947082180851056, 0.0, 8.305249325337332, 11.578832872340422, 7.484982463235293, 6.253343532608695, 2.9909900071022726, 0.0), (5.839501534526853, 11.97526909090909, 9.369272608695653, 4.988487058823529, 2.89237914893617, 0.0, 8.272107496251873, 11.56951659574468, 7.4827305882352935, 6.246181739130434, 2.9938172727272727, 0.0), (5.851043070652174, 11.986402244318182, 9.357236657608695, 4.98679875, 2.8897618882978717, 0.0, 8.23573926161919, 11.559047553191487, 7.480198125, 6.23815777173913, 2.9966005610795454, 0.0), (5.862336157289003, 11.997357954545455, 9.343940217391305, 4.984926470588235, 2.886861702127659, 0.0, 8.196256559220389, 11.547446808510635, 7.477389705882353, 6.22929347826087, 2.999339488636364, 0.0), (5.873386836636828, 12.008134687499997, 9.329416059782607, 4.982873308823529, 2.8836838563829783, 0.0, 8.153771326836583, 11.534735425531913, 7.474309963235294, 6.219610706521738, 3.002033671874999, 0.0), (5.88420115089514, 12.01873090909091, 9.31369695652174, 4.980642352941176, 2.880233617021277, 0.0, 8.108395502248875, 11.520934468085107, 7.4709635294117644, 6.209131304347826, 3.0046827272727277, 0.0), (5.894785142263428, 12.02914508522727, 9.296815679347825, 4.978236691176471, 2.8765162499999994, 0.0, 8.060241023238381, 11.506064999999998, 7.467355036764706, 6.1978771195652165, 3.0072862713068176, 0.0), (5.905144852941176, 12.03937568181818, 9.278805, 4.975659411764705, 2.8725370212765955, 0.0, 8.009419827586207, 11.490148085106382, 7.4634891176470575, 6.1858699999999995, 3.009843920454545, 0.0), (5.915286325127877, 12.049421164772726, 9.259697690217394, 4.972913602941176, 2.8683011968085106, 0.0, 7.956043853073464, 11.473204787234042, 7.459370404411764, 6.1731317934782615, 3.0123552911931815, 0.0), (5.925215601023019, 12.059280000000001, 9.239526521739132, 4.970002352941176, 2.8638140425531913, 0.0, 7.90022503748126, 11.455256170212765, 7.455003529411765, 6.159684347826087, 3.0148200000000003, 0.0), (5.934938722826087, 12.06895065340909, 9.218324266304347, 4.966928749999999, 2.859080824468085, 0.0, 7.842075318590705, 11.43632329787234, 7.450393124999999, 6.145549510869564, 3.0172376633522724, 0.0), (5.944461732736574, 12.07843159090909, 9.196123695652174, 4.9636958823529405, 2.854106808510638, 0.0, 7.7817066341829095, 11.416427234042551, 7.445543823529412, 6.130749130434782, 3.0196078977272727, 0.0), (5.953790672953963, 12.087721278409088, 9.17295758152174, 4.960306838235294, 2.8488972606382976, 0.0, 7.71923092203898, 11.39558904255319, 7.4404602573529415, 6.115305054347826, 3.021930319602272, 0.0), (5.96293158567775, 12.096818181818177, 9.148858695652175, 4.956764705882353, 2.8434574468085105, 0.0, 7.65476011994003, 11.373829787234042, 7.43514705882353, 6.099239130434783, 3.0242045454545443, 0.0), (5.971890513107417, 12.105720767045453, 9.123859809782608, 4.953072573529411, 2.837792632978723, 0.0, 7.588406165667167, 11.351170531914892, 7.429608860294118, 6.082573206521738, 3.026430191761363, 0.0), (5.980673497442456, 12.114427499999998, 9.097993695652173, 4.949233529411764, 2.8319080851063827, 0.0, 7.5202809970015, 11.32763234042553, 7.4238502941176465, 6.065329130434781, 3.0286068749999995, 0.0), (5.989286580882353, 12.122936846590909, 9.071293125, 4.945250661764706, 2.8258090691489364, 0.0, 7.450496551724138, 11.303236276595745, 7.417875992647058, 6.04752875, 3.030734211647727, 0.0), (5.9977358056266, 12.13124727272727, 9.043790869565216, 4.941127058823529, 2.8195008510638297, 0.0, 7.379164767616192, 11.278003404255319, 7.411690588235294, 6.0291939130434775, 3.0328118181818176, 0.0), (6.00602721387468, 12.139357244318182, 9.015519701086955, 4.93686580882353, 2.8129886968085103, 0.0, 7.306397582458771, 11.251954787234041, 7.405298713235295, 6.010346467391304, 3.0348393110795455, 0.0), (6.014166847826087, 12.147265227272724, 8.986512391304348, 4.9324699999999995, 2.8062778723404254, 0.0, 7.232306934032984, 11.225111489361701, 7.398705, 5.991008260869565, 3.036816306818181, 0.0), (6.022160749680308, 12.154969687500001, 8.95680171195652, 4.927942720588234, 2.7993736436170207, 0.0, 7.15700476011994, 11.197494574468083, 7.391914080882352, 5.9712011413043475, 3.0387424218750003, 0.0), (6.030014961636829, 12.16246909090909, 8.926420434782608, 4.923287058823529, 2.792281276595744, 0.0, 7.0806029985007495, 11.169125106382976, 7.384930588235295, 5.950946956521738, 3.0406172727272724, 0.0), (0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0))
passenger_allighting_rate = ((0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1), (0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1, 0, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 1))
'\nparameters for reproducibiliy. More information: https://numpy.org/doc/stable/reference/random/parallel.html\n'
entropy = 258194110137029475889902652135037600173
child_seed_index = (1, 55) |
"""
Author: <REPLACE>
Project: 100DaysPython
File: module1_day13_continueBreak.py
Creation Date: <REPLACE>
Description: <REPLACE>
"""
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed " \
"Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! " \
"Who's with me? Let's go!"
output = ""
for letter in motivation:
if letter.lower() in 'bcdfghjklmnpqrstvwxyz':
output += letter
print(output)
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed " \
"Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! " \
"Who's with me? Let's go!"
output = ""
for letter in motivation:
if letter.lower() not in 'bcdfghjklmnpqrstvwxyz':
continue
else:
output += letter
print(output)
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed " \
"Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! " \
"Who's with me? Let's go!"
output = ""
for letter in motivation:
if letter.lower() in 'abcdefghijklmnopqrstuvwxyz':
output += letter
else:
break
print(output)
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed " \
"Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! " \
"Who's with me? Let's go!"
output = ""
for letter in motivation:
if letter.lower() in 'bcdfghjklmnpqrstvwxyz':
output += letter
print(output)
| """
Author: <REPLACE>
Project: 100DaysPython
File: module1_day13_continueBreak.py
Creation Date: <REPLACE>
Description: <REPLACE>
"""
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! Who's with me? Let's go!"
output = ''
for letter in motivation:
if letter.lower() in 'bcdfghjklmnpqrstvwxyz':
output += letter
print(output)
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! Who's with me? Let's go!"
output = ''
for letter in motivation:
if letter.lower() not in 'bcdfghjklmnpqrstvwxyz':
continue
else:
output += letter
print(output)
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! Who's with me? Let's go!"
output = ''
for letter in motivation:
if letter.lower() in 'abcdefghijklmnopqrstuvwxyz':
output += letter
else:
break
print(output)
motivation = "Over? Did you say 'over'? Nothing is over until we decide it is! Was it over when the Germans bombed Pearl Harbor? Hell no! And it ain't over now. 'Cause when the goin' gets tough...the tough get goin'! Who's with me? Let's go!"
output = ''
for letter in motivation:
if letter.lower() in 'bcdfghjklmnpqrstvwxyz':
output += letter
print(output) |
# ---- simple cubic O(n^3) time complexity / constant O(1) space complexity algorithm ----
DP = {}
lines = [0]
lines.extend(sorted([int(line.strip()) for line in open('day10.txt')]))
lines.append(max(lines)+3)
def dp(i):
if i == len(lines)-1:
return 1
if i in DP:
return DP[i]
ans = 0
for j in range(i+1, len(lines)):
if lines[j] - lines[i] <= 3:
ans += dp(j)
DP[i] = ans
return ans
def solve(lines):
nums = set(lines)
ways = [0 for i in range(len(lines))]
diffs = [0, 0, 0]
cur = 0
while len(nums) > 0:
p = 0
for i in (1,2,3):
if cur+i in nums:
p += 1
nums.remove(cur+i)
diffs[i-1] += 1
cur = cur+i
break
parta = diffs[0], (diffs[2] + 1)
return sum(ways)
partb = diffs
preamble_size = 25
nums = set()
for i in range(len(lines)):
found = False
if len(nums) < preamble_size:
nums.add(int(lines[i]))
else:
for n in lines[i-25:i]:
for m in lines[i-25:i]:
n, m = int(n), int(m)
if n != m and n + m == int(lines[i]):
found = True
if not found:
return int(lines[i])
return 0
flag = [i for i in range(len(lines)) if lines[i].split()[0] in {"nop", "jmp"}]
for f in flag:
acc = 0
cpu = 0
all_inst = set()
while cpu not in all_inst:
if cpu == len(lines):
return acc
all_inst.add(cpu)
inst = lines[cpu].split()
print(inst)
if inst[0] == "nop" and cpu == f:
cpu += int(inst[1])
cpu -= 1
if inst[0] == "acc":
acc += int(inst[1])
if inst[0] == "jmp":
if cpu != f:
cpu += int(inst[1])
cpu -= 1
cpu += 1
d = dict()
for line in lines:
this_bag, other_bags = line.split(" contain ")
d[this_bag] = [bag for bag in other_bags.split(", ")]
return number_of(["shiny gold bag"], d, lines, 0)
return len(unique_colors("shiny gold bag", d, lines, set()))
if __name__ == '__main__':
# read in input (get_data() returns string)
#lines = [int(line.strip()) for line in open('day10.txt')]
#submit(sol1(i))
#submit(sol1(i), part="a", day=2, year=2020)
print(dp(0))
#submit(solve(lines))
| dp = {}
lines = [0]
lines.extend(sorted([int(line.strip()) for line in open('day10.txt')]))
lines.append(max(lines) + 3)
def dp(i):
if i == len(lines) - 1:
return 1
if i in DP:
return DP[i]
ans = 0
for j in range(i + 1, len(lines)):
if lines[j] - lines[i] <= 3:
ans += dp(j)
DP[i] = ans
return ans
def solve(lines):
nums = set(lines)
ways = [0 for i in range(len(lines))]
diffs = [0, 0, 0]
cur = 0
while len(nums) > 0:
p = 0
for i in (1, 2, 3):
if cur + i in nums:
p += 1
nums.remove(cur + i)
diffs[i - 1] += 1
cur = cur + i
break
parta = (diffs[0], diffs[2] + 1)
return sum(ways)
partb = diffs
preamble_size = 25
nums = set()
for i in range(len(lines)):
found = False
if len(nums) < preamble_size:
nums.add(int(lines[i]))
else:
for n in lines[i - 25:i]:
for m in lines[i - 25:i]:
(n, m) = (int(n), int(m))
if n != m and n + m == int(lines[i]):
found = True
if not found:
return int(lines[i])
return 0
flag = [i for i in range(len(lines)) if lines[i].split()[0] in {'nop', 'jmp'}]
for f in flag:
acc = 0
cpu = 0
all_inst = set()
while cpu not in all_inst:
if cpu == len(lines):
return acc
all_inst.add(cpu)
inst = lines[cpu].split()
print(inst)
if inst[0] == 'nop' and cpu == f:
cpu += int(inst[1])
cpu -= 1
if inst[0] == 'acc':
acc += int(inst[1])
if inst[0] == 'jmp':
if cpu != f:
cpu += int(inst[1])
cpu -= 1
cpu += 1
d = dict()
for line in lines:
(this_bag, other_bags) = line.split(' contain ')
d[this_bag] = [bag for bag in other_bags.split(', ')]
return number_of(['shiny gold bag'], d, lines, 0)
return len(unique_colors('shiny gold bag', d, lines, set()))
if __name__ == '__main__':
print(dp(0)) |
# MIT licensed
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
API_URL = 'https://crates.io/api/v1/crates/%s'
async def get_version(name, conf, *, cache, **kwargs):
name = conf.get('cratesio') or name
data = await cache.get_json(API_URL % name)
version = [v['num'] for v in data['versions'] if not v['yanked']][0]
return version
| api_url = 'https://crates.io/api/v1/crates/%s'
async def get_version(name, conf, *, cache, **kwargs):
name = conf.get('cratesio') or name
data = await cache.get_json(API_URL % name)
version = [v['num'] for v in data['versions'] if not v['yanked']][0]
return version |
{
"targets": [
{
"target_name": "multihashing",
"sources": [
"multihashing.cc",
"argon2/argon2.c",
"argon2/best.c",
"argon2/blake2b.c",
"argon2/core.c",
"argon2/encoding.c",
"argon2/thread.c",
],
"include_dirs": [
"crypto",
"<!(node -e \"require('nan')\")"
],
"cflags_cc": [
"-std=c++0x"
],
}
]
}
| {'targets': [{'target_name': 'multihashing', 'sources': ['multihashing.cc', 'argon2/argon2.c', 'argon2/best.c', 'argon2/blake2b.c', 'argon2/core.c', 'argon2/encoding.c', 'argon2/thread.c'], 'include_dirs': ['crypto', '<!(node -e "require(\'nan\')")'], 'cflags_cc': ['-std=c++0x']}]} |
#This syngas example is for testing Model Resurrection handling (recovery from solver errors)
#The parameters chosen for this example were chosen to generate solver errors
#(so this is not a good example to base an input file for a real job on)
database(
#overrides RMG thermo calculation of RMG with these values.
#libraries found at http://rmg.mit.edu/database/thermo/libraries/
#if species exist in multiple libraries, the earlier libraries overwrite the
#previous values
thermoLibraries = ['primaryThermoLibrary'],
#overrides RMG kinetics estimation if needed in the core of RMG.
#list of libraries found at http://rmg.mit.edu/database/kinetics/libraries/
#libraries can be input as either a string or tuple of form ('library_name',True/False)
#where a `True` indicates that all unused reactions will be automatically added
#to the chemkin file at the end of the simulation. Placing just string values
#defaults the tuple to `False`. The string input is sufficient in almost
#all situations
reactionLibraries = [],
#seed mechanisms are reactionLibraries that are forced into the initial mechanism
#in addition to species listed in this input file.
#This is helpful for reducing run time for species you know will appear in
#the mechanism.
seedMechanisms = [],
#this is normally not changed in general RMG runs. Usually used for testing with
#outside kinetics databases
kineticsDepositories = 'default',
#lists specific families used to generate the model. 'default' uses a list of
#families from RMG-Database/input/families/recommended.py
#a visual list of families is available in PDF form at RMG-database/families
kineticsFamilies = 'default',
#specifies how RMG calculates rates. currently, the only option is 'rate rules'
kineticsEstimator = 'rate rules',
)
# List of species
#list initial and expected species below to automatically put them into the core mechanism.
#'structure' can utilize method of SMILES("put_SMILES_here"),
#adjacencyList("""put_adj_list_here"""), or InChI("put_InChI_here")
#for molecular oxygen, use the smiles string [O][O] so the triplet form is used
species(
label='N2',
reactive=False,
structure=SMILES("N#N")
)
species(
label='CO',
reactive=True,
structure=SMILES("[C-]#[O+]")
)
species(
label='H2',
reactive=True,
structure=SMILES("[H][H]"),
)
species(
label='O2',
reactive=True,
structure=SMILES("[O][O]")
)
#Reaction systems
#currently RMG models only constant temperature and pressure as homogeneous batch reactors.
#two options are: simpleReactor for gas phase or liquidReactor for liquid phase
#use can use multiple reactors in an input file for each condition you want to test.
simpleReactor(
#specifies reaction temperature with units
temperature=(1000,'K'),
#specifies reaction pressure with units
pressure=(10.0,'bar'),
#list initial mole fractions of compounds using the label from the 'species' label.
#RMG will normalize if sum/=1
initialMoleFractions={
"CO": .6,
"H2": .4,
"O2": .5,
"N2": 0,
},
#the following two values specify when to determine the final output model
#only one must be specified
#the first condition to be satisfied will terminate the process
terminationTime=(12,'s'),
)
simpleReactor(
#specifies reaction temperature with units
temperature=(1000,'K'),
#specifies reaction pressure with units
pressure=(100.0,'bar'),
#list initial mole fractions of compounds using the label from the 'species' label.
#RMG will normalize if sum/=1
initialMoleFractions={
"CO": .6,
"H2": .4,
"O2": .5,
"N2": 0,
},
#the following two values specify when to determine the final output model
#only one must be specified
#the first condition to be satisfied will terminate the process
terminationTime=(12,'s'),
)
simpleReactor(
#specifies reaction temperature with units
temperature=(2000,'K'),
#specifies reaction pressure with units
pressure=(100.0,'bar'),
#list initial mole fractions of compounds using the label from the 'species' label.
#RMG will normalize if sum/=1
initialMoleFractions={
"CO": .6,
"H2": .4,
"O2": .5,
"N2": 0,
},
#the following two values specify when to determine the final output model
#only one must be specified
#the first condition to be satisfied will terminate the process
terminationTime=(12,'s'),
)
simpleReactor(
#specifies reaction temperature with units
temperature=(2000,'K'),
#specifies reaction pressure with units
pressure=(10.0,'bar'),
#list initial mole fractions of compounds using the label from the 'species' label.
#RMG will normalize if sum/=1
initialMoleFractions={
"CO": .6,
"H2": .4,
"O2": .5,
"N2": 0,
},
#the following two values specify when to determine the final output model
#only one must be specified
#the first condition to be satisfied will terminate the process
terminationTime=(12,'s'),
)
#1500
simpleReactor(
#specifies reaction temperature with units
temperature=(1500,'K'),
#specifies reaction pressure with units
pressure=(100.0,'bar'),
#list initial mole fractions of compounds using the label from the 'species' label.
#RMG will normalize if sum/=1
initialMoleFractions={
"CO": .6,
"H2": .4,
"O2": .5,
"N2": 0,
},
#the following two values specify when to determine the final output model
#only one must be specified
#the first condition to be satisfied will terminate the process
terminationTime=(12,'s'),
)
simpleReactor(
#specifies reaction temperature with units
temperature=(1500,'K'),
#specifies reaction pressure with units
pressure=(10.0,'bar'),
#list initial mole fractions of compounds using the label from the 'species' label.
#RMG will normalize if sum/=1
initialMoleFractions={
"CO": .6,
"H2": .4,
"O2": .5,
"N2": 0,
},
#the following two values specify when to determine the final output model
#only one must be specified
#the first condition to be satisfied will terminate the process
terminationTime=(12,'s'),
)
#determines absolute and relative tolerances for ODE solver and sensitivities.
#normally this doesn't cause many issues and is modified after other issues are
#ruled out
simulator(
atol=1e-16,
rtol=1e-8,
# sens_atol=1e-6,
# sens_rtol=1e-4,
)
#used to add species to the model and to reduce memory usage by removing unimportant additional species.
#all relative values are normalized by a characteristic flux at that time point
model(
#determines the relative flux to put a species into the core.
#A smaller value will result in a larger, more complex model
#when running a new model, it is recommended to start with higher values and then decrease to converge on the model
toleranceMoveToCore=0.01,
#comment out the next three terms to disable pruning
#determines the relative flux needed to not remove species from the model.
#Lower values will keep more species and utilize more memory
toleranceKeepInEdge=0.0,
#determines when to stop a ODE run to add a species.
#Lower values will improve speed.
#if it is too low, may never get to the end simulation to prune species.
toleranceInterruptSimulation=0.01,
#number of edge species needed to accumulate before pruning occurs
#larger values require more memory and will prune less often
maximumEdgeSpecies=100000,
#minimum number of core species needed before pruning occurs.
#this prevents pruning when kinetic model is far away from completeness
minCoreSizeForPrune=50,
#make sure that the pruned edge species have existed for a set number of RMG iterations.
#the user can specify to increase it from the default value of 2
minSpeciesExistIterationsForPrune=2,
#filter the reactions during the enlarge step to omit species from reacting if their
#concentration are deemed to be too low
filterReactions=True,
maxNumSpecies=24,
)
options(
#provides a name for the seed mechanism produced at the end of an rmg run default is 'Seed'
name='Syngas',
#if True every iteration it saves the current model as libraries/seeds
#(and deletes the old one)
#Unlike HTML this is inexpensive time-wise
#note a seed mechanism will be generated at the end of a completed run and some incomplete
#runs even if this is set as False
generateSeedEachIteration=True,
#If True the mechanism will also be saved directly as kinetics and thermo libraries in the database
saveSeedToDatabase=False,
#only option is 'si'
units='si',
#how often you want to save restart files.
#takes significant amount of time. comment out if you don't want to save
saveRestartPeriod=None,
#Draws images of species and reactions and saves the model output to HTML.
#May consume extra memory when running large models.
generateOutputHTML=True,
#generates plots of the RMG's performance statistics. Not helpful if you just want a model.
generatePlots=False,
#saves mole fraction of species in 'solver/' to help you create plots
saveSimulationProfiles=True,
#gets RMG to output comments on where kinetics were obtained in the chemkin file.
#useful for debugging kinetics but increases memory usage of the chemkin output file
verboseComments=False,
#gets RMG to generate edge species chemkin files. Uses lots of memory in output.
#Helpful for seeing why some reaction are not appearing in core model.
saveEdgeSpecies=False,
#Sets a time limit in the form DD:HH:MM:SS after which the RMG job will stop. Useful for profiling on jobs that
#do not converge.
#wallTime = '00:00:00',
keepIrreversible=False,
#Forces RMG to import library reactions as reversible (default). Otherwise, if set to True, RMG will import library
#reactions while keeping the reversibility as as.
)
# optional module allows for correction to unimolecular reaction rates at low pressures and/or temperatures.
pressureDependence(
#two methods available: 'modified strong collision' is faster and less accurate than 'reservoir state'
method='modified strong collision',
#these two categories determine how fine energy is descretized.
#more grains increases accuracy but takes longer
maximumGrainSize=(0.5,'kcal/mol'),
minimumNumberOfGrains=250,
#the conditions for the rate to be output over
#parameter order is: low_value, high_value, units, internal points
temperatures=(300,2200,'K',2),
pressures=(0.01,100.01,'bar',3),
#The two options for interpolation are 'PDepArrhenius' (no extra arguments) and
#'Chebyshev' which is followed by the number of basis sets in
#Temperature and Pressure. These values must be less than the number of
#internal points specified above
interpolation=('Chebyshev', 6, 4),
#turns off pressure dependence for molecules with number of atoms greater than the number specified below
#this is due to faster internal rate of energy transfer for larger molecules
maximumAtoms=15,
)
#optional block adds constraints on what RMG can output.
#This is helpful for improving the efficiency of RMG, but wrong inputs can lead to many errors.
generatedSpeciesConstraints(
#allows exceptions to the following restrictions
allowed=['input species','seed mechanisms','reaction libraries'],
#maximum number of each atom in a molecule
maximumCarbonAtoms=4,
maximumOxygenAtoms=6,
maximumNitrogenAtoms=0,
maximumSiliconAtoms=0,
maximumSulfurAtoms=0,
#max number of non-hydrogen atoms
#maximumHeavyAtoms=20,
#maximum radicals on a molecule
maximumRadicalElectrons=2,
#If this is false or missing, RMG will throw an error if the more less-stable form of O2 is entered
#which doesn't react in the RMG system. normally input O2 as triplet with SMILES [O][O]
#allowSingletO2=False,
# maximum allowed number of non-normal isotope atoms:
#maximumIsotopicAtoms=2,
)
| database(thermoLibraries=['primaryThermoLibrary'], reactionLibraries=[], seedMechanisms=[], kineticsDepositories='default', kineticsFamilies='default', kineticsEstimator='rate rules')
species(label='N2', reactive=False, structure=smiles('N#N'))
species(label='CO', reactive=True, structure=smiles('[C-]#[O+]'))
species(label='H2', reactive=True, structure=smiles('[H][H]'))
species(label='O2', reactive=True, structure=smiles('[O][O]'))
simple_reactor(temperature=(1000, 'K'), pressure=(10.0, 'bar'), initialMoleFractions={'CO': 0.6, 'H2': 0.4, 'O2': 0.5, 'N2': 0}, terminationTime=(12, 's'))
simple_reactor(temperature=(1000, 'K'), pressure=(100.0, 'bar'), initialMoleFractions={'CO': 0.6, 'H2': 0.4, 'O2': 0.5, 'N2': 0}, terminationTime=(12, 's'))
simple_reactor(temperature=(2000, 'K'), pressure=(100.0, 'bar'), initialMoleFractions={'CO': 0.6, 'H2': 0.4, 'O2': 0.5, 'N2': 0}, terminationTime=(12, 's'))
simple_reactor(temperature=(2000, 'K'), pressure=(10.0, 'bar'), initialMoleFractions={'CO': 0.6, 'H2': 0.4, 'O2': 0.5, 'N2': 0}, terminationTime=(12, 's'))
simple_reactor(temperature=(1500, 'K'), pressure=(100.0, 'bar'), initialMoleFractions={'CO': 0.6, 'H2': 0.4, 'O2': 0.5, 'N2': 0}, terminationTime=(12, 's'))
simple_reactor(temperature=(1500, 'K'), pressure=(10.0, 'bar'), initialMoleFractions={'CO': 0.6, 'H2': 0.4, 'O2': 0.5, 'N2': 0}, terminationTime=(12, 's'))
simulator(atol=1e-16, rtol=1e-08)
model(toleranceMoveToCore=0.01, toleranceKeepInEdge=0.0, toleranceInterruptSimulation=0.01, maximumEdgeSpecies=100000, minCoreSizeForPrune=50, minSpeciesExistIterationsForPrune=2, filterReactions=True, maxNumSpecies=24)
options(name='Syngas', generateSeedEachIteration=True, saveSeedToDatabase=False, units='si', saveRestartPeriod=None, generateOutputHTML=True, generatePlots=False, saveSimulationProfiles=True, verboseComments=False, saveEdgeSpecies=False, keepIrreversible=False)
pressure_dependence(method='modified strong collision', maximumGrainSize=(0.5, 'kcal/mol'), minimumNumberOfGrains=250, temperatures=(300, 2200, 'K', 2), pressures=(0.01, 100.01, 'bar', 3), interpolation=('Chebyshev', 6, 4), maximumAtoms=15)
generated_species_constraints(allowed=['input species', 'seed mechanisms', 'reaction libraries'], maximumCarbonAtoms=4, maximumOxygenAtoms=6, maximumNitrogenAtoms=0, maximumSiliconAtoms=0, maximumSulfurAtoms=0, maximumRadicalElectrons=2) |
__author__ = 'Hans-Werner Roitzsch'
class SeriesFileReader:
def __init__(self):
self.attribute_count = 8
def read(self, file_path):
lines = []
lines_attributes = []
with open(file_path) as opened_file:
for index, line in enumerate(opened_file):
if True:
line_parts = line.split('\t', -1)
line_parts = [elem.strip('\n') for elem in line_parts]
# print(line_parts)
if len(line_parts) == self.attribute_count:
line_attributes = {}
line_attributes['url'] = ''
line_attributes['start_date'] = ''
line_attributes['start_date_year'] = ''
line_attributes['start_date_month'] = ''
line_attributes['start_date_day'] = ''
line_attributes['name'] = ''
line_attributes['episode_count'] = ''
line_attributes['producer_url'] = ''
line_attributes['image_url'] = ''
line_attributes['summary'] = ''
if line_parts[0] != '':
line_attributes['url'] = line_parts[0].strip('<>')
if line_parts[1] != '':
line_attributes['start_date'] = line_parts[1].split('"', -1)[1]
start_date_parts = line_attributes['start_date'].split('-', -1)
line_attributes['start_date_year'] = start_date_parts[0]
line_attributes['start_date_month'] = start_date_parts[1]
line_attributes['start_date_day'] = start_date_parts[2]
if line_parts[2] != '':
line_attributes['name'] = line_parts[2].split('"', -1)[1]
if line_parts[3] != '':
line_attributes['episode_count'] = line_parts[3].split('"', -1)[1]
if line_parts[4] != '':
line_attributes['producer_url'] = line_parts[4].strip('<>')
if line_parts[6] != '':
line_attributes['image_url'] = line_parts[6].strip('<>')
if line_parts[7] != '':
# print('PART #', index, ': ', line_parts[7], sep='')
line_attributes['summary'] = line_parts[7].split('"', -1)[1]
lines_attributes.append(line_attributes)
else:
pass # ignore the incomplete lines
return lines_attributes
| __author__ = 'Hans-Werner Roitzsch'
class Seriesfilereader:
def __init__(self):
self.attribute_count = 8
def read(self, file_path):
lines = []
lines_attributes = []
with open(file_path) as opened_file:
for (index, line) in enumerate(opened_file):
if True:
line_parts = line.split('\t', -1)
line_parts = [elem.strip('\n') for elem in line_parts]
if len(line_parts) == self.attribute_count:
line_attributes = {}
line_attributes['url'] = ''
line_attributes['start_date'] = ''
line_attributes['start_date_year'] = ''
line_attributes['start_date_month'] = ''
line_attributes['start_date_day'] = ''
line_attributes['name'] = ''
line_attributes['episode_count'] = ''
line_attributes['producer_url'] = ''
line_attributes['image_url'] = ''
line_attributes['summary'] = ''
if line_parts[0] != '':
line_attributes['url'] = line_parts[0].strip('<>')
if line_parts[1] != '':
line_attributes['start_date'] = line_parts[1].split('"', -1)[1]
start_date_parts = line_attributes['start_date'].split('-', -1)
line_attributes['start_date_year'] = start_date_parts[0]
line_attributes['start_date_month'] = start_date_parts[1]
line_attributes['start_date_day'] = start_date_parts[2]
if line_parts[2] != '':
line_attributes['name'] = line_parts[2].split('"', -1)[1]
if line_parts[3] != '':
line_attributes['episode_count'] = line_parts[3].split('"', -1)[1]
if line_parts[4] != '':
line_attributes['producer_url'] = line_parts[4].strip('<>')
if line_parts[6] != '':
line_attributes['image_url'] = line_parts[6].strip('<>')
if line_parts[7] != '':
line_attributes['summary'] = line_parts[7].split('"', -1)[1]
lines_attributes.append(line_attributes)
else:
pass
return lines_attributes |
# Copyright 2016 HP Development Company, L.P.
# SPDX-License-Identifier: MIT
#
""" A module for the hippy error types.
"""
class PySproutError(Exception):
""" A PySproutError is raised if there is an error communicating with
SoHal, or if SoHal responds to a request with an error message.
"""
def __init__(self, code, data, message):
super(PySproutError, self).__init__()
self.code = code
self.data = data
self.message = message
def __str__(self):
return self.message + " (" + self.data + ")"
| """ A module for the hippy error types.
"""
class Pysprouterror(Exception):
""" A PySproutError is raised if there is an error communicating with
SoHal, or if SoHal responds to a request with an error message.
"""
def __init__(self, code, data, message):
super(PySproutError, self).__init__()
self.code = code
self.data = data
self.message = message
def __str__(self):
return self.message + ' (' + self.data + ')' |
# LTD simulation models / perturbances
# Attribute name case sensitive.
# Commented and empty lines are ignored
# Double quoted variable names in sysPert parameters ignored
# Perturbances
mirror.sysPerturbances = [
'gen 5 : step Pm 2 -50 rel',
]
mirror.govDelay ={
'delaygen1' : {
'genBus' : 1,
'genId' : None, # optional
'wDelay' : (0,0),
'PrefDelay' : (0, 0),
},
#end of defined governor delays
}
mirror.sysBA = {
'BA1':{
'Area':1,
'B': "1.0 : perload", # MW/0.1 Hz
'AGCActionTime': 5.00, # seconds
'ACEgain' : 0.0,#2.0,
'AGCType':'TLB : 0', # Tie-Line Bias
'UseAreaDroop' : False,
'AreaDroop' : 0.05,
'IncludeIACE' : True,
'IACEconditional': False,
'IACEwindow' : 15, # seconds - size of window - 0 for non window
'IACEscale' : 1/5,
'IACEdeadband' : 0, # Hz
'ACEFiltering': 'PI : 0.04 0.0001',
'AGCDeadband' : None, # MW? -> not implemented
'GovDeadbandType' : 'none', # step, None, ramp, nldroop
'GovDeadband' : .036, # Hz
'GovAlpha' : 0.016, # Hz - for nldroop
'GovBeta' : 0.036, # Hz - for nldroop
'CtrlGens': ['gen 1 : 1 : rampA']
},
'BA2':{
'Area':2,
'B': "1.0 : perload", # MW/0.1 Hz
'AGCActionTime': 5.00, # seconds
'ACEgain' : 0.0,#2.0,
'AGCType':'TLB : 0', # Tie-Line Bias
'UseAreaDroop' : False,
'AreaDroop' : 0.05,
'IncludeIACE' : True,
'IACEconditional': False,
'IACEwindow' : 15, # seconds - size of window - 0 for non window
'IACEscale' : 1/5,
'IACEdeadband' : 0, # Hz
'ACEFiltering': 'PI : 0.04 0.0001',
'AGCDeadband' : None, # MW? -> not implemented
'GovDeadbandType' : 'none', # step, None, ramp, nldroop
'GovDeadband' : .036, # Hz
'GovAlpha' : 0.016, # Hz - for nldroop
'GovBeta' : 0.036, # Hz - for nldroop
'CtrlGens': ['gen 3 : 1.0 : rampA',]
},
}
| mirror.sysPerturbances = ['gen 5 : step Pm 2 -50 rel']
mirror.govDelay = {'delaygen1': {'genBus': 1, 'genId': None, 'wDelay': (0, 0), 'PrefDelay': (0, 0)}}
mirror.sysBA = {'BA1': {'Area': 1, 'B': '1.0 : perload', 'AGCActionTime': 5.0, 'ACEgain': 0.0, 'AGCType': 'TLB : 0', 'UseAreaDroop': False, 'AreaDroop': 0.05, 'IncludeIACE': True, 'IACEconditional': False, 'IACEwindow': 15, 'IACEscale': 1 / 5, 'IACEdeadband': 0, 'ACEFiltering': 'PI : 0.04 0.0001', 'AGCDeadband': None, 'GovDeadbandType': 'none', 'GovDeadband': 0.036, 'GovAlpha': 0.016, 'GovBeta': 0.036, 'CtrlGens': ['gen 1 : 1 : rampA']}, 'BA2': {'Area': 2, 'B': '1.0 : perload', 'AGCActionTime': 5.0, 'ACEgain': 0.0, 'AGCType': 'TLB : 0', 'UseAreaDroop': False, 'AreaDroop': 0.05, 'IncludeIACE': True, 'IACEconditional': False, 'IACEwindow': 15, 'IACEscale': 1 / 5, 'IACEdeadband': 0, 'ACEFiltering': 'PI : 0.04 0.0001', 'AGCDeadband': None, 'GovDeadbandType': 'none', 'GovDeadband': 0.036, 'GovAlpha': 0.016, 'GovBeta': 0.036, 'CtrlGens': ['gen 3 : 1.0 : rampA']}} |
class ResponseText:
MESSAGE_REGISTER_USER = "User created successfully."
MESSAGE_USER_PASSWORD_REQUIRED = "Username and password are required fields"
DESCRIPTION_AUTH = "Invalid credentials"
DESCRIPTION_AUTH_ERROR = "Request does not contain an access token"
ERROR_AUTH = "Bad Request"
ERROR_AUTH_TEXT = "Authorization Required"
MESSAGE_ADD_USER_INFO = "User info created successfully."
MESSAGE_UPDATE_USER_INFO = "User info updated successfully."
MESSAGE_USER_NOT_FOUND = "User not found"
MESSAGE_INFO_NOT_FOUND = "User info not found"
MESSAGE_INFO_NOT_FOUND_DOT = "User info not found."
MESSAGE_DELETE_USER_INFO = "User info deleted."
MESSAGE_STORE_EXIST = "A store with name '{}' already exists."
MESSAGE_STORE_NOT_FOUND = "Store not found"
| class Responsetext:
message_register_user = 'User created successfully.'
message_user_password_required = 'Username and password are required fields'
description_auth = 'Invalid credentials'
description_auth_error = 'Request does not contain an access token'
error_auth = 'Bad Request'
error_auth_text = 'Authorization Required'
message_add_user_info = 'User info created successfully.'
message_update_user_info = 'User info updated successfully.'
message_user_not_found = 'User not found'
message_info_not_found = 'User info not found'
message_info_not_found_dot = 'User info not found.'
message_delete_user_info = 'User info deleted.'
message_store_exist = "A store with name '{}' already exists."
message_store_not_found = 'Store not found' |
print("2)")
T = (0.1, 0.1)
x = 0.0
for i in range(len(T)):
for j in T:
x += i + j
print(x)
print(i)
print()
'''
2) 0.1
0.2
1.3
2.4
'''
print("3)")
def f(s):
print("current s:",s)
if len(s) <= 1:
print("return:",s)
return s
return f(f(s[1:])) + s[0] #Note double recursion
print(f('math'))
print()
'''
3) >> atm
>> hatm
'''
print("4)")
"""assumes: wordList is a list of words in lowercase.
lStr is a str of lowercase letters.
No letter occurs in lStr more than once
returns: a list of all the words in wordList that contain
each of the letters in lStr exactly once and no
letters not in lStr."""
def findAll(wordList, lStr):
result = []
letters = sorted(letters)
for w in wordList:
w = sorted(w)
if w == letters:
result.append(w)
return result
print()
print("5)")
def f(s, d):
for k in d.keys():
d[k] = 0
for c in s:
if c in d:
d[c] += 1
else: d[c] = 0
return d
def addUp(d):
result = 0
for k in d:
result += d[k]
return result
'''
d1 = {}
d2 = d1 #reference
d1 = f('abbc',d1) > { a: 0, b: 1, c:0}
print addUp(d1) > 1
d2 = f('bbcaa', d2) > {a: 2, b: 2, c:1 }
print addUp(d2) > 5
print f(' ', {}) > {" ": 0}
print result > None
'''
d1 = {}
d2 = d1
d1 = f('abbc', d1)
print(addUp(d1))
d2 = f('bbcaa', d2)
print(addUp(d2))
print(f('', {}))
# print(result)
print("6)")
| print('2)')
t = (0.1, 0.1)
x = 0.0
for i in range(len(T)):
for j in T:
x += i + j
print(x)
print(i)
print()
'\n2) 0.1\n 0.2\n 1.3\n 2.4\n'
print('3)')
def f(s):
print('current s:', s)
if len(s) <= 1:
print('return:', s)
return s
return f(f(s[1:])) + s[0]
print(f('math'))
print()
'\n3) >> atm\n >> hatm\n'
print('4)')
'assumes: wordList is a list of words in lowercase.\nlStr is a str of lowercase letters.\nNo letter occurs in lStr more than once\nreturns: a list of all the words in wordList that contain\neach of the letters in lStr exactly once and no\nletters not in lStr.'
def find_all(wordList, lStr):
result = []
letters = sorted(letters)
for w in wordList:
w = sorted(w)
if w == letters:
result.append(w)
return result
print()
print('5)')
def f(s, d):
for k in d.keys():
d[k] = 0
for c in s:
if c in d:
d[c] += 1
else:
d[c] = 0
return d
def add_up(d):
result = 0
for k in d:
result += d[k]
return result
'\nd1 = {}\nd2 = d1 #reference\nd1 = f(\'abbc\',d1) > { a: 0, b: 1, c:0}\nprint addUp(d1) > 1\nd2 = f(\'bbcaa\', d2) > {a: 2, b: 2, c:1 }\nprint addUp(d2) > 5\nprint f(\' \', {}) > {" ": 0}\nprint result > None\n\n'
d1 = {}
d2 = d1
d1 = f('abbc', d1)
print(add_up(d1))
d2 = f('bbcaa', d2)
print(add_up(d2))
print(f('', {}))
print('6)') |
class ConnectorJointType(Enum,IComparable,IFormattable,IConvertible):
"""
Enum of connector joint type
enum ConnectorJointType,values: Flanged (1),Glued (5),Grooved (4),Soldered (6),Threaded (3),Undefined (0),Welded (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
Flanged=None
Glued=None
Grooved=None
Soldered=None
Threaded=None
Undefined=None
value__=None
Welded=None
| class Connectorjointtype(Enum, IComparable, IFormattable, IConvertible):
"""
Enum of connector joint type
enum ConnectorJointType,values: Flanged (1),Glued (5),Grooved (4),Soldered (6),Threaded (3),Undefined (0),Welded (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
flanged = None
glued = None
grooved = None
soldered = None
threaded = None
undefined = None
value__ = None
welded = None |
'''https://leetcode.com/problems/first-missing-positive/
41. First Missing Positive
Hard
7625
1170
Add to List
Share
Given an unsorted integer array nums, return the smallest missing positive integer.
You must implement an algorithm that runs in O(n) time and uses constant extra space.
Example 1:
Input: nums = [1,2,0]
Output: 3
Example 2:
Input: nums = [3,4,-1,1]
Output: 2
Example 3:
Input: nums = [7,8,9,11,12]
Output: 1
Constraints:
1 <= nums.length <= 5 * 105
-231 <= nums[i] <= 231 - 1'''
class Solution:
def firstMissingPositive(self, nums: List[int]) -> int:
i = 0
n = len(nums)
while (i < n):
correct = nums[i] - 1
if (nums[i] > 0 and nums[i] <= n and nums[i] != nums[correct]):
nums[i], nums[correct] = nums[correct], nums[i]
else:
i += 1
for index in range(n):
if (nums[index] != index+1):
return index+1
return n+1
| """https://leetcode.com/problems/first-missing-positive/
41. First Missing Positive
Hard
7625
1170
Add to List
Share
Given an unsorted integer array nums, return the smallest missing positive integer.
You must implement an algorithm that runs in O(n) time and uses constant extra space.
Example 1:
Input: nums = [1,2,0]
Output: 3
Example 2:
Input: nums = [3,4,-1,1]
Output: 2
Example 3:
Input: nums = [7,8,9,11,12]
Output: 1
Constraints:
1 <= nums.length <= 5 * 105
-231 <= nums[i] <= 231 - 1"""
class Solution:
def first_missing_positive(self, nums: List[int]) -> int:
i = 0
n = len(nums)
while i < n:
correct = nums[i] - 1
if nums[i] > 0 and nums[i] <= n and (nums[i] != nums[correct]):
(nums[i], nums[correct]) = (nums[correct], nums[i])
else:
i += 1
for index in range(n):
if nums[index] != index + 1:
return index + 1
return n + 1 |
print("selamat datang di aplikasi kalkulator full edition ")
print("silahkan pilih")
def tambah(a,b): #def pada disamping digunakan untuk membuat suatu fungsi untuk operasi matematika #
return a+b
def kurang(a,b): #yang dimana fungsi return itu adalah tetap walaupun variable diubah#
return a-b
def kali(a,b):
return a*b
def pangkat(a,b):
return a**b
def bagi(a,b):
return a/b
def mod(a,b):
return a%b
def factorial(a):
hasil=1
for i in range(1,a+1):
hasil=hasil*i
return hasil
def hitungpersegipanjang(p,l):
return p*l
def hitungsegitiga(a,t):
return 1/2*a*t
def hitungtrapesium(a,b,t):
return 1/2*(a+b)*t
def hitungpersegi(s):
return s*s
def menu():
print("1. tambah")
print("2. KURANG")
print("3. KALI")
print("4. PANGKAT")
print("5. BAGI")
print("6. mod") #menu() bertujuan untuk menampilkan menu yang sudah ada di dalam fungsi tersebut#
print("7. factorial")
print("8. hitung luas")
print("0. keluar")
menu()
pilihan="" #sebuah string kosong agar dikenali ole perintah while#
while pilihan !=0: #apabila pilihan nya bukan angka 0 maka program akan terus berulang sampai pilih angka 0 baru berhenti#
pilihan=int(input("silahkan masukkan pilihan : "))
if pilihan==1:
angka1=float(input("masukkan angka pertama : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"+",angka2,"=",tambah(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==2: #Input ada adalam if masing masing agar pilihan tersebut tidak bercampur aduk contoh faktorial#
angka1=float(input("masukkan angka : ")) #hanya membutuhkan satu buah input saja jika kita tidak memasukkan input dalam if maka semua inputnya jadi 2#
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"-",angka2,"=",kurang(angka1,angka2)) #tujuan dari input float adalah agar bisa menghitung operasi matematika yang berbentuk koma#
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==3:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"x",angka2,"=",kali(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==4:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"^",angka2,"=",pangkat(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==5:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"/",angka2,"=",bagi(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==6:
angka1=float(input("masukkan angka : "))
angka2=float(input("masukkan angka sekali lagi : "))
print(angka1,"%",angka2,"=",mod(angka1,angka2))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==7:
angka1=int(input("masukkan satu angka : "))
print(angka1,"!","=",factorial(angka1))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==8:
print("1.luas persegi panjang")
print("2.luas segitiga")
print("3.luas trapesium")
print("4.luas persegi")
choice=int(input("silahkan pilih : "))
if choice==1:
panjang=float(input("masukkan panjang : "))
lebar=float(input("masukkan lebar : "))
print(panjang,"*",lebar,"=",hitungpersegipanjang(panjang,lebar))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif choice==2:
alas=float(input("masukkan nilai alas : "))
tinggi=float(input("masukkan nilai tinggi : "))
print("1/2*",alas,"*",tinggi,"=",hitungsegitiga(alas,tinggi))
print("luas nya adalah = ",hitungsegitiga(alas,tinggi))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif choice==3:
sisiAtas=float(input("masukkan nilai sisi atas : "))
sisiBawah=float(input("masukkan nilai sisi bawah : "))
tinggi=float(input("masukkan nilai tinggi : "))
print("1/2*(",sisiAtas,"+",sisiBawah,")","*",tinggi,"=",hitungtrapesium(sisiAtas,sisiBawah,tinggi))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif choice==4:
sisi=float(input("masukkan nilai sisinya : "))
print(sisi,"*",sisi,"=",hitungpersegi(sisi))
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
else:
print("maaf tidak ad menu tersebut")
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
elif pilihan==0:
print("Jangan lupa beri rating ya")
else:
print("maaf tidak ad menu tersebut")
print("selamat datang di aplikasi kalkulator full edition")
print("silahkan pilih")
menu()
| print('selamat datang di aplikasi kalkulator full edition ')
print('silahkan pilih')
def tambah(a, b):
return a + b
def kurang(a, b):
return a - b
def kali(a, b):
return a * b
def pangkat(a, b):
return a ** b
def bagi(a, b):
return a / b
def mod(a, b):
return a % b
def factorial(a):
hasil = 1
for i in range(1, a + 1):
hasil = hasil * i
return hasil
def hitungpersegipanjang(p, l):
return p * l
def hitungsegitiga(a, t):
return 1 / 2 * a * t
def hitungtrapesium(a, b, t):
return 1 / 2 * (a + b) * t
def hitungpersegi(s):
return s * s
def menu():
print('1. tambah')
print('2. KURANG')
print('3. KALI')
print('4. PANGKAT')
print('5. BAGI')
print('6. mod')
print('7. factorial')
print('8. hitung luas')
print('0. keluar')
menu()
pilihan = ''
while pilihan != 0:
pilihan = int(input('silahkan masukkan pilihan : '))
if pilihan == 1:
angka1 = float(input('masukkan angka pertama : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '+', angka2, '=', tambah(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 2:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '-', angka2, '=', kurang(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 3:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, 'x', angka2, '=', kali(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 4:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '^', angka2, '=', pangkat(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 5:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '/', angka2, '=', bagi(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 6:
angka1 = float(input('masukkan angka : '))
angka2 = float(input('masukkan angka sekali lagi : '))
print(angka1, '%', angka2, '=', mod(angka1, angka2))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 7:
angka1 = int(input('masukkan satu angka : '))
print(angka1, '!', '=', factorial(angka1))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 8:
print('1.luas persegi panjang')
print('2.luas segitiga')
print('3.luas trapesium')
print('4.luas persegi')
choice = int(input('silahkan pilih : '))
if choice == 1:
panjang = float(input('masukkan panjang : '))
lebar = float(input('masukkan lebar : '))
print(panjang, '*', lebar, '=', hitungpersegipanjang(panjang, lebar))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif choice == 2:
alas = float(input('masukkan nilai alas : '))
tinggi = float(input('masukkan nilai tinggi : '))
print('1/2*', alas, '*', tinggi, '=', hitungsegitiga(alas, tinggi))
print('luas nya adalah = ', hitungsegitiga(alas, tinggi))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif choice == 3:
sisi_atas = float(input('masukkan nilai sisi atas : '))
sisi_bawah = float(input('masukkan nilai sisi bawah : '))
tinggi = float(input('masukkan nilai tinggi : '))
print('1/2*(', sisiAtas, '+', sisiBawah, ')', '*', tinggi, '=', hitungtrapesium(sisiAtas, sisiBawah, tinggi))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif choice == 4:
sisi = float(input('masukkan nilai sisinya : '))
print(sisi, '*', sisi, '=', hitungpersegi(sisi))
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
else:
print('maaf tidak ad menu tersebut')
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu()
elif pilihan == 0:
print('Jangan lupa beri rating ya')
else:
print('maaf tidak ad menu tersebut')
print('selamat datang di aplikasi kalkulator full edition')
print('silahkan pilih')
menu() |
"""
Datos de salida
contador-->range (97,1003)
"""
contador=0
for i in range(97,1003):
if(i%2==0):
contador=contador+i
print(contador) | """
Datos de salida
contador-->range (97,1003)
"""
contador = 0
for i in range(97, 1003):
if i % 2 == 0:
contador = contador + i
print(contador) |
class Solution:
def getStrongest(self, arr: List[int], k: int) -> List[int]:
arr.sort()
n = len(arr)
m = n//2
if n%2==0:
m -= 1
result = []
left, right = 0, n-1
for i in range(k):
if arr[m] - arr[left] > arr[right] - arr[m]:
result.append(arr[left])
left += 1
else:
result.append(arr[right])
right -= 1
return result
| class Solution:
def get_strongest(self, arr: List[int], k: int) -> List[int]:
arr.sort()
n = len(arr)
m = n // 2
if n % 2 == 0:
m -= 1
result = []
(left, right) = (0, n - 1)
for i in range(k):
if arr[m] - arr[left] > arr[right] - arr[m]:
result.append(arr[left])
left += 1
else:
result.append(arr[right])
right -= 1
return result |
# This is a convenience function that can generate simple bar graph
# 'title' is the Title of the graph (Just for visuals)
# 'dataTitles' is a list of the titles of the individual data rows
# 'data' should be a List of Tuples
# Each tuple should contain as element 0 the main axis (Timestamp usually)
# All other elements should contain the values to graph
# Result is a massive string returned that can be dumped to a file
def MakeChart(name, titles, dataTitles, data):
color = ("red", "blue", "purple")
chart = ""
# chart += """<html>
# <head>
# <script src="https://cdn.jsdelivr.net/npm/chart.js@3.5.0"></script>
# <script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>
# <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@1.1.1"></script>
# <title>%s</title>
# </head>
# <body>"""
chart += """
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.5.0"></script>
<script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@1.1.1"></script>
<canvas id="%s"></canvas>
<script>
%s_chartData = {
datasets: [
""" % (name, name)
dataSets = list()
# Skip element 0 because that's the x-Axis
for element in range(1, len(data[0])):
d = """{ type: 'bar',
label: '%s',
showLine: true,
cubicInterpolationMode: 'default',
tension: 0.2,
radius: 0,
data: [""" % dataTitles[element-1]
dataElements = map(lambda x : "{x: '%s', y: %s}" % (x[0], x[element]), data)
d += ','.join(dataElements)
d += """],
borderColor: '%s',
backgroundColor: '%s'
}""" % (color[element-1], color[element-1])
dataSets.append(d)
chart += ','.join(dataSets)
chart += """ ] };
const %s_config = {
type: "bar",
data: %s_chartData,
options: {
parsing: false,
interaction: {
mode: 'x',
axis: 'x',
intersect: false
}
} };
var %s = new Chart(
document.getElementById('%s'),
%s_config
);
</script>""" % (name, name, name, name, name)
# chart += """
# </body>
# </html>"""
return chart
def MakeBWChart(name, titles, dataTitles, data):
color = ("rgba(0,0,255,0.5)" , "purple","rgba(255,0,0,0.5)", "orange")
chart = ""
chart += """
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.5.0"></script>
<script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@1.1.1"></script>
<canvas id="%s"></canvas>
<script>
%s_chartData = {
labels: [""" % (name, name)
dataElements = map(lambda x : "'%s'" % x[0], data)
chart += ','.join(dataElements)
chart += """
],
datasets: [
"""
dataSets = list()
for N in range(0, int((len(data[0]) - 1) / 3)):
element = (N *3) +1
# Skip element 0 because that's the x-Axis
d = """{ type: 'bar',
yAxisID: 'SLOPE',
label: '%s',
data: [""" % dataTitles[2*N]
dataElements = map(lambda x : "[%s, %s]" % (round(x[element],3), round(x[element+1],3)), data)
d += ','.join(dataElements)
d += """],
borderColor: '%s',
backgroundColor: '%s'
}""" % (color[2*N], color[2*N])
dataSets.append(d)
d = """
{ type: 'line',
yAxisID: 'SLOPE',
label: '%s',
data:[""" %dataTitles[2*N +1]
dataElements = map(lambda x : "%s" % (round(x[element +2],3)), data)
d += ','.join(dataElements)
d += """],
borderColor: '%s',
backgroundColor: '%s'
}""" % (color[2*N+1], color[2*N+1])
dataSets.append(d)
chart += ','.join(dataSets)
chart += """ ] };
const %s_config = {
type: "bar",
data: %s_chartData,
options: {
scales: {
'SLOPE': {
position: 'left',
beginAtZero: false
}
}
}
};
var %s_myChart = new Chart(
document.getElementById('%s'),
%s_config
);
</script>""" % (name, name, name, name, name)
# chart += """
# </body>
# </html>"""
return chart
| def make_chart(name, titles, dataTitles, data):
color = ('red', 'blue', 'purple')
chart = ''
chart += '\n <script src="https://cdn.jsdelivr.net/npm/chart.js@3.5.0"></script>\n <script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>\n <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@1.1.1"></script>\n <canvas id="%s"></canvas>\n <script>\n %s_chartData = {\n datasets: [\n ' % (name, name)
data_sets = list()
for element in range(1, len(data[0])):
d = "{ type: 'bar',\n label: '%s', \n showLine: true,\n cubicInterpolationMode: 'default',\n tension: 0.2,\n radius: 0,\n data: [" % dataTitles[element - 1]
data_elements = map(lambda x: "{x: '%s', y: %s}" % (x[0], x[element]), data)
d += ','.join(dataElements)
d += "],\n borderColor: '%s',\n backgroundColor: '%s'\n }" % (color[element - 1], color[element - 1])
dataSets.append(d)
chart += ','.join(dataSets)
chart += ' ] };\n const %s_config = {\n type: "bar",\n data: %s_chartData,\n options: {\n parsing: false,\n interaction: {\n mode: \'x\',\n axis: \'x\',\n intersect: false\n }\n } };\n var %s = new Chart(\n document.getElementById(\'%s\'),\n %s_config\n );\n </script>' % (name, name, name, name, name)
return chart
def make_bw_chart(name, titles, dataTitles, data):
color = ('rgba(0,0,255,0.5)', 'purple', 'rgba(255,0,0,0.5)', 'orange')
chart = ''
chart += '\n <script src="https://cdn.jsdelivr.net/npm/chart.js@3.5.0"></script>\n <script src="https://cdn.jsdelivr.net/npm/hammerjs@2.0.8"></script>\n <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-zoom@1.1.1"></script>\n <canvas id="%s"></canvas>\n <script>\n %s_chartData = {\n labels: [' % (name, name)
data_elements = map(lambda x: "'%s'" % x[0], data)
chart += ','.join(dataElements)
chart += '\n ],\n datasets: [\n '
data_sets = list()
for n in range(0, int((len(data[0]) - 1) / 3)):
element = N * 3 + 1
d = "{ type: 'bar',\n yAxisID: 'SLOPE',\n label: '%s', \n data: [" % dataTitles[2 * N]
data_elements = map(lambda x: '[%s, %s]' % (round(x[element], 3), round(x[element + 1], 3)), data)
d += ','.join(dataElements)
d += "],\n borderColor: '%s',\n backgroundColor: '%s'\n }" % (color[2 * N], color[2 * N])
dataSets.append(d)
d = " \n { type: 'line',\n yAxisID: 'SLOPE',\n label: '%s',\n data:[" % dataTitles[2 * N + 1]
data_elements = map(lambda x: '%s' % round(x[element + 2], 3), data)
d += ','.join(dataElements)
d += "],\n borderColor: '%s',\n backgroundColor: '%s'\n }" % (color[2 * N + 1], color[2 * N + 1])
dataSets.append(d)
chart += ','.join(dataSets)
chart += ' ] };\n const %s_config = {\n type: "bar",\n data: %s_chartData,\n options: {\n scales: {\n \'SLOPE\': {\n position: \'left\',\n beginAtZero: false\n }\n }\n }\n };\n var %s_myChart = new Chart(\n document.getElementById(\'%s\'),\n %s_config\n );\n </script>' % (name, name, name, name, name)
return chart |
"""
Write a program to calculate X^y.
"""
x = int(input("Enter the value of X: "))
y = int(input("Enter the value of Y: "))
print(pow(x, y)) | """
Write a program to calculate X^y.
"""
x = int(input('Enter the value of X: '))
y = int(input('Enter the value of Y: '))
print(pow(x, y)) |
class Tab:
def __init__(self, tosh, prompt_key_bindings=False):
self._tosh = tosh
self.title = 'Tab'
self.layout = None
self.prompt_key_bindings = prompt_key_bindings
def close(self):
self._tosh.window.close_tab(self)
| class Tab:
def __init__(self, tosh, prompt_key_bindings=False):
self._tosh = tosh
self.title = 'Tab'
self.layout = None
self.prompt_key_bindings = prompt_key_bindings
def close(self):
self._tosh.window.close_tab(self) |
name= input("Enter file:")
handle= open(name)
counts= dict()
for line in handle:
words= line.split()
for word in words:
counts[word]= counts.get(word,0) + 1
bigcount= None
bigword= None
for word,count in counts.items():
if bigcount is None or count>bigcount:
bigword= word
bigcount= count
print(bigword, bigcount)
| name = input('Enter file:')
handle = open(name)
counts = dict()
for line in handle:
words = line.split()
for word in words:
counts[word] = counts.get(word, 0) + 1
bigcount = None
bigword = None
for (word, count) in counts.items():
if bigcount is None or count > bigcount:
bigword = word
bigcount = count
print(bigword, bigcount) |
""" mocks """
EMAIL_POST = {
"subject": "unit test",
"to": [{
"email": "recipient@sf.gov",
"name": "recipient"
}],
"from": {
"email": "sender@sf.gov",
"name": "sender"
},
"content": [{
"type": "text/plain",
"value": "Hello world!"
}],
"attachments": [{
"content": "YmFzZTY0IHN0cmluZw==",
"filename": "file1.txt",
"type": "text/plain"
},{
"filename": "test.pdf",
"path": "https://www.sf.gov/test.pdf",
"type": "application/pdf",
"headers": {
"api-key": "123ABC"
}
}],
"cc": [{
"email": "cc-recipient@sf.gov",
"name": "cc-recipient"
}],
"bcc": [{
"email": "bcc-recipient@sf.gov",
"name": "bcc-recipient"
}],
"custom_args": {
"foo": "bar",
"hello": "world"
},
"asm": {
"group_id": 1,
"groups_to_display": [1, 2]
}
}
TEMPLATE_PARAMS = {
"url": "",
"replacements": {
"what_knights_say": "ni"
}
}
EMAIL_HTML = "<h1>Knights that say {{ what_knights_say }}!</h1>"
UTC_DATETIME_STRING = "2021-09-30T20:56:58.000Z"
PACIFIC_DATETIME_STRING = "Sep 30, 2021 1:56:58 PM"
TEAM_MEMBERS = {
"": False,
"agent": True,
"engineer": False,
"architect": False,
"contractor": False,
"authorized agent": False,
"AUTHORIZED AGENT-OTHERS": False,
"agentWithPowerOfAttorney": False
}
UPLOADS = [
{
"acl": "private",
"key": "formio-live/fake_file-3a3144b5-1050-4ceb-8bdc.pdf",
"url": "https://foo.s3.amazonaws.com/fake_file-3a3144b5-1050-4ceb-8bdc.pdf",
"name": "fake_file-3a3144b5-1050-4ceb-8bdc.pdf",
"size": 13264,
"type": "application/pdf",
"bucket": "bucket",
"storage": "s3",
"originalName": "fake_file.pdf"
},
{
"acl": "private",
"key": "formio-live/fake_file-3a3144b5-1050-4ceb-8bdc2.pdf",
"url": "https://foo.s3.amazonaws.com/fake_file-3a3144b5-1050-4ceb-8bdc2.pdf",
"name": "fake_file-3a3144b5-1050-4ceb-8bdc2.pdf",
"size": 13264,
"type": "application/pdf",
"bucket": "bucket",
"storage": "s3",
"originalName": "fake_file2.pdf"
}
]
| """ mocks """
email_post = {'subject': 'unit test', 'to': [{'email': 'recipient@sf.gov', 'name': 'recipient'}], 'from': {'email': 'sender@sf.gov', 'name': 'sender'}, 'content': [{'type': 'text/plain', 'value': 'Hello world!'}], 'attachments': [{'content': 'YmFzZTY0IHN0cmluZw==', 'filename': 'file1.txt', 'type': 'text/plain'}, {'filename': 'test.pdf', 'path': 'https://www.sf.gov/test.pdf', 'type': 'application/pdf', 'headers': {'api-key': '123ABC'}}], 'cc': [{'email': 'cc-recipient@sf.gov', 'name': 'cc-recipient'}], 'bcc': [{'email': 'bcc-recipient@sf.gov', 'name': 'bcc-recipient'}], 'custom_args': {'foo': 'bar', 'hello': 'world'}, 'asm': {'group_id': 1, 'groups_to_display': [1, 2]}}
template_params = {'url': '', 'replacements': {'what_knights_say': 'ni'}}
email_html = '<h1>Knights that say {{ what_knights_say }}!</h1>'
utc_datetime_string = '2021-09-30T20:56:58.000Z'
pacific_datetime_string = 'Sep 30, 2021 1:56:58 PM'
team_members = {'': False, 'agent': True, 'engineer': False, 'architect': False, 'contractor': False, 'authorized agent': False, 'AUTHORIZED AGENT-OTHERS': False, 'agentWithPowerOfAttorney': False}
uploads = [{'acl': 'private', 'key': 'formio-live/fake_file-3a3144b5-1050-4ceb-8bdc.pdf', 'url': 'https://foo.s3.amazonaws.com/fake_file-3a3144b5-1050-4ceb-8bdc.pdf', 'name': 'fake_file-3a3144b5-1050-4ceb-8bdc.pdf', 'size': 13264, 'type': 'application/pdf', 'bucket': 'bucket', 'storage': 's3', 'originalName': 'fake_file.pdf'}, {'acl': 'private', 'key': 'formio-live/fake_file-3a3144b5-1050-4ceb-8bdc2.pdf', 'url': 'https://foo.s3.amazonaws.com/fake_file-3a3144b5-1050-4ceb-8bdc2.pdf', 'name': 'fake_file-3a3144b5-1050-4ceb-8bdc2.pdf', 'size': 13264, 'type': 'application/pdf', 'bucket': 'bucket', 'storage': 's3', 'originalName': 'fake_file2.pdf'}] |
theme_colors = {
'header': '#015249',
'cell_color':'#535353',
'table_header_color':'#A5A5AF',
'table_background_color_odd':'#e4e4e7',
'grand_total':'#0074D9',
'text':'#535353'
} | theme_colors = {'header': '#015249', 'cell_color': '#535353', 'table_header_color': '#A5A5AF', 'table_background_color_odd': '#e4e4e7', 'grand_total': '#0074D9', 'text': '#535353'} |
def recursive_multiply(a, b):
A = max(a, b)
B = min(a, b)
return helper_recursive_multiply(A, B)
def helper_recursive_multiply(a, b):
if b == 1:
return a
if b == 0:
return 0
half_b = int(b >> 1)
if b > half_b + half_b: # odd b. shifting with truncation eliminates a 1
return a + helper_recursive_multiply(a << 1, half_b) # odd case
else:
return helper_recursive_multiply(a << 1, half_b) # even case
| def recursive_multiply(a, b):
a = max(a, b)
b = min(a, b)
return helper_recursive_multiply(A, B)
def helper_recursive_multiply(a, b):
if b == 1:
return a
if b == 0:
return 0
half_b = int(b >> 1)
if b > half_b + half_b:
return a + helper_recursive_multiply(a << 1, half_b)
else:
return helper_recursive_multiply(a << 1, half_b) |
# -*- coding:utf-8 -*-
class Heap:
def __init__(self,cmp_f):
self.cmp = cmp_f
self.heap = []
def siftDown(self,i):
target= i
left = 2*i + 1
right = 2*i + 2
if left < self.size() and self.cmp(self.heap[left],self.heap[target]):
target = left
if right < self.size() and self.cmp(self.heap[right],self.heap[target]):
target = right
if target != i:
self.heap[target],self.heap[i] = self.heap[i],self.heap[target]
self.siftDown(target)
def size(self,):
return len(self.heap)
def pop(self,):
if self.size() ==0:
return None
self.heap[0],self.heap[-1] = self.heap[-1],self.heap[0]
elem = self.heap.pop()
self.siftDown(0)
return elem
def insert(self,num):
self.heap.append(num)
i = self.size() - 1
parent = (i-1)>>1
while(i>0 and self.cmp(self.heap[i],self.heap[parent])):
self.heap[parent],self.heap[i] = self.heap[i],self.heap[parent]
i = parent
parent = (i-1)>>1
def top(self,):
return self.heap[0]
class Solution:
def __init__(self,):
self.maxHeap = Heap(lambda x,y:x>y)
self.minHeap = Heap(lambda x,y:x<y)
def Insert(self, num):
# write code here
if self.maxHeap.size() == self.minHeap.size():
self.minHeap.insert(num)
self.maxHeap.insert(self.minHeap.pop())
else:
self.maxHeap.insert(num)
self.minHeap.insert(self.maxHeap.pop())
def GetMedian(self,n=None):
# write code here
if self.maxHeap.size() == self.minHeap.size():
return (self.maxHeap.top()+self.minHeap.top())/2.0
else:
return self.maxHeap.top()*1.0
| class Heap:
def __init__(self, cmp_f):
self.cmp = cmp_f
self.heap = []
def sift_down(self, i):
target = i
left = 2 * i + 1
right = 2 * i + 2
if left < self.size() and self.cmp(self.heap[left], self.heap[target]):
target = left
if right < self.size() and self.cmp(self.heap[right], self.heap[target]):
target = right
if target != i:
(self.heap[target], self.heap[i]) = (self.heap[i], self.heap[target])
self.siftDown(target)
def size(self):
return len(self.heap)
def pop(self):
if self.size() == 0:
return None
(self.heap[0], self.heap[-1]) = (self.heap[-1], self.heap[0])
elem = self.heap.pop()
self.siftDown(0)
return elem
def insert(self, num):
self.heap.append(num)
i = self.size() - 1
parent = i - 1 >> 1
while i > 0 and self.cmp(self.heap[i], self.heap[parent]):
(self.heap[parent], self.heap[i]) = (self.heap[i], self.heap[parent])
i = parent
parent = i - 1 >> 1
def top(self):
return self.heap[0]
class Solution:
def __init__(self):
self.maxHeap = heap(lambda x, y: x > y)
self.minHeap = heap(lambda x, y: x < y)
def insert(self, num):
if self.maxHeap.size() == self.minHeap.size():
self.minHeap.insert(num)
self.maxHeap.insert(self.minHeap.pop())
else:
self.maxHeap.insert(num)
self.minHeap.insert(self.maxHeap.pop())
def get_median(self, n=None):
if self.maxHeap.size() == self.minHeap.size():
return (self.maxHeap.top() + self.minHeap.top()) / 2.0
else:
return self.maxHeap.top() * 1.0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.