text stringlengths 1 22.8M |
|---|
```c++
// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*-
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
#include "config.h"
#include "emergency_malloc.h"
#include <errno.h> // for ENOMEM, errno
#include <string.h> // for memset
#include "base/basictypes.h"
#include "base/logging.h"
#include "base/low_level_alloc.h"
#include "base/spinlock.h"
#include "internal_logging.h"
namespace tcmalloc {
__attribute__ ((visibility("internal"))) char *emergency_arena_start;
__attribute__ ((visibility("internal"))) uintptr_t emergency_arena_start_shifted;
static CACHELINE_ALIGNED SpinLock emergency_malloc_lock(base::LINKER_INITIALIZED);
static char *emergency_arena_end;
static LowLevelAlloc::Arena *emergency_arena;
class EmergencyArenaPagesAllocator : public LowLevelAlloc::PagesAllocator {
~EmergencyArenaPagesAllocator() {}
void *MapPages(int32 flags, size_t size) {
char *new_end = emergency_arena_end + size;
if (new_end > emergency_arena_start + kEmergencyArenaSize) {
RAW_LOG(FATAL, "Unable to allocate %" PRIuS " bytes in emergency zone.", size);
}
char *rv = emergency_arena_end;
emergency_arena_end = new_end;
return static_cast<void *>(rv);
}
void UnMapPages(int32 flags, void *addr, size_t size) {
RAW_LOG(FATAL, "UnMapPages is not implemented for emergency arena");
}
};
static union {
char bytes[sizeof(EmergencyArenaPagesAllocator)];
void *ptr;
} pages_allocator_place;
static void InitEmergencyMalloc(void) {
const int32 flags = LowLevelAlloc::kAsyncSignalSafe;
void *arena = LowLevelAlloc::GetDefaultPagesAllocator()->MapPages(flags, kEmergencyArenaSize * 2);
uintptr_t arena_ptr = reinterpret_cast<uintptr_t>(arena);
uintptr_t ptr = (arena_ptr + kEmergencyArenaSize - 1) & ~(kEmergencyArenaSize-1);
emergency_arena_end = emergency_arena_start = reinterpret_cast<char *>(ptr);
EmergencyArenaPagesAllocator *allocator = new (pages_allocator_place.bytes) EmergencyArenaPagesAllocator();
emergency_arena = LowLevelAlloc::NewArenaWithCustomAlloc(0, LowLevelAlloc::DefaultArena(), allocator);
emergency_arena_start_shifted = reinterpret_cast<uintptr_t>(emergency_arena_start) >> kEmergencyArenaShift;
uintptr_t head_unmap_size = ptr - arena_ptr;
CHECK_CONDITION(head_unmap_size < kEmergencyArenaSize);
if (head_unmap_size != 0) {
LowLevelAlloc::GetDefaultPagesAllocator()->UnMapPages(flags, arena, ptr - arena_ptr);
}
uintptr_t tail_unmap_size = kEmergencyArenaSize - head_unmap_size;
void *tail_start = reinterpret_cast<void *>(arena_ptr + head_unmap_size + kEmergencyArenaSize);
LowLevelAlloc::GetDefaultPagesAllocator()->UnMapPages(flags, tail_start, tail_unmap_size);
}
PERFTOOLS_DLL_DECL void *EmergencyMalloc(size_t size) {
SpinLockHolder l(&emergency_malloc_lock);
if (emergency_arena_start == NULL) {
InitEmergencyMalloc();
CHECK_CONDITION(emergency_arena_start != NULL);
}
void *rv = LowLevelAlloc::AllocWithArena(size, emergency_arena);
if (rv == NULL) {
errno = ENOMEM;
}
return rv;
}
PERFTOOLS_DLL_DECL void EmergencyFree(void *p) {
SpinLockHolder l(&emergency_malloc_lock);
if (emergency_arena_start == NULL) {
InitEmergencyMalloc();
CHECK_CONDITION(emergency_arena_start != NULL);
free(p);
return;
}
CHECK_CONDITION(emergency_arena_start);
LowLevelAlloc::Free(p);
}
PERFTOOLS_DLL_DECL void *EmergencyRealloc(void *_old_ptr, size_t new_size) {
if (_old_ptr == NULL) {
return EmergencyMalloc(new_size);
}
if (new_size == 0) {
EmergencyFree(_old_ptr);
return NULL;
}
SpinLockHolder l(&emergency_malloc_lock);
CHECK_CONDITION(emergency_arena_start);
char *old_ptr = static_cast<char *>(_old_ptr);
CHECK_CONDITION(old_ptr <= emergency_arena_end);
CHECK_CONDITION(emergency_arena_start <= old_ptr);
// NOTE: we don't know previous size of old_ptr chunk. So instead
// of trying to figure out right size of copied memory, we just
// copy largest possible size. We don't care about being slow.
size_t old_ptr_size = emergency_arena_end - old_ptr;
size_t copy_size = (new_size < old_ptr_size) ? new_size : old_ptr_size;
void *new_ptr = LowLevelAlloc::AllocWithArena(new_size, emergency_arena);
if (new_ptr == NULL) {
errno = ENOMEM;
return NULL;
}
memcpy(new_ptr, old_ptr, copy_size);
LowLevelAlloc::Free(old_ptr);
return new_ptr;
}
PERFTOOLS_DLL_DECL void *EmergencyCalloc(size_t n, size_t elem_size) {
// Overflow check
const size_t size = n * elem_size;
if (elem_size != 0 && size / elem_size != n) return NULL;
void *rv = EmergencyMalloc(size);
if (rv != NULL) {
memset(rv, 0, size);
}
return rv;
}
};
``` |
Karla Camila Cabello Estrabao (; ; born March 3, 1997) is an American singer and songwriter. She rose to prominence as a member of the girl group Fifth Harmony, which became one of the best-selling girl groups of all time. While in Fifth Harmony, Cabello began to establish herself as a solo artist with the release of the collaborations "I Know What You Did Last Summer" with Shawn Mendes and "Bad Things" with Machine Gun Kelly, the latter reaching number four on the US Billboard Hot 100. She left the group in late 2016.
Her debut studio album, Camila (2018), reached number one on the US Billboard 200. The Latin music–influenced pop album was critically well-received and earned a Platinum certification from the RIAA. Its lead single "Havana" topped the charts in several countries, including Australia, the US and UK, and the follow-up single "Never Be the Same" reached the top ten in multiple countries. Cabello's 2019 duet with Mendes, "Señorita", became her second single to top the Billboard Hot 100. Her second studio album, Romance (2019), included her collab with Mendes and peaked at number 3 on the Billboard 200 chart, with the single "My Oh My" peaking at number 12 on the Hot 100, and inside the top ten in multiple countries.
In 2021, Cabello made her acting debut, starring as the title character from the film Cinderella. Cabello released her third studio album Familia in April 2022, with the lead single "Don't Go Yet" released in July 2021. The second single from Familia, "Bam Bam", reached the top five of the Billboard Global 200 Chart, Cabello's highest entry and peaked inside the top ten in several countries; it also peaked at 21 on the Billboard Hot 100. Familia peaked at number 10 on the Billboard 200, number 9 in the UK and number 6 in Canada.
Cabello has amassed billions of streams on music platforms, and "Havana" became the best-selling digital single of 2018, according to the International Federation of the Phonographic Industry (IFPI). Cabello's many awards include two Latin Grammy Awards, five American Music Awards, and one Billboard Music Award.
Early life and education
Cabello was born in the Habana del Este district of Cojímar, Havana, Cuba to Alejandro Cabello and Sinuhe Estrabao. Her father is Mexican and was born in Mexico City, before moving to Cuba. She has a younger sister named Sofia. For most of her early life, Cabello and her family moved back-and-forth between Havana and Mexico City.
When Cabello was six years old, she relocated to Miami, Florida with her mother, crossing the border from México to the United States and taking a 36-hour Greyhound bus-ride to Miami, after waiting only one day at the border before being granted permission to enter the US. Cabello was told by her mother that she was going to Disneyworld as an incentive to go to the US; they moved into Cabello's grandfather's colleague's home, who would later become her godmother. Cabello's mother took night courses to study English. Cabello's father was unable to obtain a visa at the time, and joined the family approximately 18 months later; upon his arrival in the country, he would work washing cars in front of Dolphin Mall.
Cabello's mother—a trained architect with a degree earned in Cuba—initially worked at Marshalls, stacking shoes, until one day, two other Cuban women approached her at-work and told her that they had a brother who worked in architecture; she was told that the brother needed someone who worked in AutoCAD, and Cabello's mother learned the program in a week. In time, she had earned enough money to move out of her father’s colleague’s house and into an apartment with her children. Cabello's mother and father eventually formed a construction company named after Camila and Sofia. Cabello acquired American citizenship in 2008.
Cabello attended Miami Palmetto High School, but left during the 2012–13 school year (while she was in 9th grade) to pursue her singing career. Later, she earned her high school diploma.
Career
2012–2016: The X Factor and Fifth Harmony
Camila Cabello auditioned for the TV talent competition show The X Factor in Greensboro, North Carolina, with Aretha Franklin's "Respect"; however, her audition was not aired because the series did not get the rights for the song. After elimination during the "bootcamp" portion of the process in Miami, Florida, Cabello was called back to the stage along with other contestants Ally Brooke, Normani, Lauren Jauregui, and Dinah Jane to form the girl group that would later become known as Fifth Harmony. After finishing in third place on the show, they signed a joint deal with Syco Music, owned by Simon Cowell, and Epic Records, L.A. Reid's record label.
The group released the EP Better Together (2013) along with the studio albums Reflection (2015) and 7/27 (2016). The latter two generated the singles "Worth It" and "Work from Home", respectively, which reached the top 10 in several international charts. From 2013 through the end of 2016, Cabello performed in various tours with Fifth Harmony.
In November 2015, Cabello collaborated with Canadian singer Shawn Mendes on a duet titled "I Know What You Did Last Summer", a song they wrote together. The single charted at number 20 in the US and 18 in Canada and was certified platinum by the Recording Industry Association of America (RIAA). On October 14, 2016, American rapper Machine Gun Kelly released a joint single with Cabello called "Bad Things", which reached a peak of number four on the US Billboard Hot 100 songs chart. Also that year, Time magazine included Cabello on "The 25 Most Influential Teens of 2016" list.
On December 18, 2016, Fifth Harmony announced Cabello's departure, with both sides giving contradictory explanations of the circumstances for her exit. She appeared in a previously taped performance with the group on Dick Clark's New Year's Rockin' Eve at the end of 2016. Writing about Cabello's time in the group, a Billboard journalist noted it is "rather uncommon for someone to stand out in a collective as much as Cabello has over the past years."
2017–2018: Breakthrough with Camila
On January 25, 2017, "Love Incredible", a collaboration with Norwegian DJ Cashmere Cat, leaked online. The official version of the song was released on February 16 and later featured on Cashmere's debut studio album, 9 (2017). Cabello also recorded "Hey Ma" with rappers Pitbull and J Balvin for The Fate of the Furious soundtrack (2017). The Spanish version of the single and its music video were released on March 10, 2017, and the English version was released on April 6. The singer was also featured on a collaboration with Major Lazer, Travis Scott and Quavo for the song "Know No Better".
In May 2017, Cabello announced the future release of her first studio album, at the time titled The Hurting. The Healing. The Loving., which she described as "the story of my journey from darkness into light, from a time when I was lost to a time when I found myself again". Her debut solo single "Crying in the Club" was released on May 19, 2017, followed by a performance at the 2017 Billboard Music Awards. The single peaked at number 47 in the United States. She joined Bruno Mars' 24K Magic World Tour as an opening act for several shows in 2017 and partnered with clothing brand Guess as the face of their 2017 Fall campaign.
New writing and recording sessions for her album, influenced by the success of her single "Havana" featuring Young Thug, postponed the album's original release date. The single reached number one in Australia, Canada, the United Kingdom, Ireland, France, Hungary and the United States. It also spent seven weeks atop the US Mainstream Top 40 airplay chart. The song became Spotify's most-streamed song ever by a solo female artist in June 2018, with over 888 million streams at the time. Titled Camila, her debut album is a pop record containing Latin-influenced songs and ballads. Camila was released on January 12, 2018, and debuted at number one in the United States with 119,000 album-equivalent units, including 65,000 from pure album sales. The album was eventually certified platinum in the country. "Real Friends" and "Never Be the Same" were released in the same day on December 7, 2017, the latter becoming her third top 10 entry on the Hot 100, peaking at Number 6. "Havana" and "Never Be the Same" made Cabello the first artist to top the Mainstream Top 40 and Adult Top 40 airplay charts with the first two singles from a debut studio album. She later won an MTV Video Music Award for Video of the Year for "Havana".
In April 2018, Cabello embarked on the Never Be the Same Tour, her first headlining concert tour as a solo artist. She was featured in "Sangria Wine", a song she recorded with Pharrell Williams. Cabello released the song live during the tour. In May 2018, Cabello made a cameo appearance in Maroon 5's music video for "Girls Like You". In the same month, she began performing as the opening act for American singer-songwriter Taylor Swift in her Reputation Stadium Tour in between the European leg of the Never Be the Same Tour. She headlined an arena for the first time on July 31, 2018, at the Mohegan Sun Arena in Uncasville, Connecticut. Cabello was featured in the remix version of "Beautiful", a song from American singer Bazzi. The remix was released on August 2. On October 9, 2018, Cabello released the video single "Consequences", having first surprised 12 of her biggest fans in advance with a "Most Amazing Mystery Gift & Personal Letter".
In December 2018, she was nominated for two Grammys: Best Pop Solo Performance for a live version of "Havana" and Best Pop Vocal Album for Camila. Her performance of "Havana" with guests Ricky Martin, J Balvin and Young Thug at the start of the ceremony made her the first female Latin artist to open the show.
2019–2020: Romance
In October 2018, Cabello announced she would start working on new music in the new year after the holidays. In April 2019, it was announced that Cabello would star in an upcoming film adaptation of Cinderella, directed by Kay Cannon for Sony Pictures.
On June 21, 2019, Cabello released "Señorita" with Canadian singer Shawn Mendes, along with the music video. The song debuted at number two on the US Billboard Hot 100 chart and marked Mendes' and Cabello's second collaboration, following "I Know What You Did Last Summer" (2015). In August, "Señorita" climbed to the number one position on the Hot 100, making it Cabello's second single to top the chart. "Señorita" reached Number 1 in over 30 countries. It earned a nomination for the Grammy Award for Best Pop Duo/Group Performance. According to the IFPI, "Señorita" was the third best-selling song of 2019 globally and is currently the 9th most streamed song on Spotify, as of November 2021. She also recorded the song "South of the Border" with British singer-songwriter Ed Sheeran and American rapper Cardi B, which was released in July 2019 and reached Number 4 on the UK Singles Chart.
On September 1, 2019, Cabello posted a clip on Instagram, teasing the release of her second studio album Romance. Two days later, she announced the first two singles from the album, "Liar" and "Shameless", which were released on September 5, followed by "Cry for Me" and "Easy" in October 2019. Romance was released on December 6, 2019, and was supposed to be supported by the Romance Tour in 2020, until its cancelation due to the COVID-19 pandemic. "Living Proof" was released with the pre-orders of the album on November 15, 2019. Romance debuted and peaked at Number 3 on the US Billboard 200 and reached Number 1 in Canada. It also reached the top 10 in 12 countries, including Australia, New Zealand and Spain. "My Oh My" featuring DaBaby entered the top 20 on the Billboard Hot 100, peaking at Number 12; it also peaked at Number 1 on US Mainstream Top 40.
In mid-March 2020, Cabello participated in iHeart Media's Living Room Concert for America, a benefit to raise awareness and funds for the COVID-19 pandemic.
2021–present: Cinderella, Familia and The Voice
On July 23, 2021, Cabello released "Don't Go Yet" as the lead single from her third studio album Familia, announced alongside the release of the single. On October 15, 2021, Cabello premiered "La Buena Vida", from Familia, during her NPR Tiny Desk Concert. On October 29, 2021, Cabello released "Oh Na Na" with Myke Towers and Tainy, though it is not included on the album. Familia was named by Forbes one of the most anticipated pop albums of 2022. In early September, Cabello performed "Don't Go Yet" at the BCC Live Lounge. She also performed a cover of Olivia Rodrigo's "Good 4 U", which later won the iHeartRadio Music Award for Best Cover Performance.
In the latter half of 2021, Cabello appeared in an adaptation of Cinderella, which was released in select theatres and digitally on Amazon Prime Video on September 3, 2021. Cinderella was the most-watched streaming movie over the Labour Day weekend, as well as the most-watched movie musical yet in 2021. The film received mixed reviews from critics, though Cabello's performance received favourable reviews. Richard Roeper of the Chicago Sun-Times gave the film 3 out of 4 stars and praised Cabello for her performance, saying "she has a real knack for comedy", and IndieWire remarked, "In her cinematic debut, the pop star stitches up a charming performance in an oft-told fairy tale." In an interview with The One Show in July, Cabello said she would like to continue acting.
In November 2021, Cabello released an Amazon Exclusive of the Bing Crosby song "I'll Be Home for Christmas". It reached number two on the Billboard Bubbling Under Hot 100, before peaking at Number 71 on the Billboard Hot 100. It is the highest charting cover version of the song to date on the Hot 100. It also peaked at Number 58 on the Billboard Holiday 100 and Number 24 on the UK Singles Chart, marking Cabello's 13th Top 40 hit in the UK. Cabello performed the single at the Michael Bublé's Christmas in the City special on NBC and for PBS' In Performance at The White House: Spirit of the Season. In November 2022, Cabello's "I'll Be Home for Christmas" was released on all streaming platforms.
On December 6, 2021, it was announced that Cabello would open for Coldplay during the Latin American leg of their Music of the Spheres World Tour in September 2022. She opened for them in Colombia, Peru and Chile, with additional dates added. She also performed at Rock in Rio that same month.
On February 21, 2022, Cabello announced that her collaboration with Ed Sheeran titled "Bam Bam" would arrive on March 4, 2022. The song was released that day, with a music video accompanying. Cabello debuted the song with a performance on The Late Late Show with James Corden on the day of release. Cabello and Sheeran performed "Bam Bam" together for the first time live at the Concert For Ukraine benefit at Resorts World Arena in Birmingham. "Bam Bam" peaked at number 5 on the Billboard Global 200 chart, marking Cabello's highest peak since the charts creation in 2020. It also peaked at 21 on the Billboard Hot 100, and inside the top 10 in Canada and the UK. "Bam Bam" earned a nomination for the Grammy Award for Best Pop Duo/Group Performance.
On April 8, 2022, Familia was released and accompanied by a virtual TikTok concert 'immersive performance' titled "Familia: Welcome to the Family". Familia was met with positive reviews from critics, with NME, The Guardian and Rolling Stone all giving it 4/5 stars. Reviewing positively for NME, Nick Levine called the album "[Cabello's] richest and most compelling album yet," having delved into her heritage and psyche. In a similar review, Rolling Stone critic Tomás Mier wrote that the album is "an imperfect yet revealing mosaic of Cabello's Cuban-Mexican heritage." While noting the multiple changes in style as quite disorienting, Mier complimented the album's raw and honest lyrics, comparing it to reading Cabello's diary. In a review for The Guardian, Alim Kheraj praised the album's vibrant Latin motifs—"honest and humming with artistic intent"—and noted the recurring theme of "self-sabotage and paranoia."
Familia debuted at number 10 on the US Billboard 200, marking Cabello's 3rd Top ten album. It also debuted at number six in Canada, number nine in the UK and number four in Spain, the latter marking Cabello's 2nd highest debut there.
On May 9, 2022, it was announced Cabello would headline the UEFA Champions League Final on May 28. On May 28, 2022, Cabello performed "Señorita", "Havana", "Bam Bam" and "Don't Go Yet" during the UEFA Champions League Final opening ceremony. The performance is the most viewed video on UEFA's channel. Cabello released 'Road to the UEFA Champion's League Final', a Behind the Scenes look at preparing for the performance on her YouTube channel.
On May 15, 2022, Cabello announced via her TikTok account that she would be a coach on the US version of The Voice for its twenty-second season replacing Kelly Clarkson. In October 2022, it was confirmed that Cabello would not return for the twenty-third season.
On July 27, 2022 Stromae released a remix of his song "Mon amour" starring Cabello, with an accompanying music video that is a play on shows like Love Island. Cabello provided a verse she recorded in LA and sang in French for the song. In September 2022, Cabello released a collaboration with Camilo,"Ambulancia" is on Camilo's new album De adentro pa afuera. In December 2022, Cabello released her third non-album collaboration of 2022, a remix of "KU LO SA" by Oxlade.
In September 2022, Cabello departed Epic Records and signed to Interscope Records, a label of Universal Music Group.
Artistry
Primarily a pop, Latin, and R&B singer, Cabello possesses a soprano vocal range. She grew up listening to artists such as Alejandro Fernández and Celia Cruz. Her debut studio album is a pop record, influenced by Latin music. The album incorporates elements of reggaeton, hip hop, and dancehall and took inspiration from contemporary Latin artists such as Calle 13 and J Balvin, as well as from the songwriting of Taylor Swift and Ed Sheeran. Her sophomore album was inspired by the "big sounds" of the 80s and Queen. She has also cited Michael Jackson, Rihanna, Shakira, Alejandro Sanz, David Bisbal, Alejandro Fernández, Maná, Beyoncé, John Mayer, Demi Lovato and Eminem as influences.
Philanthropy
In February 2016, Cabello announced she had partnered with Save the Children to design a limited-edition "Love Only" T-shirt to help raise awareness of issues involving girls' equal access to education, health care and opportunities to succeed. In June 2016, Cabello, producer Benny Blanco, and members of the nonprofit arts organization OMG Everywhere helped to create the charity single "Power in Me". Cabello has also partnered with the Children's Health Fund, a non-profit dedicated to providing health care to low-income families with children.
On April 3, 2017, Cabello performed at Zedd's WELCOME! Fundraising Concert, which raised money for ACLU. Cabello sang to patients at UCLA Mattel Children's Hospital on May 8, 2017. In late 2017, she joined Lin-Manuel Miranda and multiple other Latin artists on the song "Almost Like Praying" for Puerto Rico hurricane relief. Cabello also announced she was donating all proceeds of "Havana" to the ACLU for DREAMers.
Cabello donated portions of proceeds from VIP sale packages to the Children's Health Fund while on the 2018 Never Be the Same tour. On July 13, 2018, she performed a concert in San Juan and donated a portion of the concert's proceeds to Hurricane Maria Relief Fund. In November 2018, Cabello became an ambassador for Save the Children.
In March 2019, Cabello announced she donated $10,000 to a GoFundMe campaign for a homeless immigrant. In September 2019, Cabello pledged to raise $250,000 for Save the Children organization. In October 2019, Cabello performed at the We Can Survive concert which donates to breast cancer. On October 22, 2019, Cabello appeared with the Duke and Duchess of Cambridge at Kensington Palace in support of the finalists for the BBC Radio 1 Teen Heroes Awards.
In March 2020, Cabello participated in iHeart Media's Living Room Concert for America, a benefit to raise awareness and funds for the COVID-19 pandemic. In March and April 2020, Cabello participated in Global Citizen Festival's Together at Home virtual concert to raise awareness and funds for the COVID-19 pandemic. In May 2020, Cabello, alongside Shawn Mendes, joined protests in Miami for racial justice after the murder of George Floyd. In July 2021, she expressed support for the 2021 Cuban protests against the country's government.
In January 2021, Cabello partnered with the nonprofit Movement Voter Fund to launch The Healing Justice project, a project to identify ten organizations to receive grants to pay for mental health resources for their frontline workers. Cabello pledged the seed money for the venture, $250,000, and has pledged to continue to support the project going forward. So far the project has given grants to several organisations, including Muslim Woman For, Freedom Inc and QLatinx.
Cabello is an outspoken advocate for climate change and regularly speaks about this on her social media and in interviews. In September 2021, Cabello recruited over 60 artists to sign an open letter to several entertainment companies including Amazon, Facebook and Apple, calling on them to ask Congress to pass the climate action that President Biden called for in his Build Back Better agenda.
In March 2022, Cabello performed at the Concert for Ukraine benefit concert. The two-hour benefit show was put on to raise money for the Disasters Emergency Committee's (DEC) Ukraine Humanitarian Appeal following the Russian invasion of Ukraine. Cabello performed a cover of "Fix You" by Coldplay and her single "Bam Bam", with Ed Sheeran joining her on stage for their first live performance of the song together.
In May 2022, Cabello launched and hosted a benefit concert to support the emergency "Protect Our Kids" fund. The singer has teamed with Lambda Legal and Equality Florida to help protect LGBTQ+ students and their families from Florida's so-called "Don't Say Gay or Trans" bill.
As part of her collaboration with Pepsi for UEFA Champions League, Cabello is among music and football talent that will be supporting #Football4Refugees, an appeal launched by UNHCR, the UN Refugee Agency, to unite the global football community to raise funds for displaced people around the world.
On August 22, 2022, Cabello announced that she had provided vocals and written a song with Hans Zimmer for the documentary series Frozen Planet 2. Cabello called this an 'honour' and the song debuted on August 28, 2022, incorporated in the first trailer for the show. It won the award for Best Song/Score in a Trailer at the 2022 Hollywood Music in Media Awards.
Awards and nominations
Among her awards, Cabello has won two Latin Grammy Awards, four American Music Awards, a Billboard Music Award, five MTV Europe Music Awards, two iHeartRadio Music Awards, four MTV Video Music Awards (including one for Video of the Year), three iHeartRadio Much Music Video Awards, and a Billboard Women in Music award for Breakthrough Artist.
Personal life
Cabello was in a relationship with dating coach and writer Matthew Hussey, whom she met on the set of The Today Show. They dated from February 2018 to June 2019.
She began dating Canadian singer Shawn Mendes in July 2019. The relationship caused controversy, as both were accused of attempting to form a relationship for publicity, but Mendes insisted it was "definitely not a publicity stunt". The relationship was confirmed after the release of their song "Señorita". In November 2021, Cabello and Mendes announced their breakup.
In August 2022, Cabello began dating Lox CEO Austin Kevitch, whom she met through their mutual friend Nicholas Galitzine, Cabello's co-lead in Cinderella. In February 2023, it was announced the two had broken up.
Cabello has anxiety and obsessive–compulsive disorder. Cabello has spoken openly about engaging with therapy and the importance of looking after one's mental health and well-being.
Cabello purchased a home in the Hollywood Hills neighborhood of Los Angeles in 2019. In December 2021, it was reported that she sold the home for $4.3 million.
Cabello's great-great-grandfather was Próculo Capistrán, a soldier who fought in the Mexican Revolution alongside Emiliano Zapata, serving as a revolutionary general in his service.
Controversy over past blogs
In December 2019, Tumblr posts that Cabello had reblogged between 2012 and 2013 surfaced on Twitter, containing racial slurs and derogatory language, including uses of the slur "nigger" and mocking Chris Brown's 2009 assault on Rihanna. Her Tumblr account was deleted soon afterward and Cabello issued an apology, stating that she was "uneducated and ignorant" when younger and that she was deeply embarrassed to have ever used "horrible and hurtful" language. She added that "those mistakes don't represent" her and that she "only [stands] and [has] ever stood for love and inclusivity."
In March 2021, Cabello said she had taken part in weekly racial healing sessions administered by the racial equity group National Compadres Network, in which "you get corrected, you have homework, and you learn ... Now I know better so I can do better."
Discography
Camila (2018)
Romance (2019)
Familia (2022)
Tours
Headlining
Never Be the Same Tour (2018–2019)
Opening act
Bruno Mars – 24K Magic World Tour (2017)
Taylor Swift – Reputation Stadium Tour (2018)
Coldplay – Music of the Spheres World Tour (2022)
Cancelled
The Romance Tour (2020)
Filmography
Film
Television
Web
References
External links
1997 births
21st-century American women singers
21st-century American singers
Actresses from Havana
American contemporary R&B singers
American women pop singers
American people of Cuban descent
American musicians of Mexican descent
American women songwriters
Cuban emigrants to the United States
Fifth Harmony members
Hispanic and Latino American actresses
Hispanic and Latino American women singers
Latin Grammy Award winners
Living people
Miami Palmetto Senior High School alumni
MTV Video Music Award winners
Singers from Miami
People with acquired American citizenship
Spanish-language singers of the United States
The X Factor (American TV series) contestants
People with obsessive–compulsive disorder
Judges in American reality television series
American musicians with disabilities |
Champions
Chronicle-Telegraph Cup: Brooklyn Superbas over Pittsburgh Pirates (3–1)
National League: Brooklyn Superbas
Statistical leaders
National League final standings
Events
January 19 - Boston Beaneaters catcher Marty Bergen, reportedly depressed by his son's death in 1898, allegedly kills his family with an ax and then commits suicide in Brookfield, Massachusetts.
February 17 - Due to unpaid alimony, Mary H. Vanderbeck takes possession of the American League franchise in Detroit. Her ex-husband, George Vanderbeck, will later regain control of the team.
March 8 - The National League decides to downsize to eight teams for the upcoming season by eliminating the circuit's franchises in Baltimore, Cleveland, Louisville, and Washington.
March 9 - Infielders John O'Brien, Art Madison, George Fox, and pitcher Jack Chesbro are transferred from the defunct Louisville Colonels franchise to the Pittsburgh Pirates.
April 19 – In Boston, the Phillies win 19–17 in the NL's highest scoring opening day game. Boston tied the game with 9 runs in the ninth. Philadelphia, once up 16–4, scores 2 in the 10th for the win.
May 5 – The Orphans' Jimmy Ryan hits his 20th career leadoff homer against the visiting Cincinnati Reds and Noodles Hahn. Chicago wins 4–3.
June 5 - Pirates' first baseman Duff Cooley has only two putouts in a 6-5 loss to the Phillies
June 19 - Clark Griffith and Rube Waddell have a duel for the ages. Each throw 13 shut out innings before Griffith hits a walk off double in the 14th.
June 21 - Citing the Superbas' poor attendance at Brooklyn's Washington Park, National League president Ned Young discusses the possibility of moving the franchise to Washington, D.C. The reigning NL champions, en route to their second consecutive title, are averaging only a thousand fans on non-holiday dates.
June 22 - Umpire Hank O'Day forfeits the game to the Brooklyn Superbas when the Philadelphia Phillies stall in the bottom of the 11th inning, hoping the delay postpones the game due to darkness. Brooklyn had scored seven runs in the top of the frame to pull ahead 20-13.
July 4 – At the West Side Grounds, about 1,000 of the 10,000 fans at the game fire pistols to celebrate July 4. No injuries were reported. Meanwhile, Chicago beats Philadelphia, 5–4, in 12 innings.
July 7 – Kid Nichols of the Boston Beaneaters records his 300th career win.
July 12 – Noodles Hahn pitches a no-hitter for the Cincinnati Reds against the Philadelphia Phillies. The Reds win, 4–0.
July 13 – The Phillies' third baseman, Harry Wolverton, has 3 triples among his 5 hits in a 23–8 win over the Pirates.
July 17 – The Giants' Christy Mathewson, acquired from Norfolk of the North Carolina League, makes his major league debut, relieving in the 5th inning against Brooklyn at Washington Park with the score tied, 5–5. The results are less than glowing: 2 walks, 3 hit batters, 5 runs. Ed Doheny relieves Mathewson after 4; the Superbas win the game, 13–7.
July 26 - In Brooklyn, a sheriff seizes the St. Louis Cardinals share of the gate receipts in order to pay former Cardinals pitcher Gus Weyhing, who'd claimed the Cardinals had not paid him for his services before releasing him. Weyhing would later sign with Brooklyn as a free agent.
August 17 - Reds pitcher Bill Phillips punches Phillies hitter Roy Thomas after Thomas fouled off 12 straight pitches. Phillips is ejected, but the Reds win in extra innings.
August 19 - After being promised by manager Connie Mack that he could take the next few days off, Rube Waddell pitches both games in a double header for Milwaukee of the Western League. In game one, Waddell threw for 17 innings, and followed that up by taking a one hitter into the fifth inning of the second game, in total, Waddell pitched 22 innings worth of baseball in one day.
August 22 - The Chicago Orphans acquire catcher Roger Bresnahan, only to release him after he appeared in two games. Bresnahan would go on to have a hall of fame career catching for the New York Giants.
September 11 Catcher Johnny Kling makes his MLB debut for the Chicago Orphans. Kling doesn't get a hit in his debut, but he'd go on to be the Orphans (later re-named the Cubs) starting catcher for the next several seasons.
September 17 - Tommy Corcoran leaves his shortstop position and begins digging around the third base coaching box with his spikes. The Reds' captain uncovers a metal box with an electrical device inside with attached wires which is most likely being used by the Phillies in a sophisticated scheme to steal signs.
December 15 - The Cincinnati Reds trade pitcher Christy Mathewson to the New York Giants for pitcher Amos Rusie, who hadn't pitched in a game since 1898. This trade becomes one of the first ever "flops": Mathewson goes on to a Hall of Fame career with the Giants, while Rusie doesn't even last a full season in Cincinnati.
Births
January
January 1 – Teddy Kearns
January 1 – Al Stokes
January 6 – Clyde Beck
January 7 – John Beckwith
January 7 – Johnny Grabowski
January 7 – Carlton Lord
January 9 – Frank Barnes
January 11 – Lefty Taber
January 16 – Joe Rabbitt
January 21 – Willie Ludolph
January 26 – Lefty Jamerson
January 28 – Emil Yde
January 31 – Honey Barnes
February
February 2 – Willie Kamm
February 2 – Frank Mack
February 7 – Bill Riggins
February 9 – Tom Gee
February 15 – George Earnshaw
February 19 – John Kane
February 19 – Oscar Roettger
February 20 – Al Williamson
February 22 – Roy Spencer
February 25 – Joe Burns
February 25 – John Gillespie
February 28 – Doc Wood
March
March 6 – Lefty Grove
March 9 – Bill Narleski
March 11 – Rusty Pence
March 14 – Marty McManus
March 22 – Dip Orange
March 25 – Russ Miller
March 29 – Red Schillings
March 31 – Mule Suttles
April
April 4 – Jule Mallonee
April 6 – Joe Wyatt
April 11 – John Middleton
April 12 – Mickey O'Neil
April 13 – Rufe Clarke
April 16 – Walt Schulz
April 22 – Paul Florence
April 23 – Jim Bottomley
April 23 – Joe Kelly
April 25 – Jake Freeze
April 26 – Hack Wilson
May
May 12 – Phil Voyles
May 20 – Claral Gillenwater
May 20 – George Grantham
May 20 – Ollie Klee
May 21 – Sam Langford
May 22 – Hooks Cotter
May 23 – Duke Brett
May 24 – Wally Shaner
May 24 – Al Shealy
May 24 – Clay Van Alstyne
May 28 – Bill Barrett
May 30 – Jute Bell
June
June 1 – Dutch Schesler
June 3 – Harry Baldwin
June 4 – George Watkins
June 5 – John Cavanaugh
June 7 – Ed Wells
June 9 – Marty Callaghan
June 10 – Garland Braxton
June 10 – Lefty Wolf
June 12 – Charlie Barnabe
June 13 – Chief Youngblood
June 21 – Red Barron
June 22 – Joe Poetz
June 23 – Bill Harris
June 26 – Lum Davenport
June 26 – Elmer Yoter
July
July 1 – Louis Brower
July 1 – Mel Simons
July 2 – Joe Bennett
July 2 – Ernie Vick
July 3 – Joe Brown
July 4 – Dot Fulghum
July 4 – Wes Kingdon
July 12 – Rudy Miller
July 13 – Footsie Blair
July 14 – Dave Harris
July 20 – Hunter Lane
July 23 – Jimmie Wilson
July 24 – Jim Lyle
July 30 – Paul Fitzke
July 31 – Heinie Scheer
August
August 12 – Spence Harris
August 16 – Billy Rhiel
August 17 – Elmer Pence
September
September 1 – Hub Pruett
September 2 – Joe Heving
September 5 – Ike Kamp
September 5 – Merv Shea
September 15 – Bud Clancy
September 15 – Roy Meeker
September 17 – Hughie Critz
September 17 – Roy Luebbe
September 17 – Sam Streeter
September 19 – Jim Wright
September 21 – John Bogart
September 22 – Bud Heine
September 23 – Lefty Stewart
October
October 3 – Red Dorman
October 9 – Freddy Spurgeon
October 13 – Heinie Odom
October 16 – Nick Cullop
October 16 – Goose Goslin
October 17 – Ernie Wingard
October 19 – Herb Welch
October 20 – Jimmy Uchrinscko
October 22 – Bill Bishop
October 22 – Jumbo Elliott
October 24 – Ossie Bluege
October 27 – Red Proctor
October 28 – Johnny Neun
October 31 – Cal Hubbard
November
November 5 – Pete Donohue
November 11 – Boob Fowler
November 12 – Herm Merritt
November 17 – Ossie Orwoll
November 18 – Jim Marquis
November 18 – Vince Shields
November 26 – John Churry
December
December 1 – Eppie Barnes
December 1 – Mike Cvengros
December 8 – Mose Solomon
December 10 – Roy Carlyle
December 14 – Harry Wilke
December 16 – Tony Kaufmann
December 17 – Karl Swanson
December 19 – Wally Gilbert
December 19 – Tex Jeanes
December 20 – Gabby Hartnett
December 21 – Doc Hamann
December 23 – Danny Taylor
December 28 – Ted Lyons
December 31 – Syl Johnson
Deaths
January 9 – Henry Kessler, 53, shortstop who hit .253 for the Brooklyn Atlantics and Cincinnati Reds from 1873 to 1877.
January 19 – Marty Bergen, 28, catcher for the Boston Beaneaters since 1896 who batted .280 for the 1898 championship team
January 21 – Jim Rogers, 27, played two seasons and managed one from 1896 to 1897.
February 7 – "Brewery Jack" Taylor, 26, pitcher for the Cincinnati Reds (among others), who had three 20-win seasons from 1894–'96, and led the National League in games and innings in the 1898 season.
February 23 – Nate Berkenstock, 69[?], played right field for one game with the 1871 Philadelphia Athletics.
March 31 – Foghorn Bradley, 44, pitcher for the 1876 Boston Red Caps who went on to umpire for six major league seasons.
April 28 – Walter Plock, 30, center fielder for the 1891 Philadelphia Phillies.
May 14 – Billy Taylor, 45[?], player for seven seasons, mostly as a pitcher and outfielder, from 1881 to 1887.
May 15 – John Traffley, 38[?], right fielder who appeared in two games with the 1889 Louisville Colonels.
May 31 – Tom Patterson, 55[?], outfielder for four seasons in the National Association.
June 1 – Charlie Gray, 36[?], pitcher who went 1–4 for the 1890 Pittsburgh Alleghenys.
June 12 – Mox McQuery, 38, first baseman who hit .271 with 13 home runs and 160 RBI in 417 games, and the National League in putouts in 1886.
June 13 – Frank Fleet, 52[?], utility player for five seasons in the National Association.
July 15 – Billy Barnie, 47, manager of the Orioles from 1883 to 1891, and later of three other teams; pilot of Hartford team in Eastern League since 1899.
July 22 – Harry Jacoby, [?], infielder/outfielder for two seasons with the Baltimore Orioles of the American Association.
July 24 – Fred Zahner, 30, backup catcher who hit .214 with the Louisville Colonels from 1894–'95.
August 24 – John Puhl, 24, third baseman who played briefly for the New York Giants in 1898 and 1899.
September 14 – Ed Knouff, 33, pitcher/outfielder who posted a 20–20 record and hit a .187 average in the American Association from 1885 to 1889.
October 7 – Bill Phillips, 43, first baseman for Cleveland and Brooklyn who was the first Canadian in the major leagues; batted. 302 in 1885.
October 9 – Harry Wheeler, 42, pitcher and outfielder for eight different teams between 1878 and 1884.
December 14 – Jim Devlin, 34, pitcher who posted an 11–10 record with a 3.38 ERA for the New York Giants, Philadelphia Quakers and St. Louis Browns from 1886 to 1889.
External links
1900 in baseball history from ThisGreatGame.com |
```xml
// See LICENSE.txt for license information.
import React, {useCallback, useEffect, useState} from 'react';
import {useIntl} from 'react-intl';
import {DeviceEventEmitter, TouchableOpacity, View} from 'react-native';
import {updateLocalCustomStatus} from '@actions/local/user';
import {unsetCustomStatus} from '@actions/remote/user';
import {Events, Screens} from '@constants';
import {SET_CUSTOM_STATUS_FAILURE} from '@constants/custom_status';
import {useServerUrl} from '@context/server';
import {useTheme} from '@context/theme';
import {showModal} from '@screens/navigation';
import {preventDoubleTap} from '@utils/tap';
import {makeStyleSheetFromTheme} from '@utils/theme';
import {typography} from '@utils/typography';
import {getUserCustomStatus, isCustomStatusExpired as checkCustomStatusIsExpired} from '@utils/user';
import CustomLabel from './custom_label';
import CustomStatusEmoji from './custom_status_emoji';
import type UserModel from '@typings/database/models/servers/user';
const getStyleSheet = makeStyleSheetFromTheme((theme) => {
return {
label: {
color: theme.centerChannelColor,
...typography('Body', 200),
textAlignVertical: 'center',
includeFontPadding: false,
},
body: {
flexDirection: 'row',
marginVertical: 18,
},
};
});
type CustomStatusProps = {
isTablet: boolean;
currentUser: UserModel;
}
const CustomStatus = ({isTablet, currentUser}: CustomStatusProps) => {
const theme = useTheme();
const intl = useIntl();
const serverUrl = useServerUrl();
const [showRetryMessage, setShowRetryMessage] = useState<boolean>(false);
const customStatus = getUserCustomStatus(currentUser);
const isCustomStatusExpired = checkCustomStatusIsExpired(currentUser);
const isStatusSet = !isCustomStatusExpired && (customStatus?.text || customStatus?.emoji);
const styles = getStyleSheet(theme);
useEffect(() => {
const onSetCustomStatusError = () => {
setShowRetryMessage(true);
};
const listener = DeviceEventEmitter.addListener(SET_CUSTOM_STATUS_FAILURE, onSetCustomStatusError);
return () => listener.remove();
}, []);
const clearCustomStatus = useCallback(preventDoubleTap(async () => {
setShowRetryMessage(false);
const {error} = await unsetCustomStatus(serverUrl);
if (error) {
setShowRetryMessage(true);
return;
}
updateLocalCustomStatus(serverUrl, currentUser, undefined);
}), []);
const goToCustomStatusScreen = useCallback(preventDoubleTap(() => {
if (isTablet) {
DeviceEventEmitter.emit(Events.ACCOUNT_SELECT_TABLET_VIEW, Screens.CUSTOM_STATUS);
} else {
showModal(Screens.CUSTOM_STATUS, intl.formatMessage({id: 'mobile.routes.custom_status', defaultMessage: 'Set a custom status'}));
}
setShowRetryMessage(false);
}), [isTablet]);
return (
<TouchableOpacity
onPress={goToCustomStatusScreen}
testID='account.custom_status.option'
>
<View style={styles.body}>
<CustomStatusEmoji
emoji={customStatus?.emoji}
isStatusSet={Boolean(isStatusSet)}
/>
<CustomLabel
customStatus={customStatus!}
isStatusSet={Boolean(isStatusSet)}
onClearCustomStatus={clearCustomStatus}
showRetryMessage={showRetryMessage}
/>
</View>
</TouchableOpacity>
);
};
export default CustomStatus;
``` |
The Lion Of Yanina is a novel written by Stojan Hristov. The full name of the novel is: The Lion Of Yanina a narrative based on the life of Ali Pasha, tyrant of Greece and Albania.
External links
(Book Review)
References
Macedonian literature
1941 novels
Ali Pasha of Ioannina |
The Sri Lanka cricket team toured Bangladesh, playing two Test matches, a two-match International Twenty20 series and a three-match One Day International series against the Bangladesh national team from 27 January to 22 February 2014.
Squads
±Late Addition
Test series
1st Test
2nd Test
T20I series
1st T20I
2nd T20I
ODI series
1st ODI
2nd ODI
3rd ODI
Statistics
Tests and ODIs
Sri Lanka
Kaushal Silva made his 1st Test century in the first innings of the 1st Test.
Mahela Jayawardene made his 33rd Test century and his 7th Test double-century in the first innings of the 1st Test.
Kithuruwan Vithanage made his 1st Test century in the first innings of the 1st Test.
Kumar Sangakkara made his 34th Test century and his 1st Test triple-century in the first innings of the 2nd Test.
Kumar Sangakkara passed 11,000 Test runs in the first innings of the 2nd Test.
Kumar Sangakkara made his 35th Test century in the second innings of the 2nd Test.
Dinesh Chandimal made his 3rd Test century in the second innings of the 2nd Test.
Kumar Sangakkara made his 17th ODI century in the 2nd ODI.
Kusal Perera made his 1st ODI century in the 3rd ODI.
Bangladesh
Shamsur Rahman made his 1st Test century in the first innings of the 2nd Test.
Imrul Kayes made his 1st Test century in the first innings of the 2nd Test.
Mominul Haque made his 3rd Test century in the second innings of the 2nd Test.
References
External links
Sri Lanka in Bangladesh on ESPNcricinfo
Sri Lankan cricket tours of Bangladesh
Bangladeshi cricket seasons from 2000–01
International cricket competitions in 2013–14
2014 in Bangladeshi cricket
2014 in Sri Lankan cricket |
Alessandro Aimar (born 5 June 1967 in Milan) is a retired Italian sprinter who specialized in the 400 metres.
Biography
He won six medals at the International athletics competitions, all of these with national relays team. His personal best time is 45.76 seconds, achieved in July 1993 in Sestriere. He participated at two editions of the Summer Olympics (1992 and 1996), he has 30 caps in national team from 1989 to 1997.
Achievements
See also
Italy national relay team
References
External links
1967 births
Living people
Italian male sprinters
Athletes (track and field) at the 1992 Summer Olympics
Athletes (track and field) at the 1996 Summer Olympics
Olympic athletes for Italy
Athletes from Milan
Athletics competitors of Fiamme Azzurre
Mediterranean Games gold medalists for Italy
Mediterranean Games silver medalists for Italy
Athletes (track and field) at the 1991 Mediterranean Games
Athletes (track and field) at the 1993 Mediterranean Games
World Athletics Championships athletes for Italy
Mediterranean Games medalists in athletics
World Athletics Indoor Championships medalists |
Fell Township is a township in Lackawanna County, Pennsylvania, United States. The population was 2,345 at the 2020 census.
Pattern of settlement
Fell Township's principal settlement is Simpson, as of 2010 home to 1,275 people, mostly middle age and elderly. Although not usually considered by the locals, the upper part of Carbondale's West Side is actually in the southwestern corner of the township. This area is home to a few hundred people, and is geographically separate from other settlements in Fell Township. The other settlements in Fell Township are the residential communities of Crystal Lake and Richmondale. Richmondale is currently home to 190 people. The original house in Simpson was the Morss Mansion on Lord Avenue, built in 1887. The house inspired Hank Williams' song "Mansion on the Hill". By 1974, the mansion was empty, and title of it and the surrounding property fell in the hands of the local volunteer fire company. Due to lack of maintenance, the mansion was in disrepair by the 1990s, and despite public outcry, the mansion was, tragically, torn down in the summer of 1998. The Grattan-Singer Hose Company then built a new fire house in the property.
Geography
According to the United States Census Bureau, the township has a total area of , of which is land and (0.52%) is water. Fell Township also features the Lackawanna River, Panther's Creek, and many abandoned pits from strip mining.
Demographics
2010 census
As of the census of 2010, there were 2,178 people, 925 households, and 586 families residing in the township. The population density was 142.4 people per square mile (55/km2). There were 1,045 housing units at an average density of . The racial makeup of the township was 96.6% White, 0.7% African American, 0.2% Native American, 0.3% Asian, 0.7% from other races, and 1.4% from two or more races. Hispanic or Latino of any race were 3% of the population.
There were 925 households, out of which 26.3% had children under the age of 18 living with them, 46.3% were married couples living together, 10.9% had a female householder with no husband present, and 36.6% were non-families. 30.7% of all households were made up of individuals, and 13.7% had someone living alone who was 65 years of age or older. The average household size was 2.35 and the average family size was 2.94.
In the township the population was spread out, with 20.9% under the age of 18, 61% from 18 to 64, and 18.1% who were 65 years of age or older. The median age was 41.7 years.
The median income for a household in the township was $37,727, and the median income for a family was $50,100. Males had a median income of $42,232 versus $29,250 for females. The per capita income for the township was $21,772. About 6.7% of families and 11% of the population were below the poverty line, including 11.7% of those under age 18 and 7.5% of those age 65 or over.
References
Townships in Lackawanna County, Pennsylvania |
```kotlin
package io.gitlab.arturbosch.detekt.rules.style
import io.gitlab.arturbosch.detekt.api.ActiveByDefault
import io.gitlab.arturbosch.detekt.api.CodeSmell
import io.gitlab.arturbosch.detekt.api.Config
import io.gitlab.arturbosch.detekt.api.Entity
import io.gitlab.arturbosch.detekt.api.Rule
import org.jetbrains.kotlin.psi.KtClassOrObject
/**
* This rule reports unnecessary super types. Inheriting from `Any` or `Object` is unnecessary and should simply be
* removed.
*
* <noncompliant>
* class A : Any()
* class B : Object()
* </noncompliant>
*/
@ActiveByDefault(since = "1.2.0")
class UnnecessaryInheritance(config: Config) : Rule(
config,
"The extended super type is unnecessary."
) {
override fun visitClassOrObject(classOrObject: KtClassOrObject) {
for (superEntry in classOrObject.superTypeListEntries) {
when (superEntry.text) {
"Any()" -> report(classOrObject, "Unnecessary inheritance of 'Any'.")
"Object()" -> report(classOrObject, "Unnecessary inheritance of 'Object'.")
}
}
}
private fun report(classOrObject: KtClassOrObject, message: String) {
report(CodeSmell(Entity.atName(classOrObject), message))
}
}
``` |
Paul Armand Marcel Gavault (1 September 1866 - 25 December 1951) was a French dramatist, playwright and former director of the théâtre de l'Odéon.
Biography
He enjoyed a hit with his 1906 comic play Mademoiselle Josette, My Woman which was co-authored by Robert Charvay.
Paul Gavault was a screenwriter for the production company, working in particular for the films La Grande Bretèche (1909, after Balzac), Joseph vendu par ses frères (1909, codirected with Georges Berr), Le Luthier de Crémone (1909), Le Légataire universel (1909), Werther (1910, after Goethe), Madame de Langeais (1910, after Balzac), Carmen (1910, after Mérimée), Vitellius (1910), L'Héritière (1910), Jésus de Nazareth (1911) and L'Usurpateur (1911), Mademoiselle Josette, ma femme (1914).
He was named director of the théâtre de l'Odéon in 1914.
Works
1897 : Le Pompier de service, with Victor de Cottens, Théâtre des Variétés
1898 : Les Petites Barnett, with Louis Varney, Théâtre des Variétés
1900 : Moins cinq..., with Georges Berr, Théâtre du Palais-Royal
1901 : L'Inconnue, with Georges Berr, Théâtre du Palais-Royal
1901 : Madame Flirt, with Georges Berr, Théâtre de l'Athénée
1902 : Les Aventures du capitaine Corcoran, with Georges Berr and Adrien Vély, Théâtre du Châtelet
1903 : Paris aux Variétés, Théâtre des Variétés
1903 : L'Enfant du miracle, 3 acts comédie bouffe, with Robert Charvay
1904 : La Dette, with Georges Berr, Théâtre de l'Odéon
1906 : Mademoiselle Josette, ma femme, with Robert Charvay, Théâtre du Gymnase Marie Bell
1907 : La Dame du 23, with Albert Bourgain, Théâtre du Palais Royal
1907 : La Revue du centenaire, 3 acts show with Pierre-Louis Flers and Eugène Héros, Théâtre des Variétés
1909 : Monsieur Zéro
1909 : Moins cinq
1909 : La Petite chocolatière, Théâtre de la Renaissance
1912 : Le Bonheur sous la main
1912 : L'idée de Françoise, Théâtre de la Renaissance
1914 : Ma tante d'Honfleur, Théâtre des Variétés
1914 : Le Mannequin
1925 : L'École du bonheur, 3 acts comedy, Théâtre Daunou
1933 : Le Paradis perdu, Théâtre de l'Athénée
1933 : Bezauberndes Fräulein, 4 acts operetta by Ralph Benatzky, based on La Petite chocolatière
Filmography
La Petite chocolatière, directed by André Liabel (France, 1914, based on the play La Petite chocolatière)
Mademoiselle Josette, ma femme, directed by André Liabel (France, 1914, based on the play Mademoiselle Josette, ma femme)
The Richest Girl, directed by Albert Capellani (1918, based on the play La Petite chocolatière)
The Frisky Mrs. Johnson, directed by Edward Dillon (1920, based on the play Madame Flirt)
L'idée de Françoise, directed by Robert Saidreau (France, 1923, based on the play L'idée de Françoise)
Ma tante d'Honfleur, directed by Robert Saidreau (France, 1923, based on the play Ma tante d'Honfleur)
Mademoiselle Josette, My Woman, directed by Gaston Ravel (France, 1926, based on the play Mademoiselle Josette, ma femme)
The Chocolate Girl, directed by René Hervil (France, 1927, based on the play La Petite chocolatière)
The Chocolate Girl, directed by Marc Allégret (France, 1932, based on the play La Petite chocolatière)
Ma tante d'Honfleur, directed by André Gillois (France, 1932, based on the play Ma tante d'Honfleur)
, directed by Georges Lacombe (France, 1932, based on Un coup de téléphone)
The Miracle Child, directed by André Gillois (France, 1932, based on the play L'Enfant du miracle)
, directed by Jacques Séverac (France, 1933, based on Les yeux du cœur)
Mademoiselle Josette, My Woman, directed by André Berthomieu (France, 1933, based on the play Mademoiselle Josette, ma femme)
, directed by Walter Janssen (Germany, 1935, based on the operetta Bezauberndes Fräulein)
La signora in nero, directed by Nunzio Malasomma (Italy, 1943, based on the play La Petite chocolatière)
, directed by Börje Larsson (Sweden, 1945, based on the operetta Bezauberndes Fräulein)
Ma tante d'Honfleur, directed by René Jayet (France, 1949, based on the play Ma tante d'Honfleur)
The Chocolate Girl, directed by André Berthomieu (France, 1950, based on the play La Petite chocolatière)
Mademoiselle Josette, My Woman, directed by André Berthomieu (France, 1950, based on the play Mademoiselle Josette, ma femme)
The Charming Young Lady, directed by Georg Thomalla (West Germany, 1953, based on the operetta Bezauberndes Fräulein)
Bibliography
« Le nouveau directeur de l'Odéon : M. Paul Gavault », Le Miroir, 10 mai 1914
Christian Genty, Histoire du Théâtre national de l'Odéon : journal de bord, 1782-1982, Fischbacher, Paris, 1982, 320 p.
External links
19th-century French dramatists and playwrights
20th-century French dramatists and playwrights
20th-century French screenwriters
Theatre directors from Paris
1866 births
1951 deaths |
```c
/**
* OpenAL cross platform audio library
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
*
* You should have received a copy of the GNU Library General Public
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
* Or go to path_to_url
*/
#include "config.h"
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <limits.h>
#ifdef HAVE_MALLOC_H
#include <malloc.h>
#endif
#include "alMain.h"
#include "alu.h"
#include "alError.h"
#include "alBuffer.h"
#include "alThunk.h"
#include "sample_cvt.h"
extern inline struct ALbuffer *LookupBuffer(ALCdevice *device, ALuint id);
extern inline struct ALbuffer *RemoveBuffer(ALCdevice *device, ALuint id);
extern inline ALuint FrameSizeFromUserFmt(enum UserFmtChannels chans, enum UserFmtType type);
extern inline ALuint FrameSizeFromFmt(enum FmtChannels chans, enum FmtType type);
static ALenum LoadData(ALbuffer *ALBuf, ALuint freq, ALenum NewFormat, ALsizei frames, enum UserFmtChannels chans, enum UserFmtType type, const ALvoid *data, ALsizei align, ALboolean storesrc);
static ALboolean IsValidType(ALenum type);
static ALboolean IsValidChannels(ALenum channels);
static ALboolean DecomposeUserFormat(ALenum format, enum UserFmtChannels *chans, enum UserFmtType *type);
static ALboolean DecomposeFormat(ALenum format, enum FmtChannels *chans, enum FmtType *type);
static ALboolean SanitizeAlignment(enum UserFmtType type, ALsizei *align);
AL_API ALvoid AL_APIENTRY alGenBuffers(ALsizei n, ALuint *buffers)
{
ALCdevice *device;
ALCcontext *context;
ALsizei cur = 0;
ALenum err;
context = GetContextRef();
if(!context) return;
if(!(n >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
device = context->Device;
for(cur = 0;cur < n;cur++)
{
ALbuffer *buffer = calloc(1, sizeof(ALbuffer));
if(!buffer)
{
alDeleteBuffers(cur, buffers);
SET_ERROR_AND_GOTO(context, AL_OUT_OF_MEMORY, done);
}
RWLockInit(&buffer->lock);
err = NewThunkEntry(&buffer->id);
if(err == AL_NO_ERROR)
err = InsertUIntMapEntry(&device->BufferMap, buffer->id, buffer);
if(err != AL_NO_ERROR)
{
FreeThunkEntry(buffer->id);
memset(buffer, 0, sizeof(ALbuffer));
free(buffer);
alDeleteBuffers(cur, buffers);
SET_ERROR_AND_GOTO(context, err, done);
}
buffers[cur] = buffer->id;
}
done:
ALCcontext_DecRef(context);
}
AL_API ALvoid AL_APIENTRY alDeleteBuffers(ALsizei n, const ALuint *buffers)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *ALBuf;
ALsizei i;
context = GetContextRef();
if(!context) return;
if(!(n >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
device = context->Device;
for(i = 0;i < n;i++)
{
if(!buffers[i])
continue;
/* Check for valid Buffer ID */
if((ALBuf=LookupBuffer(device, buffers[i])) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(ALBuf->ref != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_OPERATION, done);
}
for(i = 0;i < n;i++)
{
if((ALBuf=RemoveBuffer(device, buffers[i])) == NULL)
continue;
FreeThunkEntry(ALBuf->id);
free(ALBuf->data);
memset(ALBuf, 0, sizeof(*ALBuf));
free(ALBuf);
}
done:
ALCcontext_DecRef(context);
}
AL_API ALboolean AL_APIENTRY alIsBuffer(ALuint buffer)
{
ALCcontext *context;
ALboolean ret;
context = GetContextRef();
if(!context) return AL_FALSE;
ret = ((!buffer || LookupBuffer(context->Device, buffer)) ?
AL_TRUE : AL_FALSE);
ALCcontext_DecRef(context);
return ret;
}
AL_API ALvoid AL_APIENTRY alBufferData(ALuint buffer, ALenum format, const ALvoid *data, ALsizei size, ALsizei freq)
{
enum UserFmtChannels srcchannels;
enum UserFmtType srctype;
ALCdevice *device;
ALCcontext *context;
ALuint framesize;
ALenum newformat;
ALbuffer *albuf;
ALsizei align;
ALenum err;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(size >= 0 && freq > 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
if(DecomposeUserFormat(format, &srcchannels, &srctype) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
align = albuf->UnpackAlign;
if(SanitizeAlignment(srctype, &align) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(srctype)
{
case UserFmtByte:
case UserFmtUByte:
case UserFmtShort:
case UserFmtUShort:
case UserFmtFloat:
framesize = FrameSizeFromUserFmt(srcchannels, srctype) * align;
if((size%framesize) != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
err = LoadData(albuf, freq, format, size/framesize*align,
srcchannels, srctype, data, align, AL_TRUE);
if(err != AL_NO_ERROR)
SET_ERROR_AND_GOTO(context, err, done);
break;
case UserFmtInt:
case UserFmtUInt:
case UserFmtByte3:
case UserFmtUByte3:
case UserFmtDouble:
framesize = FrameSizeFromUserFmt(srcchannels, srctype) * align;
if((size%framesize) != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
newformat = AL_FORMAT_MONO_FLOAT32;
switch(srcchannels)
{
case UserFmtMono: newformat = AL_FORMAT_MONO_FLOAT32; break;
case UserFmtStereo: newformat = AL_FORMAT_STEREO_FLOAT32; break;
case UserFmtRear: newformat = AL_FORMAT_REAR32; break;
case UserFmtQuad: newformat = AL_FORMAT_QUAD32; break;
case UserFmtX51: newformat = AL_FORMAT_51CHN32; break;
case UserFmtX61: newformat = AL_FORMAT_61CHN32; break;
case UserFmtX71: newformat = AL_FORMAT_71CHN32; break;
}
err = LoadData(albuf, freq, newformat, size/framesize*align,
srcchannels, srctype, data, align, AL_TRUE);
if(err != AL_NO_ERROR)
SET_ERROR_AND_GOTO(context, err, done);
break;
case UserFmtMulaw:
case UserFmtAlaw:
framesize = FrameSizeFromUserFmt(srcchannels, srctype) * align;
if((size%framesize) != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
newformat = AL_FORMAT_MONO16;
switch(srcchannels)
{
case UserFmtMono: newformat = AL_FORMAT_MONO16; break;
case UserFmtStereo: newformat = AL_FORMAT_STEREO16; break;
case UserFmtRear: newformat = AL_FORMAT_REAR16; break;
case UserFmtQuad: newformat = AL_FORMAT_QUAD16; break;
case UserFmtX51: newformat = AL_FORMAT_51CHN16; break;
case UserFmtX61: newformat = AL_FORMAT_61CHN16; break;
case UserFmtX71: newformat = AL_FORMAT_71CHN16; break;
}
err = LoadData(albuf, freq, newformat, size/framesize*align,
srcchannels, srctype, data, align, AL_TRUE);
if(err != AL_NO_ERROR)
SET_ERROR_AND_GOTO(context, err, done);
break;
case UserFmtIMA4:
framesize = (align-1)/2 + 4;
framesize *= ChannelsFromUserFmt(srcchannels);
if((size%framesize) != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
newformat = AL_FORMAT_MONO16;
switch(srcchannels)
{
case UserFmtMono: newformat = AL_FORMAT_MONO16; break;
case UserFmtStereo: newformat = AL_FORMAT_STEREO16; break;
case UserFmtRear: newformat = AL_FORMAT_REAR16; break;
case UserFmtQuad: newformat = AL_FORMAT_QUAD16; break;
case UserFmtX51: newformat = AL_FORMAT_51CHN16; break;
case UserFmtX61: newformat = AL_FORMAT_61CHN16; break;
case UserFmtX71: newformat = AL_FORMAT_71CHN16; break;
}
err = LoadData(albuf, freq, newformat, size/framesize*align,
srcchannels, srctype, data, align, AL_TRUE);
if(err != AL_NO_ERROR)
SET_ERROR_AND_GOTO(context, err, done);
break;
case UserFmtMSADPCM:
framesize = (align-2)/2 + 7;
framesize *= ChannelsFromUserFmt(srcchannels);
if((size%framesize) != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
newformat = AL_FORMAT_MONO16;
switch(srcchannels)
{
case UserFmtMono: newformat = AL_FORMAT_MONO16; break;
case UserFmtStereo: newformat = AL_FORMAT_STEREO16; break;
case UserFmtRear: newformat = AL_FORMAT_REAR16; break;
case UserFmtQuad: newformat = AL_FORMAT_QUAD16; break;
case UserFmtX51: newformat = AL_FORMAT_51CHN16; break;
case UserFmtX61: newformat = AL_FORMAT_61CHN16; break;
case UserFmtX71: newformat = AL_FORMAT_71CHN16; break;
}
err = LoadData(albuf, freq, newformat, size/framesize*align,
srcchannels, srctype, data, align, AL_TRUE);
if(err != AL_NO_ERROR)
SET_ERROR_AND_GOTO(context, err, done);
break;
}
done:
ALCcontext_DecRef(context);
}
AL_API ALvoid AL_APIENTRY alBufferSubDataSOFT(ALuint buffer, ALenum format, const ALvoid *data, ALsizei offset, ALsizei length)
{
enum UserFmtChannels srcchannels;
enum UserFmtType srctype;
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
ALuint byte_align;
ALuint channels;
ALuint bytes;
ALsizei align;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(length >= 0 && offset >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
if(DecomposeUserFormat(format, &srcchannels, &srctype) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
WriteLock(&albuf->lock);
align = albuf->UnpackAlign;
if(SanitizeAlignment(srctype, &align) == AL_FALSE)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
if(srcchannels != albuf->OriginalChannels || srctype != albuf->OriginalType)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
if(align != albuf->OriginalAlign)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
if(albuf->OriginalType == UserFmtIMA4)
{
byte_align = (albuf->OriginalAlign-1)/2 + 4;
byte_align *= ChannelsFromUserFmt(albuf->OriginalChannels);
}
else if(albuf->OriginalType == UserFmtMSADPCM)
{
byte_align = (albuf->OriginalAlign-2)/2 + 7;
byte_align *= ChannelsFromUserFmt(albuf->OriginalChannels);
}
else
{
byte_align = albuf->OriginalAlign;
byte_align *= FrameSizeFromUserFmt(albuf->OriginalChannels,
albuf->OriginalType);
}
if(offset > albuf->OriginalSize || length > albuf->OriginalSize-offset ||
(offset%byte_align) != 0 || (length%byte_align) != 0)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
channels = ChannelsFromFmt(albuf->FmtChannels);
bytes = BytesFromFmt(albuf->FmtType);
/* offset -> byte offset, length -> sample count */
offset = offset/byte_align * channels*bytes;
length = length/byte_align * albuf->OriginalAlign;
ConvertData((char*)albuf->data+offset, (enum UserFmtType)albuf->FmtType,
data, srctype, channels, length, align);
WriteUnlock(&albuf->lock);
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBufferSamplesSOFT(ALuint buffer,
ALuint samplerate, ALenum internalformat, ALsizei samples,
ALenum channels, ALenum type, const ALvoid *data)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
ALsizei align;
ALenum err;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(samples >= 0 && samplerate != 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
if(IsValidType(type) == AL_FALSE || IsValidChannels(channels) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
align = albuf->UnpackAlign;
if(SanitizeAlignment(type, &align) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
if((samples%align) != 0)
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
err = LoadData(albuf, samplerate, internalformat, samples,
channels, type, data, align, AL_FALSE);
if(err != AL_NO_ERROR)
SET_ERROR_AND_GOTO(context, err, done);
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBufferSubSamplesSOFT(ALuint buffer,
ALsizei offset, ALsizei samples,
ALenum channels, ALenum type, const ALvoid *data)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
ALsizei align;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(samples >= 0 && offset >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
if(IsValidType(type) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
WriteLock(&albuf->lock);
align = albuf->UnpackAlign;
if(SanitizeAlignment(type, &align) == AL_FALSE)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
if(channels != (ALenum)albuf->FmtChannels)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
if(offset > albuf->SampleLen || samples > albuf->SampleLen-offset)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
if((samples%align) != 0)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
/* offset -> byte offset */
offset *= FrameSizeFromFmt(albuf->FmtChannels, albuf->FmtType);
ConvertData((char*)albuf->data+offset, (enum UserFmtType)albuf->FmtType,
data, type, ChannelsFromFmt(albuf->FmtChannels), samples, align);
WriteUnlock(&albuf->lock);
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alGetBufferSamplesSOFT(ALuint buffer,
ALsizei offset, ALsizei samples,
ALenum channels, ALenum type, ALvoid *data)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
ALsizei align;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(samples >= 0 && offset >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
if(IsValidType(type) == AL_FALSE)
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
ReadLock(&albuf->lock);
align = albuf->PackAlign;
if(SanitizeAlignment(type, &align) == AL_FALSE)
{
ReadUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
if(channels != (ALenum)albuf->FmtChannels)
{
ReadUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
if(offset > albuf->SampleLen || samples > albuf->SampleLen-offset)
{
ReadUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
if((samples%align) != 0)
{
ReadUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
/* offset -> byte offset */
offset *= FrameSizeFromFmt(albuf->FmtChannels, albuf->FmtType);
ConvertData(data, type, (char*)albuf->data+offset, (enum UserFmtType)albuf->FmtType,
ChannelsFromFmt(albuf->FmtChannels), samples, align);
ReadUnlock(&albuf->lock);
done:
ALCcontext_DecRef(context);
}
AL_API ALboolean AL_APIENTRY alIsBufferFormatSupportedSOFT(ALenum format)
{
enum FmtChannels dstchannels;
enum FmtType dsttype;
ALCcontext *context;
ALboolean ret;
context = GetContextRef();
if(!context) return AL_FALSE;
ret = DecomposeFormat(format, &dstchannels, &dsttype);
ALCcontext_DecRef(context);
return ret;
}
AL_API void AL_APIENTRY alBufferf(ALuint buffer, ALenum param, ALfloat UNUSED(value))
{
ALCdevice *device;
ALCcontext *context;
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBuffer3f(ALuint buffer, ALenum param, ALfloat UNUSED(value1), ALfloat UNUSED(value2), ALfloat UNUSED(value3))
{
ALCdevice *device;
ALCcontext *context;
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBufferfv(ALuint buffer, ALenum param, const ALfloat *values)
{
ALCdevice *device;
ALCcontext *context;
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(values))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBufferi(ALuint buffer, ALenum param, ALint value)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
switch(param)
{
case AL_UNPACK_BLOCK_ALIGNMENT_SOFT:
if(!(value >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
ExchangeInt(&albuf->UnpackAlign, value);
break;
case AL_PACK_BLOCK_ALIGNMENT_SOFT:
if(!(value >= 0))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
ExchangeInt(&albuf->PackAlign, value);
break;
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBuffer3i(ALuint buffer, ALenum param, ALint UNUSED(value1), ALint UNUSED(value2), ALint UNUSED(value3))
{
ALCdevice *device;
ALCcontext *context;
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alBufferiv(ALuint buffer, ALenum param, const ALint *values)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
if(values)
{
switch(param)
{
case AL_UNPACK_BLOCK_ALIGNMENT_SOFT:
case AL_PACK_BLOCK_ALIGNMENT_SOFT:
alBufferi(buffer, param, values[0]);
return;
}
}
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(values))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
case AL_LOOP_POINTS_SOFT:
WriteLock(&albuf->lock);
if(albuf->ref != 0)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_OPERATION, done);
}
if(values[0] >= values[1] || values[0] < 0 ||
values[1] > albuf->SampleLen)
{
WriteUnlock(&albuf->lock);
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
}
albuf->LoopStart = values[0];
albuf->LoopEnd = values[1];
WriteUnlock(&albuf->lock);
break;
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API ALvoid AL_APIENTRY alGetBufferf(ALuint buffer, ALenum param, ALfloat *value)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(value))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
case AL_SEC_LENGTH_SOFT:
ReadLock(&albuf->lock);
if(albuf->SampleLen != 0)
*value = albuf->SampleLen / (ALfloat)albuf->Frequency;
else
*value = 0.0f;
ReadUnlock(&albuf->lock);
break;
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alGetBuffer3f(ALuint buffer, ALenum param, ALfloat *value1, ALfloat *value2, ALfloat *value3)
{
ALCdevice *device;
ALCcontext *context;
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(value1 && value2 && value3))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alGetBufferfv(ALuint buffer, ALenum param, ALfloat *values)
{
ALCdevice *device;
ALCcontext *context;
switch(param)
{
case AL_SEC_LENGTH_SOFT:
alGetBufferf(buffer, param, values);
return;
}
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(values))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API ALvoid AL_APIENTRY alGetBufferi(ALuint buffer, ALenum param, ALint *value)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(value))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
case AL_FREQUENCY:
*value = albuf->Frequency;
break;
case AL_BITS:
*value = BytesFromFmt(albuf->FmtType) * 8;
break;
case AL_CHANNELS:
*value = ChannelsFromFmt(albuf->FmtChannels);
break;
case AL_SIZE:
ReadLock(&albuf->lock);
*value = albuf->SampleLen * FrameSizeFromFmt(albuf->FmtChannels,
albuf->FmtType);
ReadUnlock(&albuf->lock);
break;
case AL_INTERNAL_FORMAT_SOFT:
*value = albuf->Format;
break;
case AL_BYTE_LENGTH_SOFT:
*value = albuf->OriginalSize;
break;
case AL_SAMPLE_LENGTH_SOFT:
*value = albuf->SampleLen;
break;
case AL_UNPACK_BLOCK_ALIGNMENT_SOFT:
*value = albuf->UnpackAlign;
break;
case AL_PACK_BLOCK_ALIGNMENT_SOFT:
*value = albuf->PackAlign;
break;
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alGetBuffer3i(ALuint buffer, ALenum param, ALint *value1, ALint *value2, ALint *value3)
{
ALCdevice *device;
ALCcontext *context;
context = GetContextRef();
if(!context) return;
device = context->Device;
if(LookupBuffer(device, buffer) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(value1 && value2 && value3))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
AL_API void AL_APIENTRY alGetBufferiv(ALuint buffer, ALenum param, ALint *values)
{
ALCdevice *device;
ALCcontext *context;
ALbuffer *albuf;
switch(param)
{
case AL_FREQUENCY:
case AL_BITS:
case AL_CHANNELS:
case AL_SIZE:
case AL_INTERNAL_FORMAT_SOFT:
case AL_BYTE_LENGTH_SOFT:
case AL_SAMPLE_LENGTH_SOFT:
case AL_UNPACK_BLOCK_ALIGNMENT_SOFT:
case AL_PACK_BLOCK_ALIGNMENT_SOFT:
alGetBufferi(buffer, param, values);
return;
}
context = GetContextRef();
if(!context) return;
device = context->Device;
if((albuf=LookupBuffer(device, buffer)) == NULL)
SET_ERROR_AND_GOTO(context, AL_INVALID_NAME, done);
if(!(values))
SET_ERROR_AND_GOTO(context, AL_INVALID_VALUE, done);
switch(param)
{
case AL_LOOP_POINTS_SOFT:
ReadLock(&albuf->lock);
values[0] = albuf->LoopStart;
values[1] = albuf->LoopEnd;
ReadUnlock(&albuf->lock);
break;
default:
SET_ERROR_AND_GOTO(context, AL_INVALID_ENUM, done);
}
done:
ALCcontext_DecRef(context);
}
/*
* LoadData
*
* Loads the specified data into the buffer, using the specified formats.
* Currently, the new format must have the same channel configuration as the
* original format.
*/
static ALenum LoadData(ALbuffer *ALBuf, ALuint freq, ALenum NewFormat, ALsizei frames, enum UserFmtChannels SrcChannels, enum UserFmtType SrcType, const ALvoid *data, ALsizei align, ALboolean storesrc)
{
ALuint NewChannels, NewBytes;
enum FmtChannels DstChannels;
enum FmtType DstType;
ALuint64 newsize;
ALvoid *temp;
if(DecomposeFormat(NewFormat, &DstChannels, &DstType) == AL_FALSE ||
(long)SrcChannels != (long)DstChannels)
return AL_INVALID_ENUM;
NewChannels = ChannelsFromFmt(DstChannels);
NewBytes = BytesFromFmt(DstType);
newsize = frames;
newsize *= NewBytes;
newsize *= NewChannels;
if(newsize > INT_MAX)
return AL_OUT_OF_MEMORY;
WriteLock(&ALBuf->lock);
if(ALBuf->ref != 0)
{
WriteUnlock(&ALBuf->lock);
return AL_INVALID_OPERATION;
}
temp = realloc(ALBuf->data, (size_t)newsize);
if(!temp && newsize)
{
WriteUnlock(&ALBuf->lock);
return AL_OUT_OF_MEMORY;
}
ALBuf->data = temp;
if(data != NULL)
ConvertData(ALBuf->data, (enum UserFmtType)DstType, data, SrcType, NewChannels, frames, align);
if(storesrc)
{
ALBuf->OriginalChannels = SrcChannels;
ALBuf->OriginalType = SrcType;
if(SrcType == UserFmtIMA4)
{
ALsizei byte_align = ((align-1)/2 + 4) * ChannelsFromUserFmt(SrcChannels);
ALBuf->OriginalSize = frames / align * byte_align;
ALBuf->OriginalAlign = align;
}
else if(SrcType == UserFmtMSADPCM)
{
ALsizei byte_align = ((align-2)/2 + 7) * ChannelsFromUserFmt(SrcChannels);
ALBuf->OriginalSize = frames / align * byte_align;
ALBuf->OriginalAlign = align;
}
else
{
ALBuf->OriginalSize = frames * FrameSizeFromUserFmt(SrcChannels, SrcType);
ALBuf->OriginalAlign = 1;
}
}
else
{
ALBuf->OriginalChannels = (enum UserFmtChannels)DstChannels;
ALBuf->OriginalType = (enum UserFmtType)DstType;
ALBuf->OriginalSize = frames * NewBytes * NewChannels;
ALBuf->OriginalAlign = 1;
}
ALBuf->Frequency = freq;
ALBuf->FmtChannels = DstChannels;
ALBuf->FmtType = DstType;
ALBuf->Format = NewFormat;
ALBuf->SampleLen = frames;
ALBuf->LoopStart = 0;
ALBuf->LoopEnd = ALBuf->SampleLen;
WriteUnlock(&ALBuf->lock);
return AL_NO_ERROR;
}
ALuint BytesFromUserFmt(enum UserFmtType type)
{
switch(type)
{
case UserFmtByte: return sizeof(ALbyte);
case UserFmtUByte: return sizeof(ALubyte);
case UserFmtShort: return sizeof(ALshort);
case UserFmtUShort: return sizeof(ALushort);
case UserFmtInt: return sizeof(ALint);
case UserFmtUInt: return sizeof(ALuint);
case UserFmtFloat: return sizeof(ALfloat);
case UserFmtDouble: return sizeof(ALdouble);
case UserFmtByte3: return sizeof(ALbyte[3]);
case UserFmtUByte3: return sizeof(ALubyte[3]);
case UserFmtMulaw: return sizeof(ALubyte);
case UserFmtAlaw: return sizeof(ALubyte);
case UserFmtIMA4: break; /* not handled here */
case UserFmtMSADPCM: break; /* not handled here */
}
return 0;
}
ALuint ChannelsFromUserFmt(enum UserFmtChannels chans)
{
switch(chans)
{
case UserFmtMono: return 1;
case UserFmtStereo: return 2;
case UserFmtRear: return 2;
case UserFmtQuad: return 4;
case UserFmtX51: return 6;
case UserFmtX61: return 7;
case UserFmtX71: return 8;
}
return 0;
}
static ALboolean DecomposeUserFormat(ALenum format, enum UserFmtChannels *chans,
enum UserFmtType *type)
{
static const struct {
ALenum format;
enum UserFmtChannels channels;
enum UserFmtType type;
} list[] = {
{ AL_FORMAT_MONO8, UserFmtMono, UserFmtUByte },
{ AL_FORMAT_MONO16, UserFmtMono, UserFmtShort },
{ AL_FORMAT_MONO_FLOAT32, UserFmtMono, UserFmtFloat },
{ AL_FORMAT_MONO_DOUBLE_EXT, UserFmtMono, UserFmtDouble },
{ AL_FORMAT_MONO_IMA4, UserFmtMono, UserFmtIMA4 },
{ AL_FORMAT_MONO_MSADPCM_SOFT, UserFmtMono, UserFmtMSADPCM },
{ AL_FORMAT_MONO_MULAW, UserFmtMono, UserFmtMulaw },
{ AL_FORMAT_MONO_ALAW_EXT, UserFmtMono, UserFmtAlaw },
{ AL_FORMAT_STEREO8, UserFmtStereo, UserFmtUByte },
{ AL_FORMAT_STEREO16, UserFmtStereo, UserFmtShort },
{ AL_FORMAT_STEREO_FLOAT32, UserFmtStereo, UserFmtFloat },
{ AL_FORMAT_STEREO_DOUBLE_EXT, UserFmtStereo, UserFmtDouble },
{ AL_FORMAT_STEREO_IMA4, UserFmtStereo, UserFmtIMA4 },
{ AL_FORMAT_STEREO_MSADPCM_SOFT, UserFmtStereo, UserFmtMSADPCM },
{ AL_FORMAT_STEREO_MULAW, UserFmtStereo, UserFmtMulaw },
{ AL_FORMAT_STEREO_ALAW_EXT, UserFmtStereo, UserFmtAlaw },
{ AL_FORMAT_REAR8, UserFmtRear, UserFmtUByte },
{ AL_FORMAT_REAR16, UserFmtRear, UserFmtShort },
{ AL_FORMAT_REAR32, UserFmtRear, UserFmtFloat },
{ AL_FORMAT_REAR_MULAW, UserFmtRear, UserFmtMulaw },
{ AL_FORMAT_QUAD8_LOKI, UserFmtQuad, UserFmtUByte },
{ AL_FORMAT_QUAD16_LOKI, UserFmtQuad, UserFmtShort },
{ AL_FORMAT_QUAD8, UserFmtQuad, UserFmtUByte },
{ AL_FORMAT_QUAD16, UserFmtQuad, UserFmtShort },
{ AL_FORMAT_QUAD32, UserFmtQuad, UserFmtFloat },
{ AL_FORMAT_QUAD_MULAW, UserFmtQuad, UserFmtMulaw },
{ AL_FORMAT_51CHN8, UserFmtX51, UserFmtUByte },
{ AL_FORMAT_51CHN16, UserFmtX51, UserFmtShort },
{ AL_FORMAT_51CHN32, UserFmtX51, UserFmtFloat },
{ AL_FORMAT_51CHN_MULAW, UserFmtX51, UserFmtMulaw },
{ AL_FORMAT_61CHN8, UserFmtX61, UserFmtUByte },
{ AL_FORMAT_61CHN16, UserFmtX61, UserFmtShort },
{ AL_FORMAT_61CHN32, UserFmtX61, UserFmtFloat },
{ AL_FORMAT_61CHN_MULAW, UserFmtX61, UserFmtMulaw },
{ AL_FORMAT_71CHN8, UserFmtX71, UserFmtUByte },
{ AL_FORMAT_71CHN16, UserFmtX71, UserFmtShort },
{ AL_FORMAT_71CHN32, UserFmtX71, UserFmtFloat },
{ AL_FORMAT_71CHN_MULAW, UserFmtX71, UserFmtMulaw },
};
ALuint i;
for(i = 0;i < COUNTOF(list);i++)
{
if(list[i].format == format)
{
*chans = list[i].channels;
*type = list[i].type;
return AL_TRUE;
}
}
return AL_FALSE;
}
ALuint BytesFromFmt(enum FmtType type)
{
switch(type)
{
case FmtByte: return sizeof(ALbyte);
case FmtShort: return sizeof(ALshort);
case FmtFloat: return sizeof(ALfloat);
}
return 0;
}
ALuint ChannelsFromFmt(enum FmtChannels chans)
{
switch(chans)
{
case FmtMono: return 1;
case FmtStereo: return 2;
case FmtRear: return 2;
case FmtQuad: return 4;
case FmtX51: return 6;
case FmtX61: return 7;
case FmtX71: return 8;
}
return 0;
}
static ALboolean DecomposeFormat(ALenum format, enum FmtChannels *chans, enum FmtType *type)
{
static const struct {
ALenum format;
enum FmtChannels channels;
enum FmtType type;
} list[] = {
{ AL_MONO8_SOFT, FmtMono, FmtByte },
{ AL_MONO16_SOFT, FmtMono, FmtShort },
{ AL_MONO32F_SOFT, FmtMono, FmtFloat },
{ AL_STEREO8_SOFT, FmtStereo, FmtByte },
{ AL_STEREO16_SOFT, FmtStereo, FmtShort },
{ AL_STEREO32F_SOFT, FmtStereo, FmtFloat },
{ AL_REAR8_SOFT, FmtRear, FmtByte },
{ AL_REAR16_SOFT, FmtRear, FmtShort },
{ AL_REAR32F_SOFT, FmtRear, FmtFloat },
{ AL_FORMAT_QUAD8_LOKI, FmtQuad, FmtByte },
{ AL_FORMAT_QUAD16_LOKI, FmtQuad, FmtShort },
{ AL_QUAD8_SOFT, FmtQuad, FmtByte },
{ AL_QUAD16_SOFT, FmtQuad, FmtShort },
{ AL_QUAD32F_SOFT, FmtQuad, FmtFloat },
{ AL_5POINT1_8_SOFT, FmtX51, FmtByte },
{ AL_5POINT1_16_SOFT, FmtX51, FmtShort },
{ AL_5POINT1_32F_SOFT, FmtX51, FmtFloat },
{ AL_6POINT1_8_SOFT, FmtX61, FmtByte },
{ AL_6POINT1_16_SOFT, FmtX61, FmtShort },
{ AL_6POINT1_32F_SOFT, FmtX61, FmtFloat },
{ AL_7POINT1_8_SOFT, FmtX71, FmtByte },
{ AL_7POINT1_16_SOFT, FmtX71, FmtShort },
{ AL_7POINT1_32F_SOFT, FmtX71, FmtFloat },
};
ALuint i;
for(i = 0;i < COUNTOF(list);i++)
{
if(list[i].format == format)
{
*chans = list[i].channels;
*type = list[i].type;
return AL_TRUE;
}
}
return AL_FALSE;
}
static ALboolean SanitizeAlignment(enum UserFmtType type, ALsizei *align)
{
if(*align < 0)
return AL_FALSE;
if(*align == 0)
{
if(type == UserFmtIMA4)
{
/* Here is where things vary:
* nVidia and Apple use 64+1 sample frames per block -> block_size=36 bytes per channel
* Most PC sound software uses 2040+1 sample frames per block -> block_size=1024 bytes per channel
*/
*align = 65;
}
else if(type == UserFmtMSADPCM)
*align = 64;
else
*align = 1;
return AL_TRUE;
}
if(type == UserFmtIMA4)
{
/* IMA4 block alignment must be a multiple of 8, plus 1. */
return ((*align)&7) == 1;
}
if(type == UserFmtMSADPCM)
{
/* MSADPCM block alignment must be a multiple of 2. */
/* FIXME: Too strict? Might only require align*channels to be a
* multiple of 2. */
return ((*align)&1) == 0;
}
return AL_TRUE;
}
static ALboolean IsValidType(ALenum type)
{
switch(type)
{
case AL_BYTE_SOFT:
case AL_UNSIGNED_BYTE_SOFT:
case AL_SHORT_SOFT:
case AL_UNSIGNED_SHORT_SOFT:
case AL_INT_SOFT:
case AL_UNSIGNED_INT_SOFT:
case AL_FLOAT_SOFT:
case AL_DOUBLE_SOFT:
case AL_BYTE3_SOFT:
case AL_UNSIGNED_BYTE3_SOFT:
return AL_TRUE;
}
return AL_FALSE;
}
static ALboolean IsValidChannels(ALenum channels)
{
switch(channels)
{
case AL_MONO_SOFT:
case AL_STEREO_SOFT:
case AL_REAR_SOFT:
case AL_QUAD_SOFT:
case AL_5POINT1_SOFT:
case AL_6POINT1_SOFT:
case AL_7POINT1_SOFT:
return AL_TRUE;
}
return AL_FALSE;
}
/*
* ReleaseALBuffers()
*
* INTERNAL: Called to destroy any buffers that still exist on the device
*/
ALvoid ReleaseALBuffers(ALCdevice *device)
{
ALsizei i;
for(i = 0;i < device->BufferMap.size;i++)
{
ALbuffer *temp = device->BufferMap.array[i].value;
device->BufferMap.array[i].value = NULL;
free(temp->data);
FreeThunkEntry(temp->id);
memset(temp, 0, sizeof(ALbuffer));
free(temp);
}
}
``` |
Princess Mkabayi kaJama (c. 1750–1843) was a Zulu princess, the head of the Qulusi military kraal, and a regent of the Zulu Kingdom. She persuaded her father, the Zulu King Jama kaNdaba, to remarry, and acted as a regent during the reign of her half-brother, Senzangakhona.
She was a kingmaker for three succeeding reigns, leading coups and arranging assassinations. She is credited for bringing stability in the Zulu nation and ensuring the continuation of the Zulu line and monarchy.
Early years
According to oral history Mkabayi was born a twin, and Zulu custom required that one of the two girls be killed at birth to avoid bad luck and the wrath of the ancestors but Zulu chief Jama acted contrary to tradition and spared both Mkabayi and her sister, Mmame. For this reason, and being of stronger character than her sister, Mkabayi grew up being resented by the Zulu people and was blamed for much of the chiefdom's misfortune.
In 1762, recognising that her father the chief was growing old and still without a son, Mkabayi went about courting Jama a wife who would have a child, his heir, without his knowledge. From this effort, Jama would marry Mthaniya, of the Sibiya clan, who had a son with him. In recognition of Mkabayi's effort to ensure the continuation of the Zulu line and monarch, the child was named Senzangakhona, meaning "we have done accordingly."
Regency
For her role in ensuring an heir to the throne, Mkabayi was able to win the favour of the Zulu people but this did not last for long. In 1781, upon the passing of Jama and recognising that Senzangakhona was too young to ascend the chiefdom, Mkabayi appointed herself regent; something that was unheard of at the time.
Role in Senzangakhona's reign
When Senzangakhona came of age in 1787, Mkabayi stepped down as regent but continued to serve an advisory role to the chief. Additionally, as was custom, unmarried chief's daughters served as head of military units and Mkabayi turned away many suitors to continue serving as the head of the ebaQulusini (the place where they turned out buttocks) unit.
Role in Shaka's reign
After Senzangakhona's passing in 1816, his son Sigujana was due to ascend. Mkabayi, recognising a weakness of character within Sigujana, organised for Senzangakhona's other son, Shaka kaSenzangakhona, to challenge Sigujana. Shaka, along with his mother Nandi kaBhebhe, had been cast away and had settled with and gained the favour of the Mthethwa chief, Dingiswayo.
Learning of Shaka's desire to seize the throne and aware of Shaka's military prowess, Sigujana fled, allowing Shaka to ascend the throne as king (instead of chief). During the reign of Shaka, Mkabayi continued to serve as a close advisor to the king and head of ebaQulusini. There, she founded the abaQulusi tribe which had a determining role in the wars to come.
After Nandi's death, Shaka was accused of abusing power and wishing to preserve the Zulu kingdom Shaka had since built, Mkabayi plotted with Dingane kaSenzangakhona and Mhlangana kaSenzangakhona to assassinate Shaka and, wishing to ensure Dingane's ascension to the throne, Mkabayi later organised for Mhlangana to be assassinated as well.
Role in Dingane's reign and death
During the reign of Dingane, Mkabayi would again continue to serve the roles she had served under Shaka and Senzangakhona, repeatedly turning away suitors who requested her hand in marriage in order to serve the growing Zulu kingdom. However, when Mpande kaSenzangakhona defeated Dingane and assumed the throne in 1840, Mkabayi was banished to Natal, age 89.
She died 3 years later in 1843.
References
1750 births
1843 deaths
19th-century women rulers
Female regents
South African animists
Zulu royalty
Zulu twins
Zulu history |
Mr. Dibbs (born Bradley Duane Forste) is an American DJ and hip hop producer. He is the Founder of 1200 HOBOS [dj/graff collective]. He was also one of the founders of Scribble Jam.
Early life
Born in Cincinnati, Ohio, Forste was introduced to DJing around 1985, when he saw Grandmaster Flash performing on the syndicated light news/entertainment show PM Magazine, but "didn't really understand what he did." After watching an MTV broadcast of Grand Mixer DXT performing with Herbie Hancock on the latter's 1983 single "Rockit," he learned the hand motions and began to learn scratching himself. He estimates that he spent six months "getting the hang of" scratching, subsequently spending two years "cutting and scratching to whatever was on TV" to practice.
Career
Mr. Dibbs formed his own turntablist crew 1200 Hobos in the early 1990s. The crew's rotating line-up has included Doseone, Jel, Buck 65, Sixtoo, Adverse, DJ Signify, DJ Mayonnaise, DJ Skip among others, and at its largest numbered 23 members. They have released two mixtapes.
In addition to 1200 Hobos, Mr. Dibbs has also been touring DJ for Atmosphere and El-P. With Doseone and Jel, he is also a member of Presage, who released one album Outer Perimeter in 1998.
In 1996, Mr. Dibbs teamed up with graffiti magazine Scribble to put on the first Scribble Jam event as a promotion for the magazine's launch. The event has since become America's largest hip hop festival with separate competitions for rapping, DJing, graffiti, b-boying and beatboxing. Its past participants and guests have included Juice, Eminem, Adeem, P.E.A.C.E., Eyedea, Sage Francis, Mac Lethal, Rhymefest, Nocando, Skratch Bastid and DJ Abilities.
Mr. Dibbs' Turntable Hardcore series of albums was notable for its genre-straddling approach, blending a wide variety of styles along with more usual hip hop turntablism.
Discography
Solo records
Turntable Scientifics (Four Ways To Rock, 1995, CD reissue 1998)
Live in Memphis (Stereo-Type, 2000)
Primitive Tracks (Cease And Desist, 2000)
Unearthed Vol. 1 (Cease And Desist, 2000)
Unearthed Vol. 2 (Cease And Desist, 2000)
Unearthed Vol. 3 (Cease And Desist, 2000)
Abduction Of The Times 6.66 (Mary Joy, 2001)
Random Vol. 1 (Puddles Frothingsquat, 2002)
Random Vol. 2 (Puddles Frothingsquat, 2002)
Random Vol. 3/Sad Clown Bad Dub 7 (2003)
Outreach 5 (Rhymesayers Entertainment, 2003)
The 30th Song (Rhymesayers Entertainment, 2003)
Turntable Hardcore (Puddles Frothingsquat, 2003)
Turntable Hardcore 2 (Puddles Frothingsquat, 2004)
Ugly and Proud Vol. 1 (Shake It!, 2004)
Ugly and Proud Vol. 2 (Shake It!, 2004)
Ugly and Proud Vol. 3 (Shake It!, 2005)
Eat Meat (2003)
Eat Meat 2 (2007)
′′DeadWorld Reborn′′ (2012)
"Below The Threshold"
Single - [INIM E.G. 2023]
"Analog Deprogramming At 476MHZ"
Single - [INIM E.G. 2022]
Habitat/Thrasher Magazine
Guest appearances
Doseone - "Bronchial Cleansing" from Hemispheres (A Purple 100, 1998)
Themselves - "John Brown's Vaporizer" from Them (Anticon, 1999)
Cryptic Souls Crew, Man of the Year, Hot Rod Monster Jam, and Cold Chillin' Len's "You Can't Stop the Bum Rush" (Work, 1999)
Peanut Butter Wolf - "Mr. Dibbs" from My Vinyl Weighs a Ton (Stones Throw Records, 1999)
Greenthink - Blindfold (self-released, 1999)
Why? / Odd Nosdam - "Untitled" from Split EP! (Anticon, 2001)
Clouddead - "(Cloud Dead Number Five) (1)" "(Cloud Dead Number Five) (2)" from Clouddead (Mush Records/Big Dada, 2001)
Felt - Felt: A Tribute to Christina Ricci (Rhymesayers Entertainment, 2002)
Sage Francis - "Kill Ya' Momz" from Personal Journals (Anticon, 2002)
Murs - "Dibbs Did This Shit (Interlude)" from The End of the Beginning (Definitive Jux, 2003)
Suffocate Faster - "Death Becomes Her/Grinder feat. Mr. Dibbs" from "Only Time Will Tell" (Broken Sounds, 2004)
Gym Class Heroes - "Papercuts (The Reason for the Lesions Remix by Mr. Dibbs)" from The Papercut Chronicles (Fueled by Ramen/Decaydance Records, 2005)
Barfly - The Barfly Mix CD (Self Core Records, 2006)
Terror - "Dibbs and Murs Check In" from Always the Hard Way (Trustkill Records, 2006)
El-P - "Tasmanian Pain Coaster" "Smithereens" "Run the Numbers" "Habeas Corpses" from I'll Sleep When You're Dead (Definitive Jux, 2007)
SMTDLR-Terra Infirma “Smutface The Phantom” “Public Service Announcement” 2020
Compilation & soundtrack appearances
"Listen" with DJ Osiris on Ropeladder 12 (Mush Records, 2000)
"Who's Listening?" "What Was It?" with Fat Jon on Tags of the Times 3 (Mary Joy Recordings, 2001)
"Invitation to Hell" as Presage on Urban Revolutions (Future Primitive Sound, 2001)
"Divine Spirit" on Suite for Weldon (Stones Throw, 2003)
"Skin Therapy" on Tony Hawk's Underground (Activision, 2003)
"Everything Burns, Everybody Bleeds"
[INIM E.G. 2021]
MRDIBBS & Brett Fullerton
"Non Compos Mentis / Boule De Plongeon"
[INIM E.G. 2022]
MRDIBBS & BRETT FULLERTON
"ALL THATS LEFT IS THE KNIFE" - MRDIBBS X N8NOFACE X BRAINABIDING
Single [INIM E.G. 2023]
References
Radio Feature Some Assembly Required interview with Mr. Dibbs (2007)
External links
American hip hop DJs
American hip hop record producers
Year of birth missing (living people)
Living people
Midwest hip hop musicians
Musicians from Cincinnati |
Jody Clark (born 1 March 1981) is a British engraver formerly employed by the Royal Mint. He designed the fifth and final portrait of Queen Elizabeth II to feature on coins of the pound sterling, and that portrait was the sixth and final to feature on coins of the Australian dollar.
Career
Since he joined the Royal Mint in September 2012, Clark has worked on a number of projects including commemorative pieces which were given to attendees of the 2014 NATO Summit in Wales and medals struck to commemorate the 2014 Ryder Cup which took place at Gleneagles Hotel, Scotland. He has also worked on commissions for Azerbaijan, Costa Rica, Lesotho and Tanzania. In 2014 a design by Clark was featured on the Britannia coin. Prior to joining the Mint, Clark worked in commercial packaging design.
In 2015 Clark's anonymous submission to a design competition was chosen to become the fifth definitive coin portrait of Elizabeth II to feature on British coins. Clark was the first employee of the Royal Mint in over one hundred years to have designed such a portrait of the monarch. At the age of 33 when his design was chosen, Clark was younger than any of the other four designers to have created portraits of Elizabeth II for British coinage at the time their design was chosen. Uniquely, Clark's portrait of the Queen was created using computer-aided design software to turn his initial sketches into the required low-relief model, with no manual sculpting being used. Production of coins bearing Clark's design began on 2 March 2015, and they appeared in circulation later in 2015.
Personal life
Clark is originally from the Lake District in Cumbria. In early 2015 he went on paternity leave following the birth of his first child.
References
1981 births
Living people
English designers
British medallists
British currency designers
British engravers
Coin designers
People from Cumbria |
Unhoused may refer to:
the state of homelessness
Unhoused.org, an anti-homeless non-profit |
The Organ Rock Formation or Organ Rock Shale is a formation within the late Pennsylvanian to early Permian Cutler Group and is deposited across southeastern Utah, northwestern New Mexico, and northeastern Arizona. This formation notably outcrops around Canyonlands National Park, Natural Bridges National Monument, and Monument Valley of northeast Arizona, southern Utah. The age of the Organ Rock is constrained to the latter half of the Cisuralian epoch by age dates from overlying and underlying formations. Important early terrestrial vertebrate fossils have been recovered from this formation in northern Arizona, southern Utah, and northern New Mexico. These include the iconic Permian terrestrial fauna: Seymouria, Diadectes, Ophiacodon, and Dimetrodon. The fossil assemblage present suggests arid environmental conditions. This is corroborated with paleoclimate data indicative of global drying throughout the early Permian.
Geographic extent
The Organ Rock Formation is present across southeastern Utah, U.S.A. It outcrops around Canyonlands National Park, Natural Bridges National Monument, and Monument Valley. In these areas the Organ Rock typically outcrops as a dark-red/brown siltstone to mudstone gently dipping towards the southeast. Within Canyonlands N.P. it forms towers which are meters to tens of meters tall. These are protected by caps of the White Rim Sandstone. In general, the Organ Rock Formation records the evolution of terminal fluvial fans, which dry up into sections of overlying formations. Animals living during the time of the Organ Rock's deposition had the capacity to travel across most of earth's landmass, as at the time, land was all concentrated into the supercontinent Pangea.
Stratigraphy and age
The Organ Rock Formation is conformably underlain by the Cedar Mesa Sandstone. It is conformably overlain by the De Chelly Sandstone around Monument Valley and by the White Rim Sandstone in the Canyonlands National Park. In locations where the De Chelly and White Rim are absent, the Organ Rock is unconformably overlain by the Triassic Moenkopi or Chinle Formations by an erosional contact. Toward its eastern extent, the Organ Rock Formation grades into the Cutler Formation, undivided. This transition occurs to the southwest of Moab, UT.
The age of the Organ Rock Formation is unconfirmed. The preceding Cedar Mesa Sandstone is dated to the Wolfcampian (ICS stage: Artinskian). The anteceding De Chelly and White Rim Sandstones are dated to the Leonardian (ICS stage: Kungurian). These formations constrain the age of the Organ Rock Formation to the latter part of the Cisuralian Epoch, approximately 290.1 to 272.3 Ma. The Organ Rock Formation may contain the Artinskian/Kungurian boundary. This is during the early to mid-Permian, a time where synapsids and temnospondyl amphibians are the dominant players in terrestrial ecosystems. These animals predate the advent of archosaur reptiles which give rise to dinosaurs in the Triassic.
Depositional environments
The Organ Rock Formation is composed of sandstones, siltstones, conglomerates, and mudstones. These rocks occur in two primary facies: floodplain and channel, as well as eolian dunes and sand sheets.
Floodplain and channel
In these deposits, mixed reddish-brown sands and silts dominate with minor mudstones and conglomerates interspersed. Interpreted channel deposits grade from laterally accreting coarse sands – into conglomerates of pebble-sized carbonate clasts. Channels are 0.5 meter to 7 meters thick and may extend laterally for a few hundred meters. Fine-grained silt to mudstone deposits are proximal to interpreted channels. These deposits are interpreted as meandering streams with associated floodplains.
Eolian dune and sand sheet
Deposits are characterized by pale red fine- to medium-grained sandstones. These units are cross-bedded. Each cross-bed is composed of thin, consistently spaced laminations. These strata are interpreted as those made by migrating dunes. This facies is marked by a sharp contact at the top of the preceding floodplain and channel facies. Mud cracks found at the top of the facies are filled by fine-grained sand from the overlying dune facies. This facies is most common at the western extent of the Organ Rock Formation.
Plant fossils
Plant fossils include Supaia, Walchi and Yakia which lived in semi-arid conditions.
Vertebrate fossils
Fossil vertebrates represent the majority of the faunal assemblage present in the Organ Rock Formation. Animal remains are most commonly preserved within ancient stream channels of the floodplain and channel facies. Within this facies, fossilized bone occurs proximal to conglomeratic lenses. Taxa recovered include: freshwater actinopterygian fishes, temnospondyl amphibians, diadectomorphs, seymouriamorphs, and early synapsids.
Freshwater Actinopterygian fishes
Fossil fish material, either bone or scale, is infrequent within the Organ Rock Formation. Scales from the extinct group of fishes Palaeoniscoidea are present. These scales, however, are only found preserved in fossilized feces (coprolites). Some coprolites are interpreted to be from fish; others from indeterminate terrestrial vertebrates.
Temnospondyls
Temnospondyl amphibian remains are present within the Organ Rock Formation. Three taxa have been reported. These include: Trimerorhachis, Eryops, and Zatrachys. Of these three taxa, fragments of Eryops are the most commonly recovered. Remains of this animal are very common in other formations of the Cutler Group and in general during the Early Permian of southwestern North America.
Diadectomorphs
Diadectomorphs are medium to large (2–3 meters), heavily-built reptiliomorphs with robust limbs. These animals are thought to be the closest outgroup to the clade Amniota. Two taxa are present within the Organ Rock Formation: Diadectes, and Tseajaia campi.
Diadectes is more abundant in the Organ Rock than the other formations of the Cutler Group. Fragments of the animal are most commonly reported. The most complete two specimens include pectoral girdles and limbs. These were collected in San Juan County, Utah. Diadectes is an important animal as it is the first terrestrial vertebrate to demonstrate characteristics necessary for obligatory herbivory. These include: peg-shaped teeth in the front of the mouth, as well as broad blunt teeth used to more effectively process vegetation.
Tseajaia campi is a very rare taxon known from one nearly complete specimen recovered from the Organ Rock. Originally described by Vaughn, this animal was first assigned to the group Seymouriamorpha, however, upon reassessment of the holotype it was demonstrated to have a closer affinity to Diadectomorpha.
Seymouriamorphs
Seymouriamorphs are small- to medium- sized (0.5 to 1.5 meters), reptiliomorphs. These animals have a generalized early amphibian body plan with a large “u”-shaped head and a sprawling lizard-like posture. The taxon Seymouria sanjuanensis is the only seymouriamorph found in the Organ Rock Formation.
Seymouria sanjuanensis is a unique taxon because of its extensive geographic range. This particular animal was first described by Vaughn (1966) from the Organ Rock Formation. Since this initial find, a number of these individuals have been recovered from localities as distant as Germany.
Early Synapsids
Four early synapsid taxa are present within the Organ Rock Formation. These include Ophiacodon, as well as three sphenacodontids: Ctenospondylus, Dimetrodon, and Sphenacodon ferocior. Most taxa are known from fragmentary material.
Early synapsids were dominant members of the terrestrial Permian ecosystem. Some early synapsids adapted an herbivorous diet, however, the Organ Rock Formation only preserves carnivorous animals; these were likely the apex predators of this ecosystem. The three sphenacodontids were terrestrial predators consuming other tetrapods, while Ophiacodon likely hunted fishes and other aquatic animals.
Coprolites
Coprolites associated with a labyrinthodont tooth as well as “Pelycosaur” and didectid remains have been recovered from this formation.
Paleoecological significance
The vertebrate faunal assemblage found in the Organ Rock Formation is diverse with respect to taxonomic groups, body plans, and diets. This material represents a decent cross-section of what terrestrial vertebrate life was like during the early Permian. It is noteworthy that no diapsid material has been definitively recovered from this formation.
As one moves younger in time through the Organ Rock Formation, temnospondyls become less abundant with respect to other major groups such as diadectomorphs and early synapsids. This could track the general trend of aridification as indicated by sedimentology of the formation. This trend is globally recognized during the Early Permian, supported by many lines of geologic evidence including significant deposits of calcretes, eolianites, and evaporites.
External links and Gallery
References
Permian Arizona
Geologic formations of Utah
Permian formations of New Mexico
Geologic formations of Arizona
Canyonlands National Park
Cutler Formation |
```xml
/*your_sha256_hash-----------------------------
*your_sha256_hash----------------------------*/
import { useContext, useEffect, useState } from "react";
import { TableDesignerContext } from "./tableDesignerStateProvider";
import { CheckBoxProperties, DesignerDataPropertyInfo, DesignerEditType, DesignerUIArea } from "../../../sharedInterfaces/tableDesigner";
import { Checkbox, Field, Label } from "@fluentui/react-components";
export type DesignerCheckboxProps = {
component: DesignerDataPropertyInfo,
model: CheckBoxProperties,
componentPath: (string | number)[],
UiArea: DesignerUIArea,
showLabel?: boolean
}
export const DesignerCheckbox = ({
component,
model,
componentPath,
UiArea,
showLabel = true
}: DesignerCheckboxProps) => {
const [value, setValue] = useState(model.checked);
const state = useContext(TableDesignerContext);
useEffect(() => {
setValue(model.checked);
}, [model]);
return <Field
size="small"
>
<Checkbox
label={showLabel ? <Label size="small">{component.componentProperties.title!}</Label> : undefined}
id={state?.provider.getComponentId(componentPath)}
checked={value}
onChange={async (_event, data) => {
if (model.enabled === false) {
return;
}
await state?.provider.processTableEdit({
path: componentPath,
value: data.checked,
type: DesignerEditType.Update,
source: UiArea
}
);
}}
style = {
{
fontSize: '12px'
}
}
disabled={model.enabled === undefined ? false : !model.enabled}
/>
</Field>
}
``` |
```java
package com.fishercoder.solutions.secondthousand;
import java.util.HashMap;
import java.util.Map;
public class _1056 {
public static class Solution1 {
Map<Integer, Integer> map = new HashMap<Integer, Integer>() {
{
put(0, 0);
put(1, 1);
put(8, 8);
put(6, 9);
put(9, 6);
}
};
public boolean confusingNumber(int N) {
if (N == 0) {
return false;
}
int newNumber = 0;
int originalN = N;
while (N != 0) {
newNumber *= 10;
int digit = N % 10;
if (!map.containsKey(digit)) {
return false;
}
digit = map.get(digit);
newNumber += digit;
N /= 10;
}
return newNumber != originalN;
}
}
}
``` |
```hcl
# Configure Terragrunt to automatically store tfstate files in an S3 bucket
remote_state {
backend = "s3"
generate = {
path = "backend.tf"
if_exists = "overwrite"
}
config = {
encrypt = true
bucket = "__FILL_IN_BUCKET_NAME__"
key = "terraform.tfstate"
region = "us-west-2"
dynamodb_table = "__FILL_IN_LOCK_TABLE_NAME__"
enable_lock_table_ssencryption = true
bucket_sse_algorithm = "aws:kms"
}
}
``` |
```yaml
#
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
#
# path_to_url
#
# Unless required by applicable law or agreed to in writing, software
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#
name: file_summary_by_event_name
type: TABLE
columns:
event_name:
caseSensitive: false
dataType: 12
generated: false
name: EVENT_NAME
nullable: false
primaryKey: true
unsigned: false
visible: true
count_star:
caseSensitive: false
dataType: -5
generated: false
name: COUNT_STAR
nullable: false
primaryKey: false
unsigned: true
visible: true
sum_timer_wait:
caseSensitive: false
dataType: -5
generated: false
name: SUM_TIMER_WAIT
nullable: false
primaryKey: false
unsigned: true
visible: true
min_timer_wait:
caseSensitive: false
dataType: -5
generated: false
name: MIN_TIMER_WAIT
nullable: false
primaryKey: false
unsigned: true
visible: true
avg_timer_wait:
caseSensitive: false
dataType: -5
generated: false
name: AVG_TIMER_WAIT
nullable: false
primaryKey: false
unsigned: true
visible: true
max_timer_wait:
caseSensitive: false
dataType: -5
generated: false
name: MAX_TIMER_WAIT
nullable: false
primaryKey: false
unsigned: true
visible: true
count_read:
caseSensitive: false
dataType: -5
generated: false
name: COUNT_READ
nullable: false
primaryKey: false
unsigned: true
visible: true
sum_timer_read:
caseSensitive: false
dataType: -5
generated: false
name: SUM_TIMER_READ
nullable: false
primaryKey: false
unsigned: true
visible: true
min_timer_read:
caseSensitive: false
dataType: -5
generated: false
name: MIN_TIMER_READ
nullable: false
primaryKey: false
unsigned: true
visible: true
avg_timer_read:
caseSensitive: false
dataType: -5
generated: false
name: AVG_TIMER_READ
nullable: false
primaryKey: false
unsigned: true
visible: true
max_timer_read:
caseSensitive: false
dataType: -5
generated: false
name: MAX_TIMER_READ
nullable: false
primaryKey: false
unsigned: true
visible: true
sum_number_of_bytes_read:
caseSensitive: false
dataType: -5
generated: false
name: SUM_NUMBER_OF_BYTES_READ
nullable: false
primaryKey: false
unsigned: false
visible: true
count_write:
caseSensitive: false
dataType: -5
generated: false
name: COUNT_WRITE
nullable: false
primaryKey: false
unsigned: true
visible: true
sum_timer_write:
caseSensitive: false
dataType: -5
generated: false
name: SUM_TIMER_WRITE
nullable: false
primaryKey: false
unsigned: true
visible: true
min_timer_write:
caseSensitive: false
dataType: -5
generated: false
name: MIN_TIMER_WRITE
nullable: false
primaryKey: false
unsigned: true
visible: true
avg_timer_write:
caseSensitive: false
dataType: -5
generated: false
name: AVG_TIMER_WRITE
nullable: false
primaryKey: false
unsigned: true
visible: true
max_timer_write:
caseSensitive: false
dataType: -5
generated: false
name: MAX_TIMER_WRITE
nullable: false
primaryKey: false
unsigned: true
visible: true
sum_number_of_bytes_write:
caseSensitive: false
dataType: -5
generated: false
name: SUM_NUMBER_OF_BYTES_WRITE
nullable: false
primaryKey: false
unsigned: false
visible: true
count_misc:
caseSensitive: false
dataType: -5
generated: false
name: COUNT_MISC
nullable: false
primaryKey: false
unsigned: true
visible: true
sum_timer_misc:
caseSensitive: false
dataType: -5
generated: false
name: SUM_TIMER_MISC
nullable: false
primaryKey: false
unsigned: true
visible: true
min_timer_misc:
caseSensitive: false
dataType: -5
generated: false
name: MIN_TIMER_MISC
nullable: false
primaryKey: false
unsigned: true
visible: true
avg_timer_misc:
caseSensitive: false
dataType: -5
generated: false
name: AVG_TIMER_MISC
nullable: false
primaryKey: false
unsigned: true
visible: true
max_timer_misc:
caseSensitive: false
dataType: -5
generated: false
name: MAX_TIMER_MISC
nullable: false
primaryKey: false
unsigned: true
visible: true
indexes:
primary:
name: PRIMARY
unique: true
columns:
- EVENT_NAME
``` |
The 1913 Mississippi A&M Aggies football team represented the Mississippi A&M Aggies of Agricultural and Mechanical College of the State of Mississippi during the 1913 Southern Intercollegiate Athletic Association football season.
Schedule
References
Mississippi AandM
Mississippi State Bulldogs football seasons
Mississippi AandM Aggies football |
Maksim Vladimirovich Igoshin (; born 10 April 1978) is a Russian professional football manager and a former player. He is an assistant coach with FC Zenit Penza.
Club career
He played 3 seasons in the Russian Football National League for FC Chita and FC Zvezda Irkutsk.
References
External links
1978 births
Living people
Russian men's footballers
Men's association football defenders
FC Zvezda Irkutsk players
Russian football managers
FC Yenisey Krasnoyarsk players
FC Chita players
FC Volga Ulyanovsk players |
```xml
import { IStylesheetModuleResponse } from '../interfaces';
export interface IStylusRenderer {
contents: string;
filePath: string;
paths?: Array<string>;
sourceRoot?: string;
withSourceMaps?: boolean;
onImportString?: (str: string) => string | void;
onImportFile?: (props: { value: string; isExternal?: boolean }) => void;
onStyle?: (handler?: any) => void;
onURL?: (filePath: string, value: string) => string | void;
}
export function stylusRender(props: IStylusRenderer): Promise<IStylesheetModuleResponse> {
const Evaluator = require('stylus/lib/visitor/evaluator');
const Literal = require('stylus/lib/nodes/literal');
const stylus = require('stylus');
const stylusImport = Evaluator.prototype.visitImport;
Evaluator.prototype.visitImport = function(imported) {
imported.path.nodes.map(item => {
if (item.val && item.string) {
if (props.onImportString) {
const newValue = props.onImportString(item.val);
if (newValue !== undefined) {
item.val = item.string = newValue;
}
}
}
});
const data = stylusImport.bind(this)(imported);
data.nodes.forEach(node => {
if (props.onImportFile && props.filePath !== node.filename) {
props.onImportFile({ value: node.filename, isExternal: /node_modules/.test(node.filename) });
}
});
return data;
};
return new Promise((resolve, reject) => {
const style = stylus(props.contents)
.define('url', item => {
const filePath = item.filename;
const value = item.val;
if (props.onURL) {
const newValue = props.onURL(filePath, value);
if (newValue) {
return new Literal(`url(${JSON.stringify(newValue)})`);
}
}
return new Literal(`url(${JSON.stringify(item)})`);
})
.set('paths', props.paths || [])
.set('filename', props.filePath)
.set('sourcemap', props.withSourceMaps && { inline: true, sourceRoot: props.sourceRoot });
if (props.onStyle) props.onStyle(style);
style.render(function(err, css) {
if (err) {
return reject(err);
}
return resolve({ css, map: style.sourcemap });
});
});
}
``` |
Barbara Smoker (2 June 1923 – 7 April 2020) was a British humanist activist and freethought advocate. She was also President of the National Secular Society (1972–1996), Chair of the British Voluntary Euthanasia Society (now known as Dignity in Dying) (1981–1985) and an Honorary Vice President of the Gay and Lesbian Humanist Association in the United Kingdom.
Biography
Barbara Smoker was born in Catford, London in 1923 into a Roman Catholic family. She served in the Women's Royal Naval Service from 1942 to 1945 in southeast Asia. In 1949 she became an atheist, inspired by the writing of Hector Hawton, managing director of the Rationalist Press Association and editor of The Humanist.
In 1950 Smoker joined the humanist movement when she became a member of the South Place Ethical Society, and the West London Ethical Society. As a volunteer with the Ethical Union (later known as the British Humanist Association and as Humanists UK), she became a close friend of Harold Blackham and worked with him to organise the first World Humanist Congress in London, in 1952, to follow the conference in Amsterdam where Humanists International had been founded. In this time she also worked closely with Ashton Bural, who ran the Progressive League, a humanist campaigning organisation that worked closely with the Ethical Union. She became a popular humanist celebrant at non-religious funerals, wedding ceremonies, gay and lesbian commitments, and baby-namings, as well as a trainer of celebrants for the British Humanist Association. She also wrote the popular children's textbook Humanism, which saw widespread use in schools.
Her longest stint in her career as an activist was her tenure as President of the National Secular Society, spanning nearly 25 years (1972 –1996). In that capacity, she represented atheist and secularist viewpoints in print, on lecture platforms, speaking tours, on radio and television. As well as leading the NSS, she was also active in various social campaigns, such as the abolition of the death penalty, prison reform, nuclear disarmament, legalisation of abortion and for the Voluntary Euthanasia Society; she served as chair of the latter organisation from 1981 to 1985. She claimed to have financed the manufacture of the first Make Love, Not War badges that were popular in Britain during the 1960s.
Barbara Smoker became the South Place Ethical Society's last and only female Appointed Lecturer in 1986. As of May 2014, with the death of Dr Harry Stopes-Roe, she became the only living Appointed Lecturer. In 2005 Barbara Smoker received the Distinguished Humanist Service Award from Humanists International. She was also awarded Honorary Member of Humanists UK (formerly the British Humanist Association) at some stage in recognition of her activism.
Smoker lived in southeast London and in 2012 was elected the Honorary life president of the South East London Humanist Group in recognition that she was its last surviving founder member.
She died in Lewisham Hospital on 7 April 2020, aged 96, from COVID-19.
Publications
Good God! a string of verses to tie up the deity (1977) B & T, London,
Atheism on a Soap-Box (1985). London: National Secular Society.
Humanism (2017, 7th edition), Barbara Smoker. G. W. Foote & Co. Ltd. (an introduction to Humanism for secondary education)
Blackham's Best (2007, 3rd edition), edited by Barbara Smoker. Published by British Humanist Association. (Excerpts from the work of Harold John Blackham).
Freethoughts (2002), Barbara Smoker. G.W. Foote & Co. . (Selections of contributions to The Freethinker).
My Godforsaken Life - Memoir of a Maverick (2018) Thornwick Press (autobiography)
Editor:
The Future of our Past: from Ancient Greece to Global Village, by Harold Blackham (1996). Prometheus Books.
Contributor:
See also
Humanists UK
National Secular Society
References
Biography based on an entry in Rationalist International
External links
Barbara Smoker
National Secular Society
Dignity in Dying (formerly the Voluntary Euthanasia Society)
Gay and Lesbian Humanist Association (UK)
1923 births
2020 deaths
20th-century atheists
21st-century atheists
British abortion-rights activists
British anti–death penalty activists
British anti–nuclear weapons activists
British atheism activists
British secularists
British women activists
British critics of Christianity
Critics of religions
Critics of the Catholic Church
English anti–nuclear weapons activists
English atheists
English humanists
English women activists
Euthanasia activists
Former Roman Catholics
Freethought writers
English LGBT rights activists
People associated with Conway Hall Ethical Society
Prison reformers
Deaths from the COVID-19 pandemic in England |
Child, Youth and Family (CYF; in Māori, Te Tari Awhina i te Tamaiti, te Rangatahi, tae atu ki te Whānau), was the government agency that had legal powers to intervene to protect and help children who are being abused or neglected or who have problem behaviour until it was replaced by a new Ministry for Vulnerable Children in April 2017. CYF worked with the Police and the Courts in dealing with young offenders under the youth justice system. It provided residential and care services for children in need of care and protection and for young offenders. CYF assessed people who wished to adopt children and it reported to the Family Court on adoption applications. CYF facilitated the exchange of identifying information for parties to past adoptions. The agency also funded community organisations working with children, young people and their families to support the community's role in protecting and helping children.
History
Child, Youth and Family had its origins in the Child Welfare Division of the Department of Education. On 1 April 1972, the division was merged with the Social Security Department to form the Department of Social Welfare. That department was reorganised on 1 May 1992 into business units, including the New Zealand Children and Young Persons Service (CYPS), which was subsequently renamed the Children, Young Persons and their Families Agency (CYPFA), to align its name with the legislation it was administering. On 1 October 1999 it was established as a separate Department of Child, Youth and Family Services (CYFS). Then, on 1 July 2006, it was amalgamated back into the Ministry of Social Development as a business unit under the name Child, Youth and Family (CYF).
Child, Youth and Family became a functional unit of the Ministry of Social Development (MSD), following the 2006 merger of the Department of Child, Youth and Family Services (CYFS) and MSD. Until April 2017, CYF fell under the portfolio of the Minister for Social Development. In April 2017, after the passage of enacting legislation, CYF was replaced by the Ministry for Vulnerable Children (now Oranga Tamariki – Ministry for Children).
Legislation
MSD administered, or was involved in administering, the following CYF-related legislation:
Adoption Act 1955,
Adult Adoption Information Act 1985,
Adoption (Intercountry) Act 1997,
Care of Children Act 2004,
Children, Young Persons, and Their Families Act 1989,
Disabled Persons Community Welfare Act 1975,
Protection of Personal and Property Rights Act 1988.
Responsibilities
Protecting children and young people who were at risk of or who had been abused or neglected, or who were at risk of offending, was the service's primary responsibility, and it carried out investigations when a child or young person was believed to be "at risk". Where there was a risk of serious harm, it could exercise powers to ensure that the child was kept safe from that risk. The department also dealt with youth justice, a section of the law that dealt mainly with offending by young people aged 14–16 years, and adoption through the Adoption Information and Services Unit (AISU).
In addition, the department provided residential and care services for children and young people who required placing away from their parents, guardians or usual caregivers, and funded a wide range of community-based social services, with a focus on children, young people and families in need of support.
CYFS Watch blog
In January 2007, a controversial blog "CYFS Watch" appeared on Google's Blogger. The blog's stated aim was unveiling examples of alleged incompetence by the Child Youth and Family Service and published the personal details of several CYFS social workers. The Ministry responded by complaining to Google. In late February, the blog's anonymous author made death threats towards Green MP Sue Bradford as a result of her Crimes (Abolition of Force as a Justification for Child Discipline) Amendment Bill 2005. Google responded on 22 February 2007 by deleting the site as a breach of their terms of service.
References
External links
mvcot.govt.nz
1999 establishments in New Zealand
2017 disestablishments in New Zealand
Government agencies established in 1999
Former government agencies of New Zealand
Society of New Zealand
Children's rights in New Zealand
Youth in New Zealand |
This a list of mountains situated in Argentina, South America. The list also shows the height of each mountain.
Mountains
Aconcagua (Mendoza) 6,962 m
Nevado El Plomo 6,070 m
Cerro Ameghino approx. 5,940 m
Ojos del Salado (Catamarca) 6,893 m
Tres Cruces Sur 6,748 m
Cazadero 6,658 m
El Muerto 6,488 m
Cerro Nacimiento 6,436 m
Cerro Veladero 6,436 m
Cerro El Cóndor (also Volcán Sarmiento) 6,414 m
Cerro Vallecitos 6,168 m
Tres Quebradas (also Los Patos) 6,239 m
Cerro Medusa 6,120 m
Colorados 6,080 m
Cerro El Fraile 6,061 m
Volcán del Viento 6,028 m
Cerro San Francisco 6,018 m
Monte Pissis (La Rioja) 6,795 m
Cerro Bonete (La Rioja) 6,759 m
Llullaillaco (Salta) 6,723 m
Socompa 6,051 m
Mercedario (San Juan) 6,720 m
Cerro Ramada 6,384 m
Cerro La Mesa 6,230 m
Incahuasi (Catamarca) 6,621 m
Tupungato (Mendoza) 6,570 m
Cerro Alto San Juan 6,148 m
Cerro Negro Pabellón 6,070 m
Cerro Polleras 5,993m
Antofalla (Salta) 6,440 m
Cachi (Nevado de Cachi) 6,380 m
Cerro Quemado 6,184 m
Reclus 6,335 m
Majadita 6,280 m
Cerro Olivares 6,216 m
Cerro Solo 6,205 m
Cerro El Toro (San Juan) 6,168 m
Cerro Tortolas 6,160 m
Queva 6,140 m
Colangüil 6,122 m
Marmolejo 6,108 m
Medusa 6,130 m
Nevado de Famatina (also Cerro Belgrano) 6,097 m
Aracar 6,095m
Cerro Baboso (also Veladero N.E.) approx. 6,070 m
Cerro Salin (Salín) 6,029 m
Cerro Laguna Blanca 6,012 m
Cerro Plata (Mendoza) 5,955 m
Cerro Chañi (Jujuy) approx. 5,930 m
Galán (Catamarca) 5,920 m
See also
List of volcanoes in Argentina
References
Argentina
Mountains
Argentina |
J Ward originally the Ararat County Gaol, was an Australian prison, of the latter a psychiatric facility to house the criminally insane, located in Ararat, Victoria, Australia.
Construction of the gaol commenced in 1859 and the facility was opened in October 1861. In 1887, it was converted for use as a maximum security psychiatric ward for the criminally insane. J Ward officially closed in January 1991, and in 1993, it was re-opened as a museum providing tours.
History
Construction of original building commenced in 1859, as a goldfields prison, based on the Pentonville concept, by the Public Works Department. They were built out of blue stone. On 10 October 1861, the gaol was opened, with a total of 21 prisoners incarcerated. The first Governor was Samuel Walker (previously the Governor of Portland Gaol). In 1864, the gaol housed 40 prisoners, and in 1867, John Gray became the gaol's second Governor, a position that he held for ten years. On 15 August 1870, the first execution was conducted at the gaol, when Andrew Vere was hanged for the murder of Amos Cheale in January 1869. The second execution at the gaol was held on 25 September 1883, when Robert Francis Burns was hanged for the murder of Michael Quinlivan. In 1877, Henry Pinniger was appointed as the gaol's third Governor. On 6 June 1884, the gaol held its third execution, with Henry Morgan being hanged for the murder of Margaret Nolan in November 1883. In 1884, George Fiddimont became the gaol's fourth Governor, he died of a heart attack at the gaol on 14 September 1886.
In the aftermath of the Victorian gold rush the gaol was no longer required and in December 1886 the gaol building was proclaimed as the 'J Ward', part of the Ararat Lunatic Asylum.
J Ward is now a museum open to the public. Tours are run every day except on public holidays at 11 am, 12 pm, 1pm & 2pm.
Other notes about J Ward include the amazing art work done by prisoners on the walls outside in their open area, the way this place makes you still imagine it being operated, and the thought to detail is amazing.
J ward was not only occupied by the criminally insane but also the insane who had not committed any crimes, but were eventually moved to a facility established to their needs.
Notable patients
Charles Fossard – admitted in 1903 at age 21 and died in custody in 1974 at age 92, he was the longest serving patient at the facility as well as the longest serving prisoner in the entire world (he was incarcerated for nearly 71 years)
Garry David – also known as Garry Webb, said to have served more time in prison than any other person in the history of the State of Victoria. David spent a total of 33 years in various institutions
Bill Wallace – admitted in 1926 at age 44 remaining in custody until his death in 1989 at age 107, he was both the oldest patient at the facility and the oldest prisoner in world history (he was incarcerated for 64 years), and a record that earned him a place in Guinness World Records
Mark "Chopper" Read – was transferred from Pentridge Prison in late 1978 after arranging for a fellow inmate to cut off both his ears. Read only remained in J Ward for a few months before being transferred back to Pentridge
Executions
See also
Aradale Mental Hospital
HM Prison Ararat
List of Australian psychiatric institutions
References
External links
Government buildings completed in 1861
Infrastructure completed in 1861
Defunct prisons in Victoria (state)
Prison museums in Australia
Museums in Victoria (state)
Ararat, Victoria
Hospitals established in 1859
1991 disestablishments in Australia
Maximum security prisons in Australia
Psychiatric hospitals in Australia
Defunct hospitals in Victoria (state)
1859 establishments in Australia |
Xiao Yanyan (; 953–1009), also known as Empress Dowager Chengtian (承天皇太后) was a Khitan empress and military leader of imperial China's Liao dynasty. She was regent on behalf of her son from 982.
History
Xiao Yanyan was the 3rd child of Xiao Siwen (蕭思溫), Liao's chancellor. Also referred to by the name Xiao Chuo, Xiao's original Khitan family name was Bali (拔裏氏). She was the youngest of the Xiao sisters, along with Xiao Hunian and Lady Xiao.
Xiao later married Emperor Jingzong of Liao and would go on to bear the crown Prince Yelü Longxu. Being granted the title of Empress, Xiao was influential during her husband's reign.
She would go on to become regent for her son in 982 when he ascended the Liao throne as Emperor Shengzong at 12 years old after the untimely death of Emperor Jingzong of Liao who died while returning from a hunting trip. In 986, the Liao Empire was invaded by the Song dynasty to the south under the leadership of Emperor Taizong of Song, but was defeated by Liao forces under Xiao's command which had retreating Song troops thrown into the Xia river. A further invasion by the Song would ensue in 989 only to be defeated once again by Liao forces resulting in the death of Yang Ye.
As Empress Dowager Chengtian, Xiao commanded her own army of 10,000 cavalry and would personally lead the Liao army in battle against the Song in 1005, despite being well over 50 by that point. Known for her great skills in civil administration, Empress Dowager Chengtian would retained great influence until her death.
She was also instrumental in arranging a marriage between her son and her court lady, Xiao Noujin. However, she had a poor relationship with her two older sisters, and she eventually poisoned or murdered both of them.
Modern references
Film and television
Portrayed by Mu Qing in the 1995 Chinese movie Great Liao's Empress Dowager.
Portrayed by Shim Hye-jin in the 2009 Korean TV series Empress Cheonchu.
Portrayed by Mei Lier in the 2019 Chinese movie Battle Between Song and Liao Dynasties (大破天门阵).
Portrayed by Tiffany Tang in the 2020 Chinese TV series The Legend of Xiao Chuo.
Literature
She is also portrayed as an antagonist in many Generals of the Yang Family adaptations.
Notes
References
Citations
Sources
" Women in power 750-1000" from Guide2womenleaders.com, last accessed January 13, 2007
953 births
1009 deaths
Women in medieval warfare
Women in war in China
10th-century women regents
Liao dynasty empresses
Xiao clan
10th-century Khitan women
11th-century Khitan women
10th-century empresses consort |
The 2021 Tennessee Volunteers football team represented the University of Tennessee in the 2021 NCAA Division I FBS football season. The Volunteers played their home games at Neyland Stadium in Knoxville, Tennessee, and competed in the Eastern Division of the Southeastern Conference (SEC). They were led by first-year coach Josh Heupel.
Recruiting class
Coaching staff
Schedule
Game summaries
Bowling Green
Pittsburgh
Tennessee Tech
At No. 11 Florida
At Missouri
Vs. South Carolina
No. 13 Ole Miss
The game was delayed for nearly 20 minutes in the 4th quarter as some Tennessee fans started to throw objects onto the field, including a golf ball that hit Ole Miss head coach Lane Kiffin in the leg. The eruption occurred after officials ruled that Tennessee tight end Jacob Warren was short on 4th-and-24 with just under a minute left to play. On the Monday following the game, SEC commissioner Greg Sankey announced that Tennessee would be fined $250,000 due to the fans' actions.
At No. 4 Alabama
At No. 18 Kentucky
No. 1 Georgia
South Alabama
Vanderbilt
Purdue
Players drafted into the NFL
References
Tennessee
Tennessee Volunteers football seasons
Tennessee Volunteers football |
```java
package com.yahoo.vespa.model.application.validation.change.search;
import com.yahoo.config.model.deploy.DeployState;
import com.yahoo.config.provision.ClusterSpec;
import com.yahoo.documentmodel.NewDocumentType;
import com.yahoo.vespa.model.application.validation.change.VespaConfigChangeAction;
import com.yahoo.vespa.model.search.DocumentDatabase;
import java.util.ArrayList;
import java.util.List;
/**
* Validates the changes between a current and next document database that is part of an indexed search cluster.
*
* @author geirst
*/
public class DocumentDatabaseChangeValidator {
private final ClusterSpec.Id id;
private final DocumentDatabase currentDatabase;
private final NewDocumentType currentDocType;
private final DocumentDatabase nextDatabase;
private final NewDocumentType nextDocType;
private final DeployState deployState;
public DocumentDatabaseChangeValidator(ClusterSpec.Id id,
DocumentDatabase currentDatabase,
NewDocumentType currentDocType,
DocumentDatabase nextDatabase,
NewDocumentType nextDocType,
DeployState deployState) {
this.id = id;
this.currentDatabase = currentDatabase;
this.currentDocType = currentDocType;
this.nextDatabase = nextDatabase;
this.nextDocType = nextDocType;
this.deployState = deployState;
}
public List<VespaConfigChangeAction> validate() {
List<VespaConfigChangeAction> result = new ArrayList<>();
result.addAll(validateAttributeChanges());
result.addAll(validateStructFieldAttributeChanges());
result.addAll(validateIndexingScriptChanges());
result.addAll(validateDocumentTypeChanges());
return result;
}
private List<VespaConfigChangeAction> validateAttributeChanges() {
return new AttributeChangeValidator(id,
currentDatabase.getDerivedConfiguration().getAttributeFields(),
currentDatabase.getDerivedConfiguration().getIndexSchema(), currentDocType,
nextDatabase.getDerivedConfiguration().getAttributeFields(),
nextDatabase.getDerivedConfiguration().getIndexSchema(), nextDocType,
deployState)
.validate();
}
private List<VespaConfigChangeAction> validateStructFieldAttributeChanges() {
return new StructFieldAttributeChangeValidator(id,
currentDocType,
currentDatabase.getDerivedConfiguration().getAttributeFields(),
nextDocType,
nextDatabase.getDerivedConfiguration().getAttributeFields())
.validate();
}
private List<VespaConfigChangeAction> validateIndexingScriptChanges() {
return new IndexingScriptChangeValidator(id,
currentDatabase.getDerivedConfiguration().getSchema(),
nextDatabase.getDerivedConfiguration().getSchema())
.validate();
}
private List<VespaConfigChangeAction> validateDocumentTypeChanges() {
return new DocumentTypeChangeValidator(id, currentDocType, nextDocType)
.validate();
}
}
``` |
```xml
import type { IRawStyle } from './IRawStyle';
/**
* {@docCategory IStyleBase}
*/
export type IStyleBase = IRawStyle | string | false | null | undefined;
/**
* {@docCategory IStyleBaseArray}
*/
export interface IStyleBaseArray extends Array<IStyle> {}
/**
* IStyleObject extends a raw style objects, but allows selectors to be defined
* under the selectors node.
* @public
* {@docCategory IStyle}
*/
export type IStyle = IStyleBase | IStyleBaseArray;
``` |
Tannay railway station () is a railway station in the municipality of Tannay, in the Swiss canton of Vaud. It is an intermediate stop on the standard gauge Lausanne–Geneva line of Swiss Federal Railways.
Services
The following services stop at Tannay:
Léman Express ///: service every fifteen minutes between and via ; from Annemasse every hour to , and every two hours to and .
References
External links
Railway stations in the canton of Vaud
Swiss Federal Railways stations |
Rupinder Kaur Gill, better known as Roopi Gill, is an Indian model and actress who mostly works in the Punjabi Film Industry. She rose to fame with her performance in the music video for the song "Diamond", by Gurnam Bhullar. She started her acting career with Ashke (2018), for which she received a PTC Punjabi Film Awards nomination for Best Supporting Actress. Also, she appeared in the music video of "Stranger" song by Diljit Dosanjh. She has frequently collaborated with Sukh Sanghera for music videos and films. In 2019, she appeared in Laiye Je Yaarian, for which she received PTC Critics Award for Best Actress.
Career
Roopi Gill started her career, featuring in Karan Aujla's "Yaarian Ch Fikk" music video. Gill made her feature film debut with the film Ashke in 2018. The film was produced by Rhythm Boyz Entertainment and directed by Amberdeep Singh. She played role of a teacher called "Noor". Her performance was acclaimed by critics and audiences, and she was nominated for the "Best Supporting Actress" award at the PTC Punjabi Film Awards. She later starred in the 2018 film Vadda Kalakaar. In 2019, she appeared as a lead actress in Laiye Je Yaarian, her second collaboration with Rhythm Boyz and Amrinder Gill. Her performance in the film was praised by critics, and received a PTC nomination for Best Actress.
Filmography
Music videos
"Dildariyan" - Raj Ranjodh
"Stranger" - Diljit Dosanjh
"Diamond" - Gurnam Bhullar
"Jandi Jandi" - Seera Buttar
"Rang Gora" - Akhil
"Scratch" - Gursewak Dhillon
"Kamli" - Mankirt Aulakh
"Tareyaan De Des" - Prabh Gill
"Yaarian Ch Fikk" - Karan Aujla
"Majha Block" - Prem Dhillon
"Judge"- Mankrit Aulakh
Awards and nominations
References
External links
Living people
Indian film actresses
21st-century Indian actresses
1997 births |
```go
package history
import (
"fmt"
)
// PagingToken returns a cursor for this record
func (r *TotalOrderID) PagingToken() string {
return fmt.Sprintf("%d", r.ID)
}
``` |
Cetiosauriscus ( ) is a genus of sauropod dinosaur that lived between 166 and 164 million years ago during the Callovian (Middle Jurassic Period) in what is now England. A herbivore, Cetiosauriscus had — by sauropod standards — a moderately long tail, and longer forelimbs, making them as long as its hindlimbs. It has been estimated as about long and between in weight.
The only known fossil includes most of the rear half of a skeleton as well as a forelimb (NHMUK R3078). Found in Cambridgeshire in the 1890s, it was described by Arthur Smith Woodward in 1905 as a new specimen of the species Cetiosaurus leedsi. This was changed in 1927, when Friedrich von Huene found NHMUK R3078 and the C. leedsi type specimen to be too different from Cetiosaurus, warranting its own genus, which he named Cetiosauriscus, meaning "Cetiosaurus-like". Cetiosauriscus leedsi was referred to the sauropod family Diplodocidae because of similarities in the tail and foot, and had the dubious or indeterminate species "Cetiosauriscus" greppini, "C." longus, and "C." glymptonensis assigned to it. In 1980, Alan Charig named a new species of Cetiosauriscus for NHMUK R3078 because of the lack of comparable material to the type of C. leedsi; this species was named Cetiosauriscus stewarti. Because of the poor state of preservation of the Cetiosauriscus leedsi fossil, Charig sent a petition to the International Commission on Zoological Nomenclature to instead make C. stewarti the type species. Cetiosauriscus stewarti became the oldest confirmed diplodocid until a phylogenetic analysis published in 2003 instead found the species to belong to Mamenchisauridae, and followed by studies in 2005 and 2015 that found it outside Neosauropoda, while not a mamenchisaurid proper.
Cetiosauriscus was found in the marine deposits of the Oxford Clay Formation alongside many different invertebrate groups, marine ichthyosaurs, plesiosaurs and crocodylians, a single pterosaur, and various dinosaurs: the ankylosaur Sarcolestes, the stegosaurs Lexovisaurus and Loricatosaurus, the ornithopod Callovosaurus, as well as some unnamed taxa. The theropods Eustreptospondylus and Metriacanthosaurus are known from the formation, although probably not from the same level as Cetiosauriscus.
History of discovery
Background
The fossil later known as Cetiosauriscus was originally ascribed to the genus Cetiosaurus—one of the first sauropods to be named, in 1842 by palaeontologist Richard Owen, and one with a complicated history due to many unfounded referrals of species and specimens, involving almost all English sauropod specimens. The type species of Cetiosaurus has changed throughout history because of incomplete remains and the taxon's significance, and many aspects of its anatomy and relationships are still uncertain. Cetiosaurus was originally named to include C. medius, C. brevis, C. brachyurus and C. longus, which span from the Middle Jurassic to the Early Cretaceous of various localities across England. As none of these species are truly diagnostic, and Cetiosaurus is a historically and taxonomically important taxon, the more complete Middle Jurassic species C. oxoniensis named by geologist John Phillips in 1871 became the type species. C. glymptonensis was also named in the same publication by Phillips, but is less complete and of questionable validity.
Another English taxon, Ornithopsis hulkei, was named in 1870 by palaeontologist Harry Govier Seeley for vertebrae from the Early Cretaceous Wessex Formation, younger than the existing species of Cetiosaurus. Seeley considered Ornithopsis to be closely related to Cetiosaurus, but different due to the internal bone structure. An additional species, Ornithopsis leedsii was named in 1887 by John Hulke for a pelvis, vertebrae and ribs collected by Alfred Nicholson Leeds, an English farmer and amateur fossil collector who throughout his life compiled numerous collections of fossils from the Oxford Clay. O. leedsii, from the Late Jurassic, showed similarities to older Cetiosaurus oxoniensis as well as younger O. hulkei. It was described in more detail by Seeley in 1889, where he considered O. hulkei, C. oxoniensis and O. leedsii to all be in the same genus, bearing the name Cetiosaurus. But naturalist Richard Lydekker discussed with Seeley, before the publication of Seeley's 1889 paper, that Cetiosaurus and Ornithopsis were not the same taxon. Lydekker suggested that Wealden fossils (including O. hulkei) belonged to Ornithopsis and the Jurassic remains (including O. leedsii and C. oxoniensis) to Cetiosaurus. Lydekker in 1895 changed his mind and referred the species O. leedsii to Pelorosaurus (known already from the species P. brevis, once named Cetiosaurus brevis)—as P. leedsi—and referred the genus to Atlantosauridae. Lydekker's classification of the species was not supported by later authors like palaeontologist Arthur Smith Woodward in 1905, who followed Seeley's classification scheme.
Discovery and naming
The sauropod fossil today known as Cetiosauriscus stewarti was discovered in May 1898 by clay workers in the area around Fletton to the south of Peterborough and east of the Great Northern Railway line. Pits in this region expose the fossil-rich sedimentary rocks of the marine Oxford Clay, which is of middle Callovian age and today regarded as one of the classic geological formations of British palaeontology. The sauropod fossil possibly stems from NPBCL pit No.1, which was the northernmost pit operated by the New Peterborough Brick Company Limited, and which produced the most vertebrate fossils. The discovery was brought to the attention of Leeds, who, after excavation, took the sauropod specimen to Eyebury, the Leeds' family home. In mid-August, after some cleaning and repairing of the specimen, geologist Henry Woodward visited Eyebury and produced a life-sized drawing of the remains for presentation at the British Association for the Advancement of Science Meeting. Following this presentation, on 17 August 1898, Henry Woodward returned with American palaeontologist Othniel Charles Marsh, who considered the sauropod to be closely related to the North American taxon Diplodocus. Alfred Leeds offered the sauropod to the British Museum of Natural History (BMNH, now abbreviated as NHMUK) for £250, which would equate to about £30,529 in 2017. The NHMUK had earlier in 1890 and 1892 bought the First and Second Collections of Alfred Leeds, respectively. Woodward, Keeper of Geology at the NHMUK, had "great pleasure" to recommend to the Trustees of the NHMUK the fossil be purchased. The purchase was sanctioned on 25 February 1899, along with the purchase of assorted other remains for just over £357 (~£43,596 now), where the Leeds sauropod gained the accession number BMNH R3078 (now NHMUK R3078).
The amount of material made NHMUK R3078 the most complete sauropod specimen from the United Kingdom, comparable only later to the "Rutland Dinosaur" (referred to Cetiosaurus) discovered in 1967. Known regions of the specimen include the forelimb, hindlimb and vertebral column. The forelimb lacks the manus (hand) and part of the radius and ulna, although the hindlimb lacks only a few bones in the pes (foot) and fragments of the tibia, fibula and ilium. The vertebrae known are four parts of dorsal vertebrae, the neural spines of the sacrum, multiple anterior caudal vertebrae (tail bones), and a series of 27 nearly complete vertebrae from the middle of the tail with associated or articulated chevrons (ribs along the underside of the tail), although the vertebral series is not continuous. A tail tip (NHMUK R1967) from the same locality, but a different individual was thought by palaeontologist Alan Charig in 1980 to belong to Cetiosauriscus. The assignment of NHMUK R1967 to Cetiosauriscus was considered unlikely in alternate studies by palaeontologists Friedrich von Huene, Paul Upchurch and Darren Naish because of the lack of overlap and uncertain phylogenetic positions. In 1903, the skeleton was mounted as preserved in the British Museum, so it could be more easily compared with other mounted sauropods from North America. The mount of Cetiosauriscus was put on display just prior to the cast skeleton of Diplodocus, and was displayed with the dorsal vertebrae NHMUK R1984 and some isolated teeth from a camarasaurid (possibly referable to Cetiosauriscus), making it the first sauropod skeleton mounted in the United Kingdom.
NHMUK R3078 was referred in 1905 by Arthur Woodward to the species Cetiosaurus leedsii, as it was from the same geologic formation as other specimens that were assigned to C. leedsii. Woodward also referred the dorsal vertebrae NHMUK R1984 and the tail tip NHMUK R1967 to the species. In 1927, Huene briefly described the anatomy of the species C. leedsii, where he noted that it shared many similarities with Haplocanthosaurus and was most likely between Cetiosaurus proper and the former genus. For this reason, Huene proposed the new genus name Cetiosauriscus for the species. To the genus he referred the specimens NHMUK R1984–R1988 and NHMUK R3078.
Misassigned species
Huene (1927) assigned "Ornithopsis" greppini, which he had named in 1922, to the genus Cetiosauriscus. The known material, discovered in Late Jurassic (Kimmeridgian) deposits in the Reuchenette Formation of Switzerland, includes dorsal and caudal vertebrae, forelimb bones, and a hindlimb and partial pes, from at least two individuals. The long humerus was built like Cetiosauriscus stewarti (C. leedsi of von Huene's 1927 usage), and the two species were originally distinguished from Cetiosaurus by having shorter dorsal vertebrae, a shorter forelimb, and a longer lower leg. Similarities such as the anatomy of the caudal vertebrae were suggested by Christian Meyer and Basil Thüring in 2003 to support the referral of greppini to Cetiosauriscus. However, Weishampel et al. (2004) and Whitlock (2011) considered "Cetiosauriscus" greppini to be Eusauropoda incertae sedis, while Hofer (2005) and Schwarz et al. (2007) concluded that "Cetiosauriscus" greppini represents an unnamed genus of basal eusauropod. "Ornithopsis" greppini was finally named as the new genus Amanzia in 2020.
The species Cetiosaurus longus, named in 1842 by Owen, was referred to the genus Cetiosauriscus without comment by sauropod palaeontologist John Stanton McIntosh in 1990. The species was named for a dorsal and caudal vertebrae from the Portland Stone of Garsington, Oxfordshire (both now missing) and two other caudal vertebrae from the same deposit of nearby Thame. Owen also referred a single vertebra and some metatarsals originally named Cetiosaurus epioolithicus (an invalid nomen nudum) to the species. One of the vertebrae (OUMNH J13871) may instead be a cervical, as it has one mildly convex and one concave articular face. Characterised as having uniquely elongate vertebral centra (body of the vertebra), C. longus is not a diagnostic taxon. As it lacks any diagnostic features of Cetiosauriscus, the species should be referred to by its original designation, Cetiosaurus longus.
Cetiosaurus glymptonensis, named on the basis of nine middle-distal caudal centra from the Forest Marble Formation of Oxfordshire, England, was referred to Cetiosauriscus by McIntosh in 1990. These caudal vertebrae were considered to be more elongate than those of Cetiosaurus oxoniensis, but caudal length proportions vary significantly throughout the tail and in different taxa, Apatosaurus, Diplodocus and Cetiosauriscus having similarly elongate caudal vertebrae. The more anterior caudals have a large ridge two-thirds up the centrum and a smaller ridge one-third up. These ridges are similar to the middle caudals of Cetiosauriscus. Still, they are absent in caudals of the same size and proportions, and because of this difference the species was concluded to be separate from Cetiosauriscus by Upchurch and Martin in 2003. "Cetiosaurus" glymptonensis is considered to be Eusauropoda incertae sedis by Upchurch and Martin (2003), Weishampel and colleagues (2004) and Whitlock (2011), and is in need of a new genus name because it has a single diagnostic feature, the lateral ridges.
In 1980, Charig described a specimen of indeterminate diplodocid from the Early Cretaceous of England, and re-examined the holotype of Cetiosauriscus leedsii to compare its characteristics. In this publication he confirmed that the ilium of the holotype of C. leedsii, NHMUK R1988, was too incomplete to be compared to the also incomplete ilium of the referred specimen NHMUK R3078. Because of the lack of overlap the referral of NHMUK R3078 to Cetiosauriscus leedsii was no longer verifiable, so Charig named the new species Cetiosauriscus stewarti for NHMUK R3078. The specific name was chosen to honour Sir Ronald Stewart, the chairman of the London Brick Company that owned the clay pit the fossils had been found in. Furthermore, Charig considered Cetiosauriscus leedsii and Cetiosauriscus greppini to be dubious taxa, making C. stewarti the only valid species within Cetiosauriscus. Because of the invalidity of the type species C. leedsii, Charig made a petition to the International Code of Zoological Nomenclature (ICZN) in 1993 to designate Cetiosauriscus stewarti as the type species of its genus, being the taxon containing the specimen Huene had originally named the genus for and distinguished from Cetiosaurus, and also a taxonomically more stable name. This was accepted by the ICZN in 1995, making Cetiosauriscus stewarti the type species of Cetiosauriscus. The only specimen that can confidently be assigned to C. stewarti is the holotype NHMUK R3078, although it is possible that isolated teeth from the Oxford Clay could be from the taxon.
Description
Cetiosauriscus was a moderately sized, quadrupedal eusauropod. It had a moderately long tail, and relatively long arms making the shoulders level with the hips. Cetiosauriscus was approximately long based on the known skeleton, comparable to possible relatives like long Cetiosaurus, and long Patagosaurus. The weight of Cetiosauriscus is less certain, depending on its phylogenetic placement. Restored as a diplodocid, Cetiosauriscus was estimated by Paul (2010) as , but restored as a cetiosaur it was estimated by Paul (2016) as .
Vertebrae
The dorsal vertebrae of NHMUK R3078 are incomplete or fragmentary. A partial anterior dorsal is known from a single centrum, which is about as long as wide, with a strong anterior articular ball (an opisthocoelous condition). On the lateral surfaces (sides) of the centrum there are deep but small pleurocoels (depressions in the sides of vertebrae for air sacs). A single middle dorsal centrum is preserved, slightly smaller than the anterior dorsal. The pleurocoel is more elongate, but like the anterior dorsal there is no ventral (underside) concavity. A posterior dorsal is also known and is probably the last dorsal before the sacrum (vertebrae between the pelves). It preserves the entire centrum and most of the neural arch, and is significantly shortened in length compared to the other dorsals, although it is about as wide across as tall. A shallow pleurocoel is also present, but is placed higher on the side of the centrum and disappears into the neural arch. Unlike the anterior dorsal, the posterior dorsal is only very slightly opisthocoelous. A tall and narrow hyposphene (thin vertical ridge below the anterior processes of the arch, providing additional vertebral articulation) is present and well expanded off the arch. A single dorsal neural spine is also preserved. It is flattened and not tall, with a narrowed tip, and the only noticeable laminae present are the spinopostzygapophyseal laminae running down the rear corners of the spine to the postzygapophyses. This is unlike most diplodocoids where there are many laminar running along the length of the spines. Four neural spines of the sacrum are preserved, three of which form a single plate and the fourth of which is separate, like in Diplodocus.
Of the anterior four caudal vertebrae, the anteriormost two are highly incomplete. Both the short, but wider-than-tall, centra preserve traces of the sideways projections (transverse processes) found in other vertebrae, which are very low on the sides compared to following caudals. The neural spines are very thin, thinning to a single ridge in front (the prespinal lamina), but having two spinopostzygapophyseal laminae like the dorsals. The fourth caudal is the most complete anterior caudal. The centrum is concave in front, but flat behind (amphiplatyan). There are no pleurocoels unlike the dorsals, and the transverse processes begin in the top half of the centrum. The centrum is long, tall and wide, with the total vertebra being tall. Anterior caudals of the Cetiosaurus leedsi specimen NHMUK R1984 are very similar to those of Cetiosauriscus, but the neural arches are not as tall in C. leedsi, and the transverse processes lack a prominent ridge along the top of them. Middle and posterior caudals from a nearly continuous series of 27 bones are well preserved in Cetiosauriscus. The later vertebrae are slightly more elongate than those in front, and slightly less concave in their anterior face. Moving towards the end of the tail the centra reduce in size and the transverse processes shrink until they are completely absent, with the neural spines becoming shorter, thinner, and more slanted. The seventh vertebrae of the series, at tall, is long, only one cm longer than the 21st of the same series that is tall. A distinguishing characteristic of Cetiosauriscus is the presence of a front-to-back concavity on the top of the anterior and middle caudal neural spines.
Appendicular skeleton
Cetiosauriscus preserves a single right scapula (shoulder blade), which is elongate and slender. The scapula is long and wide at the middle, making it very narrow. The inner face is flat across, while the outer face is gently convex. There is no expansion of the far end of the blade. The bone thickens close to the humerus joint, where it also articulates with the coracoid. The coracoid is incomplete, but enough is preserved to show it is rectangular, and longer, at , than it is wide—. A long humerus is known, and complete with minimal crushing. The bone is short and stout, with a robust crest for the deltoid muscle along the upper half of the bone. The shape of the humerus is similar to the shortness of Neuquensaurus, although overall the forelimb is long, as in Diplodocus and Cetiosaurus, being 69% of the femur length. The distal end is roughened for a large cartilage cap as found in some other eusauropods like "Cetiosauriscus" greppini. The radius and ulna are broken, but complete they would have been long.
The hindlimb of Cetiosauriscus is about the length of the forelimb. Both ilia are very fragmentary, but the two sides supplement each other to give a reasonable idea of the proportions of the complete bone. The ilium is long, and has a long and slender pubic peduncle. It is proportionally lower than in Cetiosaurus, being similar in proportions to Haplocanthosaurus and the later "Titanosauridae". The left femur is complete, but part of the shaft is eroded away. It is very slender, being tall but only wide at the middle. This very gracile femoral morphology is shared with Amphicoelias, Shunosaurus, Ligabuesaurus and a specimen of Diplodocus, being more gracile than Cetiosaurus and most other eusauropods. A prominent fourth trochanter is present, but the remaining shaft is very compressed. The tibia, fibula and pes are also preserved, but are fragmentary and disarticulated making comparisons difficult, the lower hindlimb being about upright. The foot is similar to Diplodocus and Brontosaurus, where the first toes are large and clawed, and the outer ones are small and clawless. Metatarsal III is the longest, followed by metatarsal IV, II, V and I. Metatarsal I is the widest, and the width of the bones decreases numerically.
Classification
Cetiosauriscus was originally classified by Huene as a genus in the family Cetiosauridae, within the subfamily Cardiodontidae. The subfamily, including the other taxa Cetiosaurus, Haplocanthosaurus, Dystrophaeus, Elosaurus and Rhoetosaurus, was founded upon the general basal features of elongate cervicals and shortened dorsals—both opisthocoelous, amphicoelous caudals that are rod-shaped distally, paired sternal plates, an ilium lacking the postacetabular process (region of the ilium behind the ischium joint and acetabulum), a very wide pubis, wide distal ischium, significantly shorter forelimb than hindlimb, fibula lacking the middle muscle attachment, and long metacarpals and short metatarsals. This classification was amended in 1932 when Huene concluded Cetiosauriscus was closer to Haplocanthosaurus than Cetiosaurus in the family, because of forelimb and hindlimb proportions. Conversely, in 1956, Alfred Romer synonymised Cetiosauriscus and Cetiosaurus, a position that has not been followed by subsequent studies on the taxon.
David S. Berman and McIntosh in 1978 referred Cetiosauriscus to the family Diplodocidae along with multiple other genera; Diplodocus, Apatosaurus, Barosaurus, Mamenchisaurus Dicraeosaurus and Nemegtosaurus. Like other members of the family, Cetiosauriscus possesses wing-like transverse processes, divided chevrons with forward and backward projections, the tail is "whiplash"-like, the humerus is 2/3 the length of the femur, the calcaneum is absent, metatarsal III and IV are the longest, and metatarsal I has a process on the bottom back corner. This referral would make Cetiosauriscus, known from the Callovian, the oldest diplodocid, millions of years older than Diplodocus, Barosaurus or Apatosaurus. In the paper naming Cetiosauriscus stewarti, Charig also described the chevrons of a new specimen and created the term "diplodociform" to describe them. This meant they were robust and double-beamed, as in Diplodocus and its relatives like Mamenchisaurus. Because of the similarly "diplodociform" chevrons, Charig referred Cetiosauriscus to the Diplodocidae along with the new specimen. Elaborating upon his earlier paper, McIntosh (1990) weakly referred Cetiosauriscus to the subfamily Diplodocinae, characterised by more cervicals and fewer dorsals, tall sacrum neural spines, short forelimbs, no calcaneum, metatarsals III and IV being the longest, and a small process on the distal end of metatarsal I. The subfamily also included Diplodocus, Barosaurus and Apatosaurus. In 2004 this placement was followed by Weishampel et al. without comment.
A phylogenetic analysis of Cetiosauriscus was conducted in 2003 by Julia Heathcote and Upchurch, based upon the two most inclusive matrices of the time, those of Jeffrey A. Wilson (2002) and Upchurch (1995), neither of which had included the taxon in the past. Added to the analysis of Upchurch, Cetiosauriscus placed as the sister taxon of Tehuelchesaurus, in a group including Mamenchisaurus, Omeisaurus and Euhelopus, and a placement within a group of Omeisaurus and Mamenchisaurus was also found by using the Wilson matrix. Based on these two results, Heathcote and Upchurch concluded Cetiosauriscus was not a diplodocid or even within Diplodocoidea, instead being a more basal sauropod outside Neosauropoda. The phylogenetic analysis of Rauhut et al. (2005) resolved Cetiosauriscus in a clade with Omeisaurus, itself in a group with Losillasaurus and Mamenchisaurus, outside of Neosauropoda. The phylogenetic relationships of Cetiosauriscus were also tested in 2015 by Tschopp et al., as a potential diplodocid. Although the genus was found to be within Diplodocimorpha with one analysis method, it was also found outside Neosauropoda. In both, Cetiosauriscus stewarti was found to be in a clade alone with Barosaurus affinis, a dubious species known only from foot bones. Tschopp et al. concluded that Cetiosauriscus was not a diplodocid or a diplodocoid, as forcing it to be outside Neosauropoda was more parsimonious than forcing it to be within Diplodocoidea in all analyses. As the paper was only to test relationships within Diplodocidae, more solid conclusions regarding the position of Cetiosauriscus could not be made. The results of the favoured cladogram of Tschopp et al. is shown below:
Palaeobiology
Palaeopathology
The series of distal caudal vertebrae NHMUK R1967, once referred to Cetiosauriscus, is similar to the caudals of Diplodocus, with two convex ends (biconvex) and a long and thin centrum. These caudals display signs of injury at two points along the series of ten vertebrae, where there are signs of breakage that was later healed. These lesions were identified as the same form of pathologies as found on the tail of Diplodocus. It has been suggested that the biconvex distal caudal vertebrae in sauropods were used for making whip-like cracking noise, being thin and delicate and not intended for impact, as the joints would be very vulnerable to damage rendering them useless.
Palaeoecology
Cetiosauriscus lived during the Callovian, an epoch in the Middle Jurassic, about 166 to 164 mya.
The single specimen is known from the Lower Member of the Oxford Clay Formation, along with multiple other dinosaur genera and many other groups of animals, in the biozone of the index fossil Kosmoceras jason. The Oxford Clay Formation is a marine deposit of southern and middle England, known for the high-quality preservation of some fossils and the large diversity of taxa. Sediments are generally brownish-grey mudstone, organic-rich with plentiful crushed ammonites and bivalves, at most thick. A large diversity of flora can be seen, preserved in the form of pollen and spores. Gymnosperms are present, along with pteridophytes, unidentifiable wood fragments, other intermediate pollen, and miscellaneous organic plant material.
The intermediate sauropod Ornithopsis leedsi is known from the same section of the formation as Cetiosauriscus, along with the stegosaurids Lexovisaurus durobrivensis and Loricatosaurus priscus (which are possibly synonyms), the basal ankylosaur Sarcolestes leedsi, the ornithopod Callovosaurus leedsi, and a second unnamed ornithopod taxon. Dinosaur eggs that have not yet been assigned to a taxon are also known from the Lower Oxford Clay. The theropods Eustreptospondylus and possibly Megalosaurus are also known from the Oxford Clay Formation, but slightly younger deposits (the Middle Member). In addition, the theropod Metriacanthosaurus is from an unknown level and age in the formation.
Hundreds of invertebrates are known from the marine deposits, including bivalves, gastropods, scaphopods, ammonites, teuthoids, a nautiloid, foraminifera, coelenterates, bryozoans, brachiopods, annelids, crustaceans, ostracods, cirripedes and echinoderms. Fish are known from the clades Elasmobranchii, Chimaera, and Actinopterygii, and the ichthyosaur Ophthalmosaurus, the plesiosaurs Cryptoclidus, Muraenosaurus, Tricleidus, Liopleurodon, Peloneustes, Pliosaurus and Simolestes, the crocodilians Metriorhynchus and Steneosaurus, and the pterosaur Rhamphorhynchus were all present.
Notes
References
Further reading
External links
Eusauropoda
Callovian genera
Middle Jurassic dinosaurs of Europe
Fossils of England
Oxford Clay
Fossil taxa described in 1927
Fossil taxa described in 1980
Taxa named by Friedrich von Huene
Middle Jurassic sauropods
Sauropods of Europe |
Munir Ahmad Kakar () (born 1 February 1996) is an Afghan cricketer. He made his international debut for the Afghanistan cricket team in March 2021.
Domestic career
He made his List A debut for Amo Region in the 2017 Ghazi Amanullah Khan Regional One Day Tournament on 10 August 2017. He made his Twenty20 debut for Boost Defenders in the 2017 Shpageeza Cricket League on 15 September 2017. He made his first-class debut for Boost Region in the 2017–18 Ahmad Shah Abdali 4-day Tournament on 26 October 2017.
He was the leading run-scorer for Boost Region in the 2018 Ahmad Shah Abdali 4-day Tournament, with 843 runs in ten matches. He was also the leading run-scorer for Boost Region in the 2018 Ghazi Amanullah Khan Regional One Day Tournament, with 256 runs in six matches. In the final of the Ghazi Amanullah Khan Regional One Day Tournament, he scored 108 not out, leading Boost Region to a five wicket win, and was named the man of the match.
He was the leading run-scorer in the 2019 Afghanistan Provincial Challenge Cup, with 348 runs in four matches. In September 2019, he was the leading run-scorer in the 2019 Ghazi Amanullah Khan Regional One Day Tournament, with 414 runs in six matches.
International career
In September 2018, he was named in Afghanistan's One Day International (ODI) squad for the 2018 Asia Cup, but he did not play. In November 2019, he was named in Afghanistan's squad for the 2019 ACC Emerging Teams Asia Cup in Bangladesh.
In February 2021, he was named in Afghanistan's Test squad for their series against Zimbabwe. He made his Test debut for Afghanistan, against Zimbabwe, on 2 March 2021.
References
External links
1996 births
Living people
Afghan cricketers
Afghanistan Test cricketers
Amo Sharks cricketers
Boost Defenders cricketers
Place of birth missing (living people) |
The 1995 Greenlandic Men's Football Championship was the 25th edition of the Greenlandic Men's Football Championship. The final round was held in Sisimiut. It was won by Kugsak-45 for the first time in its history.
Qualifying stage
North Greenland
Disko Bay
Central Greenland
Group A
Group B
South Greenland
Last Chance Qualifier
Final round
Pool 1
Pool 2
Playoffs
Semi-finals
Seventh-place match
Fifth-place match
Third-place match
Final
See also
Football in Greenland
Football Association of Greenland
Greenland national football team
Greenlandic Men's Football Championship
References
Greenlandic Men's Football Championship seasons
Green
Green
Foot |
Fibre Channel Protocol (FCP) is the SCSI interface protocol utilising an underlying Fibre Channel connection. The Fibre Channel standards define a high-speed data transfer mechanism that can be used to connect workstations, mainframes, supercomputers, storage devices and displays. FCP addresses the need for very fast transfers of large volumes of information and could relieve system manufacturers from the burden of supporting a variety of channels and networks, as it provides one standard for networking, storage and data transfer.
Some Fibre Channel characteristics are:
Performance from 266 megabits/second to 16 gigabits/second
Support both optical and copper media, with distances up to 10 km.
Small connectors (sfp+ are most common)
High-bandwidth utilisation with distance insensitivity
Support for multiple cost/performance levels, from small systems to supercomputers
Ability to carry multiple existing interface command sets, including Internet Protocol (IP), SCSI, IPI, HIPPI-FP, and audio/video.
Fibre Channel consists of the following layers:
FC-0 -- The interface to the physical media
FC-1 -- The encoding and decoding of data and out-of-band physical link control information for transmission over the physical media
FC-2 -- The transfer of frames, sequences and exchanges comprising protocol information units.
FC-3 -- Common services required for advanced features such as striping, hunt group and multicast.
FC-4 -- Application interfaces that can execute over Fibre Channel such as the Fibre Channel Protocol for SCSI (FCS).
Unlike a layered network architecture, a Fibre Channel network is largely specified by functional elements and the interfaces between them. These consist, in part, of the following:
N_PORTs—The end points for traffic.
FC Devices—The devices to which the N_PORTs provide access.
Fabric Ports—The interfaces within a network that provide attachment for an N_PORT.
The network infrastructure for carrying frame traffic between N_PORTs.
Within a switched or mixed fabric, a set of auxiliary servers, including a name server for device discovery and network address resolution.
Fibre Channel network topologies consist of the following:
Arbitrated Loop—A series of N_PORTs connected together in daisy-chain fashion.
Switched Fabric—A network consisting of switching elements.
Mixed Fabric—A network consisting of switches and "fabric-attached" loops. A loop-attached N_PORT (NL_PORT) is connected to the loop through an L_PORT and accesses the fabric by way of an FL_PORT.
See also
Fibre Channel frame
References
http://hsi.web.cern.ch/HSI/fcs/spec/overview.htm
SCSI |
I Can Spin a Rainbow is a collaborative studio album by American singer-songwriter Amanda Palmer and English singer-songwriter Edward Ka-Spel of The Legendary Pink Dots. In a blog post on her official website, Palmer explained the backstory of how she was obsessed with the Pink Dots as a teenager, and even wrote and directed an experimental dialogue-free play inspired by their album Asylum when she was seventeen. When she was nineteen, the band needed a place to stay while on tour in Boston, Massachusetts and Palmer offered up her house. The Legendary Pink Dots also served as an opening act for Palmer's band the Dresden Dolls in the early 2000s. The two of them spent years trying to find a time to record an album together, but due to struggles in Palmer's personal life, plans always fell through. Most of the album was recorded in the house of English musician Imogen Heap.
On May 19, 2017, Ka-Spel released a four-track studio album called High on Station Yellow Moon that features Palmer on three of the tracks.
Critical reception
The album received a score of 60/100 based on reviews from nine critics, indicating "mixed or average reviews", making it Palmer's lowest rated album on the site. AllMusic summarized the album with "At best, I Can Spin a Rainbow feels like the work of two talented artists savoring a long weekend of boundless creativity together, but from an outsider's perspective, the results are a bit too impenetrable to contextualize without having been in the room to witness its genesis." Marc Hirsh's review for the Boston Globe echoed the inaccessibility of the album, saying "Every album she's ever had a hand in is, in one way or another, about creating a community. I Can Spin a Rainbow may be the first that goes about it by shutting people out instead of bringing them in." The A.V. Club called the album "tuneless" and "just about as 'for the fans' as it gets." Andrew Dorsett of PopMatters deemed the album "insufferable" and that it "sounds like an inside joke, an indulgence on a whim that few others share or can access."
In contrast, Nina Keen of Drowned in Sound praised the album, saying "Each song tells its own story so intensely and so completely, like 11 musical horror novellas, that listening to any of them individually produces an experience more like that of listening to a shortish, intense, masterpiece-like album, especially as the songs often have a few different musical sections and ideas."
Track listing
All songs written by Palmer and Ka-Spel
Personnel
Recorded at Hideaway Studio and Chez Dots, London in Summer 2016.
Mastered by Ray Steeg and Peter Van Vliet
Vocals and instruments: Amanda Palmer and Edward Ka-Spel
Violins: Patrick Q. Wright
Singing saw: Alexis Michallek
Artwork: Judith Clute
The Hands EP
Along with the album, Palmer released a two-track extended play called The Hands EP exclusively on 7-inch vinyl and limited to 1,111 copies exclusively available to her supporters on Patreon. The EP contains two songs that were not included on the album I Can Spin a Rainbow.
Live album
An over two hour long live album of the duo's concert in Vienna, Austria on June 16, 2017 alongside violinist Peter Q. Wright was released on SoundCloud on June 29, 2017.
References
2017 albums
Collaborative albums
Crowdfunded albums
Experimental music albums
Amanda Palmer albums
Albums recorded in a home studio |
Bulbophyllum marudiense is a species of orchid in the genus Bulbophyllum.
References
The Bulbophyllum-Checklist
The Internet Orchid Species Photo Encyclopedia
marudiense |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<project xmlns="path_to_url"
xmlns:xsi="path_to_url"
xsi:schemaLocation="path_to_url path_to_url">
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.cloud.training.flights</groupId>
<artifactId>chapter8</artifactId>
<version>1.1</version>
<properties>
<beam.version>2.13.0</beam.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-exec-plugin.version>1.6.0</maven-exec-plugin.version>
<slf4j.version>1.7.25</slf4j.version>
</properties>
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Development Snapshot Repository</name>
<url>path_to_url
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${maven-exec-plugin.version}</version>
<configuration>
<cleanupDaemonThreads>false</cleanupDaemonThreads>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-core</artifactId>
<version>${beam.version}</version>
</dependency>
<!--
By default, the starter project has a dependency on the Beam DirectRunner
to enable development and testing of pipelines. To run on another of the
Beam runners, add its module to this pom.xml according to the
runner-specific setup instructions on the Beam website:
path_to_url#runners
-->
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-direct-java</artifactId>
<version>${beam.version}</version>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-runners-google-cloud-dataflow-java</artifactId>
<version>${beam.version}</version>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-io-google-cloud-platform</artifactId>
<version>${beam.version}</version>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-extensions-google-cloud-platform-core</artifactId>
<version>${beam.version}</version>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-extensions-protobuf</artifactId>
<version>${beam.version}</version>
</dependency>
<dependency>
<groupId>org.apache.beam</groupId>
<artifactId>beam-sdks-java-io-jdbc</artifactId>
<version>${beam.version}</version>
</dependency>
<!-- slf4j API frontend binding with JUL backend -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
</dependencies>
</project>
``` |
Kappa Persei or κ Persei, is a triple star system in the northern constellation of Perseus. Based upon an annual parallax shift of 28.93 mas, it is located at a distance of 113 light-years from the Sun.
The system consists of a spectroscopic binary, designated Kappa Persei A, which can be seen with the naked eye, having an apparent visual magnitude of 3.80. The third star, designated Kappa Persei B, is of magnitude 13.50.
Kappa Persei A's two components are designated Kappa Persei Aa (officially named Misam , the traditional name of the entire system) and Ab.
Nomenclature
κ Persei (Latinised to Kappa Persei) is the system's Bayer designation. The designations of the two constituents as Kappa Persei A and B, and those of A's components - Kappa Persei Aa and Ab - derive from the convention used by the Washington Multiplicity Catalog (WMC) for multiple star systems, and adopted by the International Astronomical Union (IAU).
The traditional name comes from the Arabic مِعْصَم miʽṣam 'wrist'.
In 2016, the IAU organized a Working Group on Star Names (WGSN) to catalog and standardize proper names for stars. The WGSN decided to attribute proper names to individual stars rather than entire multiple systems. It approved the name Misam for the component Kappa Persei Aa on 5 September 2017 and it is now so included in the List of IAU-approved Star Names.
In Chinese, (), meaning Mausoleum, refers to an asterism consisting of Kappa Persei, 9 Persei, Tau Persei, Iota Persei, Beta Persei (Algol), Rho Persei, 16 Persei and 12 Persei. Consequently, the Chinese name for Kappa Persei itself is (, .).
Properties
At its distance, the visual magnitude of Kappa Persei is diminished by an extinction factor of 0.06 due to interstellar dust. It has a relatively high proper motion totaling 0.230 arcseconds per year. There is a 76.3% chance that it is a member of the Hyades-Pleiades stream of stars that share a common motion through space.
With an estimated age of 4.58 billion years, Kappa Persei Aa is an evolved G-type giant star with a stellar classification of G9.5 IIIb. It is a red clump giant, which means that it is generating energy at its core through the nuclear fusion of helium. The star has about 1.5 times the mass of the Sun and 9 times the Sun's radius. It radiates 40 times the solar luminosity from its outer atmosphere at an effective temperature of 4,857 K.
Kappa Persei B is at an angular separation of 44.10 arc seconds along a position angle of 319°, as of 2009.
References
G-type giants
Horizontal-branch stars
Spectroscopic binaries
Persei, Kappa
Perseus (constellation)
BD+44 0631
Persei, 27
019476
014668
0941 |
Michael Andrew Minovitch (born c. 1936) is an American mathematician who developed gravity assist technique when he was a UCLA graduate student and working summers at NASA's Jet Propulsion Laboratory.
In 1961 Minovitch began using the fastest available computer at the time, the IBM 7090, to solve the three-body problem. He ran simulations and developed his own solution by 1962.
The first mission to use a gravity assist was Pioneer 10, which increased its velocity from 52,000 km/h to 132,000 km/h as it passed by Jupiter in December, 1973.
Minovitch patented a vehicle for space travel under the patent title Magnetic propulsion system and operating method, US Patent 6193194 B1.
References
External links
Jupiter swing-by trajectories passing near the earth Includes comprehensive history of the development of gravity-assist trajectories.
Gravity-assist "Slingshot", Background, principle, applications, Part 1 and 2 on EEWorldOnline.com
20th-century American mathematicians
21st-century American mathematicians
1930s births
Living people
University of California, Los Angeles alumni
University of California, Berkeley alumni |
Frank William Gay (September 11, 1920 – May 21, 2007) was an American executive who oversaw several entities for Howard Hughes. He was chairman of the board of directors of the Hughes Air Corporation. He served as a senior vice president and member of the board of directors for the Hughes Tool Company. He was also president and chief executive officer of Summa Corporation.
Background
Born in Salt Lake City, Utah, he was a student at the University of California, Los Angeles when he was hired by Hughes. He was responsible for the creation of Hughes Dynamics, a short-lived computer services subsidiary of Hughes Tool in the early 1960s. A member of the Church of Jesus Christ of Latter-day Saints, Gay put together the so-called "Mormon Mafia" that comprised Hughes's inner circle in his later life. Appointed by the Delaware Court of Chancery, Gay served as trustee of the Howard Hughes Medical Institute from 1984 until his retirement in 2006. He had previously served on the Institute's executive committee from 1971 to 1984.
He was an active supporter of the Boy Scouts of America.
His son is Robert C. Gay, a co-founder and CEO of Huntsman Gay Global Capital, and before that managing director of Bain Capital for sixteen years.
Gay died in Kingwood, Texas in 2007.
References
External links
In Memoriam: Frank William Gay via Howard Hughes Medical Institute
1920 births
2007 deaths
Businesspeople from Salt Lake City
University of California, Los Angeles alumni
Latter Day Saints from Utah
20th-century American businesspeople
Latter Day Saints from California |
James H. Osmer (January 23, 1832 – October 3, 1912) was a Republican member of the U.S. House of Representatives from Pennsylvania.
James H. Osmer was born in Tenterden, Kent, England.
As an infant his parents immigrated to the United States and settled near Bellefonte, Pennsylvania. He attended private schools, Bellefonte Academy in Centre County, Pennsylvania, Mount Pleasant College in Westmoreland County, Pennsylvania, and Pennsylvania and Dickinson Seminary in Williamsport, Pennsylvania.
He studied law at Elmira, New York. He was admitted to the bar of the supreme court of New York at Cortland, New York, in 1858 and practiced at Horseheads, New York, near Elmira, until 1865, when he moved to Franklin, Pennsylvania, where he was admitted to the bar and practiced. He was a delegate to the 1876 Republican National Convention. He was a delegate to several State conventions.
Osmer was elected as a Republican to the Forty-sixth Congress. He was not a candidate for renomination in 1880. He continued the practice of his profession in Franklin until his death in 1912, aged 80. He was interred in Franklin Cemetery.
Sources
The Political Graveyard
1832 births
1912 deaths
British emigrants to the United States
Pennsylvania lawyers
People from Tenterden
Republican Party members of the United States House of Representatives from Pennsylvania
19th-century American politicians
19th-century American lawyers |
Hymenoxys texana is a rare species of flowering plant in the aster family known by the common names prairie dawn, Texas prairie dawn-flower, and Texas bitterweed. It is endemic to Texas, where it is known only from the general vicinity of Houston. It is threatened by the loss of its habitat. It is a federally listed endangered species of the United States.
Hymenoxys texana is an annual herb with delicate reddish or purplish stems growing only 10 or 15 centimeters (4-6 inches) tall. The leaves have rubbery, glandular blades which may be simple or divided into lobes, particularly at mid-stem. The inflorescence is a solitary flower head or an open cluster of several heads. Each head is under a centimeter wide and has 6 to 8 yellow ray florets each 2 or 3 millimeters long. The ray florets are often tucked behind the phyllaries. The center of the head has 30–75 tiny disc florets.
Hymenoxys texana grows only in the grasslands of the Gulf Coastal Plain in Texas. It can be found on open, barren stretches of saline sandy soil at the base of Mima mounds. The soil is often coated with a slick of algae (Nostoc sp.) during the wet season. The soil dries, cracks, and becomes powdery in the dry season. Few other plants occur on this substrate, but prairie dogshade (Limnosciadium pumilum) can sometimes be associated.
Hymenoxys texana is known only from Harris and Fort Bend Counties in Texas. It was first described in 1891 from a specimen taken near Hockley. Few specimens were noted after this and by 1979 the species was thought to be extinct. Just two years later it was relocated. Today there are about 50 known populations, but most all of these are endangered by the destruction and degradation of their habitat. Most of the occurrences of the plant are within or near the Houston metropolitan area, which is undergoing rapid growth. Habitat is being claimed for residential and other development.
References
External links
USDA Plants Profile for Hymenoxys texana
texana
Endemic flora of Texas
Plants described in 1891
Taxa named by John Merle Coulter
Endangered flora of the United States |
Pedro Miguel Assunção Martins (born 14 February 1990 in Portimão, Algarve) is a Portuguese badminton player who joined the national team in 2005. Trained at the ACD CHE Lagoense, Martins competed for Portugal at the 2012 London and 2016 Summer Olympics Men's singles event.
Achievements
BWF International Challenge/Series
Men's singles
BWF International Challenge tournament
BWF International Series tournament
References
External links
Pedro Martins on Facebook
Portuguese male badminton players
1990 births
Living people
People from Portimão
Olympic badminton players for Portugal
Badminton players at the 2012 Summer Olympics
Badminton players at the 2016 Summer Olympics
Sportspeople from Faro District |
Sutton, Illinois may refer to:
Bentley, Illinois, formerly known as Sutton
Sutton, Cook County, Illinois, an unincorporated community in Cook County |
Insurrectionary anarchism is a revolutionary theory and tendency within the anarchist movement that emphasizes insurrection as a revolutionary practice. It is critical of formal organizations such as labor unions and federations that are based on a political program and periodic congresses. Instead, insurrectionary anarchists advocate informal organization and small affinity group based organization. Insurrectionary anarchists put value in attack, permanent class conflict and a refusal to negotiate or compromise with class enemies.
Associated closely with the Italian anarchist movement, the theory of insurrectionary anarchism has historically been linked with a number of high-profile assassinations, as well as the bombing campaigns of the Galleanisti and Informal Anarchist Federation (FAI).
History
Development
Among the earliest inspirations for insurrectionary anarchism was Max Stirner's 1845 book The Ego and Its Own, a tract that upheld a kind of proto-individualist anarchism. Stirner distinguished between "revolution" and "insurrection", defining the aims of "revolution" to be a new arrangement of society by a state, while he considered the aims of an "insurrection" to be the rejection of such arrangements and the free self-organisation of individuals.
During the 1870s, the idea of "propaganda of the deed" was initially developed by Italian anarchists to mean small direct actions that would inspire others to themselves carry out acts of insurrection. Insurrectionists viewed every riot or rebellion as a kind of "revolutionary gymnastics" which could lead to a generalised social revolution. Driven by this theory, Italian individualist anarchists carried out a series of high-profile assassinations during the 1890s, killing French President Sadi Carnot, Spanish Prime Minister Antonio Cánovas del Castillo, Austrian Empress Elisabeth Wittelsbach and Italian King Umberto Savoy.
Meanwhile, the question of organisation had divided the Italian anarchist movement into the syndicalists, who advocated for organisation within the labour movement, and the insurrectionists, who emphasised violent and illegal forms of self-organised direct action. The insurrectionary anarchists rejected all forms of formal organisation, including anarchist federations and trade unions, and criticised the movement's reformist and activist tendencies for failing to take "immediate action". Although both tendencies advocated for anarchist communism, pro-organisationalists such as Francesco Saverio Merlino and Errico Malatesta considered the insurrectionists to really constitute a tendency of individualist anarchism, due to their belief in individual sovereignty and natural law.
Galleanist movement
Contemporaneous with the rise of anarcho-syndicalism, insurrectionary anarchism was promoted in the United States by the Italian immigrant Luigi Galleani, through his newspaper Cronaca Sovversiva. Galleani was a staunch anti-organisationalist, opposing anarchist participation in the labour movement, which he felt displayed reformist tendencies and a receptiveness to corruption. This stance brought Galleani into conflict with the Industrial Workers of the World (IWW) during the 1912 Lawrence textile strike, following which they entered into a fierce polemic. However, outside observers paid little attention to the differences between the anarchist factions, who were generally viewed as part of the same "amorphous inscrutable threat".
Galleani advocated for propaganda of the deed, which was taken up throughout North America by a network of Galleanist cells, usually consisting of close-knit individuals. Following the American entry into World War I and the ensuing political repression that followed, the Galleanists initiated a violent campaign in opposition to the American government. After some Italian anarchists were killed by police for tearing down an American flag, the Galleanists carried a reprisal attack, which itself triggered a wave of arrests against insurrectionists. When one of the Italian insurrectionists was threatened with deportation, the Galleanists responded with a bombing campaign, sending letter bombs to industrialists, politicians and lawyers. None of the bombs hit their targets, instead injuring a housekeeper and accidentally killing one of the insurrectionist conspirators. Although the conspirators themselves were never caught, Galleani and other Italian insurrectionists were deported and the bombings were used as justification for repression of the 1919 strike wave.
During the subsequent political repression, the Italian anarchists Sacco and Vanzetti were arrested on charges of armed robbery. The Galleanists responded by carrying out the Wall Street bombing, killing 38 people and making the task of exonerating the pair more difficult. Nevertheless, the Galleanists continued their efforts to aid Sacco and Vanzetti, who they considered to have been framed. In 1922, they began publication of L'Adunata dei refrattari, in which they encouraged their readers to break the pair out of prison and carry out retributive violence against the responsible state officials. This further exacerbated the split between the syndicalists and insurrectionists, as the two factions excluded each other from their own campaigns.
Political repression largely drove the insurrectionary anarchist movement underground, with Marcus Graham declaring that they would continue to operate on a conspiratorial basis until they could again agitate in the open. During the late 1920s, Graham moved to San Francisco, where he became involved with insurrectionary anarchists around the Galleanist newspaper L'Emancipazione. As the Great Depression limited their capacity, the paper shifted to publications in the English language and invited Graham to be its editor. In January 1933, the group established the newspaper Man!, intended as a means to revive the Galleanism of the previous decade. For Graham and his collaborators, the social revolution was to be built on individuals achieving a form of enlightenment that would break them from "every law, custom and sham creed in which he now finds himself trapped". Like early insurrectionists, Man! rejected syndicalism and the labour movement, which they considered to be inherently authoritarian, and frequently criticised union officials for corruption. Graham also formulated a criticism of technology and called for the destruction of civilisation, in arguments that were an early precursor to anarcho-primitivism.
Man! and L'Adunata dei refrattari continued to act as the main expressions of insurrectionary anarchism throughout the 1930s, but failed to revive it as a popular tendency. Before long, Man! came under increasing police repression, culminating with Graham's arrest and the subsequent cessation of publication in 1939. By the 1940s, the insurrectionary anarchist movement was only a marginal force, concentrated around L'Adunata dei refrattari in New York. The periodical slowly declined until the early 1970s, when it was finally succeeded by the anti-authoritarian publication Fifth Estate.
Resurgence
Insurrectionary anarchism re-emerged within the Italian anarchist movement during the Years of Lead, when the country was marked by instances of left-wing and right-wing terrorism. In 1977, Alfredo Bonanno published his book Armed Joy, which espoused a critique of work, emphasised the feeling of joy and advocated for the use of revolutionary violence. Although Bonanno was imprisoned for the book's publication and the Italian state ordered all copies be destroyed, he continued to pen insurrectionist manifestos. As the Cold War drew to a close, he called for insurrectionary anarchists to coordinate themselves into an informal "Anti-Authoritarian Insurrectionist International" in order to build contact and exchange ideas, but this project was stillborn.
During the 1980s, Italian insurrectionary anarchists began carrying out small acts of vandalism against "soft targets" such as telecommunications and electricity infrastructure. These were usually carried out by small informal groups, largely distributed throughout Northern and Central Italy, that focused on localised social conflicts. These attacks escalated into violence during the late 1990s, when insurrectionists began carrying out bombings and assaults. The escalation initially caught the Italian authorities off guard, as they were used to these attacks being carried out without casualties.
Between the years of 1999 and 2003, four insurrectionist groups carried out a series of more than 20 bombing attacks, following which they merged together into the Informal Anarchist Federation (FAI) in December 2003. To announce their formation, the FAI carried out a series of bombing attacks against various officials of the European Union, including the European President Romano Prodi, although none of the letter bombs sent out caused any injuries. A further series of letter bomb attacks were carried out by the FAI in 2010 and 2011, during which a number of people were injured. After a cell of the FAI kneecapped an executive of Ansaldo Nucleare in 2012, fears of anarchist terrorism spread rapidly throughout Italy. This led to a wave of arrests against insurrectionary anarchists, including one of the attackers Alfredo Cospito, which briefly put the FAI into an "operational stasis" before they resumed parcel bomb attacks the following year. Over a decade of active operations, the FAI claimed 50 violent attacks, having caused 10 injuries and no deaths.
Since the dissolution of the Red Brigades, insurrectionary anarchists have been considered by the Italian government to be among the most dangerous domestic terrorists in Italy, second only to Islamic terrorists. The FAI's example was followed on an international scale by a number of other insurrectionary anarchist groups, most notably the Conspiracy of Cells of Fire (CCF) in Greece, who joined together with the FAI to launch what they called the "Black International". Parts of Bonanno's insurrectionary programme have also been taken up by anarchist sections of the anti-globalization movement, as well as by the Sardinian nationalist Costantino Cavalleri and the American individualist Wolfi Landstreicher.
In the United States, insurrectionary anarchism had largely been sidelined until the establishment of Up Against the Wall Motherfucker, which promoted the use of violent direct action in solidarity with the King assassination riots. During the mid-2000s, nihilists that were inspired by the rise of insurrectionism in Europe established Anarchy: A Journal of Desire Armed (AJODA), which took up the insurrectionist calls to violence and whose members participated in occupation protests. Insurrectionary anarchists went onto play a leading role in the Occupy movement, although they often clashed with activists that promoted civil disobedience and prefigurative politics, and ultimately failed to develop a long-term strategy for the movement.
Theory and practice
Insurrectionary anarchism generally upholds core anarchist principles, such as anti-authoritarianism, anti-capitalism, anti-clericalism, anti-imperialism, anti-militarism and anti-statism. It has also historically combined with other causes, including radical environmentalism, national liberation struggles and the prison abolition movement.
Direct action
Insurrectionary anarchists generally undertake two basic types of direct action: vandalism of low-profile targets, such as infrastructure or buildings; and violent attacks, often using letter bombs, against political or military targets.
Insurrectionary anarchists often see direct action as a form of emotional release, and participating in action as a source of joy. Militants of the FAI, such as Alfredo Cospito, described their attack against an Italian executive as a moment where they "fully enjoyed my life". Insurrectionists can also see violence as a method of self-empowerment and even, in existential terms, as a means to achieve enlightenment.
Informal organisation
Insurrectionary anarchism shares the anarchist opposition to hierarchical organisation, but goes even further as to oppose any form of organisational structure in general. Instead, insurrectionists emphasise small, informal and temporary forms of organisation, such as affinity groups, that can together undertake direct action. Often formed from pre-existing interpersonal relationships, these groups utilise consensus decision-making to collectively elaborate a programme for attacks against the state and capitalism.
The insurrectionist organisational model has been compared to that of "leaderless resistance", which encourages the independent action of small groups and lone wolves, without an overarching centralised hierarchy. This model minimises risks of espionage and internal debate, while also fostering a degree of ideological pluralism, so long as it doesn't distract from direct action. This model has been noted both for its capacity to resist infiltration, but also for its tendencies towards isolation, and the development of an unofficial leadership. While informal organisation can allow for a certain amount of flexibility and adaptability, information sharing is also hampered by its compartmentalised structure and the reliance of interpersonal trust can present a barrier to recruitment.
See also
Anarchism in Greece
Asymmetric warfare
Black bloc
Clandestine cell system
Egoist anarchism
Expropriative anarchism
Illegalism
Insurgency
International Anarchist Congress of Amsterdam
Irregular warfare
Guerrilla warfare
Resistance movement
Social anarchism
Tiqqun
References
Bibliography
Further reading
External links
A collection of several insurrectionary anarchist texts at the anarchist library
"Attack Is The Best Form Of Defense" by Johann Most an "old school" insurrectionary anarchist text
Insurrection v.s. Organization: Reflections from Greece on a Pointless Schism, essay from Peter Gelderloos, author of How Non-violence Protects the State
Talk and Tactics and Bloody Revolution: Insurrectionary Anarchism in Seattle , audio stream interview from A-Infos Radio Project
"Fire At Midnight Destruction At Dawn" by Kasimere Bran, originally published in the first issue of A Murder of Crows.
Anarchist schools of thought
Autonomism |
Al Mada, formerly the Société Nationale d'Investissement (SNI, ) is a large private Moroccan holding company mainly owned by the Moroccan royal family. Headquartered in Casablanca, the company was established in 1966. Al Mada operates in different fields such as banking, telecommunications, renewable energy businesses and food industry among others.
The conglomerate also holds stakes in the country's largest private companies: Attijariwafa Bank, Managem (mining), Nareva (energy firm), Lafarge Ciments, and Marjane (supermarket chain). Al Mada is investing in other African countries (Cameroon, Ivory Coast, Rwanda, Gabon, etc.).
The holding company used to be the majority shareholder of the now defunct ONA Group, until the activities of the latter were absorbed into the SNI and subsequently disposed of.
In 2012, the company's consolidated turnover was MAD53 billion (US$5.3 billion) and its net income was MAD5 billion (US$500 million).
History
Created in 1966, SNI has been listed on the Casablanca Stock Exchange since 1994.
In 2009, The conglomerate registered a consolidated net income of MAD2.3 billion. The company invested nearly MAD5.52 billion, mainly by acquiring 10% of Attijariwafa Bank's capital from the Spanish bank Santander.
Despite the unfavourable global context, the company's performance increased 365% in 2009, with a turnover of MAD3.42 billion, compared to the previous year.
Restructuring and merger with ONA Group
The company planned a merger with ONA (Omnium Nord-Africain), to diversify their investments’ portfolio, in 2009. The merger was only announced by the boards of the two companies on March 26, 2010. With this merger, the group shifted from its conglomerate structure controlling the activities of its subsidiaries to an investment fund company incubating, developing and disposing of companies and projects present in the Moroccan economy. The reorganisation gave the group's subsidiaries a larger autonomy in the management of their affairs.
As a result of the SNI-ONA merger, both companies have been delisted from the Casablanca stock market, forming a new investment holding company. They later list their subsidiaries on the stock exchange market once they reach maturity growth.
According to the Casablanca Stock Exchange chief executive, Karim Hajji, the SNI-ONA merger “will improve greatly the liquidity of Casablanca bourse and spur other companies to relinquish their majority controls and sell shares to investors via the bourse."
On February 22, 2013, the group agreed to sell its stakes in Centrale Laitière (dairy firm) to French partner Danone for $727.23 million.
On November 30, 2014, the SNI appointed Hassan Ouriagli as the new CEO to replace Hassan Bouhemou.
In 2015, the net profit attributable to shareholders rose from MAD3.31 billion to MAD3.56 billion.
In 2016, the group registered a 34% rise in net profit, following the merger with Lafarge Ciments and Holcim Maroc.
Renaming to Al Mada
On 28 March 2018, the SNI adopted its current name, Al Mada (), as well as a new slogan, "Positive Impact", as it planned to expand its presence throughout the African continent.
In March 2020, Al Mada donated 2 billion dirhams to a COVID-19 emergency fund created by King Mohammed VI.
On 8 September 2023, an earthquake with a magnitude of 6.8 Mw hit Marrakesh-Safi region of Morocco. 6 Days after the earthquake has struck, Al Mada under the instructions of King Mohammed VI donated 1 Billion dirhams for relief operations of quake-hit regions.
Activities and partnerships
The group has a large footprint in the Moroccan economy, estimated to be worth 3% of its GDP. It holds investments in companies holding #1 positions in banking and mass retail. Its main activities encompass financial services with Attijariwafa Bank, mass distribution with Marjane, telecommunications with Inwi and mining with Managem Group. Societe Nationale d'Investissement has invested as well in renewable energy, tourism and real estate. It has partnered as well with foreign investors such as Lafarge in Lafarge Maroc and Arcelor Mittal in Sonasid.
It has exited in 2012 and 2013 from the historic ONA Group agri-business activities, by selling its stakes in leader companies in edible oil, milk and dairy, sugar and biscuits to international leaders such as , Danone, Wilmar International and Mondelēz International.
Partnership with Lafarge & Holcim Maroc
In 2016, SNI partnered with Lafarge Ciment and Holcim Maroc. The partnership is composed of two separate parts:
The merging of Lafarge Ciments and Holcim Maroc produced LafargeHolcim Maroc, the second listed cement-manufacturers in Africa.
The creation of a common development subsidiary in Sub-Saharan French speaking Africa.
This operation is beneficial for both partners as they progress towards a Pan-African investment fund. It created the first industrial market capitalization in Casablanca for an amount of MAD40 billion (EUR3.7 billion).
Partnership's implementation process:
Merging of Holcim Maroc and Lafarge Ciment
Assigning 50 percent to SNI of LafargeHolcim Maroc shares
Contributing the new shares held by SNI and LafargeHolcim Maroc to Lafarge Maroc to retain the major part of the shares and control
The partnership also resulted in the creation of a common development subsidiary called LH Maroc Afrique, that targets the Sub-Saharan French speaking Africa (Burkina Faso, Ivory Coast, Gabon, Mauritania and Mali...).
Subsidiaries
Attijariwafa Bank
SNI initially held 48% stake in Attijariwafa bank. In January 2015, The conglomerate hired the Goldman Sachs and Rothschild banks to advise them on finalizing the deal of selling 19% of Attijariwafa bank to reduce SNI's debt.
Nareva
Nareva holding is fully owned by SNI and focuses on renewable and coal energy.
Cosumar
In 2013, SNI started collaborating with Cosumar only to resell the majority of its shares in 2014. In 2015, the firm completely sold the remaining shares to the stock market.
Centrale Laitière and Bimo
SNI sold its share of 37.7% in Centrale Laitiére to the French firm Danone. It also sold its 50% share of Bimo to Kraft Foods.
Lesieur Cristal
In 2014, the group sold its remaining stakes of Lesieur in a public sale.
Other Subsidiaries
Société Nationale d'Investissement (SNI) owns several other firms :
Agma Lahlou-Tazi
Lafarge Maroc
Managem
Marjane
Nareva
ONAPAR
OPTORG
SOMED
SONASID
Sotherma
Wafa Assurance
Wafa Cash
Wafa Capital
(Inwi)
Aviation unit called Africaplane
Controversy
The SNI and its former holding arm the ONA have been accused of monopolistic market practices and of corruption on several occasions. The fact that the holding's largest shareholder remains the Moroccan royal family has enabled it to exert significant political and economic pressure on its rivals and acquisition targets. A series of Wikileaks cables divulged in December 2010 revealed the reports of US diplomats casting doubts on the integrity of the dealings of the SNI (and ONA) and on the transparency of the King's business affairs.
See also
ONA Group
List of Moroccan companies
References
01
Conglomerate companies of Morocco
Holding companies of Morocco
Mohammed VI of Morocco
Conglomerate companies established in 1966
1966 establishments in Morocco
ONA Group |
Anthony Cappiello John Lovato (born June 20, 1980) is an American musician who serves as the vocalist and guitarist of the pop punk band Mest.
Early life
Lovato was born in Blue Island, Illinois. He started getting involved in music at 12 years old and played drums for the White power band Confederate Storm. Lovato later condemned his actions, stating that he left the band at the age of 13 or 14, thinking, "This isn't who I am. I've got Mexican friends and I've got black friends, and I don't dislike them, so how can I be part of this when my true feelings are everything that's not that?" He later became involved in anti-racist activism, drawing on his experience to educate others on issues of race and influence.
Musical career
Mest (1995–2006, 2008–present)
Lovato, his brother Steve and their cousin Matt founded Mest in 1995. Lovato wrote the majority of the lyrics for their self-released debut studio album Mo' Money, Mo' 40z, released in 1998. Their major label debut, Wasting Time, was released in July 2000 via Maverick Records. Their third studio album Destination Unknown, was released in October 2001. The band's self-titled album was released in June 2003, produced by John Feldmann. Their fifth album, Photographs, was released in October 2005.
In 2006, the band announced on their Myspace page that they were disbanding.
In October 2008, Lovato staged a reunion tour of Mest, with Steve Lovato taking bass guitar duties, Chris Wilson (formerly of Good Charlotte) taking over on drums, and Ryan Clayton covering lead guitar. None of the other former members of Mest took part in the reunion.
A brief reunion a few years later set the stage for the band to get back together, and they toured as well as releasing the sixth studio album Not What You Expected in January 2013. Their first acoustic album, Broken Down, was released in March 2014, and their second, Broken Down 2, in October 2017.
On September 13, 2019, they released a single titled "The Upside Down" from the seventh studio album, Masquerade, which was released in January 2020.
Kisses for Kings (2006–2011)
In 2006, after Lovato moved to Los Angeles, he started his new project, A Permanent Holiday. Founding members included Jordon "Charlie Scene" Terrell (of Hollywood Undead) on guitar, Jorell "J-Dog" Decker (of Hollywood Undead) on bass and Adam Garbett (of Just Ask) on drums. Shortly after its launch, he gave a preview of the new project with several demos including "The Thought of You", "A Taste of Honesty", "The Night" and another unmixed demo called "SOS". They have performed on the 2007 Warped Tour and toured in July 2009 with Hollywood Undead, Red Jumpsuit Apparatus and The Sleeping on the "Taking Care of Business Tour".
In 2009, the band announced they would be returning with new name Kisses for Kings an entirely new lineup – Lovato on vocals, Mike Longworth on guitar, Ryan Clayton on bass, and Richie Gonzales on drums – and released five demo tracks titled "Like Always" (featuring M. Shadows), "Forgive Me", "Bad Disease", "You Don't Know What I Know" and "Risk It All".
In May 2010, the band released debut EP Forget to Remember which included collaborations with Deuce, Johnny 3 Tears and Craig Mabbitt.
After releasing the EP in 2010, no public updates were made regarding the future of Kisses for Kings.
London Falling (2015)
In 2015, Lovato started new project with former Falling in Reverse bassist, Ronnie Ficarro, called London Falling. In April 2016, the band released their debut single "Nightmare" off their upcoming EP. In 2015, Lovato performed twice for each concert on the Three-Headed Monstour, once with London Falling and once with Mest.
Other appearances
Lovato appeared in Good Charlotte's music videos for "Festival Song", "The Anthem" and "Like It's Her Birthday". He also made an appearance in Escape the Fate's music video "Something" and "City of Sin", Hollywood Undead's music video "Everywhere I Go" and The Vibrators's music video "One More".
Legal issues
In 2007, Lovato was jailed on suspicion of murder in Los Angeles after police said he confessed to stabbing his then-current girlfriend's ex-boyfriend. He was held in lieu of $1 million bail after telling police that he was assaulted earlier in the day by Wayne Hughes, 25, in the underground parking lot of Archstone Apartments in the suburb of Studio City. On March 26, 2007, Good Charlotte's Benji and Joel Madden expressed their sadness, telling MTV Radio, "We're all praying for him. We're really bummed. We all have faith that it'll all work out for the best." The following day, Lovato was released from jail and homicide charges against him were dropped. A spokeswoman for the Los Angeles District Attorney's office stated: "We determined that the suspect and victim had dated the same girl back-and-forth for over a year. There had been threats, and the victim sent several threatening messages to the suspect. Apparently, there was some mutual combat and Lovato attempted to separate himself from the victim when the victim challenged him to a fight. The victim followed Lovato to an isolated spot in the underground garage and tried to fight him. Lovato defended himself, and there was insufficient evidence to show that it was not a justifiable use of reasonable force in self-defense"
Discography
with Mest
Mo' Money, Mo' 40z (1998)
Wasting Time (2000)
Destination Unknown (2001)
Mest (2003)
Photographs (2005)
Not What You Expected (2013)
Broken Down (2014)
Broken Down 2 (2017)
Masquerade (2020)
with Kisses for Kings
Forget to Remember (EP; 2010)
with London Falling
"Nightmare" (single, 2016)
Collaborations
"Stand Your Ground" by Holly Would Surrender (Kaleidoscope, 2016)
"Gone Forever" by NewDrive (Closed Doors and Broken Mirrors, 2016)
"Where the Highway Ends" by TLE (Single, 2018)
"The World in My Hands" by Ice Nine Kills (The Silver Scream, 2018)
"Can You Feel the Love Tonight" by Punk Rock Factory (A Whole New Wurst, 2020)
References
External links
Tony Lovato on Twitter
1980 births
American punk rock musicians
American people of Italian descent
Living people
Singers from Illinois
People from Blue Island, Illinois
American male guitarists
Guitarists from Illinois
21st-century American singers
21st-century American guitarists
21st-century American male singers |
Apenes sinuata is a species of ground beetle in the family Carabidae. It is found in North America.
References
Further reading
External links
Harpalinae
Articles created by Qbugbot
Beetles described in 1823 |
Christopher Tostrup Paus, Count of Paus (10 September 1862 – 10 September 1943) was a Norwegian landowner, heir to the timber firm Tostrup & Mathiesen, papal chamberlain and count, known as philanthropist, art collector and socialite in the late 19th and early 20th centuries. He inherited a fortune from his grandfather, timber magnate Christopher Tostrup, and lived for decades in Rome; in 1923 he bought the estate Herresta in Sweden which is still owned by descendants of his cousin Herman Paus who was married to a granddaughter of Leo Tolstoy. He gave large donations to museums in Scandinavia and to the Catholic Church, notably the Paus collection of classical sculpture that now forms part of the National Museum of Art, Architecture and Design. A convert to Catholicism, he was appointed as a papal chamberlain by Pope Benedict XV in 1921 and conferred the title of count by Pope Pius XI in 1923. He was the recipient of numerous papal and Scandinavian honours. He was a first cousin once removed of playwright Henrik Ibsen and was the only Ibsen relative to visit Ibsen during his decades-long exile when he wrote his most famous works.
Biography
Born in Christiania, he belonged to the Skien branch of the Paus family, and was the son of Major and War Commissioner in Molde Johan Altenborg Paus (1833–1894) and Agnes Tostrup (1839–1863). His father was a son of lawyer and judge Henrik Johan Paus (1799–1893), who owned the estate Østerhaug in Elverum, while his mother was a daughter of timber magnate Christopher Henrik Holfeldt Tostrup (1804–1881), one of the two main owners of Tostrup & Mathiesen, one of Norway's largest timber companies. Christopher Paus's father was also a first cousin of playwright Henrik Ibsen. As a young man, Christopher Paus would visit the then-famous Henrik Ibsen in Rome, where he lived. His great-grandfather Christian Lintrup was one of the pioneers of the medical profession in Norway.
Christopher Paus became a millionaire as a young man when he inherited a fortune from his maternal grandfather and his two childless uncles Oscar and Thorvald Tostrup, who were all co-owners of Tostrup & Mathiesen. His family sold their shares of Tostrup & Mathiesen to their business partners, the Mathiesen family, in the 1890s, and the company was since renamed Mathiesen Eidsvold Værk and continued under that name and as Moelven Industrier. His maternal grandfather had also owned the estate Kjellestad in Stathelle.
A convert from Lutheranism to Roman Catholicism, he was appointed a Privy Chamberlain of the Sword and Cape (Cameriere Segreto di Spada e Cappa) by Pope Benedict XV on 22 February 1921 and re-appointed by Pope Pius XI on 8 February 1922 and by Pope Pius XII on 7 March 1939. By tradition, a Norwegian Catholic would hold this position, and he succeeded Wilhelm Wedel-Jarlsberg who held the post some years earlier. He was conferred the title and rank of Count by Pope Pius XI on 25 May 1923. He bought the estate Narverød near Tønsberg (Norway) in 1892, the estate Trystorp with château in Lekeberg (Sweden) in 1914, and the estate Herresta outside Mariefred (Sweden) in 1923. In 1942, he bought the mansion Magleås outside Copenhagen in Denmark. He divided his time between his various properties in Scandinavia and Rome.
Christopher Paus is known for the Paus collection of classical sculpture that forms part of the National Museum of Art, Architecture and Design in Norway. Previously the largest private collection of classical sculpture in the Nordic countries, he donated it to the National Gallery between 1918 and 1929 as the intended foundation of a Norwegian museum or department of classical sculpture. He also made donations to museums throughout the Nordic countries and in Rome.
He died in Skodsborg in Denmark without children in 1943, and bequeathed much of his estate to select members of the Paus family. In 1938, Herresta was sold to his second cousin Herman Paus, who had married Countess Tatyana Tolstoy, a granddaughter of Leo Tolstoy; their descendants still own Herresta and other Swedish estates. Magleås was inherited by Thorleif Paus, who sold it to the Catholic Church some years later. It was held a mass for him, as a member of the Papal Court, in the Pope's private chapel on 14 September 1943 with Pope Pius XII in attendance. He is buried at Vår Frelsers gravlund in Oslo, in the same grave as his mother, maternal grandfather and other members of the Tostrup family.
Titles and honours
He was usually known as Christopher Tostrup Paus in Norway, but like some other family members he used the name de Paus abroad as an international form of the name; in the Acta Apostolicae Sedis and the Annuario Pontificio, his name is partially translated into Italian as (conte) Cristoforo de Paus.
Honours
Papal and Catholic honours
Knight of the Order of Pius IX
Knight Grand Cross of the Order of St. Gregory the Great
Knight Commander with star of the Order of the Holy Sepulchre
Knight of the Magistral Grace in gremio religionis of the Sovereign Military Order of Malta (1924)
Knight Grand Cross of the Sacred Military Constantinian Order of Saint George (1923)
Gentleman of the Chamber
Scandinavian orders of knighthood
Commander with Star (Stórriddarakross með stjörnu) of the Order of the Falcon (1937) (Commander, 1924)
Commander of the Order of St. Olav (1938) (Knight First Class, 1919)
Commander of the Order of the Dannebrog (1922)
Commander of the Order of Vasa
Knight First Class of the Order of the White Rose of Finland
A list of honours as of 1934 is found in the book Den Kongelige Norske St. Olavs Orden.
Ancestry
See also
Lagergren
References
Counts in Italy
Papal counts
Papal chamberlains
Norwegian Roman Catholics
Converts to Roman Catholicism from Lutheranism
Christopher de
Knights of Malta
Knights Grand Cross of the Order of St Gregory the Great
Commanders of the Order of the Dannebrog
Grand Knights with Star of the Order of the Falcon
Commanders of the Order of Vasa
Knights of the Order of Pope Pius IX
Knights of the Holy Sepulchre
Henrik Ibsen
Burials at the Cemetery of Our Saviour
1862 births
1943 deaths |
Frea jaguarita is a species of beetle in the family Cerambycidae. It was described by Chevrolat in 1855.
References
jaguarita
Beetles described in 1855 |
```yaml
kind: Namespace
apiVersion: v1
metadata:
name: gleam
``` |
```objective-c
#pragma once
#include <torch/csrc/jit/tensorexpr/operators/misc.h>
#include <torch/csrc/jit/tensorexpr/tensor.h>
namespace torch {
namespace jit {
namespace tensorexpr {
// An API to compute 2D depthwise convolutions with bias.
TORCH_API Tensor conv2d_depthwise(
BufHandle input,
BufHandle weight,
BufHandle bias,
int stride,
int pad,
int groups);
// An API to compute 2D depthwise convolutions without bias.
TORCH_API Tensor conv2d_depthwise(
BufHandle input,
BufHandle weight,
int stride,
int pad,
int groups);
TORCH_API Tensor conv2d_depthwise(
BufHandle input,
BufHandle weight,
BufHandle bias,
ExprHandle N,
ExprHandle C,
ExprHandle H,
ExprHandle W,
ExprHandle K,
ExprHandle CperG,
ExprHandle R,
ExprHandle S,
ExprHandle stride,
ExprHandle pad,
ExprHandle groups);
TORCH_API Tensor conv2d_depthwise(
BufHandle input,
BufHandle weight,
ExprHandle N,
ExprHandle C,
ExprHandle H,
ExprHandle W,
ExprHandle K,
ExprHandle CperG,
ExprHandle R,
ExprHandle S,
ExprHandle stride,
ExprHandle pad,
ExprHandle groups);
bool conv2dIsSupported(
const TensorInfo& input,
const TensorInfo& weight,
const TensorInfo& bias,
const std::vector<int64_t>& stride,
const std::vector<int64_t>& pad,
const std::vector<int64_t>& dilation,
int64_t groups);
bool mkldnnPrepackedConvIsSupported(
const TensorInfo& input,
const TensorInfo& weight,
const std::vector<int64_t>& stride,
const std::vector<int64_t>& pad,
const std::vector<int64_t>& dilation,
int64_t groups);
Tensor computeConv2d(
const std::vector<ArgValue>& inputs,
const std::vector<ExprHandle>& outputShape,
const std::vector<ExprHandle>& outputStrides,
const std::optional<ScalarType>& outputType,
at::Device device);
Tensor computeConv1d(
const std::vector<ArgValue>& inputs,
const std::vector<ExprHandle>& outputShape,
const std::vector<ExprHandle>& outputStrides,
const std::optional<ScalarType>& outputType,
at::Device device);
Tensor computePrepackedConv2dClampRun(
const std::vector<ArgValue>& inputs,
const std::vector<ExprHandle>& outputShape,
const std::vector<ExprHandle>& outputStrides,
const std::optional<ScalarType>& outputType,
at::Device device);
Tensor computePrepackedLinearClampRun(
const std::vector<ArgValue>& inputs,
const std::vector<ExprHandle>& outputShape,
const std::vector<ExprHandle>& outputStrides,
const std::optional<ScalarType>& outputType,
at::Device device);
Tensor computeMkldnnPrepackedConvRun(
const std::vector<ArgValue>& inputs,
const std::vector<ExprHandle>& outputShape,
const std::vector<ExprHandle>& outputStrides,
const std::optional<ScalarType>& outputType,
at::Device device);
} // namespace tensorexpr
} // namespace jit
} // namespace torch
``` |
```python
import base
import helpers
import table
class Simple(base.Base):
def update(self, liveData):
self.clearScreen()
self.writeStatusLine(liveData.measurements)
tableForm = self._prepareTable(liveData.measurements)
for row in tableForm.rows():
self.writeLine(row)
self.refresh()
def _prepareTable(self, measurements):
result = table.Table('lr')
for metric in measurements:
result.add(metric.symbol, helpers.formatValues(metric.status))
return result
``` |
Michael Wenczel (born 23 November 1977 in Heilbronn) is a German former professional footballer who played as a defender. He also holds Hungarian citizenship.
References
1977 births
Living people
German men's footballers
Men's association football defenders
Eintracht Frankfurt players
Eintracht Frankfurt II players
FC Augsburg players
FC Ingolstadt 04 players
FC Ingolstadt 04 II players
VfR Mannheim players
2. Bundesliga players
3. Liga players
Sportspeople from Heilbronn
Footballers from Stuttgart (region) |
Pulu is a silky material obtained from the fibers of the hapuu pulu (Cibotium glaucum), a tree fern of Hawaii. It is made of the brown hairs that cover the young fiddlehead as it uncoils.
Ancient Hawaii
In ancient Hawaii, pulu (which means "mulch" or "padding" in the Hawaiian language) was used to embalm the dead.
Women used pulu as an absorbent during their menstrual cycle. When their time came around, they were isolated to a house called the hale pea or menstrual house. Men were strongly discouraged to set foot on the grounds of the hale pea, by strict social custom known as kapu.
Hawaiians organized the hapuu fern into two genders; male and female. Males had the tough pulu, and females had the soft pulu. All soiled pulu was then buried around the hale pea.
19th-century industry
For a period in the 19th century, pulu was collected, dried, and exported to California commercially as pillow and mattress stuffing. A stone structure in Hawai'i Volcanoes National Park known as the Old Pulu Factory was a site for drying and packing pulu. However, the discovery that pulu breaks down and crumbles into dust after only a few years led to the demise of the industry. Pulu was collected by cutting down the slow-growing ferns, an extremely unsustainable method. The industry shut down by the 1880s.
References
Further reading
External links
(trail to old pulu factory described)
Hawaii culture
Fiber plants |
```kicad
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE eagle SYSTEM "eagle.dtd">
<eagle version="7.5.0">
<drawing>
<settings>
<setting alwaysvectorfont="no"/>
<setting verticaltext="up"/>
</settings>
<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.01" altunitdist="inch" altunit="inch"/>
<layers>
<layer number="1" name="Top" color="4" fill="1" visible="no" active="no"/>
<layer number="16" name="Bottom" color="1" fill="1" visible="no" active="no"/>
<layer number="17" name="Pads" color="2" fill="1" visible="no" active="no"/>
<layer number="18" name="Vias" color="2" fill="1" visible="no" active="no"/>
<layer number="19" name="Unrouted" color="6" fill="1" visible="no" active="no"/>
<layer number="20" name="Dimension" color="15" fill="1" visible="no" active="no"/>
<layer number="21" name="tPlace" color="7" fill="1" visible="no" active="no"/>
<layer number="22" name="bPlace" color="7" fill="1" visible="no" active="no"/>
<layer number="23" name="tOrigins" color="15" fill="1" visible="no" active="no"/>
<layer number="24" name="bOrigins" color="15" fill="1" visible="no" active="no"/>
<layer number="25" name="tNames" color="7" fill="1" visible="no" active="no"/>
<layer number="26" name="bNames" color="7" fill="1" visible="no" active="no"/>
<layer number="27" name="tValues" color="7" fill="1" visible="no" active="no"/>
<layer number="28" name="bValues" color="7" fill="1" visible="no" active="no"/>
<layer number="29" name="tStop" color="7" fill="3" visible="no" active="no"/>
<layer number="30" name="bStop" color="7" fill="6" visible="no" active="no"/>
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="no"/>
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="no"/>
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="no"/>
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="no"/>
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="no"/>
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="no"/>
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="no"/>
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="no"/>
<layer number="39" name="tKeepout" color="4" fill="11" visible="no" active="no"/>
<layer number="40" name="bKeepout" color="1" fill="11" visible="no" active="no"/>
<layer number="41" name="tRestrict" color="4" fill="10" visible="no" active="no"/>
<layer number="42" name="bRestrict" color="1" fill="10" visible="no" active="no"/>
<layer number="43" name="vRestrict" color="2" fill="10" visible="no" active="no"/>
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="no"/>
<layer number="45" name="Holes" color="7" fill="1" visible="no" active="no"/>
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="no"/>
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="no"/>
<layer number="48" name="Document" color="7" fill="1" visible="no" active="no"/>
<layer number="49" name="Reference" color="7" fill="1" visible="no" active="no"/>
<layer number="50" name="dxf" color="7" fill="1" visible="no" active="no"/>
<layer number="51" name="tDocu" color="6" fill="1" visible="no" active="no"/>
<layer number="52" name="bDocu" color="7" fill="1" visible="no" active="no"/>
<layer number="53" name="tGND_GNDA" color="7" fill="1" visible="no" active="no"/>
<layer number="54" name="bGND_GNDA" color="7" fill="1" visible="no" active="no"/>
<layer number="56" name="wert" color="7" fill="1" visible="no" active="no"/>
<layer number="57" name="tCAD" color="7" fill="1" visible="no" active="no"/>
<layer number="59" name="tCarbon" color="7" fill="1" visible="no" active="no"/>
<layer number="60" name="bCarbon" color="7" fill="1" visible="no" active="no"/>
<layer number="90" name="Modules" color="5" fill="1" visible="yes" active="yes"/>
<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
<layer number="93" name="Pins" color="2" fill="1" visible="no" active="yes"/>
<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
<layer number="99" name="SpiceOrder" color="7" fill="1" visible="no" active="no"/>
<layer number="100" name="Muster" color="7" fill="1" visible="yes" active="yes"/>
<layer number="101" name="Patch_Top" color="7" fill="1" visible="yes" active="yes"/>
<layer number="102" name="Vscore" color="7" fill="1" visible="yes" active="yes"/>
<layer number="103" name="fp3" color="7" fill="1" visible="yes" active="yes"/>
<layer number="104" name="Name" color="7" fill="1" visible="yes" active="yes"/>
<layer number="105" name="Beschreib" color="7" fill="1" visible="yes" active="yes"/>
<layer number="106" name="BGA-Top" color="7" fill="1" visible="yes" active="yes"/>
<layer number="107" name="BD-Top" color="7" fill="1" visible="yes" active="yes"/>
<layer number="108" name="fp8" color="7" fill="1" visible="yes" active="yes"/>
<layer number="109" name="fp9" color="7" fill="1" visible="yes" active="yes"/>
<layer number="110" name="fp0" color="7" fill="1" visible="yes" active="yes"/>
<layer number="111" name="border" color="7" fill="1" visible="yes" active="yes"/>
<layer number="112" name="tSilk" color="7" fill="1" visible="yes" active="yes"/>
<layer number="113" name="IDFDebug" color="4" fill="1" visible="yes" active="yes"/>
<layer number="116" name="Patch_BOT" color="7" fill="1" visible="yes" active="yes"/>
<layer number="118" name="Rect_Pads" color="7" fill="1" visible="yes" active="yes"/>
<layer number="121" name="_tsilk" color="7" fill="1" visible="yes" active="yes"/>
<layer number="122" name="_bsilk" color="7" fill="1" visible="yes" active="yes"/>
<layer number="123" name="tTestmark" color="7" fill="1" visible="yes" active="yes"/>
<layer number="124" name="bTestmark" color="7" fill="1" visible="yes" active="yes"/>
<layer number="125" name="_tNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="126" name="_bNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="127" name="_tValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="128" name="_bValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="129" name="Mask" color="7" fill="1" visible="yes" active="yes"/>
<layer number="131" name="tAdjust" color="7" fill="1" visible="yes" active="yes"/>
<layer number="132" name="bAdjust" color="7" fill="1" visible="yes" active="yes"/>
<layer number="144" name="Drill_legend" color="7" fill="1" visible="yes" active="yes"/>
<layer number="150" name="Notes" color="7" fill="1" visible="yes" active="yes"/>
<layer number="151" name="HeatSink" color="7" fill="1" visible="yes" active="yes"/>
<layer number="152" name="_bDocu" color="7" fill="1" visible="yes" active="yes"/>
<layer number="153" name="FabDoc1" color="7" fill="1" visible="yes" active="yes"/>
<layer number="154" name="FabDoc2" color="7" fill="1" visible="yes" active="yes"/>
<layer number="155" name="FabDoc3" color="7" fill="1" visible="yes" active="yes"/>
<layer number="199" name="Contour" color="7" fill="1" visible="yes" active="yes"/>
<layer number="200" name="200bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="201" name="201bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="202" name="202bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="203" name="203bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="204" name="204bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="205" name="205bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="206" name="206bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="207" name="207bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="208" name="208bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="209" name="209bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="210" name="210bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="211" name="211bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="212" name="212bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="213" name="213bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="214" name="214bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="215" name="215bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="216" name="216bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="217" name="217bmp" color="18" fill="1" visible="no" active="no"/>
<layer number="218" name="218bmp" color="19" fill="1" visible="no" active="no"/>
<layer number="219" name="219bmp" color="20" fill="1" visible="no" active="no"/>
<layer number="220" name="220bmp" color="21" fill="1" visible="no" active="no"/>
<layer number="221" name="221bmp" color="22" fill="1" visible="no" active="no"/>
<layer number="222" name="222bmp" color="23" fill="1" visible="no" active="no"/>
<layer number="223" name="223bmp" color="24" fill="1" visible="no" active="no"/>
<layer number="224" name="224bmp" color="25" fill="1" visible="no" active="no"/>
<layer number="225" name="225bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="226" name="226bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="227" name="227bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="228" name="228bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="229" name="229bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="230" name="230bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="231" name="231bmp" color="7" fill="1" visible="yes" active="yes"/>
<layer number="232" name="Eagle3D_PG2" color="14" fill="2" visible="yes" active="yes"/>
<layer number="233" name="Eagle3D_PG3" color="14" fill="4" visible="yes" active="yes"/>
<layer number="248" name="Housing" color="7" fill="1" visible="yes" active="yes"/>
<layer number="249" name="Edge" color="7" fill="1" visible="yes" active="yes"/>
<layer number="250" name="Descript" color="7" fill="1" visible="yes" active="yes"/>
<layer number="251" name="SMDround" color="7" fill="1" visible="yes" active="yes"/>
<layer number="254" name="cooling" color="7" fill="1" visible="yes" active="yes"/>
<layer number="255" name="routoute" color="7" fill="1" visible="yes" active="yes"/>
</layers>
<schematic xreflabel="%F%N/%S.%C%R" xrefpart="/%S.%C%R">
<libraries>
<library name="AD7173">
<description><b>Microchip PIC Microcontrollers and other Devices</b><p>
Based on the following sources :
<ul>
<li>Microchip Data Book, 1993
<li>THE EMERGING WORLD STANDARD, 1995/1996
<li>Microchip, Technical Library CD-ROM, June 1998
<li>www.microchip.com
</ul>
<author>Created by librarian@cadsoft.de</author></description>
<packages>
<package name="LFCSP_WQ6X6MM">
<description><b>40-Lead Plastic Quad Flat</b> 6x6x0.9 mm Body [QFN]<p>
With 0.40 mm Contact Length<br>
Source: path_to_url
<wire x1="-2.9" y1="2.9" x2="2.9" y2="2.9" width="0.2032" layer="21"/>
<wire x1="2.9" y1="2.9" x2="2.9" y2="-2.9" width="0.2032" layer="21"/>
<wire x1="2.9" y1="-2.9" x2="-2.9" y2="-2.9" width="0.2032" layer="21"/>
<wire x1="-2.9" y1="-2.9" x2="-2.9" y2="2.9" width="0.2032" layer="21"/>
<smd name="1" x="-3.1" y="2.25" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="2" x="-3.1" y="1.75" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="3" x="-3.1" y="1.25" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="4" x="-3.1" y="0.75" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="5" x="-3.1" y="0.25" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="6" x="-3.1" y="-0.25" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="7" x="-3.1" y="-0.75" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="8" x="-3.1" y="-1.25" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="9" x="-3.1" y="-1.75" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="10" x="-3.1" y="-2.25" dx="1" dy="0.25" layer="1" roundness="50" stop="no"/>
<smd name="11" x="-2.25" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="12" x="-1.75" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="13" x="-1.25" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="14" x="-0.75" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="15" x="-0.25" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="16" x="0.25" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="17" x="0.75" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="18" x="1.25" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="19" x="1.75" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="20" x="2.25" y="-3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R90" stop="no"/>
<smd name="21" x="3.1" y="-2.25" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="22" x="3.1" y="-1.75" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="23" x="3.1" y="-1.25" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="24" x="3.1" y="-0.75" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="25" x="3.1" y="-0.25" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="26" x="3.1" y="0.25" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="27" x="3.1" y="0.75" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="28" x="3.1" y="1.25" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="29" x="3.1" y="1.75" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="30" x="3.1" y="2.25" dx="1" dy="0.25" layer="1" roundness="50" rot="R180" stop="no"/>
<smd name="31" x="2.25" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="32" x="1.75" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="33" x="1.25" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="34" x="0.75" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="35" x="0.25" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="36" x="-0.25" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="37" x="-0.75" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="38" x="-1.25" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="39" x="-1.75" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="40" x="-2.25" y="3.1" dx="1" dy="0.25" layer="1" roundness="50" rot="R270" stop="no"/>
<smd name="41" x="0" y="0" dx="4.1" dy="4.1" layer="1"/>
<text x="-3" y="3.915" size="1.27" layer="25">>NAME</text>
<text x="-2.95" y="-5.04" size="1.27" layer="27">>VALUE</text>
<circle x="2.25" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="1.75" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="1.25" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="0.75" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="0.25" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="-0.25" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="-0.75" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="-1.25" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="-1.75" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="-2.25" y="-2.675" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="-2.25" radius="0.15" width="0" layer="29"/>
<circle x="-2.25" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="-2.25" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="-1.75" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="-1.25" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="-0.75" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="-0.25" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="0.25" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="0.75" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="1.25" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="1.75" radius="0.15" width="0" layer="29"/>
<circle x="2.675" y="2.25" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="-1.75" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="-1.25" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="-0.75" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="-0.25" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="0.25" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="0.75" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="1.25" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="1.75" radius="0.15" width="0" layer="29"/>
<circle x="-2.675" y="2.25" radius="0.15" width="0" layer="29"/>
<circle x="-1.75" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="-1.25" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="-0.75" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="-0.25" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="0.25" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="0.75" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="1.25" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="1.75" y="2.675" radius="0.15" width="0" layer="29"/>
<circle x="2.25" y="2.675" radius="0.15" width="0" layer="29"/>
<rectangle x1="-3.625" y1="2.1" x2="-2.65" y2="2.4" layer="29"/>
<rectangle x1="-3.625" y1="1.6" x2="-2.65" y2="1.9" layer="29"/>
<rectangle x1="-3.625" y1="1.1" x2="-2.65" y2="1.4" layer="29"/>
<rectangle x1="-3.625" y1="0.6" x2="-2.65" y2="0.9" layer="29"/>
<rectangle x1="-3.625" y1="0.1" x2="-2.65" y2="0.4" layer="29"/>
<rectangle x1="-3.625" y1="-0.4" x2="-2.65" y2="-0.1" layer="29"/>
<rectangle x1="-3.625" y1="-0.9" x2="-2.625" y2="-0.6" layer="29"/>
<rectangle x1="-3.625" y1="-1.4" x2="-2.65" y2="-1.1" layer="29"/>
<rectangle x1="-3.625" y1="-2.4" x2="-2.65" y2="-2.1" layer="29"/>
<rectangle x1="-3.625" y1="-1.9" x2="-2.65" y2="-1.6" layer="29"/>
<rectangle x1="-2.7375" y1="-3.2875" x2="-1.7625" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="-2.2375" y1="-3.2875" x2="-1.2625" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="-1.7375" y1="-3.2875" x2="-0.7625" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="-1.2375" y1="-3.2875" x2="-0.2625" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="-0.7375" y1="-3.2875" x2="0.2375" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="-0.2375" y1="-3.2875" x2="0.7375" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="0.2625" y1="-3.2875" x2="1.2375" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="0.7625" y1="-3.2875" x2="1.7375" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="1.2625" y1="-3.2875" x2="2.2375" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="1.7625" y1="-3.2875" x2="2.7375" y2="-2.9875" layer="29" rot="R90"/>
<rectangle x1="2.65" y1="-2.4" x2="3.625" y2="-2.1" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="-1.9" x2="3.625" y2="-1.6" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="-1.4" x2="3.625" y2="-1.1" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="-0.9" x2="3.625" y2="-0.6" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="-0.4" x2="3.625" y2="-0.1" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="0.1" x2="3.625" y2="0.4" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="0.6" x2="3.625" y2="0.9" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="1.1" x2="3.625" y2="1.4" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="1.6" x2="3.625" y2="1.9" layer="29" rot="R180"/>
<rectangle x1="2.65" y1="2.1" x2="3.625" y2="2.4" layer="29" rot="R180"/>
<rectangle x1="1.2625" y1="2.9875" x2="2.2375" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="0.7625" y1="2.9875" x2="1.7375" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="0.2625" y1="2.9875" x2="1.2375" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="-0.2375" y1="2.9875" x2="0.7375" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="-0.7375" y1="2.9875" x2="0.2375" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="-1.2375" y1="2.9875" x2="-0.2625" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="-1.7375" y1="2.9875" x2="-0.7625" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="-2.2375" y1="2.9875" x2="-1.2625" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="-2.7375" y1="2.9875" x2="-1.7625" y2="3.2875" layer="29" rot="R270"/>
<rectangle x1="1.7625" y1="2.9875" x2="2.7375" y2="3.2875" layer="29" rot="R270"/>
</package>
<package name="MSOP08">
<description><b>Mini Small Outline Package</b></description>
<wire x1="1.624" y1="1.299" x2="1.624" y2="-1.301" width="0.1524" layer="21"/>
<wire x1="-1.626" y1="-1.301" x2="-1.626" y2="1.299" width="0.1524" layer="21"/>
<wire x1="1.299" y1="1.624" x2="1.624" y2="1.299" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.626" y1="1.299" x2="-1.301" y2="1.624" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.626" y1="-1.301" x2="-1.301" y2="-1.626" width="0.1524" layer="21" curve="90"/>
<wire x1="1.299" y1="-1.626" x2="1.624" y2="-1.301" width="0.1524" layer="21" curve="90"/>
<wire x1="-1.341" y1="-1.626" x2="-1.204" y2="-1.626" width="0.1524" layer="21"/>
<wire x1="-0.747" y1="-1.626" x2="-0.554" y2="-1.626" width="0.1524" layer="21"/>
<wire x1="-0.097" y1="-1.626" x2="0.096" y2="-1.626" width="0.1524" layer="21"/>
<wire x1="0.553" y1="-1.626" x2="0.746" y2="-1.626" width="0.1524" layer="21"/>
<wire x1="1.203" y1="-1.626" x2="1.299" y2="-1.626" width="0.1524" layer="21"/>
<wire x1="-1.301" y1="1.624" x2="-1.204" y2="1.624" width="0.1524" layer="21"/>
<wire x1="-0.747" y1="1.624" x2="-0.554" y2="1.624" width="0.1524" layer="21"/>
<wire x1="-0.097" y1="1.624" x2="0.096" y2="1.624" width="0.1524" layer="21"/>
<wire x1="0.553" y1="1.624" x2="0.746" y2="1.624" width="0.1524" layer="21"/>
<wire x1="1.203" y1="1.624" x2="1.299" y2="1.624" width="0.1524" layer="21"/>
<circle x="-0.9456" y="-0.7906" radius="0.5" width="0.0508" layer="21"/>
<smd name="8" x="-0.976" y="2.112" dx="0.3" dy="1.2" layer="1"/>
<smd name="7" x="-0.326" y="2.112" dx="0.3" dy="1.2" layer="1"/>
<smd name="6" x="0.324" y="2.112" dx="0.3" dy="1.2" layer="1"/>
<smd name="5" x="0.974" y="2.112" dx="0.3" dy="1.2" layer="1"/>
<smd name="4" x="0.974" y="-2.113" dx="0.3" dy="1.2" layer="1"/>
<smd name="3" x="0.324" y="-2.113" dx="0.3" dy="1.2" layer="1"/>
<smd name="2" x="-0.326" y="-2.113" dx="0.3" dy="1.2" layer="1"/>
<smd name="1" x="-0.976" y="-2.113" dx="0.3" dy="1.2" layer="1"/>
<text x="-2.032" y="-2.54" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text>
<text x="3.302" y="-2.54" size="1.27" layer="27" ratio="10" rot="R90">>VALUE</text>
<rectangle x1="-1.0975" y1="1.6244" x2="-0.8537" y2="2.3557" layer="21"/>
<rectangle x1="-0.4475" y1="1.6244" x2="-0.2037" y2="2.3557" layer="21"/>
<rectangle x1="0.2025" y1="1.6244" x2="0.4463" y2="2.3557" layer="21"/>
<rectangle x1="0.8525" y1="1.6244" x2="1.0963" y2="2.3557" layer="21"/>
<rectangle x1="-1.0975" y1="-2.3569" x2="-0.8537" y2="-1.6256" layer="21"/>
<rectangle x1="-0.4475" y1="-2.3569" x2="-0.2037" y2="-1.6256" layer="21"/>
<rectangle x1="0.2025" y1="-2.3569" x2="0.4463" y2="-1.6256" layer="21"/>
<rectangle x1="0.8525" y1="-2.3569" x2="1.0963" y2="-1.6256" layer="21"/>
</package>
</packages>
<symbols>
<symbol name="AD7173">
<wire x1="-25.4" y1="-27.94" x2="25.4" y2="-27.94" width="0.254" layer="94"/>
<wire x1="25.4" y1="-27.94" x2="25.4" y2="25.4" width="0.254" layer="94"/>
<wire x1="25.4" y1="25.4" x2="-25.4" y2="25.4" width="0.254" layer="94"/>
<wire x1="-25.4" y1="25.4" x2="-25.4" y2="-27.94" width="0.254" layer="94"/>
<text x="-5.08" y="1.27" size="1.778" layer="95">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="96">>VALUE</text>
<pin name="AIN16" x="-30.48" y="22.86" length="middle" direction="in"/>
<pin name="AIN0/REF2-" x="-30.48" y="20.32" length="middle" direction="in"/>
<pin name="AIN1/REF2+" x="-30.48" y="17.78" length="middle" direction="in"/>
<pin name="AIN2" x="-30.48" y="15.24" length="middle" direction="in"/>
<pin name="AIN3" x="-30.48" y="12.7" length="middle" direction="in"/>
<pin name="REFOUT" x="-30.48" y="10.16" length="middle" direction="out"/>
<pin name="REGCAPA" x="-30.48" y="7.62" length="middle" direction="in"/>
<pin name="AVSS" x="-30.48" y="5.08" length="middle" direction="in"/>
<pin name="AVDD1" x="-30.48" y="2.54" length="middle" direction="in"/>
<pin name="AVDD2" x="-30.48" y="0" length="middle" direction="in"/>
<pin name="PDSW" x="-30.48" y="-2.54" length="middle" direction="in"/>
<pin name="XTAL1" x="-30.48" y="-5.08" length="middle" direction="in"/>
<pin name="XTAL2/CLKIO" x="-30.48" y="-7.62" length="middle" direction="in"/>
<pin name="DOUT/RDY" x="-30.48" y="-10.16" length="middle" direction="out"/>
<pin name="DIN" x="-30.48" y="-12.7" length="middle" direction="in"/>
<pin name="SCLK" x="-30.48" y="-15.24" length="middle" direction="in"/>
<pin name="CS" x="-30.48" y="-17.78" length="middle" direction="in"/>
<pin name="ERROR" x="-30.48" y="-20.32" length="middle" direction="in"/>
<pin name="SYNC" x="-30.48" y="-22.86" length="middle" direction="in"/>
<pin name="IOVDD" x="-30.48" y="-25.4" length="middle" direction="in"/>
<pin name="DGND" x="30.48" y="-25.4" length="middle" direction="in" rot="R180"/>
<pin name="REGCAPD" x="30.48" y="-22.86" length="middle" direction="in" rot="R180"/>
<pin name="GPIO0" x="30.48" y="-20.32" length="middle" rot="R180"/>
<pin name="GPIO1" x="30.48" y="-17.78" length="middle" rot="R180"/>
<pin name="GPIO2" x="30.48" y="-15.24" length="middle" rot="R180"/>
<pin name="AIN4" x="30.48" y="-12.7" length="middle" direction="in" rot="R180"/>
<pin name="AIN5" x="30.48" y="-10.16" length="middle" direction="in" rot="R180"/>
<pin name="AIN6" x="30.48" y="-7.62" length="middle" direction="in" rot="R180"/>
<pin name="AIN7" x="30.48" y="-5.08" length="middle" direction="in" rot="R180"/>
<pin name="AIN8" x="30.48" y="-2.54" length="middle" direction="in" rot="R180"/>
<pin name="AIN9" x="30.48" y="0" length="middle" direction="in" rot="R180"/>
<pin name="AIN10" x="30.48" y="2.54" length="middle" direction="in" rot="R180"/>
<pin name="AIN11" x="30.48" y="5.08" length="middle" direction="in" rot="R180"/>
<pin name="AIN12" x="30.48" y="7.62" length="middle" direction="in" rot="R180"/>
<pin name="AIN13" x="30.48" y="10.16" length="middle" direction="in" rot="R180"/>
<pin name="AIN14" x="30.48" y="12.7" length="middle" direction="in" rot="R180"/>
<pin name="AIN15" x="30.48" y="15.24" length="middle" direction="in" rot="R180"/>
<pin name="GPIO3" x="30.48" y="17.78" length="middle" rot="R180"/>
<pin name="REF-" x="30.48" y="20.32" length="middle" direction="in" rot="R180"/>
<pin name="REF+" x="30.48" y="22.86" length="middle" direction="in" rot="R180"/>
<pin name="EXP" x="0" y="-33.02" length="middle" direction="out" rot="R90"/>
</symbol>
<symbol name="POWER">
<wire x1="-7.62" y1="7.62" x2="10.16" y2="7.62" width="0.254" layer="94"/>
<wire x1="10.16" y1="7.62" x2="10.16" y2="-5.08" width="0.254" layer="94"/>
<wire x1="10.16" y1="-5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/>
<wire x1="-7.62" y1="-5.08" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
<pin name="GND1" x="-10.16" y="5.08" length="short" direction="pwr"/>
<pin name="VIN1" x="-10.16" y="2.54" length="short" direction="in"/>
<pin name="VOUT" x="-10.16" y="0" length="short" direction="out"/>
<pin name="VIN2" x="-10.16" y="-2.54" length="short" direction="in"/>
<pin name="GND2" x="12.7" y="5.08" length="short" direction="pwr" rot="R180"/>
<pin name="GND3" x="12.7" y="2.54" length="short" direction="pwr" rot="R180"/>
<pin name="GND4" x="12.7" y="0" length="short" direction="pwr" rot="R180"/>
<pin name="GND5" x="12.7" y="-2.54" length="short" direction="pwr" rot="R180"/>
<text x="-7.62" y="10.16" size="1.778" layer="95">>NAME</text>
<text x="2.54" y="-7.62" size="1.778" layer="95">>VALUE</text>
</symbol>
</symbols>
<devicesets>
<deviceset name="AD7173" prefix="IC">
<description><b>IEEE 802.15.4? 2.4 GHz RF Transceiver</b><p>
Source: path_to_url
<gates>
<gate name="G$1" symbol="AD7173" x="0" y="0"/>
</gates>
<devices>
<device name="" package="LFCSP_WQ6X6MM">
<connects>
<connect gate="G$1" pin="AIN0/REF2-" pad="2"/>
<connect gate="G$1" pin="AIN1/REF2+" pad="3"/>
<connect gate="G$1" pin="AIN10" pad="32"/>
<connect gate="G$1" pin="AIN11" pad="33"/>
<connect gate="G$1" pin="AIN12" pad="34"/>
<connect gate="G$1" pin="AIN13" pad="35"/>
<connect gate="G$1" pin="AIN14" pad="36"/>
<connect gate="G$1" pin="AIN15" pad="37"/>
<connect gate="G$1" pin="AIN16" pad="1"/>
<connect gate="G$1" pin="AIN2" pad="4"/>
<connect gate="G$1" pin="AIN3" pad="5"/>
<connect gate="G$1" pin="AIN4" pad="26"/>
<connect gate="G$1" pin="AIN5" pad="27"/>
<connect gate="G$1" pin="AIN6" pad="28"/>
<connect gate="G$1" pin="AIN7" pad="29"/>
<connect gate="G$1" pin="AIN8" pad="30"/>
<connect gate="G$1" pin="AIN9" pad="31"/>
<connect gate="G$1" pin="AVDD1" pad="9"/>
<connect gate="G$1" pin="AVDD2" pad="10"/>
<connect gate="G$1" pin="AVSS" pad="8"/>
<connect gate="G$1" pin="CS" pad="17"/>
<connect gate="G$1" pin="DGND" pad="21"/>
<connect gate="G$1" pin="DIN" pad="15"/>
<connect gate="G$1" pin="DOUT/RDY" pad="14"/>
<connect gate="G$1" pin="ERROR" pad="18"/>
<connect gate="G$1" pin="EXP" pad="41"/>
<connect gate="G$1" pin="GPIO0" pad="23"/>
<connect gate="G$1" pin="GPIO1" pad="24"/>
<connect gate="G$1" pin="GPIO2" pad="25"/>
<connect gate="G$1" pin="GPIO3" pad="38"/>
<connect gate="G$1" pin="IOVDD" pad="20"/>
<connect gate="G$1" pin="PDSW" pad="11"/>
<connect gate="G$1" pin="REF+" pad="40"/>
<connect gate="G$1" pin="REF-" pad="39"/>
<connect gate="G$1" pin="REFOUT" pad="6"/>
<connect gate="G$1" pin="REGCAPA" pad="7"/>
<connect gate="G$1" pin="REGCAPD" pad="22"/>
<connect gate="G$1" pin="SCLK" pad="16"/>
<connect gate="G$1" pin="SYNC" pad="19"/>
<connect gate="G$1" pin="XTAL1" pad="12"/>
<connect gate="G$1" pin="XTAL2/CLKIO" pad="13"/>
</connects>
<technologies>
<technology name="">
<attribute name="MF" value="" constant="no"/>
<attribute name="MPN" value="MRF24J40-I/ML" constant="no"/>
<attribute name="OC_FARNELL" value="1436019" constant="no"/>
<attribute name="OC_NEWARK" value="17M0699" constant="no"/>
</technology>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="POWER" prefix="IC">
<gates>
<gate name="G$1" symbol="POWER" x="0" y="0"/>
</gates>
<devices>
<device name="" package="MSOP08">
<connects>
<connect gate="G$1" pin="GND1" pad="1"/>
<connect gate="G$1" pin="GND2" pad="5"/>
<connect gate="G$1" pin="GND3" pad="6"/>
<connect gate="G$1" pin="GND4" pad="7"/>
<connect gate="G$1" pin="GND5" pad="8"/>
<connect gate="G$1" pin="VIN1" pad="2"/>
<connect gate="G$1" pin="VIN2" pad="4"/>
<connect gate="G$1" pin="VOUT" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="supply1">
<description><b>Supply Symbols</b><p>
GND, VCC, 0V, +5V, -5V, etc.<p>
Please keep in mind, that these devices are necessary for the
automatic wiring of the supply signals.<p>
The pin name defined in the symbol is identical to the net which is to be wired automatically.<p>
In this library the device names are the same as the pin names of the symbols, therefore the correct signal names appear next to the supply symbols in the schematic.<p>
<author>Created by librarian@cadsoft.de</author></description>
<packages>
</packages>
<symbols>
<symbol name="GND">
<wire x1="-1.905" y1="0" x2="1.905" y2="0" width="0.254" layer="94"/>
<text x="-2.54" y="-2.54" size="1.778" layer="96">>VALUE</text>
<pin name="GND" x="0" y="2.54" visible="off" length="short" direction="sup" rot="R270"/>
</symbol>
<symbol name="+3V3">
<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/>
<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/>
<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text>
<pin name="+3V3" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/>
</symbol>
<symbol name="+5V">
<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/>
<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/>
<text x="-2.54" y="-5.08" size="1.778" layer="96" rot="R90">>VALUE</text>
<pin name="+5V" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/>
</symbol>
<symbol name="VCC">
<wire x1="1.27" y1="-1.905" x2="0" y2="0" width="0.254" layer="94"/>
<wire x1="0" y1="0" x2="-1.27" y2="-1.905" width="0.254" layer="94"/>
<text x="-2.54" y="-2.54" size="1.778" layer="96" rot="R90">>VALUE</text>
<pin name="VCC" x="0" y="-2.54" visible="off" length="short" direction="sup" rot="R90"/>
</symbol>
</symbols>
<devicesets>
<deviceset name="GND" prefix="GND">
<description><b>SUPPLY SYMBOL</b></description>
<gates>
<gate name="1" symbol="GND" x="0" y="0"/>
</gates>
<devices>
<device name="">
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="+3V3" prefix="+3V3">
<description><b>SUPPLY SYMBOL</b></description>
<gates>
<gate name="G$1" symbol="+3V3" x="0" y="0"/>
</gates>
<devices>
<device name="">
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="+5V" prefix="P+">
<description><b>SUPPLY SYMBOL</b></description>
<gates>
<gate name="1" symbol="+5V" x="0" y="0"/>
</gates>
<devices>
<device name="">
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="VCC" prefix="P+">
<description><b>SUPPLY SYMBOL</b></description>
<gates>
<gate name="VCC" symbol="VCC" x="0" y="0"/>
</gates>
<devices>
<device name="">
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="rcl">
<description><b>Resistors, Capacitors, Inductors</b><p>
Based on the previous libraries:
<ul>
<li>r.lbr
<li>cap.lbr
<li>cap-fe.lbr
<li>captant.lbr
<li>polcap.lbr
<li>ipc-smd.lbr
</ul>
All SMD packages are defined according to the IPC specifications and CECC<p>
<author>Created by librarian@cadsoft.de</author><p>
<p>
for Electrolyt Capacitors see also :<p>
www.bccomponents.com <p>
www.panasonic.com<p>
www.kemet.com<p>
path_to_url <b>(SANYO)</b>
<p>
for trimmer refence see : <u>www.electrospec-inc.com/cross_references/trimpotcrossref.asp</u><p>
<table border=0 cellspacing=0 cellpadding=0 width="100%" cellpaddding=0>
<tr valign="top">
<! <td width="10">&nbsp;</td>
<td width="90%">
<b><font color="#0000FF" size="4">TRIM-POT CROSS REFERENCE</font></b>
<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
<TR>
<TD COLSPAN=8>
<FONT SIZE=3 FACE=ARIAL><B>RECTANGULAR MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BOURNS</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">BI&nbsp;TECH</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">DALE-VISHAY</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PHILIPS/MEPCO</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MURATA</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">PANASONIC</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">SPECTROL</FONT>
</B>
</TD>
<TD ALIGN=CENTER>
<B>
<FONT SIZE=3 FACE=ARIAL color="#FF0000">MILSPEC</FONT>
</B>
</TD><TD>&nbsp;</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3 >
3005P<BR>
3006P<BR>
3006W<BR>
3006Y<BR>
3009P<BR>
3009W<BR>
3009Y<BR>
3057J<BR>
3057L<BR>
3057P<BR>
3057Y<BR>
3059J<BR>
3059L<BR>
3059P<BR>
3059Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
89P<BR>
89W<BR>
89X<BR>
89PH<BR>
76P<BR>
89XH<BR>
78SLT<BR>
78L&nbsp;ALT<BR>
56P&nbsp;ALT<BR>
78P&nbsp;ALT<BR>
T8S<BR>
78L<BR>
56P<BR>
78P<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
T18/784<BR>
783<BR>
781<BR>
-<BR>
-<BR>
-<BR>
2199<BR>
1697/1897<BR>
1680/1880<BR>
2187<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
8035EKP/CT20/RJ-20P<BR>
-<BR>
RJ-20X<BR>
-<BR>
-<BR>
-<BR>
1211L<BR>
8012EKQ&nbsp;ALT<BR>
8012EKR&nbsp;ALT<BR>
1211P<BR>
8012EKJ<BR>
8012EKL<BR>
8012EKQ<BR>
8012EKR<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
2101P<BR>
2101W<BR>
2101Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
2102L<BR>
2102S<BR>
2102Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVMCOG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
43P<BR>
43W<BR>
43Y<BR>
-<BR>
-<BR>
-<BR>
-<BR>
40L<BR>
40P<BR>
40Y<BR>
70Y-T602<BR>
70L<BR>
70P<BR>
70Y<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
RT/RTR12<BR>
RT/RTR12<BR>
RT/RTR12<BR>
-<BR>
RJ/RJR12<BR>
RJ/RJR12<BR>
RJ/RJR12<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>&nbsp;
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SQUARE MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3250L<BR>
3250P<BR>
3250W<BR>
3250X<BR>
3252P<BR>
3252W<BR>
3252X<BR>
3260P<BR>
3260W<BR>
3260X<BR>
3262P<BR>
3262W<BR>
3262X<BR>
3266P<BR>
3266W<BR>
3266X<BR>
3290H<BR>
3290P<BR>
3290W<BR>
3292P<BR>
3292W<BR>
3292X<BR>
3296P<BR>
3296W<BR>
3296X<BR>
3296Y<BR>
3296Z<BR>
3299P<BR>
3299W<BR>
3299X<BR>
3299Y<BR>
3299Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
66P&nbsp;ALT<BR>
66W&nbsp;ALT<BR>
66X&nbsp;ALT<BR>
66P&nbsp;ALT<BR>
66W&nbsp;ALT<BR>
66X&nbsp;ALT<BR>
-<BR>
64W&nbsp;ALT<BR>
-<BR>
64P&nbsp;ALT<BR>
64W&nbsp;ALT<BR>
64X&nbsp;ALT<BR>
64P<BR>
64W<BR>
64X<BR>
66X&nbsp;ALT<BR>
66P&nbsp;ALT<BR>
66W&nbsp;ALT<BR>
66P<BR>
66W<BR>
66X<BR>
67P<BR>
67W<BR>
67X<BR>
67Y<BR>
67Z<BR>
68P<BR>
68W<BR>
68X<BR>
67Y&nbsp;ALT<BR>
67Z&nbsp;ALT<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
5050<BR>
5091<BR>
5080<BR>
5087<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
T63YB<BR>
T63XB<BR>
-<BR>
-<BR>
-<BR>
5887<BR>
5891<BR>
5880<BR>
-<BR>
-<BR>
-<BR>
T93Z<BR>
T93YA<BR>
T93XA<BR>
T93YB<BR>
T93XB<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
8026EKP<BR>
8026EKW<BR>
8026EKM<BR>
8026EKP<BR>
8026EKB<BR>
8026EKM<BR>
1309X<BR>
1309P<BR>
1309W<BR>
8024EKP<BR>
8024EKW<BR>
8024EKN<BR>
RJ-9P/CT9P<BR>
RJ-9W<BR>
RJ-9X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
3103P<BR>
3103Y<BR>
3103Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3105P/3106P<BR>
3105W/3106W<BR>
3105X/3106X<BR>
3105Y/3106Y<BR>
3105Z/3105Z<BR>
3102P<BR>
3102W<BR>
3102X<BR>
3102Y<BR>
3102Z<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMCBG<BR>
EVMCCG<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
55-1-X<BR>
55-4-X<BR>
55-3-X<BR>
55-2-X<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
50-2-X<BR>
50-4-X<BR>
50-3-X<BR>
-<BR>
-<BR>
-<BR>
64P<BR>
64W<BR>
64X<BR>
64Y<BR>
64Z<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RT/RTR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RJ/RJR22<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RT/RTR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RJ/RJR26<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RT/RTR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
RJ/RJR24<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=8>&nbsp;
</TD>
</TR>
<TR>
<TD COLSPAN=8>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BOURN</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MURATA</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>SPECTROL</B></FONT>
</TD>
<TD ALIGN=CENTER>
<FONT SIZE=3 FACE=ARIAL><B>MILSPEC</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3323P<BR>
3323S<BR>
3323W<BR>
3329H<BR>
3329P<BR>
3329W<BR>
3339H<BR>
3339P<BR>
3339W<BR>
3352E<BR>
3352H<BR>
3352K<BR>
3352P<BR>
3352T<BR>
3352V<BR>
3352W<BR>
3362H<BR>
3362M<BR>
3362P<BR>
3362R<BR>
3362S<BR>
3362U<BR>
3362W<BR>
3362X<BR>
3386B<BR>
3386C<BR>
3386F<BR>
3386H<BR>
3386K<BR>
3386M<BR>
3386P<BR>
3386S<BR>
3386W<BR>
3386X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
25P<BR>
25S<BR>
25RX<BR>
82P<BR>
82M<BR>
82PA<BR>
-<BR>
-<BR>
-<BR>
91E<BR>
91X<BR>
91T<BR>
91B<BR>
91A<BR>
91V<BR>
91W<BR>
25W<BR>
25V<BR>
25P<BR>
-<BR>
25S<BR>
25U<BR>
25RX<BR>
25X<BR>
72XW<BR>
72XL<BR>
72PM<BR>
72RX<BR>
-<BR>
72PX<BR>
72P<BR>
72RXW<BR>
72RXL<BR>
72X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
T7YB<BR>
T7YA<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
TXD<BR>
TYA<BR>
TYP<BR>
-<BR>
TYD<BR>
TX<BR>
-<BR>
150SX<BR>
100SX<BR>
102T<BR>
101S<BR>
190T<BR>
150TX<BR>
101<BR>
-<BR>
-<BR>
101SX<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ET6P<BR>
ET6S<BR>
ET6X<BR>
RJ-6W/8014EMW<BR>
RJ-6P/8014EMP<BR>
RJ-6X/8014EMX<BR>
TM7W<BR>
TM7P<BR>
TM7X<BR>
-<BR>
8017SMS<BR>
-<BR>
8017SMB<BR>
8017SMA<BR>
-<BR>
-<BR>
CT-6W<BR>
CT-6H<BR>
CT-6P<BR>
CT-6R<BR>
-<BR>
CT-6V<BR>
CT-6X<BR>
-<BR>
-<BR>
8038EKV<BR>
-<BR>
8038EKX<BR>
-<BR>
-<BR>
8038EKP<BR>
8038EKZ<BR>
8038EKW<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
3321H<BR>
3321P<BR>
3321N<BR>
1102H<BR>
1102P<BR>
1102T<BR>
RVA0911V304A<BR>
-<BR>
RVA0911H413A<BR>
RVG0707V100A<BR>
RVA0607V(H)306A<BR>
RVA1214H213A<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
3104B<BR>
3104C<BR>
3104F<BR>
3104H<BR>
-<BR>
3104M<BR>
3104P<BR>
3104S<BR>
3104W<BR>
3104X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
EVMQ0G<BR>
EVMQIG<BR>
EVMQ3G<BR>
EVMS0G<BR>
EVMQ0G<BR>
EVMG0G<BR>
-<BR>
-<BR>
-<BR>
EVMK4GA00B<BR>
EVM30GA00B<BR>
EVMK0GA00B<BR>
EVM38GA00B<BR>
EVMB6<BR>
EVLQ0<BR>
-<BR>
EVMMSG<BR>
EVMMBG<BR>
EVMMAG<BR>
-<BR>
-<BR>
EVMMCS<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
EVMM1<BR>
-<BR>
-<BR>
EVMM0<BR>
-<BR>
-<BR>
EVMM3<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
62-3-1<BR>
62-1-2<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67R<BR>
-<BR>
67P<BR>
-<BR>
-<BR>
-<BR>
-<BR>
67X<BR>
63V<BR>
63S<BR>
63M<BR>
-<BR>
-<BR>
63H<BR>
63P<BR>
-<BR>
-<BR>
63X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
RJ/RJR50<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>&nbsp;<P>
<TABLE BORDER=0 CELLSPACING=1 CELLPADDING=3>
<TR>
<TD COLSPAN=7>
<FONT color="#0000FF" SIZE=4 FACE=ARIAL><B>SMD TRIM-POT CROSS REFERENCE</B></FONT>
<P>
<FONT SIZE=4 FACE=ARIAL><B>MULTI-TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3224G<BR>
3224J<BR>
3224W<BR>
3269P<BR>
3269W<BR>
3269X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
44G<BR>
44J<BR>
44W<BR>
84P<BR>
84W<BR>
84X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST63Z<BR>
ST63Y<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
ST5P<BR>
ST5W<BR>
ST5X<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
<TR>
<TD COLSPAN=7>&nbsp;
</TD>
</TR>
<TR>
<TD COLSPAN=7>
<FONT SIZE=4 FACE=ARIAL><B>SINGLE TURN</B></FONT>
</TD>
</TR>
<TR>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BOURNS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>BI&nbsp;TECH</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>DALE-VISHAY</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PHILIPS/MEPCO</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>PANASONIC</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>TOCOS</B></FONT>
</TD>
<TD>
<FONT SIZE=3 FACE=ARIAL><B>AUX/KYOCERA</B></FONT>
</TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
3314G<BR>
3314J<BR>
3364A/B<BR>
3364C/D<BR>
3364W/X<BR>
3313G<BR>
3313J<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
23B<BR>
23A<BR>
21X<BR>
21W<BR>
-<BR>
22B<BR>
22A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST5YL/ST53YL<BR>
ST5YJ/5T53YJ<BR>
ST-23A<BR>
ST-22B<BR>
ST-22<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
ST-4B<BR>
ST-4A<BR>
-<BR>
-<BR>
-<BR>
ST-3B<BR>
ST-3A<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
EVM-6YS<BR>
EVM-1E<BR>
EVM-1G<BR>
EVM-1D<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
G4B<BR>
G4A<BR>
TR04-3S1<BR>
TRG04-2S1<BR>
-<BR>
-<BR>
-<BR></FONT>
</TD>
<TD BGCOLOR="#cccccc" ALIGN=CENTER><FONT FACE=ARIAL SIZE=3>
-<BR>
-<BR>
DVR-43A<BR>
CVR-42C<BR>
CVR-42A/C<BR>
-<BR>
-<BR></FONT>
</TD>
</TR>
</TABLE>
<P>
<FONT SIZE=4 FACE=ARIAL><B>ALT =&nbsp;ALTERNATE</B></FONT>
<P>
&nbsp;
<P>
</td>
</tr>
</table></description>
<packages>
<package name="R0402">
<description><b>RESISTOR</b></description>
<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="21"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="21"/>
<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="21"/>
<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="21"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
<package name="R0603">
<description><b>RESISTOR</b></description>
<wire x1="-0.432" y1="-0.356" x2="0.432" y2="-0.356" width="0.1524" layer="21"/>
<wire x1="0.432" y1="0.356" x2="-0.432" y2="0.356" width="0.1524" layer="21"/>
<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-0.85" y="0" dx="1" dy="1.1" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1" dy="1.1" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="0.4318" y1="-0.4318" x2="0.8382" y2="0.4318" layer="21"/>
<rectangle x1="-0.8382" y1="-0.4318" x2="-0.4318" y2="0.4318" layer="21"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
<package name="R0805">
<description><b>RESISTOR</b><p></description>
<wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
<text x="-0.635" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="21"/>
<rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="21"/>
<rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
</package>
<package name="R0805W">
<description><b>RESISTOR</b> wave soldering<p></description>
<wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-1.0525" y="0" dx="1.5" dy="1" layer="1"/>
<smd name="2" x="1.0525" y="0" dx="1.5" dy="1" layer="1"/>
<text x="-0.635" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="21"/>
<rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="21"/>
<rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
</package>
<package name="R1206">
<description><b>RESISTOR</b></description>
<wire x1="0.9525" y1="-0.8128" x2="-0.9652" y2="-0.8128" width="0.1524" layer="21"/>
<wire x1="0.9525" y1="0.8128" x2="-0.9652" y2="0.8128" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<smd name="2" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
<smd name="1" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.6891" y1="-0.8763" x2="-0.9525" y2="0.8763" layer="21"/>
<rectangle x1="0.9525" y1="-0.8763" x2="1.6891" y2="0.8763" layer="21"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
</package>
<package name="R1206W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
<smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
<text x="-1.905" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="21"/>
<rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="21"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
</package>
<package name="R1210">
<description><b>RESISTOR</b></description>
<wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="21"/>
<rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="21"/>
<rectangle x1="-0.3" y1="-0.8999" x2="0.3" y2="0.8999" layer="35"/>
</package>
<package name="R1210W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
<smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="21"/>
<rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="21"/>
<rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
</package>
<package name="R2010">
<description><b>RESISTOR</b></description>
<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
<text x="-3.175" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-3.175" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="21"/>
<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="21"/>
</package>
<package name="R2010W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
<smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="21"/>
<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="21"/>
</package>
<package name="R2012">
<description><b>RESISTOR</b></description>
<wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
<text x="-0.635" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="21"/>
<rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="21"/>
<rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
</package>
<package name="R2012W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-0.41" y1="0.635" x2="0.41" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-0.41" y1="-0.635" x2="0.41" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-0.94" y="0" dx="1.5" dy="1" layer="1"/>
<smd name="2" x="0.94" y="0" dx="1.5" dy="1" layer="1"/>
<text x="-0.635" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="0.4064" y1="-0.6985" x2="1.0564" y2="0.7015" layer="21"/>
<rectangle x1="-1.0668" y1="-0.6985" x2="-0.4168" y2="0.7015" layer="21"/>
<rectangle x1="-0.1001" y1="-0.5999" x2="0.1001" y2="0.5999" layer="35"/>
</package>
<package name="R2512">
<description><b>RESISTOR</b></description>
<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
<wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
<smd name="1" x="-2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
<smd name="2" x="2.8" y="0" dx="1.8" dy="3.2" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="21"/>
<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="R2512W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
<wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
<smd name="1" x="-2.896" y="0" dx="2" dy="2.1" layer="1"/>
<smd name="2" x="2.896" y="0" dx="2" dy="2.1" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="21"/>
<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="R3216">
<description><b>RESISTOR</b></description>
<wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<text x="-1.905" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="21"/>
<rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="21"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
</package>
<package name="R3216W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-0.913" y1="0.8" x2="0.888" y2="0.8" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-0.8" x2="0.888" y2="-0.8" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<smd name="1" x="-1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
<smd name="2" x="1.499" y="0" dx="1.8" dy="1.2" layer="1"/>
<text x="-1.905" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-0.8763" x2="-0.9009" y2="0.8738" layer="21"/>
<rectangle x1="0.889" y1="-0.8763" x2="1.6391" y2="0.8738" layer="21"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
</package>
<package name="R3225">
<description><b>RESISTOR</b></description>
<wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="21"/>
<rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="21"/>
<rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
</package>
<package name="R3225W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-0.913" y1="1.219" x2="0.939" y2="1.219" width="0.1524" layer="21"/>
<wire x1="-0.913" y1="-1.219" x2="0.939" y2="-1.219" width="0.1524" layer="21"/>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
<smd name="2" x="1.499" y="0" dx="1.8" dy="1.8" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-1.3081" x2="-0.9009" y2="1.2918" layer="21"/>
<rectangle x1="0.9144" y1="-1.3081" x2="1.6645" y2="1.2918" layer="21"/>
<rectangle x1="-0.3" y1="-1" x2="0.3" y2="1" layer="35"/>
</package>
<package name="R5025">
<description><b>RESISTOR</b></description>
<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
<smd name="2" x="2.2" y="0" dx="1.8" dy="2.7" layer="1"/>
<text x="-3.175" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-3.175" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="21"/>
<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="R5025W">
<description><b>RESISTOR</b><p>
wave soldering</description>
<wire x1="-1.662" y1="1.245" x2="1.662" y2="1.245" width="0.1524" layer="21"/>
<wire x1="-1.637" y1="-1.245" x2="1.687" y2="-1.245" width="0.1524" layer="21"/>
<wire x1="-3.473" y1="1.483" x2="3.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="1.483" x2="3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="3.473" y1="-1.483" x2="-3.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-3.473" y1="-1.483" x2="-3.473" y2="1.483" width="0.0508" layer="39"/>
<smd name="1" x="-2.311" y="0" dx="2" dy="1.8" layer="1"/>
<smd name="2" x="2.311" y="0" dx="2" dy="1.8" layer="1"/>
<text x="-3.175" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-3.175" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.4892" y1="-1.3208" x2="-1.6393" y2="1.3292" layer="21"/>
<rectangle x1="1.651" y1="-1.3208" x2="2.5009" y2="1.3292" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="R6332">
<description><b>RESISTOR</b><p>
Source: path_to_url
<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
<wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
<smd name="1" x="-3.1" y="0" dx="1" dy="3.2" layer="1"/>
<smd name="2" x="3.1" y="0" dx="1" dy="3.2" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="21"/>
<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="R6332W">
<description><b>RESISTOR</b> wave soldering<p>
Source: path_to_url
<wire x1="-2.362" y1="1.473" x2="2.387" y2="1.473" width="0.1524" layer="21"/>
<wire x1="-2.362" y1="-1.473" x2="2.387" y2="-1.473" width="0.1524" layer="21"/>
<wire x1="-3.973" y1="1.983" x2="3.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="1.983" x2="3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="3.973" y1="-1.983" x2="-3.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-3.973" y1="-1.983" x2="-3.973" y2="1.983" width="0.0508" layer="39"/>
<smd name="1" x="-3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
<smd name="2" x="3.196" y="0" dx="1.2" dy="3.2" layer="1"/>
<text x="-2.54" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.2004" y1="-1.5494" x2="-2.3505" y2="1.5507" layer="21"/>
<rectangle x1="2.3622" y1="-1.5494" x2="3.2121" y2="1.5507" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="M0805">
<description><b>RESISTOR</b><p>
MELF 0.10 W</description>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="21"/>
<wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="21"/>
<smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="21"/>
<rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="21"/>
<rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
</package>
<package name="M1206">
<description><b>RESISTOR</b><p>
MELF 0.25 W</description>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="21"/>
<wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="21"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="21"/>
<rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="21"/>
<rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
</package>
<package name="M1406">
<description><b>RESISTOR</b><p>
MELF 0.12 W</description>
<wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="21"/>
<wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="21"/>
<smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
<smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="21"/>
<rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="21"/>
<rectangle x1="-0.3" y1="-0.7" x2="0.3" y2="0.7" layer="35"/>
</package>
<package name="M2012">
<description><b>RESISTOR</b><p>
MELF 0.10 W</description>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="0.7112" y1="0.635" x2="-0.7112" y2="0.635" width="0.1524" layer="21"/>
<wire x1="0.7112" y1="-0.635" x2="-0.7112" y2="-0.635" width="0.1524" layer="21"/>
<smd name="1" x="-0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.3" dy="1.6" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.0414" y1="-0.7112" x2="-0.6858" y2="0.7112" layer="21"/>
<rectangle x1="0.6858" y1="-0.7112" x2="1.0414" y2="0.7112" layer="21"/>
<rectangle x1="-0.1999" y1="-0.5999" x2="0.1999" y2="0.5999" layer="35"/>
</package>
<package name="M2309">
<description><b>RESISTOR</b><p>
MELF 0.25 W</description>
<wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="21"/>
<smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
<smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="21"/>
<rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="M3216">
<description><b>RESISTOR</b><p>
MELF 0.25 W</description>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="1.143" y1="0.8382" x2="-1.143" y2="0.8382" width="0.1524" layer="21"/>
<wire x1="1.143" y1="-0.8382" x2="-1.143" y2="-0.8382" width="0.1524" layer="21"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="2" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="2" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-0.9144" x2="-1.1176" y2="0.9144" layer="21"/>
<rectangle x1="1.1176" y1="-0.9144" x2="1.7018" y2="0.9144" layer="21"/>
<rectangle x1="-0.3" y1="-0.8001" x2="0.3" y2="0.8001" layer="35"/>
</package>
<package name="M3516">
<description><b>RESISTOR</b><p>
MELF 0.12 W</description>
<wire x1="-2.973" y1="0.983" x2="2.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.973" y1="-0.983" x2="-2.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.973" y1="-0.983" x2="-2.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.973" y1="0.983" x2="2.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.3208" y1="0.762" x2="-1.3208" y2="0.762" width="0.1524" layer="21"/>
<wire x1="1.3208" y1="-0.762" x2="-1.3208" y2="-0.762" width="0.1524" layer="21"/>
<smd name="1" x="-1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
<smd name="2" x="1.7" y="0" dx="1.4" dy="1.8" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.8542" y1="-0.8382" x2="-1.2954" y2="0.8382" layer="21"/>
<rectangle x1="1.2954" y1="-0.8382" x2="1.8542" y2="0.8382" layer="21"/>
<rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
</package>
<package name="M5923">
<description><b>RESISTOR</b><p>
MELF 0.25 W</description>
<wire x1="-4.473" y1="1.483" x2="4.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="4.473" y1="-1.483" x2="-4.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-4.473" y1="-1.483" x2="-4.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="4.473" y1="1.483" x2="4.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="2.413" y1="1.1684" x2="-2.4384" y2="1.1684" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.1684" x2="-2.413" y2="-1.1684" width="0.1524" layer="21"/>
<smd name="1" x="-2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
<smd name="2" x="2.85" y="0" dx="1.5" dy="2.6" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-3.048" y1="-1.2446" x2="-2.3876" y2="1.2446" layer="21"/>
<rectangle x1="2.3876" y1="-1.2446" x2="3.048" y2="1.2446" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="0204/5">
<description><b>RESISTOR</b><p>
type 0204, grid 5 mm</description>
<wire x1="2.54" y1="0" x2="2.032" y2="0" width="0.508" layer="21"/>
<wire x1="-2.54" y1="0" x2="-2.032" y2="0" width="0.508" layer="21"/>
<wire x1="-1.778" y1="0.635" x2="-1.524" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.778" y1="-0.635" x2="-1.524" y2="-0.889" width="0.1524" layer="21" curve="90"/>
<wire x1="1.524" y1="-0.889" x2="1.778" y2="-0.635" width="0.1524" layer="21" curve="90"/>
<wire x1="1.524" y1="0.889" x2="1.778" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.778" y1="-0.635" x2="-1.778" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-1.524" y1="0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="0.762" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-1.524" y1="-0.889" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="-0.762" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="1.143" y1="0.762" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="1.143" y1="0.762" x2="-1.143" y2="0.762" width="0.1524" layer="21"/>
<wire x1="1.143" y1="-0.762" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="1.143" y1="-0.762" x2="-1.143" y2="-0.762" width="0.1524" layer="21"/>
<wire x1="1.524" y1="0.889" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="1.524" y1="-0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="1.778" y1="-0.635" x2="1.778" y2="0.635" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.0066" y="1.1684" size="0.9906" layer="25" ratio="10">>NAME</text>
<text x="-2.1336" y="-2.3114" size="0.9906" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-2.032" y1="-0.254" x2="-1.778" y2="0.254" layer="21"/>
<rectangle x1="1.778" y1="-0.254" x2="2.032" y2="0.254" layer="21"/>
</package>
<package name="0204/7">
<description><b>RESISTOR</b><p>
type 0204, grid 7.5 mm</description>
<wire x1="3.81" y1="0" x2="2.921" y2="0" width="0.508" layer="21"/>
<wire x1="-3.81" y1="0" x2="-2.921" y2="0" width="0.508" layer="21"/>
<wire x1="-2.54" y1="0.762" x2="-2.286" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.54" y1="-0.762" x2="-2.286" y2="-1.016" width="0.1524" layer="21" curve="90"/>
<wire x1="2.286" y1="-1.016" x2="2.54" y2="-0.762" width="0.1524" layer="21" curve="90"/>
<wire x1="2.286" y1="1.016" x2="2.54" y2="0.762" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.54" y1="-0.762" x2="-2.54" y2="0.762" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="1.016" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
<wire x1="-1.778" y1="0.889" x2="-1.905" y2="1.016" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="-1.016" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-1.778" y1="-0.889" x2="-1.905" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="1.778" y1="0.889" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
<wire x1="1.778" y1="0.889" x2="-1.778" y2="0.889" width="0.1524" layer="21"/>
<wire x1="1.778" y1="-0.889" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="1.778" y1="-0.889" x2="-1.778" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="2.286" y1="1.016" x2="1.905" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.286" y1="-1.016" x2="1.905" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.54" y1="-0.762" x2="2.54" y2="0.762" width="0.1524" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.54" y="1.2954" size="0.9906" layer="25" ratio="10">>NAME</text>
<text x="-1.6256" y="-0.4826" size="0.9906" layer="27" ratio="10">>VALUE</text>
<rectangle x1="2.54" y1="-0.254" x2="2.921" y2="0.254" layer="21"/>
<rectangle x1="-2.921" y1="-0.254" x2="-2.54" y2="0.254" layer="21"/>
</package>
<package name="0204V">
<description><b>RESISTOR</b><p>
type 0204, grid 2.5 mm</description>
<wire x1="-1.27" y1="0" x2="1.27" y2="0" width="0.508" layer="21"/>
<wire x1="-0.127" y1="0" x2="0.127" y2="0" width="0.508" layer="21"/>
<circle x="-1.27" y="0" radius="0.889" width="0.1524" layer="21"/>
<circle x="-1.27" y="0" radius="0.635" width="0.0508" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.1336" y="1.1684" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.1336" y="-2.3114" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="0207/10">
<description><b>RESISTOR</b><p>
type 0207, grid 10 mm</description>
<wire x1="5.08" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
<wire x1="-5.08" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
<pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.048" y="1.524" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.2606" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
<rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
</package>
<package name="0207/12">
<description><b>RESISTOR</b><p>
type 0207, grid 12 mm</description>
<wire x1="6.35" y1="0" x2="5.334" y2="0" width="0.6096" layer="21"/>
<wire x1="-6.35" y1="0" x2="-5.334" y2="0" width="0.6096" layer="21"/>
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="4.445" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
<wire x1="-4.445" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
<rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
<rectangle x1="4.445" y1="-0.3048" x2="5.3086" y2="0.3048" layer="21"/>
<rectangle x1="-5.3086" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
</package>
<package name="0207/15">
<description><b>RESISTOR</b><p>
type 0207, grid 15mm</description>
<wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.6096" layer="21"/>
<wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.6096" layer="21"/>
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="5.715" y1="0" x2="4.064" y2="0" width="0.6096" layer="21"/>
<wire x1="-5.715" y1="0" x2="-4.064" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-7.62" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="7.62" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.175" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="3.175" y1="-0.3048" x2="4.0386" y2="0.3048" layer="21"/>
<rectangle x1="-4.0386" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
<rectangle x1="5.715" y1="-0.3048" x2="6.5786" y2="0.3048" layer="21"/>
<rectangle x1="-6.5786" y1="-0.3048" x2="-5.715" y2="0.3048" layer="21"/>
</package>
<package name="0207/2V">
<description><b>RESISTOR</b><p>
type 0207, grid 2.5 mm</description>
<wire x1="-1.27" y1="0" x2="-0.381" y2="0" width="0.6096" layer="21"/>
<wire x1="-0.254" y1="0" x2="0.254" y2="0" width="0.6096" layer="21"/>
<wire x1="0.381" y1="0" x2="1.27" y2="0" width="0.6096" layer="21"/>
<circle x="-1.27" y="0" radius="1.27" width="0.1524" layer="21"/>
<circle x="-1.27" y="0" radius="1.016" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-0.0508" y="1.016" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.0508" y="-2.2352" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="0207/5V">
<description><b>RESISTOR</b><p>
type 0207, grid 5 mm</description>
<wire x1="-2.54" y1="0" x2="-0.889" y2="0" width="0.6096" layer="21"/>
<wire x1="-0.762" y1="0" x2="0.762" y2="0" width="0.6096" layer="21"/>
<wire x1="0.889" y1="0" x2="2.54" y2="0" width="0.6096" layer="21"/>
<circle x="-2.54" y="0" radius="1.27" width="0.1016" layer="21"/>
<circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-1.143" y="0.889" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.143" y="-2.159" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="0207/7">
<description><b>RESISTOR</b><p>
type 0207, grid 7.5 mm</description>
<wire x1="-3.81" y1="0" x2="-3.429" y2="0" width="0.6096" layer="21"/>
<wire x1="-3.175" y1="0.889" x2="-2.921" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-2.921" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="-1.143" x2="3.175" y2="-0.889" width="0.1524" layer="21" curve="90"/>
<wire x1="2.921" y1="1.143" x2="3.175" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-3.175" y1="-0.889" x2="-3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="1.143" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.016" x2="-2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-2.921" y1="-1.143" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="-1.016" x2="-2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="-2.413" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.921" y1="1.143" x2="2.54" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.921" y1="-1.143" x2="2.54" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="3.175" y1="-0.889" x2="3.175" y2="0.889" width="0.1524" layer="21"/>
<wire x1="3.429" y1="0" x2="3.81" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="3.81" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.54" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-0.5588" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-3.429" y1="-0.3048" x2="-3.175" y2="0.3048" layer="21"/>
<rectangle x1="3.175" y1="-0.3048" x2="3.429" y2="0.3048" layer="21"/>
</package>
<package name="0309/10">
<description><b>RESISTOR</b><p>
type 0309, grid 10mm</description>
<wire x1="-4.699" y1="0" x2="-5.08" y2="0" width="0.6096" layer="21"/>
<wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
<wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
<wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
<wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
<wire x1="5.08" y1="0" x2="4.699" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-5.08" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="0.8128" shape="octagon"/>
<text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-4.6228" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
<rectangle x1="4.318" y1="-0.3048" x2="4.6228" y2="0.3048" layer="21"/>
</package>
<package name="0309/12">
<description><b>RESISTOR</b><p>
type 0309, grid 12.5 mm</description>
<wire x1="6.35" y1="0" x2="5.08" y2="0" width="0.6096" layer="21"/>
<wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="21"/>
<wire x1="-4.318" y1="1.27" x2="-4.064" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="-4.318" y1="-1.27" x2="-4.064" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="4.064" y1="-1.524" x2="4.318" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="4.064" y1="1.524" x2="4.318" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="-4.318" y1="-1.27" x2="-4.318" y2="1.27" width="0.1524" layer="21"/>
<wire x1="-4.064" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="-3.302" y1="1.397" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="-4.064" y1="-1.524" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="-3.302" y1="-1.397" x2="-3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="3.302" y1="1.397" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="3.302" y1="1.397" x2="-3.302" y2="1.397" width="0.1524" layer="21"/>
<wire x1="3.302" y1="-1.397" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="3.302" y1="-1.397" x2="-3.302" y2="-1.397" width="0.1524" layer="21"/>
<wire x1="4.064" y1="1.524" x2="3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="4.064" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="4.318" y1="-1.27" x2="4.318" y2="1.27" width="0.1524" layer="21"/>
<pad name="1" x="-6.35" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="6.35" y="0" drill="0.8128" shape="octagon"/>
<text x="-4.191" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.6858" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="4.318" y1="-0.3048" x2="5.1816" y2="0.3048" layer="21"/>
<rectangle x1="-5.1816" y1="-0.3048" x2="-4.318" y2="0.3048" layer="21"/>
</package>
<package name="0309V">
<description><b>RESISTOR</b><p>
type 0309, grid 2.5 mm</description>
<wire x1="1.27" y1="0" x2="0.635" y2="0" width="0.6096" layer="21"/>
<wire x1="-0.635" y1="0" x2="-1.27" y2="0" width="0.6096" layer="21"/>
<circle x="-1.27" y="0" radius="1.524" width="0.1524" layer="21"/>
<circle x="-1.27" y="0" radius="0.762" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="0.254" y="1.016" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="0.254" y="-2.2098" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="0.254" y1="-0.3048" x2="0.5588" y2="0.3048" layer="21"/>
<rectangle x1="-0.635" y1="-0.3048" x2="-0.3302" y2="0.3048" layer="21"/>
<rectangle x1="-0.3302" y1="-0.3048" x2="0.254" y2="0.3048" layer="21"/>
</package>
<package name="0411/12">
<description><b>RESISTOR</b><p>
type 0411, grid 12.5 mm</description>
<wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.762" layer="21"/>
<wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.762" layer="21"/>
<wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
<wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
<wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
<wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
<pad name="1" x="-6.35" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="6.35" y="0" drill="0.9144" shape="octagon"/>
<text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-5.3594" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
<rectangle x1="5.08" y1="-0.381" x2="5.3594" y2="0.381" layer="21"/>
</package>
<package name="0411/15">
<description><b>RESISTOR</b><p>
type 0411, grid 15 mm</description>
<wire x1="5.08" y1="-1.651" x2="5.08" y2="1.651" width="0.1524" layer="21"/>
<wire x1="4.699" y1="2.032" x2="5.08" y2="1.651" width="0.1524" layer="21" curve="-90"/>
<wire x1="-5.08" y1="-1.651" x2="-4.699" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="4.699" y1="-2.032" x2="5.08" y2="-1.651" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.08" y1="1.651" x2="-4.699" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="2.032" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="3.937" y1="1.905" x2="4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-2.032" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="3.937" y1="-1.905" x2="4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="1.905" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="1.905" x2="3.937" y2="1.905" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="-1.905" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-3.937" y1="-1.905" x2="3.937" y2="-1.905" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="1.651" x2="-5.08" y2="-1.651" width="0.1524" layer="21"/>
<wire x1="-4.699" y1="2.032" x2="-4.064" y2="2.032" width="0.1524" layer="21"/>
<wire x1="-4.699" y1="-2.032" x2="-4.064" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-7.62" y1="0" x2="-6.35" y2="0" width="0.762" layer="21"/>
<wire x1="6.35" y1="0" x2="7.62" y2="0" width="0.762" layer="21"/>
<pad name="1" x="-7.62" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="7.62" y="0" drill="0.9144" shape="octagon"/>
<text x="-5.08" y="2.413" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.5814" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="5.08" y1="-0.381" x2="6.477" y2="0.381" layer="21"/>
<rectangle x1="-6.477" y1="-0.381" x2="-5.08" y2="0.381" layer="21"/>
</package>
<package name="0411V">
<description><b>RESISTOR</b><p>
type 0411, grid 3.81 mm</description>
<wire x1="1.27" y1="0" x2="0.3048" y2="0" width="0.762" layer="21"/>
<wire x1="-1.5748" y1="0" x2="-2.54" y2="0" width="0.762" layer="21"/>
<circle x="-2.54" y="0" radius="2.032" width="0.1524" layer="21"/>
<circle x="-2.54" y="0" radius="1.016" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.9144" shape="octagon"/>
<text x="-0.508" y="1.143" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.5334" y="-2.413" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.4732" y1="-0.381" x2="0.2032" y2="0.381" layer="21"/>
</package>
<package name="0414/15">
<description><b>RESISTOR</b><p>
type 0414, grid 15 mm</description>
<wire x1="7.62" y1="0" x2="6.604" y2="0" width="0.8128" layer="21"/>
<wire x1="-7.62" y1="0" x2="-6.604" y2="0" width="0.8128" layer="21"/>
<wire x1="-6.096" y1="1.905" x2="-5.842" y2="2.159" width="0.1524" layer="21" curve="-90"/>
<wire x1="-6.096" y1="-1.905" x2="-5.842" y2="-2.159" width="0.1524" layer="21" curve="90"/>
<wire x1="5.842" y1="-2.159" x2="6.096" y2="-1.905" width="0.1524" layer="21" curve="90"/>
<wire x1="5.842" y1="2.159" x2="6.096" y2="1.905" width="0.1524" layer="21" curve="-90"/>
<wire x1="-6.096" y1="-1.905" x2="-6.096" y2="1.905" width="0.1524" layer="21"/>
<wire x1="-5.842" y1="2.159" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
<wire x1="-4.826" y1="2.032" x2="-4.953" y2="2.159" width="0.1524" layer="21"/>
<wire x1="-5.842" y1="-2.159" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
<wire x1="-4.826" y1="-2.032" x2="-4.953" y2="-2.159" width="0.1524" layer="21"/>
<wire x1="4.826" y1="2.032" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
<wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
<wire x1="4.826" y1="-2.032" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
<wire x1="4.826" y1="-2.032" x2="-4.826" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="5.842" y1="2.159" x2="4.953" y2="2.159" width="0.1524" layer="21"/>
<wire x1="5.842" y1="-2.159" x2="4.953" y2="-2.159" width="0.1524" layer="21"/>
<wire x1="6.096" y1="-1.905" x2="6.096" y2="1.905" width="0.1524" layer="21"/>
<pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
<text x="-6.096" y="2.5654" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="6.096" y1="-0.4064" x2="6.5024" y2="0.4064" layer="21"/>
<rectangle x1="-6.5024" y1="-0.4064" x2="-6.096" y2="0.4064" layer="21"/>
</package>
<package name="0414V">
<description><b>RESISTOR</b><p>
type 0414, grid 5 mm</description>
<wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="21"/>
<wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="21"/>
<circle x="-2.54" y="0" radius="2.159" width="0.1524" layer="21"/>
<circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
<text x="-0.381" y="1.1684" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.381" y="-2.3622" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.2954" y1="-0.4064" x2="1.2954" y2="0.4064" layer="21"/>
</package>
<package name="0617/17">
<description><b>RESISTOR</b><p>
type 0617, grid 17.5 mm</description>
<wire x1="-8.89" y1="0" x2="-8.636" y2="0" width="0.8128" layer="21"/>
<wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
<wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-8.255" y1="-2.667" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-8.255" y1="1.016" x2="-8.255" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-8.255" y1="1.016" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
<wire x1="8.255" y1="-2.667" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="8.255" y1="1.016" x2="8.255" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="8.255" y1="1.016" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
<wire x1="8.636" y1="0" x2="8.89" y2="0" width="0.8128" layer="21"/>
<wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
<wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
<pad name="1" x="-8.89" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="8.89" y="0" drill="1.016" shape="octagon"/>
<text x="-8.128" y="3.4544" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-6.096" y="-0.7112" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-8.5344" y1="-0.4064" x2="-8.2296" y2="0.4064" layer="21"/>
<rectangle x1="8.2296" y1="-0.4064" x2="8.5344" y2="0.4064" layer="21"/>
</package>
<package name="0617/22">
<description><b>RESISTOR</b><p>
type 0617, grid 22.5 mm</description>
<wire x1="-10.287" y1="0" x2="-11.43" y2="0" width="0.8128" layer="21"/>
<wire x1="-8.255" y1="-2.667" x2="-8.255" y2="2.667" width="0.1524" layer="21"/>
<wire x1="-7.874" y1="3.048" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="2.794" x2="-6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-7.874" y1="-3.048" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="-2.794" x2="-6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="6.731" y1="2.794" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="6.731" y1="2.794" x2="-6.731" y2="2.794" width="0.1524" layer="21"/>
<wire x1="6.731" y1="-2.794" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="6.731" y1="-2.794" x2="-6.731" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="7.874" y1="3.048" x2="6.985" y2="3.048" width="0.1524" layer="21"/>
<wire x1="7.874" y1="-3.048" x2="6.985" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="8.255" y1="-2.667" x2="8.255" y2="2.667" width="0.1524" layer="21"/>
<wire x1="11.43" y1="0" x2="10.287" y2="0" width="0.8128" layer="21"/>
<wire x1="-8.255" y1="2.667" x2="-7.874" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="-8.255" y1="-2.667" x2="-7.874" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="7.874" y1="3.048" x2="8.255" y2="2.667" width="0.1524" layer="21" curve="-90"/>
<wire x1="7.874" y1="-3.048" x2="8.255" y2="-2.667" width="0.1524" layer="21" curve="90"/>
<pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
<text x="-8.255" y="3.4544" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-10.1854" y1="-0.4064" x2="-8.255" y2="0.4064" layer="21"/>
<rectangle x1="8.255" y1="-0.4064" x2="10.1854" y2="0.4064" layer="21"/>
</package>
<package name="0617V">
<description><b>RESISTOR</b><p>
type 0617, grid 5 mm</description>
<wire x1="-2.54" y1="0" x2="-1.27" y2="0" width="0.8128" layer="21"/>
<wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.8128" layer="21"/>
<circle x="-2.54" y="0" radius="3.048" width="0.1524" layer="21"/>
<circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
<text x="0.635" y="1.4224" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="0.635" y="-2.6162" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.3208" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
</package>
<package name="0922/22">
<description><b>RESISTOR</b><p>
type 0922, grid 22.5 mm</description>
<wire x1="11.43" y1="0" x2="10.795" y2="0" width="0.8128" layer="21"/>
<wire x1="-11.43" y1="0" x2="-10.795" y2="0" width="0.8128" layer="21"/>
<wire x1="-10.16" y1="-4.191" x2="-10.16" y2="4.191" width="0.1524" layer="21"/>
<wire x1="-9.779" y1="4.572" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
<wire x1="-8.636" y1="4.318" x2="-8.89" y2="4.572" width="0.1524" layer="21"/>
<wire x1="-9.779" y1="-4.572" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
<wire x1="-8.636" y1="-4.318" x2="-8.89" y2="-4.572" width="0.1524" layer="21"/>
<wire x1="8.636" y1="4.318" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
<wire x1="8.636" y1="4.318" x2="-8.636" y2="4.318" width="0.1524" layer="21"/>
<wire x1="8.636" y1="-4.318" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
<wire x1="8.636" y1="-4.318" x2="-8.636" y2="-4.318" width="0.1524" layer="21"/>
<wire x1="9.779" y1="4.572" x2="8.89" y2="4.572" width="0.1524" layer="21"/>
<wire x1="9.779" y1="-4.572" x2="8.89" y2="-4.572" width="0.1524" layer="21"/>
<wire x1="10.16" y1="-4.191" x2="10.16" y2="4.191" width="0.1524" layer="21"/>
<wire x1="-10.16" y1="-4.191" x2="-9.779" y2="-4.572" width="0.1524" layer="21" curve="90"/>
<wire x1="-10.16" y1="4.191" x2="-9.779" y2="4.572" width="0.1524" layer="21" curve="-90"/>
<wire x1="9.779" y1="-4.572" x2="10.16" y2="-4.191" width="0.1524" layer="21" curve="90"/>
<wire x1="9.779" y1="4.572" x2="10.16" y2="4.191" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
<text x="-10.16" y="5.1054" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-6.477" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-10.7188" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
<rectangle x1="10.16" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
<rectangle x1="-10.3124" y1="-0.4064" x2="-10.16" y2="0.4064" layer="21"/>
<rectangle x1="10.16" y1="-0.4064" x2="10.7188" y2="0.4064" layer="21"/>
</package>
<package name="P0613V">
<description><b>RESISTOR</b><p>
type 0613, grid 5 mm</description>
<wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="21"/>
<wire x1="-2.54" y1="0" x2="-1.397" y2="0" width="0.8128" layer="21"/>
<circle x="-2.54" y="0" radius="2.286" width="0.1524" layer="21"/>
<circle x="-2.54" y="0" radius="1.143" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
<text x="-0.254" y="1.143" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.254" y="-2.413" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.2954" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
</package>
<package name="P0613/15">
<description><b>RESISTOR</b><p>
type 0613, grid 15 mm</description>
<wire x1="7.62" y1="0" x2="6.985" y2="0" width="0.8128" layer="21"/>
<wire x1="-7.62" y1="0" x2="-6.985" y2="0" width="0.8128" layer="21"/>
<wire x1="-6.477" y1="2.032" x2="-6.223" y2="2.286" width="0.1524" layer="21" curve="-90"/>
<wire x1="-6.477" y1="-2.032" x2="-6.223" y2="-2.286" width="0.1524" layer="21" curve="90"/>
<wire x1="6.223" y1="-2.286" x2="6.477" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="6.223" y1="2.286" x2="6.477" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="-6.223" y1="2.286" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="2.159" x2="-5.334" y2="2.286" width="0.1524" layer="21"/>
<wire x1="-6.223" y1="-2.286" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="-2.159" x2="-5.334" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="5.207" y1="2.159" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
<wire x1="5.207" y1="2.159" x2="-5.207" y2="2.159" width="0.1524" layer="21"/>
<wire x1="5.207" y1="-2.159" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="5.207" y1="-2.159" x2="-5.207" y2="-2.159" width="0.1524" layer="21"/>
<wire x1="6.223" y1="2.286" x2="5.334" y2="2.286" width="0.1524" layer="21"/>
<wire x1="6.223" y1="-2.286" x2="5.334" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="6.477" y1="-0.635" x2="6.477" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="6.477" y1="-0.635" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
<wire x1="6.477" y1="2.032" x2="6.477" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-6.477" y1="-2.032" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-6.477" y1="0.635" x2="-6.477" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-6.477" y1="0.635" x2="-6.477" y2="2.032" width="0.1524" layer="21"/>
<pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
<text x="-6.477" y="2.6924" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-4.318" y="-0.7112" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-7.0358" y1="-0.4064" x2="-6.477" y2="0.4064" layer="21"/>
<rectangle x1="6.477" y1="-0.4064" x2="7.0358" y2="0.4064" layer="21"/>
</package>
<package name="P0817/22">
<description><b>RESISTOR</b><p>
type 0817, grid 22.5 mm</description>
<wire x1="-10.414" y1="0" x2="-11.43" y2="0" width="0.8128" layer="21"/>
<wire x1="-8.509" y1="-3.429" x2="-8.509" y2="3.429" width="0.1524" layer="21"/>
<wire x1="-8.128" y1="3.81" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
<wire x1="-6.985" y1="3.556" x2="-7.239" y2="3.81" width="0.1524" layer="21"/>
<wire x1="-8.128" y1="-3.81" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="-6.985" y1="-3.556" x2="-7.239" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="6.985" y1="3.556" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
<wire x1="6.985" y1="3.556" x2="-6.985" y2="3.556" width="0.1524" layer="21"/>
<wire x1="6.985" y1="-3.556" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="6.985" y1="-3.556" x2="-6.985" y2="-3.556" width="0.1524" layer="21"/>
<wire x1="8.128" y1="3.81" x2="7.239" y2="3.81" width="0.1524" layer="21"/>
<wire x1="8.128" y1="-3.81" x2="7.239" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="8.509" y1="-3.429" x2="8.509" y2="3.429" width="0.1524" layer="21"/>
<wire x1="11.43" y1="0" x2="10.414" y2="0" width="0.8128" layer="21"/>
<wire x1="-8.509" y1="3.429" x2="-8.128" y2="3.81" width="0.1524" layer="21" curve="-90"/>
<wire x1="-8.509" y1="-3.429" x2="-8.128" y2="-3.81" width="0.1524" layer="21" curve="90"/>
<wire x1="8.128" y1="3.81" x2="8.509" y2="3.429" width="0.1524" layer="21" curve="-90"/>
<wire x1="8.128" y1="-3.81" x2="8.509" y2="-3.429" width="0.1524" layer="21" curve="90"/>
<pad name="1" x="-11.43" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.43" y="0" drill="1.016" shape="octagon"/>
<text x="-8.382" y="4.2164" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-6.223" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
<text x="6.604" y="-2.2606" size="1.27" layer="21" ratio="10" rot="R90">0817</text>
<rectangle x1="8.509" y1="-0.4064" x2="10.3124" y2="0.4064" layer="21"/>
<rectangle x1="-10.3124" y1="-0.4064" x2="-8.509" y2="0.4064" layer="21"/>
</package>
<package name="P0817V">
<description><b>RESISTOR</b><p>
type 0817, grid 6.35 mm</description>
<wire x1="-3.81" y1="0" x2="-5.08" y2="0" width="0.8128" layer="21"/>
<wire x1="1.27" y1="0" x2="0" y2="0" width="0.8128" layer="21"/>
<circle x="-5.08" y="0" radius="3.81" width="0.1524" layer="21"/>
<circle x="-5.08" y="0" radius="1.27" width="0.1524" layer="21"/>
<pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="1.016" shape="octagon"/>
<text x="-1.016" y="1.27" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.016" y="-2.54" size="1.27" layer="27" ratio="10">>VALUE</text>
<text x="-6.858" y="2.032" size="1.016" layer="21" ratio="12">0817</text>
<rectangle x1="-3.81" y1="-0.4064" x2="0" y2="0.4064" layer="21"/>
</package>
<package name="V234/12">
<description><b>RESISTOR</b><p>
type V234, grid 12.5 mm</description>
<wire x1="-4.953" y1="1.524" x2="-4.699" y2="1.778" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="-4.953" y1="-1.524" x2="-4.699" y2="-1.778" width="0.1524" layer="21" curve="90"/>
<wire x1="-4.699" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
<wire x1="-4.953" y1="1.524" x2="-4.953" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-1.778" x2="-4.699" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="6.35" y1="0" x2="5.461" y2="0" width="0.8128" layer="21"/>
<wire x1="-6.35" y1="0" x2="-5.461" y2="0" width="0.8128" layer="21"/>
<pad name="1" x="-6.35" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="6.35" y="0" drill="1.016" shape="octagon"/>
<text x="-4.953" y="2.159" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.81" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="4.953" y1="-0.4064" x2="5.4102" y2="0.4064" layer="21"/>
<rectangle x1="-5.4102" y1="-0.4064" x2="-4.953" y2="0.4064" layer="21"/>
</package>
<package name="V235/17">
<description><b>RESISTOR</b><p>
type V235, grid 17.78 mm</description>
<wire x1="-6.731" y1="2.921" x2="6.731" y2="2.921" width="0.1524" layer="21"/>
<wire x1="-7.112" y1="2.54" x2="-7.112" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="6.731" y1="-2.921" x2="-6.731" y2="-2.921" width="0.1524" layer="21"/>
<wire x1="7.112" y1="2.54" x2="7.112" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="8.89" y1="0" x2="7.874" y2="0" width="1.016" layer="21"/>
<wire x1="-7.874" y1="0" x2="-8.89" y2="0" width="1.016" layer="21"/>
<wire x1="-7.112" y1="-2.54" x2="-6.731" y2="-2.921" width="0.1524" layer="21" curve="90"/>
<wire x1="6.731" y1="2.921" x2="7.112" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.731" y1="-2.921" x2="7.112" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-7.112" y1="2.54" x2="-6.731" y2="2.921" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-8.89" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="8.89" y="0" drill="1.1938" shape="octagon"/>
<text x="-6.858" y="3.302" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-5.842" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="7.112" y1="-0.508" x2="7.747" y2="0.508" layer="21"/>
<rectangle x1="-7.747" y1="-0.508" x2="-7.112" y2="0.508" layer="21"/>
</package>
<package name="V526-0">
<description><b>RESISTOR</b><p>
type V526-0, grid 2.5 mm</description>
<wire x1="-2.54" y1="1.016" x2="-2.286" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.286" y1="1.27" x2="2.54" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.286" y1="-1.27" x2="2.54" y2="-1.016" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.54" y1="-1.016" x2="-2.286" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="2.286" y1="1.27" x2="-2.286" y2="1.27" width="0.1524" layer="21"/>
<wire x1="2.54" y1="-1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="-1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="1.016" x2="-2.54" y2="-1.016" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.413" y="1.651" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.413" y="-2.794" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="MINI_MELF-0102R">
<description><b>CECC Size RC2211</b> Reflow Soldering<p>
source Beyschlag</description>
<wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="21"/>
<wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="21"/>
<wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="21"/>
<wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="21"/>
<smd name="1" x="-0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
<smd name="2" x="0.9" y="0" dx="0.5" dy="1.3" layer="1"/>
<text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
</package>
<package name="MINI_MELF-0102W">
<description><b>CECC Size RC2211</b> Wave Soldering<p>
source Beyschlag</description>
<wire x1="-1" y1="-0.5" x2="1" y2="-0.5" width="0.2032" layer="21"/>
<wire x1="1" y1="-0.5" x2="1" y2="0.5" width="0.2032" layer="21"/>
<wire x1="1" y1="0.5" x2="-1" y2="0.5" width="0.2032" layer="21"/>
<wire x1="-1" y1="0.5" x2="-1" y2="-0.5" width="0.2032" layer="21"/>
<smd name="1" x="-0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
<smd name="2" x="0.95" y="0" dx="0.6" dy="1.3" layer="1"/>
<text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
</package>
<package name="MINI_MELF-0204R">
<description><b>CECC Size RC3715</b> Reflow Soldering<p>
source Beyschlag</description>
<wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="21"/>
<wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="21"/>
<wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="21"/>
<wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="21"/>
<wire x1="0.938" y1="0.6" x2="-0.938" y2="0.6" width="0.2032" layer="21"/>
<wire x1="-0.938" y1="-0.6" x2="0.938" y2="-0.6" width="0.2032" layer="21"/>
<smd name="1" x="-1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
<smd name="2" x="1.5" y="0" dx="0.8" dy="1.6" layer="1"/>
<text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
</package>
<package name="MINI_MELF-0204W">
<description><b>CECC Size RC3715</b> Wave Soldering<p>
source Beyschlag</description>
<wire x1="-1.7" y1="-0.6" x2="1.7" y2="-0.6" width="0.2032" layer="21"/>
<wire x1="1.7" y1="-0.6" x2="1.7" y2="0.6" width="0.2032" layer="21"/>
<wire x1="1.7" y1="0.6" x2="-1.7" y2="0.6" width="0.2032" layer="21"/>
<wire x1="-1.7" y1="0.6" x2="-1.7" y2="-0.6" width="0.2032" layer="21"/>
<wire x1="0.684" y1="0.6" x2="-0.684" y2="0.6" width="0.2032" layer="21"/>
<wire x1="-0.684" y1="-0.6" x2="0.684" y2="-0.6" width="0.2032" layer="21"/>
<smd name="1" x="-1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
<smd name="2" x="1.5" y="0" dx="1.2" dy="1.6" layer="1"/>
<text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
</package>
<package name="MINI_MELF-0207R">
<description><b>CECC Size RC6123</b> Reflow Soldering<p>
source Beyschlag</description>
<wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="21"/>
<wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="21"/>
<wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="21"/>
<wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="21"/>
<wire x1="1.2125" y1="1" x2="-1.2125" y2="1" width="0.2032" layer="21"/>
<wire x1="-1.2125" y1="-1" x2="1.2125" y2="-1" width="0.2032" layer="21"/>
<smd name="1" x="-2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
<smd name="2" x="2.25" y="0" dx="1.6" dy="2.5" layer="1"/>
<text x="-2.2225" y="1.5875" size="1.27" layer="25">>NAME</text>
<text x="-2.2225" y="-2.54" size="1.27" layer="27">>VALUE</text>
</package>
<package name="MINI_MELF-0207W">
<description><b>CECC Size RC6123</b> Wave Soldering<p>
source Beyschlag</description>
<wire x1="-2.8" y1="-1" x2="2.8" y2="-1" width="0.2032" layer="21"/>
<wire x1="2.8" y1="-1" x2="2.8" y2="1" width="0.2032" layer="21"/>
<wire x1="2.8" y1="1" x2="-2.8" y2="1" width="0.2032" layer="21"/>
<wire x1="-2.8" y1="1" x2="-2.8" y2="-1" width="0.2032" layer="21"/>
<wire x1="1.149" y1="1" x2="-1.149" y2="1" width="0.2032" layer="21"/>
<wire x1="-1.149" y1="-1" x2="1.149" y2="-1" width="0.2032" layer="21"/>
<smd name="1" x="-2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
<smd name="2" x="2.6" y="0" dx="2.4" dy="2.5" layer="1"/>
<text x="-2.54" y="1.5875" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-2.54" size="1.27" layer="27">>VALUE</text>
</package>
<package name="0922V">
<description><b>RESISTOR</b><p>
type 0922, grid 7.5 mm</description>
<wire x1="2.54" y1="0" x2="1.397" y2="0" width="0.8128" layer="21"/>
<wire x1="-5.08" y1="0" x2="-3.81" y2="0" width="0.8128" layer="21"/>
<circle x="-5.08" y="0" radius="4.572" width="0.1524" layer="21"/>
<circle x="-5.08" y="0" radius="1.905" width="0.1524" layer="21"/>
<pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="1.016" shape="octagon"/>
<text x="-0.508" y="1.6764" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.508" y="-2.9972" size="1.27" layer="27" ratio="10">>VALUE</text>
<text x="-6.858" y="2.54" size="1.016" layer="21" ratio="12">0922</text>
<rectangle x1="-3.81" y1="-0.4064" x2="1.3208" y2="0.4064" layer="21"/>
</package>
<package name="RDH/15">
<description><b>RESISTOR</b><p>
type RDH, grid 15 mm</description>
<wire x1="-7.62" y1="0" x2="-6.858" y2="0" width="0.8128" layer="21"/>
<wire x1="-6.096" y1="3.048" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-4.953" y1="2.794" x2="-5.207" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-6.096" y1="-3.048" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-4.953" y1="-2.794" x2="-5.207" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="4.953" y1="2.794" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
<wire x1="4.953" y1="2.794" x2="-4.953" y2="2.794" width="0.1524" layer="21"/>
<wire x1="4.953" y1="-2.794" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="4.953" y1="-2.794" x2="-4.953" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="6.096" y1="3.048" x2="5.207" y2="3.048" width="0.1524" layer="21"/>
<wire x1="6.096" y1="-3.048" x2="5.207" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-6.477" y1="-2.667" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-6.477" y1="1.016" x2="-6.477" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-6.477" y1="1.016" x2="-6.477" y2="2.667" width="0.1524" layer="21"/>
<wire x1="6.477" y1="-2.667" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="6.477" y1="1.016" x2="6.477" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="6.477" y1="1.016" x2="6.477" y2="2.667" width="0.1524" layer="21"/>
<wire x1="6.858" y1="0" x2="7.62" y2="0" width="0.8128" layer="21"/>
<wire x1="-6.477" y1="2.667" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.096" y1="3.048" x2="6.477" y2="2.667" width="0.1524" layer="21" curve="-90"/>
<wire x1="-6.477" y1="-2.667" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="6.096" y1="-3.048" x2="6.477" y2="-2.667" width="0.1524" layer="21" curve="90"/>
<pad name="1" x="-7.62" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.62" y="0" drill="1.016" shape="octagon"/>
<text x="-6.35" y="3.4544" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-4.318" y="-0.5842" size="1.27" layer="27" ratio="10">>VALUE</text>
<text x="4.572" y="-1.7272" size="1.27" layer="21" ratio="10" rot="R90">RDH</text>
<rectangle x1="-6.7564" y1="-0.4064" x2="-6.4516" y2="0.4064" layer="21"/>
<rectangle x1="6.4516" y1="-0.4064" x2="6.7564" y2="0.4064" layer="21"/>
</package>
<package name="MINI_MELF-0102AX">
<description><b>Mini MELF 0102 Axial</b></description>
<circle x="0" y="0" radius="0.6" width="0" layer="21"/>
<circle x="0" y="0" radius="0.6" width="0" layer="52"/>
<smd name="1" x="0" y="0" dx="1.9" dy="1.9" layer="1" roundness="100"/>
<smd name="2" x="0" y="0" dx="1.9" dy="1.9" layer="16" roundness="100"/>
<text x="-1.27" y="0.9525" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.2225" size="1.27" layer="27">>VALUE</text>
<hole x="0" y="0" drill="1.3"/>
</package>
<package name="R0201">
<description><b>RESISTOR</b> chip<p>
Source: path_to_url
<smd name="1" x="-0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
<smd name="2" x="0.255" y="0" dx="0.28" dy="0.43" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="21"/>
<rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="21"/>
<rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="0.15" layer="21"/>
</package>
<package name="VTA52">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR52<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-15.24" y1="0" x2="-13.97" y2="0" width="0.6096" layer="21"/>
<wire x1="12.6225" y1="0.025" x2="12.6225" y2="4.725" width="0.1524" layer="21"/>
<wire x1="12.6225" y1="4.725" x2="-12.6225" y2="4.725" width="0.1524" layer="21"/>
<wire x1="-12.6225" y1="4.725" x2="-12.6225" y2="0.025" width="0.1524" layer="21"/>
<wire x1="-12.6225" y1="0.025" x2="-12.6225" y2="-4.65" width="0.1524" layer="21"/>
<wire x1="-12.6225" y1="-4.65" x2="12.6225" y2="-4.65" width="0.1524" layer="21"/>
<wire x1="12.6225" y1="-4.65" x2="12.6225" y2="0.025" width="0.1524" layer="21"/>
<wire x1="13.97" y1="0" x2="15.24" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-15.24" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="15.24" y="0" drill="1.1" shape="octagon"/>
<text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-13.97" y1="-0.3048" x2="-12.5675" y2="0.3048" layer="21"/>
<rectangle x1="12.5675" y1="-0.3048" x2="13.97" y2="0.3048" layer="21"/>
</package>
<package name="VTA53">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR53<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="21"/>
<wire x1="9.8975" y1="0" x2="9.8975" y2="4.7" width="0.1524" layer="21"/>
<wire x1="9.8975" y1="4.7" x2="-9.8975" y2="4.7" width="0.1524" layer="21"/>
<wire x1="-9.8975" y1="4.7" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
<wire x1="-9.8975" y1="0" x2="-9.8975" y2="-4.675" width="0.1524" layer="21"/>
<wire x1="-9.8975" y1="-4.675" x2="9.8975" y2="-4.675" width="0.1524" layer="21"/>
<wire x1="9.8975" y1="-4.675" x2="9.8975" y2="0" width="0.1524" layer="21"/>
<wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
<text x="-3.81" y="5.08" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
<rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
</package>
<package name="VTA54">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR54<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-12.065" y1="0" x2="-10.795" y2="0" width="0.6096" layer="21"/>
<wire x1="9.8975" y1="0" x2="9.8975" y2="3.3" width="0.1524" layer="21"/>
<wire x1="9.8975" y1="3.3" x2="-9.8975" y2="3.3" width="0.1524" layer="21"/>
<wire x1="-9.8975" y1="3.3" x2="-9.8975" y2="0" width="0.1524" layer="21"/>
<wire x1="-9.8975" y1="0" x2="-9.8975" y2="-3.3" width="0.1524" layer="21"/>
<wire x1="-9.8975" y1="-3.3" x2="9.8975" y2="-3.3" width="0.1524" layer="21"/>
<wire x1="9.8975" y1="-3.3" x2="9.8975" y2="0" width="0.1524" layer="21"/>
<wire x1="10.795" y1="0" x2="12.065" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-12.065" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="12.065" y="0" drill="1.1" shape="octagon"/>
<text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-10.795" y1="-0.3048" x2="-9.8425" y2="0.3048" layer="21"/>
<rectangle x1="9.8425" y1="-0.3048" x2="10.795" y2="0.3048" layer="21"/>
</package>
<package name="VTA55">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR55<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-8.255" y1="0" x2="-6.985" y2="0" width="0.6096" layer="21"/>
<wire x1="6.405" y1="0" x2="6.405" y2="3.3" width="0.1524" layer="21"/>
<wire x1="6.405" y1="3.3" x2="-6.405" y2="3.3" width="0.1524" layer="21"/>
<wire x1="-6.405" y1="3.3" x2="-6.405" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.405" y1="0" x2="-6.405" y2="-3.3" width="0.1524" layer="21"/>
<wire x1="-6.405" y1="-3.3" x2="6.405" y2="-3.3" width="0.1524" layer="21"/>
<wire x1="6.405" y1="-3.3" x2="6.405" y2="0" width="0.1524" layer="21"/>
<wire x1="6.985" y1="0" x2="8.255" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-8.255" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="8.255" y="0" drill="1.1" shape="octagon"/>
<text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-6.985" y1="-0.3048" x2="-6.35" y2="0.3048" layer="21"/>
<rectangle x1="6.35" y1="-0.3048" x2="6.985" y2="0.3048" layer="21"/>
</package>
<package name="VTA56">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RBR56<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-6.35" y1="0" x2="-5.08" y2="0" width="0.6096" layer="21"/>
<wire x1="4.5" y1="0" x2="4.5" y2="3.3" width="0.1524" layer="21"/>
<wire x1="4.5" y1="3.3" x2="-4.5" y2="3.3" width="0.1524" layer="21"/>
<wire x1="-4.5" y1="3.3" x2="-4.5" y2="0" width="0.1524" layer="21"/>
<wire x1="-4.5" y1="0" x2="-4.5" y2="-3.3" width="0.1524" layer="21"/>
<wire x1="-4.5" y1="-3.3" x2="4.5" y2="-3.3" width="0.1524" layer="21"/>
<wire x1="4.5" y1="-3.3" x2="4.5" y2="0" width="0.1524" layer="21"/>
<wire x1="5.08" y1="0" x2="6.35" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
<text x="-3.81" y="3.81" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-5.08" y1="-0.3048" x2="-4.445" y2="0.3048" layer="21"/>
<rectangle x1="4.445" y1="-0.3048" x2="5.08" y2="0.3048" layer="21"/>
</package>
<package name="VMTA55">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC55<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-5.08" y1="0" x2="-4.26" y2="0" width="0.6096" layer="21"/>
<wire x1="3.3375" y1="-1.45" x2="3.3375" y2="1.45" width="0.1524" layer="21"/>
<wire x1="3.3375" y1="1.45" x2="-3.3625" y2="1.45" width="0.1524" layer="21"/>
<wire x1="-3.3625" y1="1.45" x2="-3.3625" y2="-1.45" width="0.1524" layer="21"/>
<wire x1="-3.3625" y1="-1.45" x2="3.3375" y2="-1.45" width="0.1524" layer="21"/>
<wire x1="4.235" y1="0" x2="5.08" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-5.08" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="1.1" shape="octagon"/>
<text x="-3.175" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-4.26" y1="-0.3048" x2="-3.3075" y2="0.3048" layer="21"/>
<rectangle x1="3.2825" y1="-0.3048" x2="4.235" y2="0.3048" layer="21"/>
</package>
<package name="VMTB60">
<description><b>Bulk Metal Foil Technology</b>, Tubular Axial Lead Resistors, Meets or Exceeds MIL-R-39005 Requirements<p>
MIL SIZE RNC60<br>
Source: VISHAY .. vta56.pdf</description>
<wire x1="-6.35" y1="0" x2="-5.585" y2="0" width="0.6096" layer="21"/>
<wire x1="4.6875" y1="-1.95" x2="4.6875" y2="1.95" width="0.1524" layer="21"/>
<wire x1="4.6875" y1="1.95" x2="-4.6875" y2="1.95" width="0.1524" layer="21"/>
<wire x1="-4.6875" y1="1.95" x2="-4.6875" y2="-1.95" width="0.1524" layer="21"/>
<wire x1="-4.6875" y1="-1.95" x2="4.6875" y2="-1.95" width="0.1524" layer="21"/>
<wire x1="5.585" y1="0" x2="6.35" y2="0" width="0.6096" layer="21"/>
<pad name="1" x="-6.35" y="0" drill="1.1" shape="octagon"/>
<pad name="2" x="6.35" y="0" drill="1.1" shape="octagon"/>
<text x="-4.445" y="2.54" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-4.445" y="-0.635" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-5.585" y1="-0.3048" x2="-4.6325" y2="0.3048" layer="21"/>
<rectangle x1="4.6325" y1="-0.3048" x2="5.585" y2="0.3048" layer="21"/>
</package>
<package name="R4527">
<description><b>Package 4527</b><p>
Source: path_to_url
<wire x1="-5.675" y1="-3.375" x2="5.65" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="5.65" y1="-3.375" x2="5.65" y2="3.375" width="0.2032" layer="21"/>
<wire x1="5.65" y1="3.375" x2="-5.675" y2="3.375" width="0.2032" layer="21"/>
<wire x1="-5.675" y1="3.375" x2="-5.675" y2="-3.375" width="0.2032" layer="21"/>
<smd name="1" x="-4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
<smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
<text x="-5.715" y="3.81" size="1.27" layer="25">>NAME</text>
<text x="-5.715" y="-5.08" size="1.27" layer="27">>VALUE</text>
</package>
<package name="WSC0001">
<description><b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf</description>
<wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="-3.075" y1="-1.8" x2="3.075" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="3.075" y1="-1.8" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
<wire x1="3.075" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
<wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
<wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="3.075" y1="1.606" x2="3.075" y2="1.8" width="0.2032" layer="21"/>
<wire x1="3.075" y1="-1.8" x2="3.075" y2="-1.606" width="0.2032" layer="21"/>
<smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
<smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
<text x="-2.544" y="2.229" size="1.27" layer="25">>NAME</text>
<text x="-2.544" y="-3.501" size="1.27" layer="27">>VALUE</text>
</package>
<package name="WSC0002">
<description><b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf</description>
<wire x1="-5.55" y1="3.375" x2="-5.55" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="-5.55" y1="-3.375" x2="5.55" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="5.55" y1="-3.375" x2="5.55" y2="3.375" width="0.2032" layer="21"/>
<wire x1="5.55" y1="3.375" x2="-5.55" y2="3.375" width="0.2032" layer="21"/>
<smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
<smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
<text x="-5.65" y="3.9" size="1.27" layer="25">>NAME</text>
<text x="-5.65" y="-5.15" size="1.27" layer="27">>VALUE</text>
</package>
<package name="WSC01/2">
<description><b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf</description>
<wire x1="-2.45" y1="1.475" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
<wire x1="-2.45" y1="-1.475" x2="2.45" y2="-1.475" width="0.2032" layer="21"/>
<wire x1="2.45" y1="-1.475" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
<wire x1="2.45" y1="1.475" x2="-2.45" y2="1.475" width="0.2032" layer="21"/>
<wire x1="-2.45" y1="1.475" x2="-2.45" y2="1.106" width="0.2032" layer="21"/>
<wire x1="-2.45" y1="-1.106" x2="-2.45" y2="-1.475" width="0.2032" layer="21"/>
<wire x1="2.45" y1="1.106" x2="2.45" y2="1.475" width="0.2032" layer="21"/>
<wire x1="2.45" y1="-1.475" x2="2.45" y2="-1.106" width="0.2032" layer="21"/>
<smd name="1" x="-2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
<smd name="2" x="2.1" y="0" dx="2.16" dy="1.78" layer="1"/>
<text x="-2.544" y="1.904" size="1.27" layer="25">>NAME</text>
<text x="-2.544" y="-3.176" size="1.27" layer="27">>VALUE</text>
</package>
<package name="WSC2515">
<description><b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf</description>
<wire x1="-3.075" y1="1.8" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="-3.075" y1="-1.8" x2="3.05" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="3.05" y1="-1.8" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
<wire x1="3.05" y1="1.8" x2="-3.075" y2="1.8" width="0.2032" layer="21"/>
<wire x1="-3.075" y1="1.8" x2="-3.075" y2="1.606" width="0.2032" layer="21"/>
<wire x1="-3.075" y1="-1.606" x2="-3.075" y2="-1.8" width="0.2032" layer="21"/>
<wire x1="3.05" y1="1.606" x2="3.05" y2="1.8" width="0.2032" layer="21"/>
<wire x1="3.05" y1="-1.8" x2="3.05" y2="-1.606" width="0.2032" layer="21"/>
<smd name="1" x="-2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
<smd name="2" x="2.675" y="0" dx="2.29" dy="2.92" layer="1"/>
<text x="-3.2" y="2.15" size="1.27" layer="25">>NAME</text>
<text x="-3.2" y="-3.4" size="1.27" layer="27">>VALUE</text>
</package>
<package name="WSC4527">
<description><b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf</description>
<wire x1="-5.675" y1="3.4" x2="-5.675" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="-5.675" y1="-3.375" x2="5.675" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="5.675" y1="-3.375" x2="5.675" y2="3.4" width="0.2032" layer="21"/>
<wire x1="5.675" y1="3.4" x2="-5.675" y2="3.4" width="0.2032" layer="21"/>
<smd name="1" x="-4.575" y="0.025" dx="3.94" dy="5.84" layer="1"/>
<smd name="2" x="4.575" y="0" dx="3.94" dy="5.84" layer="1"/>
<text x="-5.775" y="3.925" size="1.27" layer="25">>NAME</text>
<text x="-5.775" y="-5.15" size="1.27" layer="27">>VALUE</text>
</package>
<package name="WSC6927">
<description><b>Wirewound Resistors, Precision Power</b><p>
Source: VISHAY wscwsn.pdf</description>
<wire x1="-8.65" y1="3.375" x2="-8.65" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="-8.65" y1="-3.375" x2="8.65" y2="-3.375" width="0.2032" layer="21"/>
<wire x1="8.65" y1="-3.375" x2="8.65" y2="3.375" width="0.2032" layer="21"/>
<wire x1="8.65" y1="3.375" x2="-8.65" y2="3.375" width="0.2032" layer="21"/>
<smd name="1" x="-7.95" y="0.025" dx="3.94" dy="5.97" layer="1"/>
<smd name="2" x="7.95" y="0" dx="3.94" dy="5.97" layer="1"/>
<text x="-8.75" y="3.9" size="1.27" layer="25">>NAME</text>
<text x="-8.75" y="-5.15" size="1.27" layer="27">>VALUE</text>
</package>
<package name="R1218">
<description><b>CRCW1218 Thick Film, Rectangular Chip Resistors</b><p>
Source: path_to_url .. dcrcw.pdf</description>
<wire x1="-0.913" y1="-2.219" x2="0.939" y2="-2.219" width="0.1524" layer="21"/>
<wire x1="0.913" y1="2.219" x2="-0.939" y2="2.219" width="0.1524" layer="21"/>
<smd name="1" x="-1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
<smd name="2" x="1.475" y="0" dx="1.05" dy="4.9" layer="1"/>
<text x="-2.54" y="2.54" size="1.27" layer="25">>NAME</text>
<text x="-2.54" y="-3.81" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.651" y1="-2.3" x2="-0.9009" y2="2.3" layer="21"/>
<rectangle x1="0.9144" y1="-2.3" x2="1.6645" y2="2.3" layer="21"/>
</package>
<package name="1812X7R">
<description><b>Chip Monolithic Ceramic Capacitors</b> Medium Voltage High Capacitance for General Use<p>
Source: path_to_url .. GRM43DR72E224KW01.pdf</description>
<wire x1="-1.1" y1="1.5" x2="1.1" y2="1.5" width="0.2032" layer="21"/>
<wire x1="1.1" y1="-1.5" x2="-1.1" y2="-1.5" width="0.2032" layer="21"/>
<wire x1="-0.6" y1="1.5" x2="0.6" y2="1.5" width="0.2032" layer="21"/>
<wire x1="0.6" y1="-1.5" x2="-0.6" y2="-1.5" width="0.2032" layer="21"/>
<smd name="1" x="-1.425" y="0" dx="0.8" dy="3.5" layer="1"/>
<smd name="2" x="1.425" y="0" dx="0.8" dy="3.5" layer="1" rot="R180"/>
<text x="-1.9456" y="1.9958" size="1.27" layer="25">>NAME</text>
<text x="-1.9456" y="-3.7738" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.4" y1="-1.6" x2="-1.1" y2="1.6" layer="21"/>
<rectangle x1="1.1" y1="-1.6" x2="1.4" y2="1.6" layer="21" rot="R180"/>
</package>
<package name="C0402">
<description><b>CAPACITOR</b></description>
<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="21"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="21"/>
<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="21"/>
<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="21"/>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
</package>
<package name="C0504">
<description><b>CAPACITOR</b></description>
<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="21"/>
<wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="21"/>
<smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
<smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
<text x="-0.635" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="21"/>
<rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="21"/>
<rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
</package>
<package name="C0603">
<description><b>CAPACITOR</b></description>
<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="21"/>
<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="21"/>
<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="21"/>
<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="21"/>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
</package>
<package name="C0805">
<description><b>CAPACITOR</b><p></description>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="21"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="21"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<smd name="1" x="-0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
<smd name="2" x="0.95" y="0" dx="1.3" dy="1.5" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="21"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="21"/>
<rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
</package>
<package name="C1206">
<description><b>CAPACITOR</b></description>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="21"/>
<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="21"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="21"/>
<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="21"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
<package name="C1210">
<description><b>CAPACITOR</b></description>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="21"/>
<wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="21"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="21"/>
<rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="21"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
<package name="C1310">
<description><b>CAPACITOR</b></description>
<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="-0.294" y1="0.559" x2="0.294" y2="0.559" width="0.1016" layer="21"/>
<wire x1="-0.294" y1="-0.559" x2="0.294" y2="-0.559" width="0.1016" layer="21"/>
<smd name="1" x="-0.7" y="0" dx="1" dy="1.3" layer="1"/>
<smd name="2" x="0.7" y="0" dx="1" dy="1.3" layer="1"/>
<text x="-0.635" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.6604" y1="-0.6223" x2="-0.2804" y2="0.6276" layer="21"/>
<rectangle x1="0.2794" y1="-0.6223" x2="0.6594" y2="0.6276" layer="21"/>
<rectangle x1="-0.1001" y1="-0.3" x2="0.1001" y2="0.3" layer="35"/>
</package>
<package name="C1608">
<description><b>CAPACITOR</b></description>
<wire x1="-1.473" y1="0.983" x2="1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.983" x2="1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.983" x2="-1.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.983" x2="-1.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="-0.356" y1="0.432" x2="0.356" y2="0.432" width="0.1016" layer="21"/>
<wire x1="-0.356" y1="-0.419" x2="0.356" y2="-0.419" width="0.1016" layer="21"/>
<smd name="1" x="-0.85" y="0" dx="1.1" dy="1" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.1" dy="1" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.8382" y1="-0.4699" x2="-0.3381" y2="0.4801" layer="21"/>
<rectangle x1="0.3302" y1="-0.4699" x2="0.8303" y2="0.4801" layer="21"/>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
</package>
<package name="C1812">
<description><b>CAPACITOR</b></description>
<wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="21"/>
<wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="21"/>
<wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
<smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
<smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
<text x="-1.905" y="2.54" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.81" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="21"/>
<rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="21"/>
<rectangle x1="-0.3" y1="-0.4001" x2="0.3" y2="0.4001" layer="35"/>
</package>
<package name="C1825">
<description><b>CAPACITOR</b></description>
<wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
<wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
<wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
<wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="21"/>
<wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="21"/>
<wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
<smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
<text x="-1.905" y="3.81" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-5.08" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="21"/>
<rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="21"/>
<rectangle x1="-0.7" y1="-0.7" x2="0.7" y2="0.7" layer="35"/>
</package>
<package name="C2012">
<description><b>CAPACITOR</b></description>
<wire x1="-1.973" y1="0.983" x2="1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="0.983" x2="1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="1.973" y1="-0.983" x2="-1.973" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-1.973" y1="-0.983" x2="-1.973" y2="0.983" width="0.0508" layer="39"/>
<wire x1="-0.381" y1="0.66" x2="0.381" y2="0.66" width="0.1016" layer="21"/>
<wire x1="-0.356" y1="-0.66" x2="0.381" y2="-0.66" width="0.1016" layer="21"/>
<smd name="1" x="-0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
<smd name="2" x="0.85" y="0" dx="1.3" dy="1.5" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.0922" y1="-0.7239" x2="-0.3421" y2="0.7262" layer="21"/>
<rectangle x1="0.3556" y1="-0.7239" x2="1.1057" y2="0.7262" layer="21"/>
<rectangle x1="-0.1001" y1="-0.4001" x2="0.1001" y2="0.4001" layer="35"/>
</package>
<package name="C3216">
<description><b>CAPACITOR</b></description>
<wire x1="-2.473" y1="0.983" x2="2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-0.983" x2="-2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-0.983" x2="-2.473" y2="0.983" width="0.0508" layer="39"/>
<wire x1="2.473" y1="0.983" x2="2.473" y2="-0.983" width="0.0508" layer="39"/>
<wire x1="-0.965" y1="0.787" x2="0.965" y2="0.787" width="0.1016" layer="21"/>
<wire x1="-0.965" y1="-0.787" x2="0.965" y2="-0.787" width="0.1016" layer="21"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="1.8" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-0.8509" x2="-0.9517" y2="0.8491" layer="21"/>
<rectangle x1="0.9517" y1="-0.8491" x2="1.7018" y2="0.8509" layer="21"/>
<rectangle x1="-0.3" y1="-0.5001" x2="0.3" y2="0.5001" layer="35"/>
</package>
<package name="C3225">
<description><b>CAPACITOR</b></description>
<wire x1="-2.473" y1="1.483" x2="2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="2.473" y1="-1.483" x2="-2.473" y2="-1.483" width="0.0508" layer="39"/>
<wire x1="-2.473" y1="-1.483" x2="-2.473" y2="1.483" width="0.0508" layer="39"/>
<wire x1="-0.9652" y1="1.2446" x2="0.9652" y2="1.2446" width="0.1016" layer="21"/>
<wire x1="-0.9652" y1="-1.2446" x2="0.9652" y2="-1.2446" width="0.1016" layer="21"/>
<wire x1="2.473" y1="1.483" x2="2.473" y2="-1.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<smd name="2" x="1.4" y="0" dx="1.6" dy="2.7" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.7018" y1="-1.2954" x2="-0.9517" y2="1.3045" layer="21"/>
<rectangle x1="0.9517" y1="-1.3045" x2="1.7018" y2="1.2954" layer="21"/>
<rectangle x1="-0.1999" y1="-0.5001" x2="0.1999" y2="0.5001" layer="35"/>
</package>
<package name="C4532">
<description><b>CAPACITOR</b></description>
<wire x1="-2.973" y1="1.983" x2="2.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="2.973" y1="-1.983" x2="-2.973" y2="-1.983" width="0.0508" layer="39"/>
<wire x1="-2.973" y1="-1.983" x2="-2.973" y2="1.983" width="0.0508" layer="39"/>
<wire x1="-1.4732" y1="1.6002" x2="1.4732" y2="1.6002" width="0.1016" layer="21"/>
<wire x1="-1.4478" y1="-1.6002" x2="1.4732" y2="-1.6002" width="0.1016" layer="21"/>
<wire x1="2.973" y1="1.983" x2="2.973" y2="-1.983" width="0.0508" layer="39"/>
<smd name="1" x="-1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
<smd name="2" x="1.95" y="0" dx="1.9" dy="3.4" layer="1"/>
<text x="-1.905" y="2.54" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.81" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.3876" y1="-1.651" x2="-1.4376" y2="1.649" layer="21"/>
<rectangle x1="1.4478" y1="-1.651" x2="2.3978" y2="1.649" layer="21"/>
<rectangle x1="-0.4001" y1="-0.7" x2="0.4001" y2="0.7" layer="35"/>
</package>
<package name="C4564">
<description><b>CAPACITOR</b></description>
<wire x1="-2.973" y1="3.483" x2="2.973" y2="3.483" width="0.0508" layer="39"/>
<wire x1="2.973" y1="-3.483" x2="-2.973" y2="-3.483" width="0.0508" layer="39"/>
<wire x1="-2.973" y1="-3.483" x2="-2.973" y2="3.483" width="0.0508" layer="39"/>
<wire x1="-1.4986" y1="3.2766" x2="1.4732" y2="3.2766" width="0.1016" layer="21"/>
<wire x1="-1.4732" y1="-3.2766" x2="1.4986" y2="-3.2766" width="0.1016" layer="21"/>
<wire x1="2.973" y1="3.483" x2="2.973" y2="-3.483" width="0.0508" layer="39"/>
<smd name="1" x="-1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
<smd name="2" x="1.95" y="0" dx="1.9" dy="6.8" layer="1"/>
<text x="-1.905" y="3.81" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-5.08" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.413" y1="-3.3528" x2="-1.463" y2="3.3472" layer="21"/>
<rectangle x1="1.4478" y1="-3.3528" x2="2.3978" y2="3.3472" layer="21"/>
<rectangle x1="-0.5001" y1="-1" x2="0.5001" y2="1" layer="35"/>
</package>
<package name="C025-024X044">
<description><b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.4 x 4.4 mm</description>
<wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
<wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
<wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
<wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-1.778" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.778" y="-2.667" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025-025X050">
<description><b>CAPACITOR</b><p>
grid 2.5 mm, outline 2.5 x 5 mm</description>
<wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="1.524" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-2.794" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025-030X050">
<description><b>CAPACITOR</b><p>
grid 2.5 mm, outline 3 x 5 mm</description>
<wire x1="-2.159" y1="1.524" x2="2.159" y2="1.524" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-1.524" x2="-2.159" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.27" x2="2.413" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.27" x2="-2.413" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="2.159" y1="1.524" x2="2.413" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="1.27" x2="-2.159" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-1.524" x2="2.413" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-1.27" x2="-2.159" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-3.048" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025-040X050">
<description><b>CAPACITOR</b><p>
grid 2.5 mm, outline 4 x 5 mm</description>
<wire x1="-2.159" y1="1.905" x2="2.159" y2="1.905" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-1.905" x2="-2.159" y2="-1.905" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.651" x2="2.413" y2="-1.651" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.651" x2="-2.413" y2="-1.651" width="0.1524" layer="21"/>
<wire x1="2.159" y1="1.905" x2="2.413" y2="1.651" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="1.651" x2="-2.159" y2="1.905" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-1.905" x2="2.413" y2="-1.651" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-1.651" x2="-2.159" y2="-1.905" width="0.1524" layer="21" curve="90"/>
<wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-3.429" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025-050X050">
<description><b>CAPACITOR</b><p>
grid 2.5 mm, outline 5 x 5 mm</description>
<wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="2.413" y1="2.032" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
<wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="2.54" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025-060X050">
<description><b>CAPACITOR</b><p>
grid 2.5 mm, outline 6 x 5 mm</description>
<wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="2.413" y1="2.54" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
<wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="3.048" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.032" y="-2.413" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025_050-024X070">
<description><b>CAPACITOR</b><p>
grid 2.5 mm + 5 mm, outline 2.4 x 7 mm</description>
<wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
<wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="-4.191" y1="-1.143" x2="-3.9624" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="-4.191" y1="1.143" x2="-3.9624" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-4.699" y1="-0.635" x2="-4.191" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
<wire x1="-4.699" y1="0.635" x2="-4.191" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-4.699" y1="-0.635" x2="-4.699" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="1.143" x2="-2.5654" y2="1.143" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-1.143" x2="-2.5654" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0.762" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
<wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="3" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.81" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.81" y="-2.667" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025_050-025X075">
<description><b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 2.5 x 7.5 mm</description>
<wire x1="-2.159" y1="1.27" x2="2.159" y2="1.27" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-1.27" x2="-2.159" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.016" x2="-2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.159" y1="1.27" x2="2.413" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="1.016" x2="-2.159" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-1.27" x2="2.413" y2="-1.016" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-1.016" x2="-2.159" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<wire x1="4.953" y1="1.016" x2="4.953" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="4.699" y1="1.27" x2="4.953" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="-1.27" x2="4.953" y2="-1.016" width="0.1524" layer="21" curve="90"/>
<wire x1="2.794" y1="1.27" x2="4.699" y2="1.27" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-1.27" x2="2.794" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.016" x2="2.413" y2="0.762" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-0.762" x2="2.413" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="2.413" y1="0.254" x2="2.413" y2="-0.254" width="0.1524" layer="21"/>
<wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="21"/>
<wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
<wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="21"/>
<wire x1="0.762" y1="0" x2="0.381" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.159" y="1.651" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.159" y="-2.794" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025_050-035X075">
<description><b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 3.5 x 7.5 mm</description>
<wire x1="-2.159" y1="1.778" x2="2.159" y2="1.778" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-1.778" x2="-2.159" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="1.524" x2="-2.413" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="2.159" y1="1.778" x2="2.413" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="1.524" x2="-2.159" y2="1.778" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-1.778" x2="2.413" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-1.524" x2="-2.159" y2="-1.778" width="0.1524" layer="21" curve="90"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<wire x1="4.953" y1="1.524" x2="4.953" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="4.699" y1="1.778" x2="4.953" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="-1.778" x2="4.953" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="2.794" y1="1.778" x2="4.699" y2="1.778" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-1.778" x2="2.794" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="2.413" y1="1.524" x2="2.413" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.016" x2="2.413" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="2.413" y1="0.508" x2="2.413" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="21"/>
<wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
<wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="21"/>
<wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="2.159" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-3.302" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025_050-045X075">
<description><b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 4.5 x 7.5 mm</description>
<wire x1="-2.159" y1="2.286" x2="2.159" y2="2.286" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-2.286" x2="-2.159" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="2.032" x2="-2.413" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="2.159" y1="2.286" x2="2.413" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="2.032" x2="-2.159" y2="2.286" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-2.286" x2="2.413" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-2.032" x2="-2.159" y2="-2.286" width="0.1524" layer="21" curve="90"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<wire x1="4.953" y1="2.032" x2="4.953" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="4.699" y1="2.286" x2="4.953" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="-2.286" x2="4.953" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="2.794" y1="2.286" x2="4.699" y2="2.286" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-2.286" x2="2.794" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="2.413" y1="2.032" x2="2.413" y2="1.397" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-1.397" x2="2.413" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
<wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
<wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="21"/>
<wire x1="2.286" y1="0" x2="1.778" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="2.667" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.286" y="-3.81" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C025_050-055X075">
<description><b>CAPACITOR</b><p>
grid 2.5 + 5 mm, outline 5.5 x 7.5 mm</description>
<wire x1="-2.159" y1="2.794" x2="2.159" y2="2.794" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-2.794" x2="-2.159" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="-2.413" y1="2.54" x2="-2.413" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="2.159" y1="2.794" x2="2.413" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.413" y1="2.54" x2="-2.159" y2="2.794" width="0.1524" layer="21" curve="-90"/>
<wire x1="2.159" y1="-2.794" x2="2.413" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.413" y1="-2.54" x2="-2.159" y2="-2.794" width="0.1524" layer="21" curve="90"/>
<wire x1="0.381" y1="0" x2="0.254" y2="0" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="0.762" width="0.254" layer="21"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0.762" x2="-0.254" y2="0" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.254" y2="-0.762" width="0.254" layer="21"/>
<wire x1="-0.254" y1="0" x2="-0.381" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0" x2="-0.762" y2="0" width="0.1524" layer="21"/>
<wire x1="4.953" y1="2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="4.699" y1="2.794" x2="4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.699" y1="-2.794" x2="4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="2.794" y1="2.794" x2="4.699" y2="2.794" width="0.1524" layer="21"/>
<wire x1="4.699" y1="-2.794" x2="2.794" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="2.413" y1="2.54" x2="2.413" y2="2.032" width="0.1524" layer="21"/>
<wire x1="2.413" y1="-2.032" x2="2.413" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="2.413" y1="0.762" x2="2.413" y2="-0.762" width="0.1524" layer="21"/>
<wire x1="1.778" y1="0" x2="2.286" y2="0" width="0.1524" layer="21"/>
<wire x1="2.286" y1="0" x2="2.794" y2="0" width="0.1524" layer="21"/>
<wire x1="2.794" y1="0" x2="3.302" y2="0" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0" x2="0.762" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="3" x="3.81" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.286" y="3.175" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.032" y="-2.286" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-024X044">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 2.4 x 4.4 mm</description>
<wire x1="-2.159" y1="-0.635" x2="-2.159" y2="0.635" width="0.1524" layer="21"/>
<wire x1="-2.159" y1="0.635" x2="-1.651" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.159" y1="-0.635" x2="-1.651" y2="-1.143" width="0.1524" layer="21" curve="90"/>
<wire x1="1.651" y1="1.143" x2="-1.651" y2="1.143" width="0.1524" layer="21"/>
<wire x1="2.159" y1="-0.635" x2="2.159" y2="0.635" width="0.1524" layer="21"/>
<wire x1="1.651" y1="-1.143" x2="-1.651" y2="-1.143" width="0.1524" layer="21"/>
<wire x1="1.651" y1="1.143" x2="2.159" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="1.651" y1="-1.143" x2="2.159" y2="-0.635" width="0.1524" layer="21" curve="90"/>
<wire x1="-0.3048" y1="0.762" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.762" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0.762" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.762" width="0.3048" layer="21"/>
<wire x1="1.27" y1="0" x2="0.3302" y2="0" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="0" x2="-0.3048" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.159" y="1.397" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-2.159" y="-2.667" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="2.159" y1="-0.381" x2="2.54" y2="0.381" layer="21"/>
<rectangle x1="-2.54" y1="-0.381" x2="-2.159" y2="0.381" layer="21"/>
</package>
<package name="C050-025X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 2.5 x 7.5 mm</description>
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="1.016" x2="-3.683" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-1.27" x2="3.429" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-1.016" x2="3.683" y2="1.016" width="0.1524" layer="21"/>
<wire x1="3.429" y1="1.27" x2="-3.429" y2="1.27" width="0.1524" layer="21"/>
<wire x1="3.429" y1="1.27" x2="3.683" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-1.27" x2="3.683" y2="-1.016" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-1.016" x2="-3.429" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="1.016" x2="-3.429" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.429" y="1.651" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.429" y="-2.794" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-045X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 4.5 x 7.5 mm</description>
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="2.032" x2="-3.683" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-2.286" x2="3.429" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-2.032" x2="3.683" y2="2.032" width="0.1524" layer="21"/>
<wire x1="3.429" y1="2.286" x2="-3.429" y2="2.286" width="0.1524" layer="21"/>
<wire x1="3.429" y1="2.286" x2="3.683" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-2.286" x2="3.683" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-2.032" x2="-3.429" y2="-2.286" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="2.032" x2="-3.429" y2="2.286" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.556" y="2.667" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.556" y="-3.81" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-030X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 3 x 7.5 mm</description>
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="1.27" x2="-3.683" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-1.524" x2="3.429" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-1.27" x2="3.683" y2="1.27" width="0.1524" layer="21"/>
<wire x1="3.429" y1="1.524" x2="-3.429" y2="1.524" width="0.1524" layer="21"/>
<wire x1="3.429" y1="1.524" x2="3.683" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-1.524" x2="3.683" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-1.27" x2="-3.429" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="1.27" x2="-3.429" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.556" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.556" y="-3.048" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-050X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 5 x 7.5 mm</description>
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="2.286" x2="-3.683" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-2.54" x2="3.429" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-2.286" x2="3.683" y2="2.286" width="0.1524" layer="21"/>
<wire x1="3.429" y1="2.54" x2="-3.429" y2="2.54" width="0.1524" layer="21"/>
<wire x1="3.429" y1="2.54" x2="3.683" y2="2.286" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-2.54" x2="3.683" y2="-2.286" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-2.286" x2="-3.429" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="2.286" x2="-3.429" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.429" y="2.921" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-2.159" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-055X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 5.5 x 7.5 mm</description>
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="2.54" x2="-3.683" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-2.794" x2="3.429" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-2.54" x2="3.683" y2="2.54" width="0.1524" layer="21"/>
<wire x1="3.429" y1="2.794" x2="-3.429" y2="2.794" width="0.1524" layer="21"/>
<wire x1="3.429" y1="2.794" x2="3.683" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-2.794" x2="3.683" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-2.54" x2="-3.429" y2="-2.794" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="2.54" x2="-3.429" y2="2.794" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.429" y="3.175" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.302" y="-2.286" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-075X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 7.5 x 7.5 mm</description>
<wire x1="-1.524" y1="0" x2="-0.4572" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.4572" y1="0" x2="-0.4572" y2="0.762" width="0.4064" layer="21"/>
<wire x1="-0.4572" y1="0" x2="-0.4572" y2="-0.762" width="0.4064" layer="21"/>
<wire x1="0.4318" y1="0.762" x2="0.4318" y2="0" width="0.4064" layer="21"/>
<wire x1="0.4318" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.4318" y1="0" x2="0.4318" y2="-0.762" width="0.4064" layer="21"/>
<wire x1="-3.683" y1="3.429" x2="-3.683" y2="-3.429" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-3.683" x2="3.429" y2="-3.683" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-3.429" x2="3.683" y2="3.429" width="0.1524" layer="21"/>
<wire x1="3.429" y1="3.683" x2="-3.429" y2="3.683" width="0.1524" layer="21"/>
<wire x1="3.429" y1="3.683" x2="3.683" y2="3.429" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-3.683" x2="3.683" y2="-3.429" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-3.429" x2="-3.429" y2="-3.683" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="3.429" x2="-3.429" y2="3.683" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.429" y="4.064" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="-2.921" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050H075X075">
<description><b>CAPACITOR</b><p>
Horizontal, grid 5 mm, outline 7.5 x 7.5 mm</description>
<wire x1="-3.683" y1="7.112" x2="-3.683" y2="0.508" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="0.508" x2="-3.302" y2="0.508" width="0.1524" layer="21"/>
<wire x1="-3.302" y1="0.508" x2="-1.778" y2="0.508" width="0.1524" layer="21"/>
<wire x1="-1.778" y1="0.508" x2="1.778" y2="0.508" width="0.1524" layer="21"/>
<wire x1="1.778" y1="0.508" x2="3.302" y2="0.508" width="0.1524" layer="21"/>
<wire x1="3.302" y1="0.508" x2="3.683" y2="0.508" width="0.1524" layer="21"/>
<wire x1="3.683" y1="0.508" x2="3.683" y2="7.112" width="0.1524" layer="21"/>
<wire x1="3.175" y1="7.62" x2="-3.175" y2="7.62" width="0.1524" layer="21"/>
<wire x1="-0.3048" y1="2.413" x2="-0.3048" y2="1.778" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="1.778" x2="-0.3048" y2="1.143" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="1.778" x2="-1.651" y2="1.778" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="2.413" x2="0.3302" y2="1.778" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="1.778" x2="0.3302" y2="1.143" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="1.778" x2="1.651" y2="1.778" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="7.112" x2="-3.175" y2="7.62" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.175" y1="7.62" x2="3.683" y2="7.112" width="0.1524" layer="21" curve="-90"/>
<wire x1="-2.54" y1="0" x2="-2.54" y2="0.254" width="0.508" layer="21"/>
<wire x1="2.54" y1="0" x2="2.54" y2="0.254" width="0.508" layer="21"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.302" y="8.001" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.175" y="3.175" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-2.794" y1="0.127" x2="-2.286" y2="0.508" layer="21"/>
<rectangle x1="2.286" y1="0.127" x2="2.794" y2="0.508" layer="21"/>
</package>
<package name="C075-032X103">
<description><b>CAPACITOR</b><p>
grid 7.5 mm, outline 3.2 x 10.3 mm</description>
<wire x1="4.826" y1="1.524" x2="-4.826" y2="1.524" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-4.826" y1="-1.524" x2="4.826" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="5.08" y1="-1.27" x2="5.08" y2="1.27" width="0.1524" layer="21"/>
<wire x1="4.826" y1="1.524" x2="5.08" y2="1.27" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.826" y1="-1.524" x2="5.08" y2="-1.27" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.08" y1="-1.27" x2="-4.826" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.08" y1="1.27" x2="-4.826" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="0.508" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="0" x2="-0.508" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.508" y1="0.889" x2="-0.508" y2="0" width="0.4064" layer="21"/>
<wire x1="-0.508" y1="0" x2="-0.508" y2="-0.889" width="0.4064" layer="21"/>
<wire x1="0.508" y1="0.889" x2="0.508" y2="0" width="0.4064" layer="21"/>
<wire x1="0.508" y1="0" x2="0.508" y2="-0.889" width="0.4064" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
<text x="-4.826" y="1.905" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-4.826" y="-3.048" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C075-042X103">
<description><b>CAPACITOR</b><p>
grid 7.5 mm, outline 4.2 x 10.3 mm</description>
<wire x1="4.826" y1="2.032" x2="-4.826" y2="2.032" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="1.778" x2="-5.08" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="-4.826" y1="-2.032" x2="4.826" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="5.08" y1="-1.778" x2="5.08" y2="1.778" width="0.1524" layer="21"/>
<wire x1="4.826" y1="2.032" x2="5.08" y2="1.778" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.826" y1="-2.032" x2="5.08" y2="-1.778" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.08" y1="-1.778" x2="-4.826" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.08" y1="1.778" x2="-4.826" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
<text x="-4.699" y="2.413" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.635" y="-1.651" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C075-052X106">
<description><b>CAPACITOR</b><p>
grid 7.5 mm, outline 5.2 x 10.6 mm</description>
<wire x1="4.953" y1="2.54" x2="-4.953" y2="2.54" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="2.286" x2="-5.207" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="-4.953" y1="-2.54" x2="4.953" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="5.207" y1="-2.286" x2="5.207" y2="2.286" width="0.1524" layer="21"/>
<wire x1="4.953" y1="2.54" x2="5.207" y2="2.286" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.953" y1="-2.54" x2="5.207" y2="-2.286" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.207" y1="-2.286" x2="-4.953" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.207" y1="2.286" x2="-4.953" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
<text x="-4.826" y="2.921" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.635" y="-2.032" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C102-043X133">
<description><b>CAPACITOR</b><p>
grid 10.2 mm, outline 4.3 x 13.3 mm</description>
<wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
<wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-6.096" y1="2.032" x2="6.096" y2="2.032" width="0.1524" layer="21"/>
<wire x1="6.604" y1="1.524" x2="6.604" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="6.096" y1="-2.032" x2="-6.096" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="-6.604" y1="-1.524" x2="-6.604" y2="1.524" width="0.1524" layer="21"/>
<wire x1="6.096" y1="2.032" x2="6.604" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.096" y1="-2.032" x2="6.604" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="-1.524" x2="-6.096" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="1.524" x2="-6.096" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
<text x="-6.096" y="2.413" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.524" y="-1.651" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C102-054X133">
<description><b>CAPACITOR</b><p>
grid 10.2 mm, outline 5.4 x 13.3 mm</description>
<wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
<wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-6.096" y1="2.54" x2="6.096" y2="2.54" width="0.1524" layer="21"/>
<wire x1="6.604" y1="2.032" x2="6.604" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="6.096" y1="-2.54" x2="-6.096" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="-6.604" y1="-2.032" x2="-6.604" y2="2.032" width="0.1524" layer="21"/>
<wire x1="6.096" y1="2.54" x2="6.604" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.096" y1="-2.54" x2="6.604" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="-2.032" x2="-6.096" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="2.032" x2="-6.096" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
<text x="-6.096" y="2.921" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.524" y="-1.905" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C102-064X133">
<description><b>CAPACITOR</b><p>
grid 10.2 mm, outline 6.4 x 13.3 mm</description>
<wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
<wire x1="3.81" y1="0" x2="-2.286" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-3.81" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-6.096" y1="3.048" x2="6.096" y2="3.048" width="0.1524" layer="21"/>
<wire x1="6.604" y1="2.54" x2="6.604" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="6.096" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
<wire x1="6.096" y1="3.048" x2="6.604" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.096" y1="-3.048" x2="6.604" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
<text x="-6.096" y="3.429" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.524" y="-2.032" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C102_152-062X184">
<description><b>CAPACITOR</b><p>
grid 10.2 mm + 15.2 mm, outline 6.2 x 18.4 mm</description>
<wire x1="-2.286" y1="1.27" x2="-2.286" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.286" y1="0" x2="-2.286" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-3.175" y1="1.27" x2="-3.175" y2="0" width="0.4064" layer="21"/>
<wire x1="-3.175" y1="0" x2="-3.175" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-3.683" y1="0" x2="-3.175" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="0" x2="3.683" y2="0" width="0.1524" layer="21"/>
<wire x1="6.477" y1="0" x2="8.636" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.096" y1="3.048" x2="6.223" y2="3.048" width="0.1524" layer="21"/>
<wire x1="6.223" y1="-3.048" x2="-6.096" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-6.604" y1="-2.54" x2="-6.604" y2="2.54" width="0.1524" layer="21"/>
<wire x1="6.223" y1="3.048" x2="6.731" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.223" y1="-3.048" x2="6.731" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="-2.54" x2="-6.096" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-6.604" y1="2.54" x2="-6.096" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="6.731" y1="2.54" x2="6.731" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="11.176" y1="3.048" x2="11.684" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="11.176" y1="-3.048" x2="11.684" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="11.176" y1="-3.048" x2="7.112" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="7.112" y1="3.048" x2="11.176" y2="3.048" width="0.1524" layer="21"/>
<wire x1="11.684" y1="2.54" x2="11.684" y2="-2.54" width="0.1524" layer="21"/>
<pad name="1" x="-5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="5.08" y="0" drill="1.016" shape="octagon"/>
<pad name="3" x="10.033" y="0" drill="1.016" shape="octagon"/>
<text x="-5.969" y="3.429" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.524" y="-2.286" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C150-054X183">
<description><b>CAPACITOR</b><p>
grid 15 mm, outline 5.4 x 18.3 mm</description>
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
<wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="9.017" y1="2.032" x2="9.017" y2="-2.032" width="0.1524" layer="21"/>
<wire x1="8.509" y1="-2.54" x2="-8.509" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="-9.017" y1="-2.032" x2="-9.017" y2="2.032" width="0.1524" layer="21"/>
<wire x1="-8.509" y1="2.54" x2="8.509" y2="2.54" width="0.1524" layer="21"/>
<wire x1="8.509" y1="2.54" x2="9.017" y2="2.032" width="0.1524" layer="21" curve="-90"/>
<wire x1="8.509" y1="-2.54" x2="9.017" y2="-2.032" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="-2.032" x2="-8.509" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="2.032" x2="-8.509" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
<text x="-8.382" y="2.921" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C150-064X183">
<description><b>CAPACITOR</b><p>
grid 15 mm, outline 6.4 x 18.3 mm</description>
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
<wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="9.017" y1="2.54" x2="9.017" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="8.509" y1="-3.048" x2="-8.509" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-9.017" y1="-2.54" x2="-9.017" y2="2.54" width="0.1524" layer="21"/>
<wire x1="-8.509" y1="3.048" x2="8.509" y2="3.048" width="0.1524" layer="21"/>
<wire x1="8.509" y1="3.048" x2="9.017" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="8.509" y1="-3.048" x2="9.017" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="-2.54" x2="-8.509" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="2.54" x2="-8.509" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
<text x="-8.509" y="3.429" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.429" y="-2.032" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C150-072X183">
<description><b>CAPACITOR</b><p>
grid 15 mm, outline 7.2 x 18.3 mm</description>
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
<wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="9.017" y1="3.048" x2="9.017" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="8.509" y1="-3.556" x2="-8.509" y2="-3.556" width="0.1524" layer="21"/>
<wire x1="-9.017" y1="-3.048" x2="-9.017" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-8.509" y1="3.556" x2="8.509" y2="3.556" width="0.1524" layer="21"/>
<wire x1="8.509" y1="3.556" x2="9.017" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="8.509" y1="-3.556" x2="9.017" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="-3.048" x2="-8.509" y2="-3.556" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="3.048" x2="-8.509" y2="3.556" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
<text x="-8.509" y="3.937" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.429" y="-2.286" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C150-084X183">
<description><b>CAPACITOR</b><p>
grid 15 mm, outline 8.4 x 18.3 mm</description>
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
<wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="9.017" y1="3.556" x2="9.017" y2="-3.556" width="0.1524" layer="21"/>
<wire x1="8.509" y1="-4.064" x2="-8.509" y2="-4.064" width="0.1524" layer="21"/>
<wire x1="-9.017" y1="-3.556" x2="-9.017" y2="3.556" width="0.1524" layer="21"/>
<wire x1="-8.509" y1="4.064" x2="8.509" y2="4.064" width="0.1524" layer="21"/>
<wire x1="8.509" y1="4.064" x2="9.017" y2="3.556" width="0.1524" layer="21" curve="-90"/>
<wire x1="8.509" y1="-4.064" x2="9.017" y2="-3.556" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="-3.556" x2="-8.509" y2="-4.064" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="3.556" x2="-8.509" y2="4.064" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
<text x="-8.509" y="4.445" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C150-091X182">
<description><b>CAPACITOR</b><p>
grid 15 mm, outline 9.1 x 18.2 mm</description>
<wire x1="-5.08" y1="1.27" x2="-5.08" y2="0" width="0.4064" layer="21"/>
<wire x1="-5.08" y1="0" x2="-5.08" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="1.27" x2="-4.191" y2="0" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="-4.191" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-4.191" y1="0" x2="6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="0" x2="-6.096" y2="0" width="0.1524" layer="21"/>
<wire x1="9.017" y1="3.937" x2="9.017" y2="-3.937" width="0.1524" layer="21"/>
<wire x1="8.509" y1="-4.445" x2="-8.509" y2="-4.445" width="0.1524" layer="21"/>
<wire x1="-9.017" y1="-3.937" x2="-9.017" y2="3.937" width="0.1524" layer="21"/>
<wire x1="-8.509" y1="4.445" x2="8.509" y2="4.445" width="0.1524" layer="21"/>
<wire x1="8.509" y1="4.445" x2="9.017" y2="3.937" width="0.1524" layer="21" curve="-90"/>
<wire x1="8.509" y1="-4.445" x2="9.017" y2="-3.937" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="-3.937" x2="-8.509" y2="-4.445" width="0.1524" layer="21" curve="90"/>
<wire x1="-9.017" y1="3.937" x2="-8.509" y2="4.445" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-7.493" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="7.493" y="0" drill="1.016" shape="octagon"/>
<text x="-8.509" y="4.826" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.429" y="-2.54" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C225-062X268">
<description><b>CAPACITOR</b><p>
grid 22.5 mm, outline 6.2 x 26.8 mm</description>
<wire x1="-12.827" y1="3.048" x2="12.827" y2="3.048" width="0.1524" layer="21"/>
<wire x1="13.335" y1="2.54" x2="13.335" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="12.827" y1="-3.048" x2="-12.827" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-13.335" y1="-2.54" x2="-13.335" y2="2.54" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="12.827" y1="3.048" x2="13.335" y2="2.54" width="0.1524" layer="21" curve="-90"/>
<wire x1="12.827" y1="-3.048" x2="13.335" y2="-2.54" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="-2.54" x2="-12.827" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="2.54" x2="-12.827" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
<text x="-12.7" y="3.429" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C225-074X268">
<description><b>CAPACITOR</b><p>
grid 22.5 mm, outline 7.4 x 26.8 mm</description>
<wire x1="-12.827" y1="3.556" x2="12.827" y2="3.556" width="0.1524" layer="21"/>
<wire x1="13.335" y1="3.048" x2="13.335" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="12.827" y1="-3.556" x2="-12.827" y2="-3.556" width="0.1524" layer="21"/>
<wire x1="-13.335" y1="-3.048" x2="-13.335" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="12.827" y1="3.556" x2="13.335" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="12.827" y1="-3.556" x2="13.335" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="-3.048" x2="-12.827" y2="-3.556" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="3.048" x2="-12.827" y2="3.556" width="0.1524" layer="21" curve="-90"/>
<wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
<text x="-12.827" y="3.937" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C225-087X268">
<description><b>CAPACITOR</b><p>
grid 22.5 mm, outline 8.7 x 26.8 mm</description>
<wire x1="-12.827" y1="4.318" x2="12.827" y2="4.318" width="0.1524" layer="21"/>
<wire x1="13.335" y1="3.81" x2="13.335" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="12.827" y1="-4.318" x2="-12.827" y2="-4.318" width="0.1524" layer="21"/>
<wire x1="-13.335" y1="-3.81" x2="-13.335" y2="3.81" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="12.827" y1="4.318" x2="13.335" y2="3.81" width="0.1524" layer="21" curve="-90"/>
<wire x1="12.827" y1="-4.318" x2="13.335" y2="-3.81" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="-3.81" x2="-12.827" y2="-4.318" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="3.81" x2="-12.827" y2="4.318" width="0.1524" layer="21" curve="-90"/>
<wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
<text x="-12.827" y="4.699" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C225-108X268">
<description><b>CAPACITOR</b><p>
grid 22.5 mm, outline 10.8 x 26.8 mm</description>
<wire x1="-12.827" y1="5.334" x2="12.827" y2="5.334" width="0.1524" layer="21"/>
<wire x1="13.335" y1="4.826" x2="13.335" y2="-4.826" width="0.1524" layer="21"/>
<wire x1="12.827" y1="-5.334" x2="-12.827" y2="-5.334" width="0.1524" layer="21"/>
<wire x1="-13.335" y1="-4.826" x2="-13.335" y2="4.826" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="12.827" y1="5.334" x2="13.335" y2="4.826" width="0.1524" layer="21" curve="-90"/>
<wire x1="12.827" y1="-5.334" x2="13.335" y2="-4.826" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="-4.826" x2="-12.827" y2="-5.334" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="4.826" x2="-12.827" y2="5.334" width="0.1524" layer="21" curve="-90"/>
<wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
<text x="-12.954" y="5.715" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C225-113X268">
<description><b>CAPACITOR</b><p>
grid 22.5 mm, outline 11.3 x 26.8 mm</description>
<wire x1="-12.827" y1="5.588" x2="12.827" y2="5.588" width="0.1524" layer="21"/>
<wire x1="13.335" y1="5.08" x2="13.335" y2="-5.08" width="0.1524" layer="21"/>
<wire x1="12.827" y1="-5.588" x2="-12.827" y2="-5.588" width="0.1524" layer="21"/>
<wire x1="-13.335" y1="-5.08" x2="-13.335" y2="5.08" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="12.827" y1="5.588" x2="13.335" y2="5.08" width="0.1524" layer="21" curve="-90"/>
<wire x1="12.827" y1="-5.588" x2="13.335" y2="-5.08" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="-5.08" x2="-12.827" y2="-5.588" width="0.1524" layer="21" curve="90"/>
<wire x1="-13.335" y1="5.08" x2="-12.827" y2="5.588" width="0.1524" layer="21" curve="-90"/>
<wire x1="-9.652" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="9.652" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-11.303" y="0" drill="1.016" shape="octagon"/>
<pad name="2" x="11.303" y="0" drill="1.016" shape="octagon"/>
<text x="-12.954" y="5.969" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C275-093X316">
<description><b>CAPACITOR</b><p>
grid 27.5 mm, outline 9.3 x 31.6 mm</description>
<wire x1="-15.24" y1="4.572" x2="15.24" y2="4.572" width="0.1524" layer="21"/>
<wire x1="15.748" y1="4.064" x2="15.748" y2="-4.064" width="0.1524" layer="21"/>
<wire x1="15.24" y1="-4.572" x2="-15.24" y2="-4.572" width="0.1524" layer="21"/>
<wire x1="-15.748" y1="-4.064" x2="-15.748" y2="4.064" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="15.24" y1="4.572" x2="15.748" y2="4.064" width="0.1524" layer="21" curve="-90"/>
<wire x1="15.24" y1="-4.572" x2="15.748" y2="-4.064" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="-4.064" x2="-15.24" y2="-4.572" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="4.064" x2="-15.24" y2="4.572" width="0.1524" layer="21" curve="-90"/>
<wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
<text x="-15.24" y="4.953" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C275-113X316">
<description><b>CAPACITOR</b><p>
grid 27.5 mm, outline 11.3 x 31.6 mm</description>
<wire x1="-15.24" y1="5.588" x2="15.24" y2="5.588" width="0.1524" layer="21"/>
<wire x1="15.748" y1="5.08" x2="15.748" y2="-5.08" width="0.1524" layer="21"/>
<wire x1="15.24" y1="-5.588" x2="-15.24" y2="-5.588" width="0.1524" layer="21"/>
<wire x1="-15.748" y1="-5.08" x2="-15.748" y2="5.08" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="15.24" y1="5.588" x2="15.748" y2="5.08" width="0.1524" layer="21" curve="-90"/>
<wire x1="15.24" y1="-5.588" x2="15.748" y2="-5.08" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="-5.08" x2="-15.24" y2="-5.588" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="5.08" x2="-15.24" y2="5.588" width="0.1524" layer="21" curve="-90"/>
<wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
<text x="-15.24" y="5.969" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C275-134X316">
<description><b>CAPACITOR</b><p>
grid 27.5 mm, outline 13.4 x 31.6 mm</description>
<wire x1="-15.24" y1="6.604" x2="15.24" y2="6.604" width="0.1524" layer="21"/>
<wire x1="15.748" y1="6.096" x2="15.748" y2="-6.096" width="0.1524" layer="21"/>
<wire x1="15.24" y1="-6.604" x2="-15.24" y2="-6.604" width="0.1524" layer="21"/>
<wire x1="-15.748" y1="-6.096" x2="-15.748" y2="6.096" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="15.24" y1="6.604" x2="15.748" y2="6.096" width="0.1524" layer="21" curve="-90"/>
<wire x1="15.24" y1="-6.604" x2="15.748" y2="-6.096" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="-6.096" x2="-15.24" y2="-6.604" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="6.096" x2="-15.24" y2="6.604" width="0.1524" layer="21" curve="-90"/>
<wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
<text x="-15.24" y="6.985" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C275-205X316">
<description><b>CAPACITOR</b><p>
grid 27.5 mm, outline 20.5 x 31.6 mm</description>
<wire x1="-15.24" y1="10.16" x2="15.24" y2="10.16" width="0.1524" layer="21"/>
<wire x1="15.748" y1="9.652" x2="15.748" y2="-9.652" width="0.1524" layer="21"/>
<wire x1="15.24" y1="-10.16" x2="-15.24" y2="-10.16" width="0.1524" layer="21"/>
<wire x1="-15.748" y1="-9.652" x2="-15.748" y2="9.652" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="15.24" y1="10.16" x2="15.748" y2="9.652" width="0.1524" layer="21" curve="-90"/>
<wire x1="15.24" y1="-10.16" x2="15.748" y2="-9.652" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="-9.652" x2="-15.24" y2="-10.16" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="9.652" x2="-15.24" y2="10.16" width="0.1524" layer="21" curve="-90"/>
<wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
<text x="-15.24" y="10.541" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-4.318" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C325-137X374">
<description><b>CAPACITOR</b><p>
grid 32.5 mm, outline 13.7 x 37.4 mm</description>
<wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
<wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
<wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
<wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
<wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="18.542" y1="6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
<wire x1="-18.542" y1="6.731" x2="-18.542" y2="-6.731" width="0.1524" layer="21"/>
<wire x1="-18.542" y1="-6.731" x2="18.542" y2="-6.731" width="0.1524" layer="21"/>
<wire x1="18.542" y1="6.731" x2="-18.542" y2="6.731" width="0.1524" layer="21"/>
<pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
<text x="-18.2372" y="7.0612" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C325-162X374">
<description><b>CAPACITOR</b><p>
grid 32.5 mm, outline 16.2 x 37.4 mm</description>
<wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
<wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
<wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
<wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
<wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="18.542" y1="8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
<wire x1="-18.542" y1="8.001" x2="-18.542" y2="-8.001" width="0.1524" layer="21"/>
<wire x1="-18.542" y1="-8.001" x2="18.542" y2="-8.001" width="0.1524" layer="21"/>
<wire x1="18.542" y1="8.001" x2="-18.542" y2="8.001" width="0.1524" layer="21"/>
<pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
<text x="-18.3642" y="8.3312" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C325-182X374">
<description><b>CAPACITOR</b><p>
grid 32.5 mm, outline 18.2 x 37.4 mm</description>
<wire x1="-14.2748" y1="0" x2="-12.7" y2="0" width="0.1524" layer="21"/>
<wire x1="-12.7" y1="1.905" x2="-12.7" y2="0" width="0.4064" layer="21"/>
<wire x1="-11.811" y1="1.905" x2="-11.811" y2="0" width="0.4064" layer="21"/>
<wire x1="-11.811" y1="0" x2="14.2748" y2="0" width="0.1524" layer="21"/>
<wire x1="-11.811" y1="0" x2="-11.811" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-12.7" y1="0" x2="-12.7" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="18.542" y1="9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
<wire x1="-18.542" y1="9.017" x2="-18.542" y2="-9.017" width="0.1524" layer="21"/>
<wire x1="-18.542" y1="-9.017" x2="18.542" y2="-9.017" width="0.1524" layer="21"/>
<wire x1="18.542" y1="9.017" x2="-18.542" y2="9.017" width="0.1524" layer="21"/>
<pad name="1" x="-16.256" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="16.256" y="0" drill="1.1938" shape="octagon"/>
<text x="-18.3642" y="9.3472" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-10.8458" y="-2.8702" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C375-192X418">
<description><b>CAPACITOR</b><p>
grid 37.5 mm, outline 19.2 x 41.8 mm</description>
<wire x1="-20.32" y1="8.509" x2="20.32" y2="8.509" width="0.1524" layer="21"/>
<wire x1="20.828" y1="8.001" x2="20.828" y2="-8.001" width="0.1524" layer="21"/>
<wire x1="20.32" y1="-8.509" x2="-20.32" y2="-8.509" width="0.1524" layer="21"/>
<wire x1="-20.828" y1="-8.001" x2="-20.828" y2="8.001" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="20.32" y1="8.509" x2="20.828" y2="8.001" width="0.1524" layer="21" curve="-90"/>
<wire x1="20.32" y1="-8.509" x2="20.828" y2="-8.001" width="0.1524" layer="21" curve="90"/>
<wire x1="-20.828" y1="-8.001" x2="-20.32" y2="-8.509" width="0.1524" layer="21" curve="90"/>
<wire x1="-20.828" y1="8.001" x2="-20.32" y2="8.509" width="0.1524" layer="21" curve="-90"/>
<wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
<pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
<text x="-20.447" y="8.89" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C375-203X418">
<description><b>CAPACITOR</b><p>
grid 37.5 mm, outline 20.3 x 41.8 mm</description>
<wire x1="-20.32" y1="10.16" x2="20.32" y2="10.16" width="0.1524" layer="21"/>
<wire x1="20.828" y1="9.652" x2="20.828" y2="-9.652" width="0.1524" layer="21"/>
<wire x1="20.32" y1="-10.16" x2="-20.32" y2="-10.16" width="0.1524" layer="21"/>
<wire x1="-20.828" y1="-9.652" x2="-20.828" y2="9.652" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="20.32" y1="10.16" x2="20.828" y2="9.652" width="0.1524" layer="21" curve="-90"/>
<wire x1="20.32" y1="-10.16" x2="20.828" y2="-9.652" width="0.1524" layer="21" curve="90"/>
<wire x1="-20.828" y1="-9.652" x2="-20.32" y2="-10.16" width="0.1524" layer="21" curve="90"/>
<wire x1="-20.828" y1="9.652" x2="-20.32" y2="10.16" width="0.1524" layer="21" curve="-90"/>
<wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
<pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
<text x="-20.32" y="10.541" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C050-035X075">
<description><b>CAPACITOR</b><p>
grid 5 mm, outline 3.5 x 7.5 mm</description>
<wire x1="-0.3048" y1="0.635" x2="-0.3048" y2="0" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-0.3048" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="-0.3048" y1="0" x2="-1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="0.3302" y1="0.635" x2="0.3302" y2="0" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="0.3302" y2="-0.635" width="0.3048" layer="21"/>
<wire x1="0.3302" y1="0" x2="1.524" y2="0" width="0.1524" layer="21"/>
<wire x1="-3.683" y1="1.524" x2="-3.683" y2="-1.524" width="0.1524" layer="21"/>
<wire x1="-3.429" y1="-1.778" x2="3.429" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="3.683" y1="-1.524" x2="3.683" y2="1.524" width="0.1524" layer="21"/>
<wire x1="3.429" y1="1.778" x2="-3.429" y2="1.778" width="0.1524" layer="21"/>
<wire x1="3.429" y1="1.778" x2="3.683" y2="1.524" width="0.1524" layer="21" curve="-90"/>
<wire x1="3.429" y1="-1.778" x2="3.683" y2="-1.524" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="-1.524" x2="-3.429" y2="-1.778" width="0.1524" layer="21" curve="90"/>
<wire x1="-3.683" y1="1.524" x2="-3.429" y2="1.778" width="0.1524" layer="21" curve="-90"/>
<pad name="1" x="-2.54" y="0" drill="0.8128" shape="octagon"/>
<pad name="2" x="2.54" y="0" drill="0.8128" shape="octagon"/>
<text x="-3.556" y="2.159" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.556" y="-3.429" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C375-155X418">
<description><b>CAPACITOR</b><p>
grid 37.5 mm, outline 15.5 x 41.8 mm</description>
<wire x1="-20.32" y1="7.62" x2="20.32" y2="7.62" width="0.1524" layer="21"/>
<wire x1="20.828" y1="7.112" x2="20.828" y2="-7.112" width="0.1524" layer="21"/>
<wire x1="20.32" y1="-7.62" x2="-20.32" y2="-7.62" width="0.1524" layer="21"/>
<wire x1="-20.828" y1="-7.112" x2="-20.828" y2="7.112" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="20.32" y1="7.62" x2="20.828" y2="7.112" width="0.1524" layer="21" curve="-90"/>
<wire x1="20.32" y1="-7.62" x2="20.828" y2="-7.112" width="0.1524" layer="21" curve="90"/>
<wire x1="-20.828" y1="-7.112" x2="-20.32" y2="-7.62" width="0.1524" layer="21" curve="90"/>
<wire x1="-20.828" y1="7.112" x2="-20.32" y2="7.62" width="0.1524" layer="21" curve="-90"/>
<wire x1="-16.002" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="16.002" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-18.796" y="0" drill="1.3208" shape="octagon"/>
<pad name="2" x="18.796" y="0" drill="1.3208" shape="octagon"/>
<text x="-20.447" y="8.001" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C075-063X106">
<description><b>CAPACITOR</b><p>
grid 7.5 mm, outline 6.3 x 10.6 mm</description>
<wire x1="4.953" y1="3.048" x2="-4.953" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="2.794" x2="-5.207" y2="-2.794" width="0.1524" layer="21"/>
<wire x1="-4.953" y1="-3.048" x2="4.953" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="5.207" y1="-2.794" x2="5.207" y2="2.794" width="0.1524" layer="21"/>
<wire x1="4.953" y1="3.048" x2="5.207" y2="2.794" width="0.1524" layer="21" curve="-90"/>
<wire x1="4.953" y1="-3.048" x2="5.207" y2="-2.794" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.207" y1="-2.794" x2="-4.953" y2="-3.048" width="0.1524" layer="21" curve="90"/>
<wire x1="-5.207" y1="2.794" x2="-4.953" y2="3.048" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.27" y1="0" x2="2.667" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.667" y1="0" x2="-2.159" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.159" y1="1.27" x2="-2.159" y2="0" width="0.4064" layer="21"/>
<wire x1="-2.159" y1="0" x2="-2.159" y2="-1.27" width="0.4064" layer="21"/>
<wire x1="-1.27" y1="1.27" x2="-1.27" y2="0" width="0.4064" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.27" y2="-1.27" width="0.4064" layer="21"/>
<pad name="1" x="-3.81" y="0" drill="0.9144" shape="octagon"/>
<pad name="2" x="3.81" y="0" drill="0.9144" shape="octagon"/>
<text x="-4.826" y="3.429" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-0.635" y="-2.54" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C275-154X316">
<description><b>CAPACITOR</b><p>
grid 27.5 mm, outline 15.4 x 31.6 mm</description>
<wire x1="-15.24" y1="7.62" x2="15.24" y2="7.62" width="0.1524" layer="21"/>
<wire x1="15.748" y1="7.112" x2="15.748" y2="-7.112" width="0.1524" layer="21"/>
<wire x1="15.24" y1="-7.62" x2="-15.24" y2="-7.62" width="0.1524" layer="21"/>
<wire x1="-15.748" y1="-7.112" x2="-15.748" y2="7.112" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="15.24" y1="7.62" x2="15.748" y2="7.112" width="0.1524" layer="21" curve="-90"/>
<wire x1="15.24" y1="-7.62" x2="15.748" y2="-7.112" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="-7.112" x2="-15.24" y2="-7.62" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="7.112" x2="-15.24" y2="7.62" width="0.1524" layer="21" curve="-90"/>
<wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
<text x="-15.24" y="8.001" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C275-173X316">
<description><b>CAPACITOR</b><p>
grid 27.5 mm, outline 17.3 x 31.6 mm</description>
<wire x1="-15.24" y1="8.509" x2="15.24" y2="8.509" width="0.1524" layer="21"/>
<wire x1="15.748" y1="8.001" x2="15.748" y2="-8.001" width="0.1524" layer="21"/>
<wire x1="15.24" y1="-8.509" x2="-15.24" y2="-8.509" width="0.1524" layer="21"/>
<wire x1="-15.748" y1="-8.001" x2="-15.748" y2="8.001" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="1.905" x2="-6.731" y2="0" width="0.4064" layer="21"/>
<wire x1="-6.731" y1="0" x2="-6.731" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="1.905" x2="-7.62" y2="0" width="0.4064" layer="21"/>
<wire x1="-7.62" y1="0" x2="-7.62" y2="-1.905" width="0.4064" layer="21"/>
<wire x1="15.24" y1="8.509" x2="15.748" y2="8.001" width="0.1524" layer="21" curve="-90"/>
<wire x1="15.24" y1="-8.509" x2="15.748" y2="-8.001" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="-8.001" x2="-15.24" y2="-8.509" width="0.1524" layer="21" curve="90"/>
<wire x1="-15.748" y1="8.001" x2="-15.24" y2="8.509" width="0.1524" layer="21" curve="-90"/>
<wire x1="-11.557" y1="0" x2="-7.62" y2="0" width="0.1524" layer="21"/>
<wire x1="-6.731" y1="0" x2="11.557" y2="0" width="0.1524" layer="21"/>
<pad name="1" x="-13.716" y="0" drill="1.1938" shape="octagon"/>
<pad name="2" x="13.716" y="0" drill="1.1938" shape="octagon"/>
<text x="-15.24" y="8.89" size="1.778" layer="25" ratio="10">>NAME</text>
<text x="-5.08" y="-2.54" size="1.778" layer="27" ratio="10">>VALUE</text>
</package>
<package name="C0402K">
<description><b>Ceramic Chip Capacitor KEMET 0204 reflow solder</b><p>
Metric Code Size 1005</description>
<wire x1="-0.425" y1="0.2" x2="0.425" y2="0.2" width="0.1016" layer="21"/>
<wire x1="0.425" y1="-0.2" x2="-0.425" y2="-0.2" width="0.1016" layer="21"/>
<smd name="1" x="-0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
<smd name="2" x="0.6" y="0" dx="0.925" dy="0.74" layer="1"/>
<text x="-0.5" y="0.425" size="1.016" layer="25">>NAME</text>
<text x="-0.5" y="-1.45" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-0.5" y1="-0.25" x2="-0.225" y2="0.25" layer="21"/>
<rectangle x1="0.225" y1="-0.25" x2="0.5" y2="0.25" layer="21"/>
</package>
<package name="C0603K">
<description><b>Ceramic Chip Capacitor KEMET 0603 reflow solder</b><p>
Metric Code Size 1608</description>
<wire x1="-0.725" y1="0.35" x2="0.725" y2="0.35" width="0.1016" layer="21"/>
<wire x1="0.725" y1="-0.35" x2="-0.725" y2="-0.35" width="0.1016" layer="21"/>
<smd name="1" x="-0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
<smd name="2" x="0.875" y="0" dx="1.05" dy="1.08" layer="1"/>
<text x="-0.8" y="0.65" size="1.016" layer="25">>NAME</text>
<text x="-0.8" y="-1.65" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-0.8" y1="-0.4" x2="-0.45" y2="0.4" layer="21"/>
<rectangle x1="0.45" y1="-0.4" x2="0.8" y2="0.4" layer="21"/>
</package>
<package name="C0805K">
<description><b>Ceramic Chip Capacitor KEMET 0805 reflow solder</b><p>
Metric Code Size 2012</description>
<wire x1="-0.925" y1="0.6" x2="0.925" y2="0.6" width="0.1016" layer="21"/>
<wire x1="0.925" y1="-0.6" x2="-0.925" y2="-0.6" width="0.1016" layer="21"/>
<smd name="1" x="-1" y="0" dx="1.3" dy="1.6" layer="1"/>
<smd name="2" x="1" y="0" dx="1.3" dy="1.6" layer="1"/>
<text x="-1" y="0.875" size="1.016" layer="25">>NAME</text>
<text x="-1" y="-1.9" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-1" y1="-0.65" x2="-0.5" y2="0.65" layer="21"/>
<rectangle x1="0.5" y1="-0.65" x2="1" y2="0.65" layer="21"/>
</package>
<package name="C1206K">
<description><b>Ceramic Chip Capacitor KEMET 1206 reflow solder</b><p>
Metric Code Size 3216</description>
<wire x1="-1.525" y1="0.75" x2="1.525" y2="0.75" width="0.1016" layer="21"/>
<wire x1="1.525" y1="-0.75" x2="-1.525" y2="-0.75" width="0.1016" layer="21"/>
<smd name="1" x="-1.5" y="0" dx="1.5" dy="2" layer="1"/>
<smd name="2" x="1.5" y="0" dx="1.5" dy="2" layer="1"/>
<text x="-1.6" y="1.1" size="1.016" layer="25">>NAME</text>
<text x="-1.6" y="-2.1" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-1.6" y1="-0.8" x2="-1.1" y2="0.8" layer="21"/>
<rectangle x1="1.1" y1="-0.8" x2="1.6" y2="0.8" layer="21"/>
</package>
<package name="C1210K">
<description><b>Ceramic Chip Capacitor KEMET 1210 reflow solder</b><p>
Metric Code Size 3225</description>
<wire x1="-1.525" y1="1.175" x2="1.525" y2="1.175" width="0.1016" layer="21"/>
<wire x1="1.525" y1="-1.175" x2="-1.525" y2="-1.175" width="0.1016" layer="21"/>
<smd name="1" x="-1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
<smd name="2" x="1.5" y="0" dx="1.5" dy="2.9" layer="1"/>
<text x="-1.6" y="1.55" size="1.016" layer="25">>NAME</text>
<text x="-1.6" y="-2.575" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-1.6" y1="-1.25" x2="-1.1" y2="1.25" layer="21"/>
<rectangle x1="1.1" y1="-1.25" x2="1.6" y2="1.25" layer="21"/>
</package>
<package name="C1812K">
<description><b>Ceramic Chip Capacitor KEMET 1812 reflow solder</b><p>
Metric Code Size 4532</description>
<wire x1="-2.175" y1="1.525" x2="2.175" y2="1.525" width="0.1016" layer="21"/>
<wire x1="2.175" y1="-1.525" x2="-2.175" y2="-1.525" width="0.1016" layer="21"/>
<smd name="1" x="-2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
<smd name="2" x="2.05" y="0" dx="1.8" dy="3.7" layer="1"/>
<text x="-2.25" y="1.95" size="1.016" layer="25">>NAME</text>
<text x="-2.25" y="-2.975" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-2.25" y1="-1.6" x2="-1.65" y2="1.6" layer="21"/>
<rectangle x1="1.65" y1="-1.6" x2="2.25" y2="1.6" layer="21"/>
</package>
<package name="C1825K">
<description><b>Ceramic Chip Capacitor KEMET 1825 reflow solder</b><p>
Metric Code Size 4564</description>
<wire x1="-1.525" y1="3.125" x2="1.525" y2="3.125" width="0.1016" layer="21"/>
<wire x1="1.525" y1="-3.125" x2="-1.525" y2="-3.125" width="0.1016" layer="21"/>
<smd name="1" x="-1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
<smd name="2" x="1.5" y="0" dx="1.8" dy="6.9" layer="1"/>
<text x="-1.6" y="3.55" size="1.016" layer="25">>NAME</text>
<text x="-1.6" y="-4.625" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-1.6" y1="-3.2" x2="-1.1" y2="3.2" layer="21"/>
<rectangle x1="1.1" y1="-3.2" x2="1.6" y2="3.2" layer="21"/>
</package>
<package name="C2220K">
<description><b>Ceramic Chip Capacitor KEMET 2220 reflow solder</b><p>Metric Code Size 5650</description>
<wire x1="-2.725" y1="2.425" x2="2.725" y2="2.425" width="0.1016" layer="21"/>
<wire x1="2.725" y1="-2.425" x2="-2.725" y2="-2.425" width="0.1016" layer="21"/>
<smd name="1" x="-2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
<smd name="2" x="2.55" y="0" dx="1.85" dy="5.5" layer="1"/>
<text x="-2.8" y="2.95" size="1.016" layer="25">>NAME</text>
<text x="-2.8" y="-3.975" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-2.8" y1="-2.5" x2="-2.2" y2="2.5" layer="21"/>
<rectangle x1="2.2" y1="-2.5" x2="2.8" y2="2.5" layer="21"/>
</package>
<package name="C2225K">
<description><b>Ceramic Chip Capacitor KEMET 2225 reflow solder</b><p>Metric Code Size 5664</description>
<wire x1="-2.725" y1="3.075" x2="2.725" y2="3.075" width="0.1016" layer="21"/>
<wire x1="2.725" y1="-3.075" x2="-2.725" y2="-3.075" width="0.1016" layer="21"/>
<smd name="1" x="-2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
<smd name="2" x="2.55" y="0" dx="1.85" dy="6.8" layer="1"/>
<text x="-2.8" y="3.6" size="1.016" layer="25">>NAME</text>
<text x="-2.8" y="-4.575" size="1.016" layer="27">>VALUE</text>
<rectangle x1="-2.8" y1="-3.15" x2="-2.2" y2="3.15" layer="21"/>
<rectangle x1="2.2" y1="-3.15" x2="2.8" y2="3.15" layer="21"/>
</package>
<package name="HPC0201">
<description><b> </b><p>
Source: path_to_url
<smd name="1" x="-0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
<smd name="2" x="0.18" y="0" dx="0.2" dy="0.35" layer="1"/>
<text x="-0.75" y="0.74" size="1.27" layer="25">>NAME</text>
<text x="-0.785" y="-1.865" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.305" y1="-0.15" x2="0.305" y2="0.15" layer="21"/>
</package>
<package name="C0201">
<description>Source: path_to_url
<smd name="1" x="-0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
<smd name="2" x="0.25" y="0" dx="0.25" dy="0.35" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.3" y1="-0.15" x2="-0.15" y2="0.15" layer="21"/>
<rectangle x1="0.15" y1="-0.15" x2="0.3" y2="0.15" layer="21"/>
<rectangle x1="-0.15" y1="0.1" x2="0.15" y2="0.15" layer="21"/>
<rectangle x1="-0.15" y1="-0.15" x2="0.15" y2="-0.1" layer="21"/>
</package>
<package name="C1808">
<description><b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf</description>
<wire x1="-1.4732" y1="0.9502" x2="1.4732" y2="0.9502" width="0.1016" layer="21"/>
<wire x1="-1.4478" y1="-0.9502" x2="1.4732" y2="-0.9502" width="0.1016" layer="21"/>
<smd name="1" x="-1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
<smd name="2" x="1.95" y="0" dx="1.6" dy="2.2" layer="1"/>
<text x="-2.233" y="1.827" size="1.27" layer="25">>NAME</text>
<text x="-2.233" y="-2.842" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-2.275" y1="-1.015" x2="-1.225" y2="1.015" layer="21"/>
<rectangle x1="1.225" y1="-1.015" x2="2.275" y2="1.015" layer="21"/>
</package>
<package name="C3640">
<description><b>CAPACITOR</b><p>
Source: AVX .. aphvc.pdf</description>
<wire x1="-3.8322" y1="5.0496" x2="3.8322" y2="5.0496" width="0.1016" layer="21"/>
<wire x1="-3.8322" y1="-5.0496" x2="3.8322" y2="-5.0496" width="0.1016" layer="21"/>
<smd name="1" x="-4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
<smd name="2" x="4.267" y="0" dx="2.6" dy="10.7" layer="1"/>
<text x="-4.647" y="6.465" size="1.27" layer="25">>NAME</text>
<text x="-4.647" y="-7.255" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-4.57" y1="-5.1" x2="-3.05" y2="5.1" layer="21"/>
<rectangle x1="3.05" y1="-5.1" x2="4.5688" y2="5.1" layer="21"/>
</package>
<package name="PRL1632">
<description><b>PRL1632 are realized as 1W for 3.2 1.6mm(1206)</b><p>
Source: path_to_url
<wire x1="0.7275" y1="-1.5228" x2="-0.7277" y2="-1.5228" width="0.1524" layer="21"/>
<wire x1="0.7275" y1="1.5228" x2="-0.7152" y2="1.5228" width="0.1524" layer="21"/>
<smd name="2" x="0.822" y="0" dx="1" dy="3.2" layer="1"/>
<smd name="1" x="-0.822" y="0" dx="1" dy="3.2" layer="1"/>
<text x="-1.4" y="1.8" size="1.27" layer="25">>NAME</text>
<text x="-1.4" y="-3" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.8" y1="-1.6" x2="-0.4" y2="1.6" layer="21"/>
<rectangle x1="0.4" y1="-1.6" x2="0.8" y2="1.6" layer="21"/>
</package>
<package name="R01005">
<smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
<smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
<text x="-0.4" y="0.3" size="1.27" layer="25">>NAME</text>
<text x="-0.4" y="-1.6" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="21"/>
<rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="21"/>
<rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="21"/>
<rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="21"/>
</package>
<package name="C01005">
<description><b>CAPACITOR</b></description>
<rectangle x1="-0.1999" y1="-0.3" x2="0.1999" y2="0.3" layer="35"/>
<smd name="1" x="-0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
<smd name="2" x="0.1625" y="0" dx="0.2" dy="0.25" layer="1"/>
<text x="-0.4" y="0.3" size="1.27" layer="25">>NAME</text>
<text x="-0.4" y="-1.6" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.2" y1="-0.1" x2="-0.075" y2="0.1" layer="21"/>
<rectangle x1="0.075" y1="-0.1" x2="0.2" y2="0.1" layer="21"/>
<rectangle x1="-0.15" y1="0.05" x2="0.15" y2="0.1" layer="21"/>
<rectangle x1="-0.15" y1="-0.1" x2="0.15" y2="-0.05" layer="21"/>
</package>
</packages>
<symbols>
<symbol name="R-EU">
<wire x1="-2.54" y1="-0.889" x2="2.54" y2="-0.889" width="0.254" layer="94"/>
<wire x1="2.54" y1="0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
<wire x1="2.54" y1="-0.889" x2="2.54" y2="0.889" width="0.254" layer="94"/>
<wire x1="-2.54" y1="-0.889" x2="-2.54" y2="0.889" width="0.254" layer="94"/>
<text x="-3.81" y="1.4986" size="1.778" layer="95">>NAME</text>
<text x="-3.81" y="-3.302" size="1.778" layer="96">>VALUE</text>
<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
</symbol>
<symbol name="C-EU">
<wire x1="0" y1="0" x2="0" y2="-0.508" width="0.1524" layer="94"/>
<wire x1="0" y1="-2.54" x2="0" y2="-2.032" width="0.1524" layer="94"/>
<text x="1.524" y="0.381" size="1.778" layer="95">>NAME</text>
<text x="1.524" y="-4.699" size="1.778" layer="96">>VALUE</text>
<rectangle x1="-2.032" y1="-2.032" x2="2.032" y2="-1.524" layer="94"/>
<rectangle x1="-2.032" y1="-1.016" x2="2.032" y2="-0.508" layer="94"/>
<pin name="1" x="0" y="2.54" visible="off" length="short" direction="pas" swaplevel="1" rot="R270"/>
<pin name="2" x="0" y="-5.08" visible="off" length="short" direction="pas" swaplevel="1" rot="R90"/>
</symbol>
</symbols>
<devicesets>
<deviceset name="R-EU_" prefix="R" uservalue="yes">
<description><B>RESISTOR</B>, European symbol</description>
<gates>
<gate name="G$1" symbol="R-EU" x="0" y="0"/>
</gates>
<devices>
<device name="R0402" package="R0402">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R0603" package="R0603">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R0805" package="R0805">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R0805W" package="R0805W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R1206" package="R1206">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R1206W" package="R1206W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R1210" package="R1210">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R1210W" package="R1210W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R2010" package="R2010">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R2010W" package="R2010W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R2012" package="R2012">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R2012W" package="R2012W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R2512" package="R2512">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R2512W" package="R2512W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R3216" package="R3216">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R3216W" package="R3216W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R3225" package="R3225">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R3225W" package="R3225W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R5025" package="R5025">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R5025W" package="R5025W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R6332" package="R6332">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R6332W" package="R6332W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M0805" package="M0805">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M1206" package="M1206">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M1406" package="M1406">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M2012" package="M2012">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M2309" package="M2309">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M3216" package="M3216">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M3516" package="M3516">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M5923" package="M5923">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0204/5" package="0204/5">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0204/7" package="0204/7">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0204/2V" package="0204V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0207/10" package="0207/10">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0207/12" package="0207/12">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0207/15" package="0207/15">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0207/2V" package="0207/2V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0207/5V" package="0207/5V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0207/7" package="0207/7">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0309/10" package="0309/10">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0309/12" package="0309/12">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0309/V" package="0309V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0411/12" package="0411/12">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0411/15" package="0411/15">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0411/3V" package="0411V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0414/15" package="0414/15">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0414/5V" package="0414V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0617/17" package="0617/17">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0617/22" package="0617/22">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0617/5V" package="0617V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0922/22" package="0922/22">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0613/5V" package="P0613V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0613/15" package="P0613/15">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0817/22" package="P0817/22">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0817/7V" package="P0817V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="V234/12" package="V234/12">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="V235/17" package="V235/17">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="V526-0" package="V526-0">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0102R" package="MINI_MELF-0102R">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0102W" package="MINI_MELF-0102W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0204R" package="MINI_MELF-0204R">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0204W" package="MINI_MELF-0204W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0207R" package="MINI_MELF-0207R">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0207W" package="MINI_MELF-0207W">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="0922V" package="0922V">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="RDH/15" package="RDH/15">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MELF0102AX" package="MINI_MELF-0102AX">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R0201" package="R0201">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VTA52" package="VTA52">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VTA53" package="VTA53">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VTA54" package="VTA54">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VTA55" package="VTA55">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VTA56" package="VTA56">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VMTA55" package="VMTA55">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="VMTB60" package="VMTB60">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R4527" package="R4527">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="WSC0001" package="WSC0001">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="WSC0002" package="WSC0002">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="WSC01/2" package="WSC01/2">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="WSC2515" package="WSC2515">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="WSC4527" package="WSC4527">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="WSC6927" package="WSC6927">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="R1218" package="R1218">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="1812X7R" package="1812X7R">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="PRL1632" package="PRL1632">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="01005" package="R01005">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="C-EU" prefix="C" uservalue="yes">
<description><B>CAPACITOR</B>, European symbol</description>
<gates>
<gate name="G$1" symbol="C-EU" x="0" y="0"/>
</gates>
<devices>
<device name="C0402" package="C0402">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0504" package="C0504">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0603" package="C0603">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0805" package="C0805">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1206" package="C1206">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1210" package="C1210">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1310" package="C1310">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1608" package="C1608">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1812" package="C1812">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1825" package="C1825">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C2012" package="C2012">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C3216" package="C3216">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C3225" package="C3225">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C4532" package="C4532">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C4564" package="C4564">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025-024X044" package="C025-024X044">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025-025X050" package="C025-025X050">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025-030X050" package="C025-030X050">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025-040X050" package="C025-040X050">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025-050X050" package="C025-050X050">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025-060X050" package="C025-060X050">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C025_050-024X070" package="C025_050-024X070">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025_050-025X075" package="C025_050-025X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025_050-035X075" package="C025_050-035X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025_050-045X075" package="C025_050-045X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="025_050-055X075" package="C025_050-055X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-024X044" package="C050-024X044">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-025X075" package="C050-025X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-045X075" package="C050-045X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-030X075" package="C050-030X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-050X075" package="C050-050X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-055X075" package="C050-055X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-075X075" package="C050-075X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050H075X075" package="C050H075X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="075-032X103" package="C075-032X103">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="075-042X103" package="C075-042X103">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="075-052X106" package="C075-052X106">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="102-043X133" package="C102-043X133">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="102-054X133" package="C102-054X133">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="102-064X133" package="C102-064X133">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="102_152-062X184" package="C102_152-062X184">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="150-054X183" package="C150-054X183">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="150-064X183" package="C150-064X183">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="150-072X183" package="C150-072X183">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="150-084X183" package="C150-084X183">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="150-091X182" package="C150-091X182">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="225-062X268" package="C225-062X268">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="225-074X268" package="C225-074X268">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="225-087X268" package="C225-087X268">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="225-108X268" package="C225-108X268">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="225-113X268" package="C225-113X268">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="275-093X316" package="C275-093X316">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="275-113X316" package="C275-113X316">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="275-134X316" package="C275-134X316">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="275-205X316" package="C275-205X316">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="325-137X374" package="C325-137X374">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="325-162X374" package="C325-162X374">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="325-182X374" package="C325-182X374">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="375-192X418" package="C375-192X418">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="375-203X418" package="C375-203X418">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="050-035X075" package="C050-035X075">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="375-155X418" package="C375-155X418">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="075-063X106" package="C075-063X106">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="275-154X316" package="C275-154X316">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="275-173X316" package="C275-173X316">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0402K" package="C0402K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0603K" package="C0603K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0805K" package="C0805K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1206K" package="C1206K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1210K" package="C1210K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1812K" package="C1812K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1825K" package="C1825K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C2220K" package="C2220K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C2225K" package="C2225K">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="HPC0201" package="HPC0201">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C0201" package="C0201">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C1808" package="C1808">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="C3640" package="C3640">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="01005" package="C01005">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="led">
<description><b>LEDs</b><p>
<author>Created by librarian@cadsoft.de</author><br>
Extended by Federico Battaglin <author>&lt;federico.rd@fdpinternational.com&gt;</author> with DUOLED</description>
<packages>
<package name="1206">
<description><b>CHICAGO MINIATURE LAMP, INC.</b><p>
7022X Series SMT LEDs 1206 Package Size</description>
<wire x1="1.55" y1="-0.75" x2="-1.55" y2="-0.75" width="0.1016" layer="21"/>
<wire x1="-1.55" y1="-0.75" x2="-1.55" y2="0.75" width="0.1016" layer="21"/>
<wire x1="-1.55" y1="0.75" x2="1.55" y2="0.75" width="0.1016" layer="21"/>
<wire x1="1.55" y1="0.75" x2="1.55" y2="-0.75" width="0.1016" layer="21"/>
<wire x1="-0.55" y1="-0.5" x2="0.55" y2="-0.5" width="0.1016" layer="21" curve="95.452622"/>
<wire x1="-0.55" y1="-0.5" x2="-0.55" y2="0.5" width="0.1016" layer="21" curve="-84.547378"/>
<wire x1="-0.55" y1="0.5" x2="0.55" y2="0.5" width="0.1016" layer="21" curve="-95.452622"/>
<wire x1="0.55" y1="0.5" x2="0.55" y2="-0.5" width="0.1016" layer="21" curve="-84.547378"/>
<smd name="A" x="-1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
<smd name="C" x="1.422" y="0" dx="1.6" dy="1.803" layer="1"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.1" y1="-0.1" x2="0.1" y2="0.1" layer="21"/>
<rectangle x1="0.45" y1="-0.7" x2="0.8" y2="-0.45" layer="21"/>
<rectangle x1="0.8" y1="-0.7" x2="0.9" y2="0.5" layer="21"/>
<rectangle x1="0.8" y1="0.55" x2="0.9" y2="0.7" layer="21"/>
<rectangle x1="-0.9" y1="-0.7" x2="-0.8" y2="0.5" layer="21"/>
<rectangle x1="-0.9" y1="0.55" x2="-0.8" y2="0.7" layer="21"/>
<rectangle x1="0.45" y1="-0.7" x2="0.6" y2="-0.45" layer="21"/>
</package>
<package name="LD260">
<description><B>LED</B><p>
5 mm, square, Siemens</description>
<wire x1="-1.27" y1="-1.27" x2="0" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="0" y1="-1.27" x2="1.27" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="1.27" y1="1.27" x2="0" y2="1.27" width="0.1524" layer="21"/>
<wire x1="0" y1="1.27" x2="-1.27" y2="1.27" width="0.1524" layer="21"/>
<wire x1="1.27" y1="-1.27" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="1.27" y1="1.27" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="1.27" y1="0.889" x2="1.27" y2="0" width="0.1524" layer="21"/>
<wire x1="1.27" y1="0" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="1.27" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="-0.889" x2="-1.27" y2="0" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="0" y1="1.27" x2="0.9917" y2="0.7934" width="0.1524" layer="21" curve="-51.33923"/>
<wire x1="-0.9917" y1="0.7934" x2="0" y2="1.27" width="0.1524" layer="21" curve="-51.33923"/>
<wire x1="0" y1="-1.27" x2="0.9917" y2="-0.7934" width="0.1524" layer="21" curve="51.33923"/>
<wire x1="-0.9917" y1="-0.7934" x2="0" y2="-1.27" width="0.1524" layer="21" curve="51.33923"/>
<wire x1="0.9558" y1="-0.8363" x2="1.27" y2="0" width="0.1524" layer="21" curve="41.185419"/>
<wire x1="0.9756" y1="0.813" x2="1.2699" y2="0" width="0.1524" layer="21" curve="-39.806332"/>
<wire x1="-1.27" y1="0" x2="-0.9643" y2="-0.8265" width="0.1524" layer="21" curve="40.600331"/>
<wire x1="-1.27" y1="0" x2="-0.9643" y2="0.8265" width="0.1524" layer="21" curve="-40.600331"/>
<wire x1="-0.889" y1="0" x2="0" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-0.508" y1="0" x2="0" y2="0.508" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-0.508" x2="0.508" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0" y1="-0.889" x2="0.889" y2="0" width="0.1524" layer="21" curve="90"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-1.2954" y="1.4732" size="1.016" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-2.4892" size="1.016" layer="27" ratio="10">>VALUE</text>
<rectangle x1="1.27" y1="-0.635" x2="2.032" y2="0.635" layer="21"/>
<rectangle x1="1.905" y1="-0.635" x2="2.032" y2="0.635" layer="21"/>
</package>
<package name="LED2X5">
<description><B>LED</B><p>
2 x 5 mm, rectangle</description>
<wire x1="-2.54" y1="-1.27" x2="2.54" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="2.54" y1="1.27" x2="-2.54" y2="1.27" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="-1.27" x2="-2.54" y2="1.27" width="0.1524" layer="21"/>
<wire x1="-1.905" y1="0" x2="0.508" y2="0" width="0.1524" layer="21"/>
<wire x1="-0.508" y1="0.381" x2="-0.508" y2="-0.381" width="0.1524" layer="21"/>
<wire x1="-0.508" y1="0.381" x2="0.508" y2="0" width="0.1524" layer="21"/>
<wire x1="0.508" y1="0" x2="1.778" y2="0" width="0.1524" layer="21"/>
<wire x1="0.508" y1="0" x2="-0.508" y2="-0.381" width="0.1524" layer="21"/>
<wire x1="0.508" y1="0.381" x2="0.508" y2="0" width="0.1524" layer="21"/>
<wire x1="0.508" y1="0" x2="0.508" y2="-0.381" width="0.1524" layer="21"/>
<wire x1="0.889" y1="-0.254" x2="1.143" y2="-0.762" width="0.1524" layer="21"/>
<wire x1="1.143" y1="-0.762" x2="1.143" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="1.143" y1="-0.762" x2="0.9398" y2="-0.6096" width="0.1524" layer="21"/>
<wire x1="0.9398" y1="-0.6096" x2="1.143" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="1.397" y1="-0.254" x2="1.651" y2="-0.762" width="0.1524" layer="21"/>
<wire x1="1.651" y1="-0.762" x2="1.651" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="1.651" y1="-0.762" x2="1.4478" y2="-0.6096" width="0.1524" layer="21"/>
<wire x1="1.4478" y1="-0.6096" x2="1.651" y2="-0.508" width="0.1524" layer="21"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-2.54" y="1.397" size="1.016" layer="25" ratio="10">>NAME</text>
<text x="-2.54" y="-2.413" size="1.016" layer="27" ratio="10">>VALUE</text>
<rectangle x1="2.159" y1="-1.27" x2="2.413" y2="1.27" layer="21"/>
</package>
<package name="LED3MM">
<description><B>LED</B><p>
3 mm, round</description>
<wire x1="1.5748" y1="-1.27" x2="1.5748" y2="1.27" width="0.254" layer="21"/>
<wire x1="-1.524" y1="0" x2="-1.1708" y2="0.9756" width="0.1524" layer="21" curve="-39.80361"/>
<wire x1="-1.524" y1="0" x2="-1.1391" y2="-1.0125" width="0.1524" layer="21" curve="41.633208"/>
<wire x1="1.1571" y1="0.9918" x2="1.524" y2="0" width="0.1524" layer="21" curve="-40.601165"/>
<wire x1="1.1708" y1="-0.9756" x2="1.524" y2="0" width="0.1524" layer="21" curve="39.80361"/>
<wire x1="0" y1="1.524" x2="1.2401" y2="0.8858" width="0.1524" layer="21" curve="-54.461337"/>
<wire x1="-1.2192" y1="0.9144" x2="0" y2="1.524" width="0.1524" layer="21" curve="-53.130102"/>
<wire x1="0" y1="-1.524" x2="1.203" y2="-0.9356" width="0.1524" layer="21" curve="52.126876"/>
<wire x1="-1.203" y1="-0.9356" x2="0" y2="-1.524" width="0.1524" layer="21" curve="52.126876"/>
<wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0" y1="-1.016" x2="1.016" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0" y1="2.032" x2="1.561" y2="1.3009" width="0.254" layer="21" curve="-50.193108"/>
<wire x1="-1.7929" y1="0.9562" x2="0" y2="2.032" width="0.254" layer="21" curve="-61.926949"/>
<wire x1="0" y1="-2.032" x2="1.5512" y2="-1.3126" width="0.254" layer="21" curve="49.763022"/>
<wire x1="-1.7643" y1="-1.0082" x2="0" y2="-2.032" width="0.254" layer="21" curve="60.255215"/>
<wire x1="-2.032" y1="0" x2="-1.7891" y2="0.9634" width="0.254" layer="21" curve="-28.301701"/>
<wire x1="-2.032" y1="0" x2="-1.7306" y2="-1.065" width="0.254" layer="21" curve="31.60822"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="1.905" y="0.381" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="1.905" y="-1.651" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="LED5MM">
<description><B>LED</B><p>
5 mm, round</description>
<wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.2032" layer="21"/>
<wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.254" layer="21" curve="-286.260205"/>
<wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.159" y1="0" x2="0" y2="2.159" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-2.159" x2="2.159" y2="0" width="0.1524" layer="21" curve="90"/>
<circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="3.175" y="0.5334" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="3.2004" y="-1.8034" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="LSU260">
<description><B>LED</B><p>
1 mm, round, Siemens</description>
<wire x1="0" y1="-0.508" x2="-1.143" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="-0.508" x2="-1.143" y2="-0.254" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="0.508" x2="0" y2="0.508" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="-0.254" x2="-1.397" y2="-0.254" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="-0.254" x2="-1.143" y2="0.254" width="0.1524" layer="21"/>
<wire x1="-1.397" y1="-0.254" x2="-1.397" y2="0.254" width="0.1524" layer="21"/>
<wire x1="-1.397" y1="0.254" x2="-1.143" y2="0.254" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="0.254" x2="-1.143" y2="0.508" width="0.1524" layer="21"/>
<wire x1="0.508" y1="-0.254" x2="1.397" y2="-0.254" width="0.1524" layer="21"/>
<wire x1="1.397" y1="-0.254" x2="1.397" y2="0.254" width="0.1524" layer="21"/>
<wire x1="1.397" y1="0.254" x2="0.508" y2="0.254" width="0.1524" layer="21"/>
<wire x1="0.381" y1="-0.381" x2="0.254" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="0.254" y1="-0.508" x2="-0.254" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="-0.381" x2="-0.254" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="0.381" y1="0.381" x2="0.254" y2="0.508" width="0.1524" layer="21"/>
<wire x1="0.254" y1="0.508" x2="-0.254" y2="0.508" width="0.1524" layer="21"/>
<wire x1="-0.381" y1="0.381" x2="-0.254" y2="0.508" width="0.1524" layer="21"/>
<wire x1="0" y1="-0.254" x2="0.254" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-0.254" y1="0" x2="0" y2="0.254" width="0.1524" layer="21" curve="-90"/>
<wire x1="0.381" y1="-0.381" x2="0.381" y2="0.381" width="0.1524" layer="21" curve="90"/>
<circle x="0" y="0" radius="0.508" width="0.1524" layer="21"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-1.2954" y="0.8382" size="1.016" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-1.8542" size="1.016" layer="27" ratio="10">>VALUE</text>
<rectangle x1="-1.397" y1="-0.254" x2="-1.143" y2="0.254" layer="21"/>
<rectangle x1="0.508" y1="-0.254" x2="1.397" y2="0.254" layer="21"/>
</package>
<package name="LZR181">
<description><B>LED BLOCK</B><p>
1 LED, Siemens</description>
<wire x1="-1.27" y1="-1.27" x2="1.27" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="1.27" y1="-1.27" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="1.27" y1="1.27" x2="1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="1.27" y1="0.889" x2="1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="1.27" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="-1.27" x2="-1.27" y2="-0.889" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="-0.889" x2="-1.27" y2="0.889" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="0" x2="0" y2="0.889" width="0.1524" layer="21" curve="-90"/>
<wire x1="-0.508" y1="0" x2="0" y2="0.508" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-0.508" x2="0.508" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0" y1="-0.889" x2="0.889" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-0.8678" y1="0.7439" x2="0" y2="1.143" width="0.1524" layer="21" curve="-49.396139"/>
<wire x1="0" y1="1.143" x2="0.8678" y2="0.7439" width="0.1524" layer="21" curve="-49.396139"/>
<wire x1="-0.8678" y1="-0.7439" x2="0" y2="-1.143" width="0.1524" layer="21" curve="49.396139"/>
<wire x1="0" y1="-1.143" x2="0.8678" y2="-0.7439" width="0.1524" layer="21" curve="49.396139"/>
<wire x1="0.8678" y1="0.7439" x2="1.143" y2="0" width="0.1524" layer="21" curve="-40.604135"/>
<wire x1="0.8678" y1="-0.7439" x2="1.143" y2="0" width="0.1524" layer="21" curve="40.604135"/>
<wire x1="-1.143" y1="0" x2="-0.8678" y2="0.7439" width="0.1524" layer="21" curve="-40.604135"/>
<wire x1="-1.143" y1="0" x2="-0.8678" y2="-0.7439" width="0.1524" layer="21" curve="40.604135"/>
<wire x1="-1.27" y1="1.27" x2="1.27" y2="1.27" width="0.1524" layer="21"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="octagon"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="octagon"/>
<text x="-1.2954" y="1.4732" size="1.016" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-2.4892" size="1.016" layer="27" ratio="10">>VALUE</text>
<rectangle x1="1.27" y1="-0.889" x2="1.524" y2="0.254" layer="21"/>
<rectangle x1="-1.524" y1="-0.254" x2="-1.27" y2="0.254" layer="21"/>
</package>
<package name="Q62902-B152">
<description><b>LED HOLDER</b><p>
Siemens</description>
<wire x1="-2.9718" y1="-1.8542" x2="-2.9718" y2="-0.254" width="0.1524" layer="21"/>
<wire x1="-2.9718" y1="-0.254" x2="-2.9718" y2="0.254" width="0.1524" layer="21"/>
<wire x1="-2.9718" y1="0.254" x2="-2.9718" y2="1.8542" width="0.1524" layer="21"/>
<wire x1="2.9718" y1="-1.8542" x2="-2.1082" y2="-1.8542" width="0.1524" layer="21"/>
<wire x1="-2.1082" y1="-1.8542" x2="-2.54" y2="-1.8542" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="1.8542" x2="-2.1082" y2="1.8542" width="0.1524" layer="21"/>
<wire x1="-2.1082" y1="1.8542" x2="2.9718" y2="1.8542" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="-1.8542" x2="-2.54" y2="1.8542" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="-1.8542" x2="-2.9718" y2="-1.8542" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="1.8542" x2="-2.9718" y2="1.8542" width="0.1524" layer="21"/>
<wire x1="-2.9718" y1="0.254" x2="-2.9718" y2="-0.254" width="0.1524" layer="21" curve="180"/>
<wire x1="-1.1486" y1="0.8814" x2="0" y2="1.4478" width="0.1524" layer="21" curve="-52.498642"/>
<wire x1="0" y1="1.4478" x2="1.1476" y2="0.8827" width="0.1524" layer="21" curve="-52.433716"/>
<wire x1="-1.1351" y1="-0.8987" x2="0" y2="-1.4478" width="0.1524" layer="21" curve="51.629985"/>
<wire x1="0" y1="-1.4478" x2="1.1305" y2="-0.9044" width="0.1524" layer="21" curve="51.339172"/>
<wire x1="1.1281" y1="-0.9074" x2="1.4478" y2="0" width="0.1524" layer="21" curve="38.811177"/>
<wire x1="1.1401" y1="0.8923" x2="1.4478" y2="0" width="0.1524" layer="21" curve="-38.048073"/>
<wire x1="-1.4478" y1="0" x2="-1.1305" y2="-0.9044" width="0.1524" layer="21" curve="38.659064"/>
<wire x1="-1.4478" y1="0" x2="-1.1456" y2="0.8853" width="0.1524" layer="21" curve="-37.696376"/>
<wire x1="0" y1="1.7018" x2="1.4674" y2="0.8618" width="0.1524" layer="21" curve="-59.573488"/>
<wire x1="-1.4618" y1="0.8714" x2="0" y2="1.7018" width="0.1524" layer="21" curve="-59.200638"/>
<wire x1="0" y1="-1.7018" x2="1.4571" y2="-0.8793" width="0.1524" layer="21" curve="58.891781"/>
<wire x1="-1.4571" y1="-0.8793" x2="0" y2="-1.7018" width="0.1524" layer="21" curve="58.891781"/>
<wire x1="-1.7018" y1="0" x2="-1.4447" y2="0.8995" width="0.1524" layer="21" curve="-31.907626"/>
<wire x1="-1.7018" y1="0" x2="-1.4502" y2="-0.8905" width="0.1524" layer="21" curve="31.551992"/>
<wire x1="1.4521" y1="0.8874" x2="1.7018" y2="0" width="0.1524" layer="21" curve="-31.429586"/>
<wire x1="1.4459" y1="-0.8975" x2="1.7018" y2="0" width="0.1524" layer="21" curve="31.828757"/>
<wire x1="-2.1082" y1="1.8542" x2="-2.1082" y2="-1.8542" width="0.1524" layer="21"/>
<wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0.0539" y1="-1.0699" x2="1.0699" y2="-0.0539" width="0.1524" layer="21" curve="90"/>
<wire x1="2.9718" y1="1.8542" x2="2.9718" y2="-1.8542" width="0.1524" layer="21"/>
<pad name="K" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<pad name="A" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<text x="-1.905" y="2.286" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.905" y="-3.556" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="Q62902-B153">
<description><b>LED HOLDER</b><p>
Siemens</description>
<wire x1="-5.5118" y1="-3.5052" x2="-5.5118" y2="-0.254" width="0.1524" layer="21"/>
<wire x1="-5.5118" y1="-0.254" x2="-5.5118" y2="0.254" width="0.1524" layer="21"/>
<wire x1="-5.5118" y1="0.254" x2="-5.5118" y2="3.5052" width="0.1524" layer="21"/>
<wire x1="5.5118" y1="-3.5052" x2="-4.6482" y2="-3.5052" width="0.1524" layer="21"/>
<wire x1="-4.6482" y1="-3.5052" x2="-5.08" y2="-3.5052" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="3.5052" x2="-4.6482" y2="3.5052" width="0.1524" layer="21"/>
<wire x1="-4.6482" y1="3.5052" x2="5.5118" y2="3.5052" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="-3.5052" x2="-5.08" y2="3.5052" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="-3.5052" x2="-5.5118" y2="-3.5052" width="0.1524" layer="21"/>
<wire x1="-5.08" y1="3.5052" x2="-5.5118" y2="3.5052" width="0.1524" layer="21"/>
<wire x1="-5.5118" y1="0.254" x2="-5.5118" y2="-0.254" width="0.1524" layer="21" curve="180"/>
<wire x1="-4.6482" y1="3.5052" x2="-4.6482" y2="-3.5052" width="0.1524" layer="21"/>
<wire x1="5.5118" y1="3.5052" x2="5.5118" y2="-3.5052" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="1.905" x2="-2.54" y2="-1.905" width="0.254" layer="21"/>
<wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-2.159" x2="2.159" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.2129" y1="0.0539" x2="-0.0539" y2="2.2129" width="0.1524" layer="21" curve="-90.010616"/>
<circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
<circle x="0" y="0" radius="3.175" width="0.254" layer="21"/>
<pad name="A" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<pad name="K" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<text x="-4.191" y="3.937" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-4.318" y="-5.08" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="Q62902-B155">
<description><b>LED HOLDER</b><p>
Siemens</description>
<wire x1="-1.27" y1="-3.048" x2="-1.27" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="10.033" y1="3.048" x2="2.921" y2="3.048" width="0.1524" layer="21"/>
<wire x1="10.033" y1="3.048" x2="10.033" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="-3.048" x2="2.921" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="2.921" y1="-3.048" x2="2.921" y2="3.048" width="0.1524" layer="21"/>
<wire x1="2.921" y1="-3.048" x2="10.033" y2="-3.048" width="0.1524" layer="21"/>
<wire x1="2.921" y1="3.048" x2="-1.27" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="2.54" x2="-5.207" y2="2.54" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="2.54" x2="-1.27" y2="3.048" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="-2.54" x2="-1.27" y2="-2.54" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="-2.54" x2="-1.27" y2="2.54" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="2.54" x2="-5.207" y2="-2.54" width="0.1524" layer="21" curve="180"/>
<wire x1="-6.985" y1="0.635" x2="-6.985" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="-6.096" y1="1.397" x2="-6.096" y2="-1.397" width="0.1524" layer="21"/>
<wire x1="-5.207" y1="1.905" x2="-5.207" y2="-1.905" width="0.1524" layer="21"/>
<pad name="K" x="7.62" y="1.27" drill="0.8128" shape="long"/>
<pad name="A" x="7.62" y="-1.27" drill="0.8128" shape="long"/>
<text x="3.302" y="-2.794" size="1.016" layer="21" ratio="14">A+</text>
<text x="3.302" y="1.778" size="1.016" layer="21" ratio="14">K-</text>
<text x="11.684" y="-2.794" size="1.27" layer="25" ratio="10" rot="R90">>NAME</text>
<text x="0.635" y="-4.445" size="1.27" layer="27" ratio="10">>VALUE</text>
<rectangle x1="2.921" y1="1.016" x2="6.731" y2="1.524" layer="21"/>
<rectangle x1="2.921" y1="-1.524" x2="6.731" y2="-1.016" layer="21"/>
<hole x="0" y="0" drill="0.8128"/>
</package>
<package name="Q62902-B156">
<description><b>LED HOLDER</b><p>
Siemens</description>
<wire x1="2.54" y1="-1.905" x2="2.54" y2="1.905" width="0.1524" layer="21"/>
<wire x1="-1.143" y1="0" x2="0" y2="1.143" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-1.143" x2="1.143" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-1.651" y1="0" x2="0" y2="1.651" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-1.651" x2="1.651" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="-2.159" y1="0" x2="0" y2="2.159" width="0.1524" layer="21" curve="-90"/>
<wire x1="0.0539" y1="-2.2129" x2="2.2129" y2="-0.0539" width="0.1524" layer="21" curve="90.005308"/>
<wire x1="2.54" y1="3.81" x2="3.81" y2="2.54" width="0.1524" layer="21"/>
<wire x1="2.54" y1="3.81" x2="-3.81" y2="3.81" width="0.1524" layer="21"/>
<wire x1="-3.81" y1="-3.81" x2="-3.81" y2="3.81" width="0.1524" layer="21"/>
<wire x1="3.81" y1="2.54" x2="3.81" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="-3.81" y1="-3.81" x2="-2.54" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="-3.302" x2="-2.54" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="3.81" y1="-3.81" x2="2.54" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="2.54" y1="-3.302" x2="2.54" y2="-3.81" width="0.1524" layer="21"/>
<wire x1="2.54" y1="-3.302" x2="-2.54" y2="-3.302" width="0.1524" layer="21"/>
<circle x="0" y="0" radius="2.54" width="0.1524" layer="21"/>
<circle x="0" y="0" radius="3.175" width="0.254" layer="21"/>
<pad name="A" x="-1.27" y="0" drill="1.016" shape="long" rot="R90"/>
<pad name="K" x="1.27" y="0" drill="1.016" shape="long" rot="R90"/>
<text x="-3.81" y="4.0894" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-3.7846" y="-5.3594" size="1.27" layer="27" ratio="10">>VALUE</text>
<text x="-3.556" y="-3.302" size="1.016" layer="21" ratio="14">+</text>
<text x="2.794" y="-3.302" size="1.016" layer="21" ratio="14">-</text>
</package>
<package name="SFH480">
<description><B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon</description>
<wire x1="-2.159" y1="1.524" x2="-2.794" y2="2.159" width="0.1524" layer="21"/>
<wire x1="-2.794" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
<wire x1="-1.524" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
<wire x1="0" y1="1.778" x2="1.5358" y2="0.8959" width="0.1524" layer="21" curve="-59.743278"/>
<wire x1="-1.5358" y1="0.8959" x2="0" y2="1.778" width="0.1524" layer="21" curve="-59.743278"/>
<wire x1="-1.5358" y1="-0.8959" x2="0" y2="-1.778" width="0.1524" layer="21" curve="59.743278"/>
<wire x1="0" y1="-1.778" x2="1.5358" y2="-0.8959" width="0.1524" layer="21" curve="59.743278"/>
<wire x1="1.5142" y1="0.9318" x2="1.778" y2="0" width="0.1524" layer="21" curve="-31.606487"/>
<wire x1="1.5" y1="-0.9546" x2="1.778" y2="0" width="0.1524" layer="21" curve="32.472615"/>
<wire x1="-1.778" y1="0" x2="-1.5142" y2="-0.9318" width="0.1524" layer="21" curve="31.606487"/>
<wire x1="-1.778" y1="0" x2="-1.5" y2="0.9546" width="0.1524" layer="21" curve="-32.472615"/>
<wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0.0539" y1="-1.0699" x2="1.0699" y2="-0.0539" width="0.1524" layer="21" curve="90"/>
<circle x="0" y="0" radius="2.667" width="0.1524" layer="21"/>
<circle x="0" y="0" radius="2.413" width="0.254" layer="21"/>
<pad name="K" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<pad name="A" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<text x="-1.27" y="3.048" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-4.318" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="SFH482">
<description><B>IR LED</B><p>
infrared emitting diode, Infineon
TO-18, lead spacing 2.54 mm, cathode marking<p>
Inifineon</description>
<wire x1="-2.159" y1="1.524" x2="-2.794" y2="2.159" width="0.1524" layer="21"/>
<wire x1="-2.794" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
<wire x1="-1.524" y1="2.159" x2="-2.159" y2="2.794" width="0.1524" layer="21"/>
<wire x1="0" y1="1.778" x2="1.5358" y2="0.8959" width="0.1524" layer="21" curve="-59.743278"/>
<wire x1="-1.5358" y1="0.8959" x2="0" y2="1.778" width="0.1524" layer="21" curve="-59.743278"/>
<wire x1="-1.5358" y1="-0.8959" x2="0" y2="-1.778" width="0.1524" layer="21" curve="59.743278"/>
<wire x1="0" y1="-1.778" x2="1.5358" y2="-0.8959" width="0.1524" layer="21" curve="59.743278"/>
<wire x1="1.5142" y1="0.9318" x2="1.778" y2="0" width="0.1524" layer="21" curve="-31.606487"/>
<wire x1="1.5" y1="-0.9546" x2="1.778" y2="0" width="0.1524" layer="21" curve="32.472615"/>
<wire x1="-1.778" y1="0" x2="-1.5142" y2="-0.9318" width="0.1524" layer="21" curve="31.606487"/>
<wire x1="-1.778" y1="0" x2="-1.5" y2="0.9546" width="0.1524" layer="21" curve="-32.472615"/>
<wire x1="-0.635" y1="0" x2="0" y2="0.635" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.016" y1="0" x2="0" y2="1.016" width="0.1524" layer="21" curve="-90"/>
<wire x1="0" y1="-0.635" x2="0.635" y2="0" width="0.1524" layer="21" curve="90"/>
<wire x1="0.0539" y1="-1.0699" x2="1.0699" y2="-0.0539" width="0.1524" layer="21" curve="90"/>
<circle x="0" y="0" radius="2.667" width="0.1524" layer="21"/>
<circle x="0" y="0" radius="2.413" width="0.254" layer="21"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<text x="-1.27" y="3.048" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-4.318" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="U57X32">
<description><B>LED</B><p>
rectangle, 5.7 x 3.2 mm</description>
<wire x1="-3.175" y1="1.905" x2="3.175" y2="1.905" width="0.1524" layer="21"/>
<wire x1="3.175" y1="-1.905" x2="3.175" y2="1.905" width="0.1524" layer="21"/>
<wire x1="3.175" y1="-1.905" x2="-3.175" y2="-1.905" width="0.1524" layer="21"/>
<wire x1="-3.175" y1="1.905" x2="-3.175" y2="-1.905" width="0.1524" layer="21"/>
<wire x1="-2.667" y1="1.397" x2="2.667" y2="1.397" width="0.1524" layer="21"/>
<wire x1="2.667" y1="-1.397" x2="2.667" y2="1.397" width="0.1524" layer="21"/>
<wire x1="2.667" y1="-1.397" x2="-2.667" y2="-1.397" width="0.1524" layer="21"/>
<wire x1="-2.667" y1="1.397" x2="-2.667" y2="-1.397" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="1.016" x2="2.54" y2="1.016" width="0.1524" layer="21"/>
<wire x1="2.286" y1="1.27" x2="2.286" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="0.508" x2="2.54" y2="0.508" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="0" x2="2.54" y2="0" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="-0.508" x2="2.54" y2="-0.508" width="0.1524" layer="21"/>
<wire x1="-2.54" y1="-1.016" x2="2.54" y2="-1.016" width="0.1524" layer="21"/>
<wire x1="-2.286" y1="1.27" x2="-2.286" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-1.778" y1="1.27" x2="-1.778" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-1.27" y1="1.27" x2="-1.27" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-0.762" y1="1.27" x2="-0.762" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="-0.254" y1="1.27" x2="-0.254" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="0.254" y1="1.27" x2="0.254" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="0.762" y1="1.27" x2="0.762" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="1.27" y1="1.27" x2="1.27" y2="-1.27" width="0.1524" layer="21"/>
<wire x1="1.778" y1="1.27" x2="1.778" y2="-1.27" width="0.1524" layer="21"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<pad name="K" x="1.27" y="0" drill="0.8128" shape="long" rot="R90"/>
<text x="3.683" y="0.254" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="3.683" y="-1.524" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="IRL80A">
<description><B>IR LED</B><p>
IR transmitter Siemens</description>
<wire x1="0.889" y1="2.286" x2="0.889" y2="1.778" width="0.1524" layer="21"/>
<wire x1="0.889" y1="1.778" x2="0.889" y2="0.762" width="0.1524" layer="21"/>
<wire x1="0.889" y1="0.762" x2="0.889" y2="-0.635" width="0.1524" layer="21"/>
<wire x1="0.889" y1="-0.635" x2="0.889" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="0.889" y1="-1.778" x2="0.889" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="0.889" y1="-2.286" x2="-0.889" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="2.286" x2="-0.889" y2="1.778" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="1.778" x2="-0.889" y2="0.762" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="0.762" x2="-0.889" y2="-0.762" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="-0.762" x2="-0.889" y2="-1.778" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="-1.778" x2="-0.889" y2="-2.286" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="2.286" x2="0.889" y2="2.286" width="0.1524" layer="21"/>
<wire x1="-0.889" y1="-0.762" x2="-0.889" y2="0.762" width="0.1524" layer="21" curve="-180"/>
<wire x1="-1.397" y1="0.254" x2="-1.397" y2="-0.254" width="0.0508" layer="21"/>
<wire x1="-1.143" y1="0.508" x2="-1.143" y2="-0.508" width="0.0508" layer="21"/>
<pad name="K" x="0" y="1.27" drill="0.8128" shape="octagon"/>
<pad name="A" x="0" y="-1.27" drill="0.8128" shape="octagon"/>
<text x="1.27" y="0.381" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="1.27" y="-1.651" size="1.27" layer="27" ratio="10">>VALUE</text>
</package>
<package name="P-LCC-2">
<description><b>TOPLED High-optical Power LED (HOP)</b><p>
Source: path_to_url ... ls_t675.pdf</description>
<wire x1="-1.4" y1="-1.05" x2="-1.4" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="-1.6" x2="-1.1" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-1.1" y1="-1.6" x2="-0.85" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-0.85" y1="-1.6" x2="1.1" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="1.1" y1="-1.6" x2="1.4" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="1.4" y1="-1.6" x2="1.4" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.4" y1="1.6" x2="1.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-1.1" y1="1.6" x2="-1.4" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-1.1" y1="1.6" x2="-1.1" y2="1.8" width="0.1016" layer="21"/>
<wire x1="-1.1" y1="1.8" x2="1.1" y2="1.8" width="0.1016" layer="21"/>
<wire x1="1.1" y1="1.8" x2="1.1" y2="1.6" width="0.1016" layer="21"/>
<wire x1="-1.1" y1="-1.6" x2="-1.1" y2="-1.8" width="0.1016" layer="21"/>
<wire x1="-1.1" y1="-1.8" x2="1.1" y2="-1.8" width="0.1016" layer="21"/>
<wire x1="1.1" y1="-1.8" x2="1.1" y2="-1.6" width="0.1016" layer="21"/>
<wire x1="-0.85" y1="-1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1.1" width="0.2032" layer="21"/>
<smd name="C" x="0" y="-2.75" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<smd name="A" x="0" y="2.75" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<text x="-2.54" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="3.81" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
<text x="-0.635" y="2.54" size="1.27" layer="21">A</text>
<text x="-0.635" y="-3.81" size="1.27" layer="21">C</text>
<rectangle x1="-1.3" y1="-2.25" x2="1.3" y2="-0.75" layer="31"/>
<rectangle x1="-1.3" y1="0.75" x2="1.3" y2="2.25" layer="31"/>
<rectangle x1="-0.25" y1="-0.25" x2="0.25" y2="0.25" layer="21"/>
<rectangle x1="-1.4" y1="0.65" x2="1.4" y2="2.35" layer="29"/>
<rectangle x1="-1.4" y1="-2.35" x2="1.4" y2="-0.65" layer="29"/>
</package>
<package name="OSRAM-MINI-TOP-LED">
<description><b>BLUE LINETM Hyper Mini TOPLED Hyper-Bright LED</b><p>
Source: path_to_url ... LB M676.pdf</description>
<wire x1="-0.6" y1="0.9" x2="-0.6" y2="-0.7" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="-0.9" x2="-0.4" y2="-0.9" width="0.1016" layer="21"/>
<wire x1="-0.4" y1="-0.9" x2="0.6" y2="-0.9" width="0.1016" layer="21"/>
<wire x1="0.6" y1="-0.9" x2="0.6" y2="0.9" width="0.1016" layer="21"/>
<wire x1="0.6" y1="0.9" x2="-0.6" y2="0.9" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="0.95" x2="-0.45" y2="1.1" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="1.1" x2="0.45" y2="1.1" width="0.1016" layer="21"/>
<wire x1="0.45" y1="1.1" x2="0.45" y2="0.95" width="0.1016" layer="21"/>
<wire x1="-0.6" y1="-0.7" x2="-0.4" y2="-0.9" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="-0.9" x2="-0.45" y2="-1.1" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="-1.1" x2="0.45" y2="-1.1" width="0.1016" layer="21"/>
<wire x1="0.45" y1="-1.1" x2="0.45" y2="-0.95" width="0.1016" layer="21"/>
<smd name="A" x="0" y="2.6" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<smd name="C" x="0" y="-2.6" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<text x="-0.635" y="1.905" size="1.27" layer="21">A</text>
<text x="-0.635" y="-3.175" size="1.27" layer="21">C</text>
<text x="-2.54" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="3.81" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.5" y1="0.6" x2="0.5" y2="1.4" layer="29"/>
<rectangle x1="-0.5" y1="-1.4" x2="0.5" y2="-0.6" layer="29"/>
<rectangle x1="-0.15" y1="-0.6" x2="0.15" y2="-0.3" layer="21"/>
<rectangle x1="-0.45" y1="0.65" x2="0.45" y2="1.35" layer="31"/>
<rectangle x1="-0.45" y1="-1.35" x2="0.45" y2="-0.65" layer="31"/>
</package>
<package name="OSRAM-SIDELED">
<description><b>Super SIDELED High-Current LED</b><p>
LG A672, LP A672 <br>
Source: path_to_url ... LG_LP_A672.pdf (2004.05.13)</description>
<wire x1="-1.85" y1="-2.05" x2="-1.85" y2="-0.75" width="0.1016" layer="21"/>
<wire x1="-1.85" y1="-0.75" x2="-1.7" y2="-0.75" width="0.1016" layer="21"/>
<wire x1="-1.7" y1="-0.75" x2="-1.7" y2="0.75" width="0.1016" layer="21"/>
<wire x1="-1.7" y1="0.75" x2="-1.85" y2="0.75" width="0.1016" layer="21"/>
<wire x1="-1.85" y1="0.75" x2="-1.85" y2="2.05" width="0.1016" layer="21"/>
<wire x1="-1.85" y1="2.05" x2="0.9" y2="2.05" width="0.1016" layer="21"/>
<wire x1="0.9" y1="2.05" x2="0.9" y2="-2.05" width="0.1016" layer="21"/>
<wire x1="0.9" y1="-2.05" x2="-1.85" y2="-2.05" width="0.1016" layer="21"/>
<wire x1="0.9" y1="-2.05" x2="1.05" y2="-2.05" width="0.1016" layer="21"/>
<wire x1="1.05" y1="-2.05" x2="1.85" y2="-1.85" width="0.1016" layer="21"/>
<wire x1="1.85" y1="-1.85" x2="1.85" y2="1.85" width="0.1016" layer="21"/>
<wire x1="1.85" y1="1.85" x2="1.05" y2="2.05" width="0.1016" layer="21"/>
<wire x1="1.05" y1="2.05" x2="0.9" y2="2.05" width="0.1016" layer="21"/>
<wire x1="1.05" y1="2.05" x2="1.05" y2="-2.05" width="0.1016" layer="21"/>
<wire x1="-0.55" y1="-0.9" x2="-0.55" y2="0.9" width="0.1016" layer="21" curve="-167.319617"/>
<wire x1="-0.55" y1="-0.9" x2="0.85" y2="-1.2" width="0.1016" layer="21" style="shortdash"/>
<wire x1="-0.55" y1="0.9" x2="0.85" y2="1.2" width="0.1016" layer="21" style="shortdash"/>
<smd name="C" x="0" y="-2.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<smd name="A" x="0" y="2.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<text x="0.635" y="-3.175" size="1.27" layer="21" rot="R90">C</text>
<text x="0.635" y="2.54" size="1.27" layer="21" rot="R90">A</text>
<text x="-2.54" y="-2.54" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="3.81" y="-2.54" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-2.1" y1="-2.2" x2="2.1" y2="-0.4" layer="29"/>
<rectangle x1="-2.1" y1="0.4" x2="2.1" y2="2.2" layer="29"/>
<rectangle x1="-1.9" y1="-2.1" x2="1.9" y2="-0.6" layer="31"/>
<rectangle x1="-1.9" y1="0.6" x2="1.9" y2="2.1" layer="31"/>
<rectangle x1="-1.85" y1="-2.05" x2="-0.7" y2="-1" layer="21"/>
</package>
<package name="SMART-LED">
<description><b>SmartLEDTM Hyper-Bright LED</b><p>
Source: path_to_url ... LA_LO_LS_LY L896.pdf</description>
<wire x1="-0.35" y1="0.6" x2="0.35" y2="0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.35" y1="0.6" x2="0.35" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.35" y1="-0.6" x2="0.15" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.15" y1="-0.6" x2="-0.35" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="-0.35" y1="-0.6" x2="-0.35" y2="0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.35" y1="-0.4" x2="0.15" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<smd name="A" x="0" y="0.725" dx="0.35" dy="0.35" layer="1"/>
<smd name="B" x="0" y="-0.725" dx="0.35" dy="0.35" layer="1"/>
<text x="-0.635" y="-0.635" size="1.016" layer="25" rot="R90">>NAME</text>
<text x="1.905" y="-0.635" size="1.016" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.15" y1="-0.35" x2="0.15" y2="-0.05" layer="21"/>
<rectangle x1="-0.15" y1="0.6" x2="0.15" y2="0.85" layer="21"/>
<rectangle x1="-0.15" y1="-0.85" x2="0.15" y2="-0.6" layer="21"/>
</package>
<package name="P-LCC-2-TOPLED-RG">
<description><b>Hyper TOPLED RG Hyper-Bright LED</b><p>
Source: path_to_url ... LA_LO_LS_LY T776.pdf</description>
<wire x1="-1.4" y1="-1.05" x2="-1.4" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="-1.6" x2="-1.1" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-1.1" y1="-1.6" x2="-0.85" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-0.85" y1="-1.6" x2="1.1" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="1.1" y1="-1.6" x2="1.4" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="1.4" y1="-1.6" x2="1.4" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.4" y1="1.6" x2="1.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.1" y1="1.6" x2="-1.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-1.1" y1="1.6" x2="-1.4" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-1.1" y1="1.6" x2="-1.1" y2="2.45" width="0.1016" layer="21"/>
<wire x1="1.1" y1="2.45" x2="1.1" y2="1.6" width="0.1016" layer="21"/>
<wire x1="-1.1" y1="-1.6" x2="-1.1" y2="-2.45" width="0.1016" layer="21"/>
<wire x1="1.1" y1="-2.45" x2="1.1" y2="-1.6" width="0.1016" layer="21"/>
<wire x1="-0.85" y1="-1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1.1" width="0.2032" layer="21"/>
<smd name="C" x="0" y="-3.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<smd name="A" x="0" y="3.5" dx="4" dy="4" layer="1" stop="no" cream="no"/>
<text x="-2.54" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="3.81" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
<text x="-0.635" y="3.29" size="1.27" layer="21">A</text>
<text x="-0.635" y="-4.56" size="1.27" layer="21">C</text>
<rectangle x1="-1.3" y1="-3" x2="1.3" y2="-1.5" layer="31"/>
<rectangle x1="-1.3" y1="1.5" x2="1.3" y2="3" layer="31"/>
<rectangle x1="-0.25" y1="-0.25" x2="0.25" y2="0.25" layer="21"/>
<rectangle x1="-1.15" y1="2.4" x2="1.15" y2="2.7" layer="21"/>
<rectangle x1="-1.15" y1="-2.7" x2="1.15" y2="-2.4" layer="21"/>
<rectangle x1="-1.5" y1="1.5" x2="1.5" y2="3.2" layer="29"/>
<rectangle x1="-1.5" y1="-3.2" x2="1.5" y2="-1.5" layer="29"/>
<hole x="0" y="0" drill="2.8"/>
</package>
<package name="MICRO-SIDELED">
<description><b>Hyper Micro SIDELED</b><p>
Source: path_to_url ... LA_LO_LS_LY Y876.pdf</description>
<wire x1="0.65" y1="1.1" x2="-0.1" y2="1.1" width="0.1016" layer="21"/>
<wire x1="-0.1" y1="1.1" x2="-0.35" y2="1" width="0.1016" layer="21"/>
<wire x1="-0.35" y1="1" x2="-0.35" y2="-0.9" width="0.1016" layer="21"/>
<wire x1="-0.35" y1="-0.9" x2="-0.1" y2="-1.1" width="0.1016" layer="21"/>
<wire x1="-0.1" y1="-1.1" x2="0.65" y2="-1.1" width="0.1016" layer="21"/>
<wire x1="0.65" y1="-1.1" x2="0.65" y2="1.1" width="0.1016" layer="21"/>
<wire x1="0.6" y1="0.9" x2="0.25" y2="0.7" width="0.0508" layer="21"/>
<wire x1="0.25" y1="0.7" x2="0.25" y2="-0.7" width="0.0508" layer="21"/>
<wire x1="0.25" y1="-0.7" x2="0.6" y2="-0.9" width="0.0508" layer="21"/>
<smd name="A" x="0" y="1.95" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
<smd name="C" x="0" y="-1.95" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
<text x="-1.27" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="2.54" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.4" y1="1.1" x2="0.4" y2="1.8" layer="29"/>
<rectangle x1="-0.4" y1="-1.8" x2="0.4" y2="-1.1" layer="29"/>
<rectangle x1="-0.35" y1="-1.75" x2="0.35" y2="-1.15" layer="31"/>
<rectangle x1="-0.35" y1="1.15" x2="0.35" y2="1.75" layer="31"/>
<rectangle x1="-0.125" y1="1.125" x2="0.125" y2="1.75" layer="21"/>
<rectangle x1="-0.125" y1="-1.75" x2="0.125" y2="-1.125" layer="21"/>
</package>
<package name="P-LCC-4">
<description><b>Power TOPLED</b><p>
Source: path_to_url ... LA_LO_LA_LY E67B.pdf</description>
<wire x1="-1.4" y1="-1.05" x2="-1.4" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="-1.6" x2="-1" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.6" x2="-0.85" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-0.85" y1="-1.6" x2="1" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="1" y1="-1.6" x2="1.4" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="1.4" y1="-1.6" x2="1.4" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.4" y1="1.6" x2="1.1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="1.1" y1="1.6" x2="-1" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-1" y1="1.6" x2="-1.4" y2="1.6" width="0.2032" layer="21"/>
<wire x1="-1" y1="1.6" x2="-1" y2="1.8" width="0.1016" layer="21"/>
<wire x1="-1" y1="1.8" x2="-0.5" y2="1.8" width="0.1016" layer="21"/>
<wire x1="-0.5" y1="1.8" x2="-0.5" y2="1.65" width="0.1016" layer="21"/>
<wire x1="0.5" y1="1.65" x2="0.5" y2="1.8" width="0.1016" layer="21"/>
<wire x1="0.5" y1="1.8" x2="1.1" y2="1.8" width="0.1016" layer="21"/>
<wire x1="1.1" y1="1.8" x2="1.1" y2="1.6" width="0.1016" layer="21"/>
<wire x1="-1" y1="-1.6" x2="-1" y2="-1.8" width="0.1016" layer="21"/>
<wire x1="-1" y1="-1.8" x2="-0.5" y2="-1.8" width="0.1016" layer="21"/>
<wire x1="-0.5" y1="-1.8" x2="-0.5" y2="-1.65" width="0.1016" layer="21"/>
<wire x1="0.5" y1="-1.65" x2="0.5" y2="-1.8" width="0.1016" layer="21"/>
<wire x1="0.5" y1="-1.8" x2="1" y2="-1.8" width="0.1016" layer="21"/>
<wire x1="1" y1="-1.8" x2="1" y2="-1.6" width="0.1016" layer="21"/>
<wire x1="-0.85" y1="-1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="21"/>
<wire x1="-1.4" y1="1.6" x2="-1.4" y2="-1.05" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="1.1" width="0.2032" layer="21"/>
<smd name="A" x="-2" y="3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
<smd name="C@3" x="2" y="3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
<smd name="C@4" x="2" y="-3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
<smd name="C@1" x="-2" y="-3.15" dx="3.3" dy="4.8" layer="1" stop="no" cream="no"/>
<text x="-3.81" y="-2.54" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="5.08" y="-2.54" size="1.27" layer="27" rot="R90">>VALUE</text>
<text x="-1.905" y="-3.81" size="1.27" layer="21">C</text>
<text x="-1.905" y="2.54" size="1.27" layer="21">A</text>
<text x="1.27" y="2.54" size="1.27" layer="21">C</text>
<text x="1.27" y="-3.81" size="1.27" layer="21">C</text>
<rectangle x1="-1.15" y1="0.75" x2="-0.35" y2="1.85" layer="29"/>
<rectangle x1="0.35" y1="0.75" x2="1.15" y2="1.85" layer="29"/>
<rectangle x1="0.35" y1="-1.85" x2="1.15" y2="-0.75" layer="29"/>
<rectangle x1="-1.15" y1="-1.85" x2="-0.35" y2="-0.75" layer="29"/>
<rectangle x1="-1.1" y1="-1.8" x2="-0.4" y2="-0.8" layer="31"/>
<rectangle x1="0.4" y1="-1.8" x2="1.1" y2="-0.8" layer="31"/>
<rectangle x1="0.4" y1="0.8" x2="1.1" y2="1.8" layer="31"/>
<rectangle x1="-1.1" y1="0.8" x2="-0.4" y2="1.8" layer="31"/>
<rectangle x1="-0.2" y1="-0.2" x2="0.2" y2="0.2" layer="21"/>
</package>
<package name="CHIP-LED0603">
<description><b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB Q993<br>
Source: path_to_url ... Lb_q993.pdf</description>
<wire x1="-0.4" y1="0.45" x2="-0.4" y2="-0.45" width="0.1016" layer="21"/>
<wire x1="0.4" y1="0.45" x2="0.4" y2="-0.45" width="0.1016" layer="21"/>
<smd name="C" x="0" y="0.75" dx="0.8" dy="0.8" layer="1"/>
<smd name="A" x="0" y="-0.75" dx="0.8" dy="0.8" layer="1"/>
<text x="-0.635" y="-0.635" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="1.905" y="-0.635" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.45" y1="0.45" x2="0.45" y2="0.85" layer="21"/>
<rectangle x1="-0.45" y1="-0.85" x2="0.45" y2="-0.45" layer="21"/>
<rectangle x1="-0.45" y1="0" x2="-0.3" y2="0.3" layer="21"/>
<rectangle x1="0.3" y1="0" x2="0.45" y2="0.3" layer="21"/>
<rectangle x1="-0.15" y1="0" x2="0.15" y2="0.3" layer="21"/>
</package>
<package name="CHIP-LED0805">
<description><b>Hyper CHIPLED Hyper-Bright LED</b><p>
LB R99A<br>
Source: path_to_url ... lb_r99a.pdf</description>
<wire x1="-0.625" y1="0.45" x2="-0.625" y2="-0.45" width="0.1016" layer="21"/>
<wire x1="0.625" y1="0.45" x2="0.625" y2="-0.475" width="0.1016" layer="21"/>
<smd name="C" x="0" y="1.05" dx="1.2" dy="1.2" layer="1"/>
<smd name="A" x="0" y="-1.05" dx="1.2" dy="1.2" layer="1"/>
<text x="-1.27" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="2.54" y="-1.27" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.675" y1="0" x2="-0.525" y2="0.3" layer="21"/>
<rectangle x1="0.525" y1="0" x2="0.675" y2="0.3" layer="21"/>
<rectangle x1="-0.15" y1="0" x2="0.15" y2="0.3" layer="21"/>
<rectangle x1="-0.675" y1="0.45" x2="0.675" y2="1.05" layer="21"/>
<rectangle x1="-0.675" y1="-1.05" x2="0.675" y2="-0.45" layer="21"/>
</package>
<package name="MINI-TOPLED-SANTANA">
<description><b>Mini TOPLED Santana</b><p>
Source: path_to_url ... LG M470.pdf</description>
<wire x1="0.7" y1="-1" x2="0.35" y2="-1" width="0.1016" layer="21"/>
<wire x1="0.35" y1="-1" x2="-0.7" y2="-1" width="0.1016" layer="21"/>
<wire x1="-0.7" y1="-1" x2="-0.7" y2="1" width="0.1016" layer="21"/>
<wire x1="-0.7" y1="1" x2="0.7" y2="1" width="0.1016" layer="21"/>
<wire x1="0.7" y1="1" x2="0.7" y2="-0.65" width="0.1016" layer="21"/>
<wire x1="0.7" y1="-0.65" x2="0.7" y2="-1" width="0.1016" layer="21"/>
<wire x1="0.45" y1="-0.7" x2="-0.45" y2="-0.7" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="-0.7" x2="-0.45" y2="0.7" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="0.7" x2="0.45" y2="0.7" width="0.1016" layer="21"/>
<wire x1="0.45" y1="0.7" x2="0.45" y2="-0.7" width="0.1016" layer="21"/>
<wire x1="0.7" y1="-0.65" x2="0.35" y2="-1" width="0.1016" layer="21"/>
<smd name="C" x="0" y="-2.2" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
<smd name="A" x="0" y="2.2" dx="1.6" dy="1.6" layer="1" stop="no" cream="no"/>
<text x="-1.27" y="-1.905" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="2.54" y="-1.905" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.55" y1="1.5" x2="0.55" y2="2.1" layer="29"/>
<rectangle x1="-0.55" y1="-2.1" x2="0.55" y2="-1.5" layer="29"/>
<rectangle x1="-0.5" y1="-2.05" x2="0.5" y2="-1.55" layer="31"/>
<rectangle x1="-0.5" y1="1.55" x2="0.5" y2="2.05" layer="31"/>
<rectangle x1="-0.2" y1="-0.4" x2="0.15" y2="-0.05" layer="21"/>
<rectangle x1="-0.5" y1="-2.1" x2="0.5" y2="-1.4" layer="21"/>
<rectangle x1="-0.5" y1="1.4" x2="0.5" y2="2.05" layer="21"/>
<rectangle x1="-0.5" y1="1" x2="0.5" y2="1.4" layer="21"/>
<rectangle x1="-0.5" y1="-1.4" x2="0.5" y2="-1.05" layer="21"/>
<hole x="0" y="0" drill="2.7"/>
</package>
<package name="CHIPLED_0805">
<description><b>CHIPLED</b><p>
Source: path_to_url ... LG_R971.pdf</description>
<wire x1="-0.35" y1="0.925" x2="0.35" y2="0.925" width="0.1016" layer="21" curve="162.394521"/>
<wire x1="-0.35" y1="-0.925" x2="0.35" y2="-0.925" width="0.1016" layer="21" curve="-162.394521"/>
<wire x1="0.575" y1="0.525" x2="0.575" y2="-0.525" width="0.1016" layer="21"/>
<wire x1="-0.575" y1="-0.5" x2="-0.575" y2="0.925" width="0.1016" layer="21"/>
<circle x="-0.45" y="0.85" radius="0.103" width="0.1016" layer="21"/>
<smd name="C" x="0" y="1.05" dx="1.2" dy="1.2" layer="1"/>
<smd name="A" x="0" y="-1.05" dx="1.2" dy="1.2" layer="1"/>
<text x="-1.27" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="2.54" y="-1.27" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="0.3" y1="0.5" x2="0.625" y2="1" layer="21"/>
<rectangle x1="-0.325" y1="0.5" x2="-0.175" y2="0.75" layer="21"/>
<rectangle x1="0.175" y1="0.5" x2="0.325" y2="0.75" layer="21"/>
<rectangle x1="-0.2" y1="0.5" x2="0.2" y2="0.675" layer="21"/>
<rectangle x1="0.3" y1="-1" x2="0.625" y2="-0.5" layer="21"/>
<rectangle x1="-0.625" y1="-1" x2="-0.3" y2="-0.5" layer="21"/>
<rectangle x1="0.175" y1="-0.75" x2="0.325" y2="-0.5" layer="21"/>
<rectangle x1="-0.325" y1="-0.75" x2="-0.175" y2="-0.5" layer="21"/>
<rectangle x1="-0.2" y1="-0.675" x2="0.2" y2="-0.5" layer="21"/>
<rectangle x1="-0.1" y1="0" x2="0.1" y2="0.2" layer="21"/>
<rectangle x1="-0.6" y1="0.5" x2="-0.3" y2="0.8" layer="21"/>
<rectangle x1="-0.625" y1="0.925" x2="-0.3" y2="1" layer="21"/>
</package>
<package name="CHIPLED_1206">
<description><b>CHIPLED</b><p>
Source: path_to_url ... LG_LY N971.pdf</description>
<wire x1="-0.4" y1="1.6" x2="0.4" y2="1.6" width="0.1016" layer="21" curve="172.619069"/>
<wire x1="-0.8" y1="-0.95" x2="-0.8" y2="0.95" width="0.1016" layer="21"/>
<wire x1="0.8" y1="0.95" x2="0.8" y2="-0.95" width="0.1016" layer="21"/>
<circle x="-0.55" y="1.425" radius="0.1" width="0.1016" layer="21"/>
<smd name="C" x="0" y="1.75" dx="1.5" dy="1.5" layer="1"/>
<smd name="A" x="0" y="-1.75" dx="1.5" dy="1.5" layer="1"/>
<text x="-1.27" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="2.54" y="-1.27" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.85" y1="1.525" x2="-0.35" y2="1.65" layer="21"/>
<rectangle x1="-0.85" y1="1.225" x2="-0.625" y2="1.55" layer="21"/>
<rectangle x1="-0.45" y1="1.225" x2="-0.325" y2="1.45" layer="21"/>
<rectangle x1="-0.65" y1="1.225" x2="-0.225" y2="1.35" layer="21"/>
<rectangle x1="0.35" y1="1.3" x2="0.85" y2="1.65" layer="21"/>
<rectangle x1="0.25" y1="1.225" x2="0.85" y2="1.35" layer="21"/>
<rectangle x1="-0.85" y1="0.95" x2="0.85" y2="1.25" layer="21"/>
<rectangle x1="-0.85" y1="-1.65" x2="0.85" y2="-0.95" layer="21"/>
<rectangle x1="-0.85" y1="0.35" x2="-0.525" y2="0.775" layer="21"/>
<rectangle x1="0.525" y1="0.35" x2="0.85" y2="0.775" layer="21"/>
<rectangle x1="-0.175" y1="0" x2="0.175" y2="0.35" layer="21"/>
</package>
<package name="CHIPLED_0603">
<description><b>CHIPLED</b><p>
Source: path_to_url ... LG_LY Q971.pdf</description>
<wire x1="-0.3" y1="0.8" x2="0.3" y2="0.8" width="0.1016" layer="21" curve="170.055574"/>
<wire x1="-0.275" y1="-0.825" x2="0.275" y2="-0.825" width="0.0508" layer="21" curve="-180"/>
<wire x1="-0.4" y1="0.375" x2="-0.4" y2="-0.35" width="0.1016" layer="21"/>
<wire x1="0.4" y1="0.35" x2="0.4" y2="-0.35" width="0.1016" layer="21"/>
<circle x="-0.35" y="0.625" radius="0.075" width="0.0508" layer="21"/>
<smd name="C" x="0" y="0.75" dx="0.8" dy="0.8" layer="1"/>
<smd name="A" x="0" y="-0.75" dx="0.8" dy="0.8" layer="1"/>
<text x="-0.635" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="1.905" y="-1.27" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.45" y1="0.7" x2="-0.25" y2="0.85" layer="21"/>
<rectangle x1="-0.275" y1="0.55" x2="-0.225" y2="0.6" layer="21"/>
<rectangle x1="-0.45" y1="0.35" x2="-0.4" y2="0.725" layer="21"/>
<rectangle x1="0.25" y1="0.55" x2="0.45" y2="0.85" layer="21"/>
<rectangle x1="-0.45" y1="0.35" x2="0.45" y2="0.575" layer="21"/>
<rectangle x1="-0.45" y1="-0.85" x2="-0.25" y2="-0.35" layer="21"/>
<rectangle x1="0.25" y1="-0.85" x2="0.45" y2="-0.35" layer="21"/>
<rectangle x1="-0.275" y1="-0.575" x2="0.275" y2="-0.35" layer="21"/>
<rectangle x1="-0.275" y1="-0.65" x2="-0.175" y2="-0.55" layer="21"/>
<rectangle x1="0.175" y1="-0.65" x2="0.275" y2="-0.55" layer="21"/>
<rectangle x1="-0.125" y1="0" x2="0.125" y2="0.25" layer="21"/>
</package>
<package name="CHIPLED-0603-TTW">
<description><b>CHIPLED-0603</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: path_to_url ... LO_LS_LY L89K.pdf</description>
<wire x1="-0.3" y1="0.8" x2="0.3" y2="0.8" width="0.1016" layer="21" curve="170.055574"/>
<wire x1="-0.275" y1="-0.825" x2="0.275" y2="-0.825" width="0.0508" layer="21" curve="-180"/>
<wire x1="-0.4" y1="0.375" x2="-0.4" y2="-0.35" width="0.1016" layer="21"/>
<wire x1="0.4" y1="0.35" x2="0.4" y2="-0.35" width="0.1016" layer="21"/>
<circle x="-0.35" y="0.625" radius="0.075" width="0.0508" layer="21"/>
<smd name="C" x="0" y="0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
<smd name="A" x="0" y="-0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
<smd name="A@1" x="0" y="-0.5" dx="0.35" dy="0.35" layer="1"/>
<smd name="C@1" x="0" y="0.5" dx="0.35" dy="0.35" layer="1"/>
<text x="-0.635" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="1.905" y="-1.27" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.45" y1="0.7" x2="-0.25" y2="0.85" layer="21"/>
<rectangle x1="-0.275" y1="0.55" x2="-0.225" y2="0.6" layer="21"/>
<rectangle x1="-0.45" y1="0.35" x2="-0.4" y2="0.725" layer="21"/>
<rectangle x1="0.25" y1="0.55" x2="0.45" y2="0.85" layer="21"/>
<rectangle x1="-0.45" y1="0.35" x2="0.45" y2="0.575" layer="21"/>
<rectangle x1="-0.45" y1="-0.85" x2="-0.25" y2="-0.35" layer="21"/>
<rectangle x1="0.25" y1="-0.85" x2="0.45" y2="-0.35" layer="21"/>
<rectangle x1="-0.275" y1="-0.575" x2="0.275" y2="-0.35" layer="21"/>
<rectangle x1="-0.275" y1="-0.65" x2="-0.175" y2="-0.55" layer="21"/>
<rectangle x1="0.175" y1="-0.65" x2="0.275" y2="-0.55" layer="21"/>
<rectangle x1="-0.125" y1="0" x2="0.125" y2="0.25" layer="21"/>
<rectangle x1="-0.175" y1="0.325" x2="0.175" y2="0.7" layer="29"/>
<rectangle x1="-0.4" y1="0.625" x2="0.4" y2="1.125" layer="29"/>
<rectangle x1="-0.4" y1="-1.125" x2="0.4" y2="-0.625" layer="29"/>
<rectangle x1="-0.175" y1="-0.675" x2="0.175" y2="-0.325" layer="29"/>
</package>
<package name="SMARTLED-TTW">
<description><b>SmartLED TTW</b><p>
Recommended Solder Pad useable for SmartLEDTM and Chipled - Package 0603<br>
Package able to withstand TTW-soldering heat<br>
Package suitable for TTW-soldering<br>
Source: path_to_url ... LO_LS_LY L89K.pdf</description>
<wire x1="-0.35" y1="0.6" x2="0.35" y2="0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.35" y1="0.6" x2="0.35" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.35" y1="-0.6" x2="0.15" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.15" y1="-0.6" x2="-0.35" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="-0.35" y1="-0.6" x2="-0.35" y2="0.6" width="0.1016" layer="21" style="shortdash"/>
<wire x1="0.35" y1="-0.4" x2="0.15" y2="-0.6" width="0.1016" layer="21" style="shortdash"/>
<smd name="C" x="0" y="0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
<smd name="A" x="0" y="-0.875" dx="0.8" dy="0.5" layer="1" stop="no" cream="no"/>
<smd name="A@1" x="0" y="-0.5" dx="0.35" dy="0.35" layer="1" stop="no" cream="no"/>
<smd name="C@1" x="0" y="0.5" dx="0.35" dy="0.35" layer="1" stop="no" cream="no"/>
<text x="-0.635" y="-1.27" size="1.27" layer="25" rot="R90">>NAME</text>
<text x="1.905" y="-1.27" size="1.27" layer="27" rot="R90">>VALUE</text>
<rectangle x1="-0.175" y1="0.325" x2="0.175" y2="0.7" layer="29"/>
<rectangle x1="-0.15" y1="-0.35" x2="0.15" y2="-0.05" layer="21"/>
<rectangle x1="-0.15" y1="0.6" x2="0.15" y2="0.85" layer="21"/>
<rectangle x1="-0.15" y1="-0.85" x2="0.15" y2="-0.6" layer="21"/>
<rectangle x1="-0.225" y1="0.3" x2="0.225" y2="0.975" layer="31"/>
<rectangle x1="-0.175" y1="-0.7" x2="0.175" y2="-0.325" layer="29" rot="R180"/>
<rectangle x1="-0.225" y1="-0.975" x2="0.225" y2="-0.3" layer="31" rot="R180"/>
</package>
<package name="LUMILED+">
<description><b>Lumileds Lighting. LUXEON</b> with cool pad<p>
Source: K2.pdf</description>
<wire x1="-3.575" y1="2.3375" x2="-2.3375" y2="3.575" width="0.2032" layer="21"/>
<wire x1="-2.3375" y1="3.575" x2="2.3375" y2="3.575" width="0.2032" layer="21"/>
<wire x1="3.575" y1="2.3375" x2="3.575" y2="-3.575" width="0.2032" layer="21"/>
<wire x1="3.575" y1="-3.575" x2="-2.3375" y2="-3.575" width="0.2032" layer="21"/>
<wire x1="-2.3375" y1="-3.575" x2="-2.5" y2="-3.4125" width="0.2032" layer="21"/>
<wire x1="-2.5" y1="-3.4125" x2="-3.4125" y2="-2.5" width="0.2032" layer="21" curve="167.429893"/>
<wire x1="-3.4125" y1="-2.5" x2="-3.575" y2="-2.3375" width="0.2032" layer="21"/>
<wire x1="-3.575" y1="-2.3375" x2="-3.575" y2="2.3375" width="0.2032" layer="21"/>
<wire x1="2.3375" y1="3.575" x2="2.5" y2="3.4125" width="0.2032" layer="21"/>
<wire x1="2.5" y1="3.4125" x2="3.4125" y2="2.5" width="0.2032" layer="21" curve="167.429893"/>
<wire x1="3.4125" y1="2.5" x2="3.575" y2="2.3375" width="0.2032" layer="21"/>
<wire x1="-1.725" y1="2.225" x2="-1.0625" y2="2.5625" width="0.2032" layer="21" curve="-255.44999"/>
<wire x1="1.725" y1="-2.225" x2="1.0625" y2="-2.5625" width="0.2032" layer="21" curve="-255.44999"/>
<circle x="0" y="0" radius="2.725" width="0.2032" layer="21"/>
<smd name="1NC" x="-5.2" y="1.15" dx="2.9" dy="1.7" layer="1"/>
<smd name="2+" x="-5.2" y="-1.15" dx="2.9" dy="1.7" layer="1"/>
<smd name="3NC" x="5.2" y="-1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
<smd name="4-" x="5.2" y="1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
<text x="-3.175" y="3.81" size="1.27" layer="25">>NAME</text>
<text x="-3.175" y="-5.08" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-5.975" y1="0.575" x2="-3.625" y2="1.6" layer="21"/>
<rectangle x1="-5.975" y1="-1.6" x2="-3.625" y2="-0.575" layer="21"/>
<rectangle x1="3.625" y1="-1.6" x2="5.975" y2="-0.575" layer="21" rot="R180"/>
<rectangle x1="3.625" y1="0.575" x2="5.975" y2="1.6" layer="21" rot="R180"/>
<polygon width="0.4064" layer="1">
<vertex x="2.3383" y="1.35"/>
<vertex x="0" y="2.7"/>
<vertex x="-2.3383" y="1.35"/>
<vertex x="-2.3383" y="-1.35"/>
<vertex x="0" y="-2.7"/>
<vertex x="2.3383" y="-1.35"/>
</polygon>
<polygon width="0.4064" layer="29">
<vertex x="2.3383" y="1.35"/>
<vertex x="0" y="2.7"/>
<vertex x="-2.3383" y="1.35"/>
<vertex x="-2.3383" y="-1.35"/>
<vertex x="0" y="-2.7"/>
<vertex x="2.3383" y="-1.35"/>
</polygon>
<polygon width="0.4064" layer="31">
<vertex x="2.3383" y="1.35"/>
<vertex x="0" y="2.7"/>
<vertex x="-2.3383" y="1.35"/>
<vertex x="-2.3383" y="-1.35"/>
<vertex x="0" y="-2.7"/>
<vertex x="2.3383" y="-1.35"/>
</polygon>
</package>
<package name="LUMILED">
<description><b>Lumileds Lighting. LUXEON</b> without cool pad<p>
Source: K2.pdf</description>
<wire x1="-3.575" y1="2.3375" x2="-2.3375" y2="3.575" width="0.2032" layer="21"/>
<wire x1="-2.3375" y1="3.575" x2="2.3375" y2="3.575" width="0.2032" layer="21"/>
<wire x1="3.575" y1="2.3375" x2="3.575" y2="-3.575" width="0.2032" layer="21"/>
<wire x1="3.575" y1="-3.575" x2="-2.3375" y2="-3.575" width="0.2032" layer="21"/>
<wire x1="-2.3375" y1="-3.575" x2="-2.5" y2="-3.4125" width="0.2032" layer="21"/>
<wire x1="-2.5" y1="-3.4125" x2="-3.4125" y2="-2.5" width="0.2032" layer="21" curve="167.429893"/>
<wire x1="-3.4125" y1="-2.5" x2="-3.575" y2="-2.3375" width="0.2032" layer="21"/>
<wire x1="-3.575" y1="-2.3375" x2="-3.575" y2="2.3375" width="0.2032" layer="21"/>
<wire x1="2.3375" y1="3.575" x2="2.5" y2="3.4125" width="0.2032" layer="21"/>
<wire x1="2.5" y1="3.4125" x2="3.4125" y2="2.5" width="0.2032" layer="21" curve="167.429893"/>
<wire x1="3.4125" y1="2.5" x2="3.575" y2="2.3375" width="0.2032" layer="21"/>
<wire x1="-1.725" y1="2.225" x2="-1.0625" y2="2.5625" width="0.2032" layer="21" curve="-255.44999"/>
<wire x1="1.725" y1="-2.225" x2="1.0625" y2="-2.5625" width="0.2032" layer="21" curve="-255.44999"/>
<circle x="0" y="0" radius="2.725" width="0.2032" layer="21"/>
<smd name="1NC" x="-5.2" y="1.15" dx="2.9" dy="1.7" layer="1"/>
<smd name="2+" x="-5.2" y="-1.15" dx="2.9" dy="1.7" layer="1"/>
<smd name="3NC" x="5.2" y="-1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
<smd name="4-" x="5.2" y="1.15" dx="2.9" dy="1.7" layer="1" rot="R180"/>
<text x="-3.175" y="3.81" size="1.27" layer="25">>NAME</text>
<text x="-3.175" y="-5.08" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-5.975" y1="0.575" x2="-3.625" y2="1.6" layer="21"/>
<rectangle x1="-5.975" y1="-1.6" x2="-3.625" y2="-0.575" layer="21"/>
<rectangle x1="3.625" y1="-1.6" x2="5.975" y2="-0.575" layer="21" rot="R180"/>
<rectangle x1="3.625" y1="0.575" x2="5.975" y2="1.6" layer="21" rot="R180"/>
<polygon width="0.4064" layer="29">
<vertex x="2.3383" y="1.35"/>
<vertex x="0" y="2.7"/>
<vertex x="-2.3383" y="1.35"/>
<vertex x="-2.3383" y="-1.35"/>
<vertex x="0" y="-2.7"/>
<vertex x="2.3383" y="-1.35"/>
</polygon>
<polygon width="0.4064" layer="31">
<vertex x="2.3383" y="1.35"/>
<vertex x="0" y="2.7"/>
<vertex x="-2.3383" y="1.35"/>
<vertex x="-2.3383" y="-1.35"/>
<vertex x="0" y="-2.7"/>
<vertex x="2.3383" y="-1.35"/>
</polygon>
</package>
<package name="LED10MM">
<description><B>LED</B><p>
10 mm, round</description>
<wire x1="5.08" y1="-2.54" x2="5.08" y2="2.54" width="0.254" layer="21" curve="-306.869898"/>
<wire x1="4.445" y1="0" x2="0" y2="-4.445" width="0.127" layer="21" curve="-90"/>
<wire x1="3.81" y1="0" x2="0" y2="-3.81" width="0.127" layer="21" curve="-90"/>
<wire x1="3.175" y1="0" x2="0" y2="-3.175" width="0.127" layer="21" curve="-90"/>
<wire x1="2.54" y1="0" x2="0" y2="-2.54" width="0.127" layer="21" curve="-90"/>
<wire x1="-4.445" y1="0" x2="0" y2="4.445" width="0.127" layer="21" curve="-90"/>
<wire x1="-3.81" y1="0" x2="0" y2="3.81" width="0.127" layer="21" curve="-90"/>
<wire x1="-3.175" y1="0" x2="0" y2="3.175" width="0.127" layer="21" curve="-90"/>
<wire x1="-2.54" y1="0" x2="0" y2="2.54" width="0.127" layer="21" curve="-90"/>
<wire x1="5.08" y1="2.54" x2="5.08" y2="-2.54" width="0.254" layer="21"/>
<circle x="0" y="0" radius="5.08" width="0.127" layer="21"/>
<pad name="K" x="1.27" y="0" drill="0.8128" diameter="1.6764" shape="square"/>
<pad name="A" x="-1.27" y="0" drill="0.8128" diameter="1.6764" shape="octagon"/>
<text x="6.35" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="6.35" y="-1.27" size="1.27" layer="27">>VALUE</text>
</package>
<package name="KA-3528ASYC">
<description><b>SURFACE MOUNT LED LAMP</b> 3.5x2.8mm<p>
Source: path_to_url
<wire x1="-1.55" y1="1.35" x2="1.55" y2="1.35" width="0.1016" layer="21"/>
<wire x1="1.55" y1="1.35" x2="1.55" y2="-1.35" width="0.1016" layer="21"/>
<wire x1="1.55" y1="-1.35" x2="-1.55" y2="-1.35" width="0.1016" layer="21"/>
<wire x1="-1.55" y1="-1.35" x2="-1.55" y2="1.35" width="0.1016" layer="21"/>
<wire x1="-0.65" y1="0.95" x2="0.65" y2="0.95" width="0.1016" layer="21" curve="-68.40813"/>
<wire x1="0.65" y1="-0.95" x2="-0.65" y2="-0.95" width="0.1016" layer="21" curve="-68.40813"/>
<circle x="0" y="0" radius="1.15" width="0.1016" layer="21"/>
<smd name="A" x="-1.55" y="0" dx="1.5" dy="2.2" layer="1"/>
<smd name="C" x="1.55" y="0" dx="1.5" dy="2.2" layer="1"/>
<text x="-1.905" y="1.905" size="1.27" layer="25">>NAME</text>
<text x="-1.905" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.75" y1="0.6" x2="-1.6" y2="1.1" layer="21"/>
<rectangle x1="-1.75" y1="-1.1" x2="-1.6" y2="-0.6" layer="21"/>
<rectangle x1="1.6" y1="-1.1" x2="1.75" y2="-0.6" layer="21" rot="R180"/>
<rectangle x1="1.6" y1="0.6" x2="1.75" y2="1.1" layer="21" rot="R180"/>
<polygon width="0.1016" layer="21">
<vertex x="1.55" y="-1.35"/>
<vertex x="1.55" y="-0.625"/>
<vertex x="0.825" y="-1.35"/>
</polygon>
<polygon width="0.1016" layer="21">
<vertex x="1.55" y="-1.35"/>
<vertex x="1.55" y="-1.175"/>
<vertex x="1" y="-1.175"/>
<vertex x="0.825" y="-1.35"/>
</polygon>
</package>
<package name="SML0805">
<description><b>SML0805-2CW-TR (0805 PROFILE)</b> COOL WHITE<p>
Source: path_to_url
<wire x1="-0.95" y1="-0.55" x2="0.95" y2="-0.55" width="0.1016" layer="21"/>
<wire x1="0.95" y1="-0.55" x2="0.95" y2="0.55" width="0.1016" layer="21"/>
<wire x1="0.95" y1="0.55" x2="-0.95" y2="0.55" width="0.1016" layer="21"/>
<wire x1="-0.95" y1="0.55" x2="-0.95" y2="-0.55" width="0.1016" layer="21"/>
<wire x1="-0.175" y1="-0.025" x2="0" y2="0.15" width="0.0634" layer="21"/>
<wire x1="0" y1="0.15" x2="0.15" y2="0" width="0.0634" layer="21"/>
<wire x1="0.15" y1="0" x2="-0.025" y2="-0.175" width="0.0634" layer="21"/>
<wire x1="-0.025" y1="-0.175" x2="-0.175" y2="-0.025" width="0.0634" layer="21"/>
<circle x="-0.275" y="0.4" radius="0.125" width="0" layer="21"/>
<smd name="C" x="-1.05" y="0" dx="1.2" dy="1.2" layer="1"/>
<smd name="A" x="1.05" y="0" dx="1.2" dy="1.2" layer="1"/>
<text x="-1.5" y="1" size="1.27" layer="25">>NAME</text>
<text x="-1.5" y="-2" size="1.27" layer="27">>VALUE</text>
</package>
<package name="SML1206">
<description><b>SML10XXKH-TR (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>SML10R3KH-TR</td><td>ULTRA RED</td></tr>
<tr><td>SML10E3KH-TR</td><td>SUPER REDSUPER BLUE</td></tr>
<tr><td>SML10O3KH-TR</td><td>SUPER ORANGE</td></tr>
<tr><td>SML10PY3KH-TR</td><td>PURE YELLOW</td></tr>
<tr><td>SML10OY3KH-TR</td><td>ULTRA YELLOW</td></tr>
<tr><td>SML10AG3KH-TR</td><td>AQUA GREEN</td></tr>
<tr><td>SML10BG3KH-TR</td><td>BLUE GREEN</td></tr>
<tr><td>SML10PB1KH-TR</td><td>SUPER BLUE</td></tr>
<tr><td>SML10CW1KH-TR</td><td>WHITE</td></tr>
</table>
Source: path_to_url
<wire x1="-1.5" y1="0.5" x2="-1.5" y2="-0.5" width="0.2032" layer="21" curve="-180"/>
<wire x1="1.5" y1="-0.5" x2="1.5" y2="0.5" width="0.2032" layer="21" curve="-180"/>
<wire x1="-1.55" y1="0.75" x2="1.55" y2="0.75" width="0.1016" layer="21"/>
<wire x1="1.55" y1="-0.75" x2="-1.55" y2="-0.75" width="0.1016" layer="21"/>
<circle x="-0.725" y="0.525" radius="0.125" width="0" layer="21"/>
<smd name="C" x="-1.75" y="0" dx="1.5" dy="1.5" layer="1"/>
<smd name="A" x="1.75" y="0" dx="1.5" dy="1.5" layer="1"/>
<text x="-1.5" y="1" size="1.27" layer="25">>NAME</text>
<text x="-1.5" y="-2.5" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.6" y1="0.4" x2="-1.15" y2="0.8" layer="21"/>
<rectangle x1="-1.6" y1="-0.8" x2="-1.15" y2="-0.4" layer="21"/>
<rectangle x1="-1.175" y1="-0.6" x2="-1" y2="-0.275" layer="21"/>
<rectangle x1="1.15" y1="-0.8" x2="1.6" y2="-0.4" layer="21" rot="R180"/>
<rectangle x1="1.15" y1="0.4" x2="1.6" y2="0.8" layer="21" rot="R180"/>
<rectangle x1="1" y1="0.275" x2="1.175" y2="0.6" layer="21" rot="R180"/>
<rectangle x1="-0.1" y1="-0.1" x2="0.1" y2="0.1" layer="21"/>
</package>
<package name="SML0603">
<description><b>SML0603-XXX (HIGH INTENSITY) LED</b><p>
<table>
<tr><td>AG3K</td><td>AQUA GREEN</td></tr>
<tr><td>B1K</td><td>SUPER BLUE</td></tr>
<tr><td>R1K</td><td>SUPER RED</td></tr>
<tr><td>R3K</td><td>ULTRA RED</td></tr>
<tr><td>O3K</td><td>SUPER ORANGE</td></tr>
<tr><td>O3KH</td><td>SOFT ORANGE</td></tr>
<tr><td>Y3KH</td><td>SUPER YELLOW</td></tr>
<tr><td>Y3K</td><td>SUPER YELLOW</td></tr>
<tr><td>2CW</td><td>WHITE</td></tr>
</table>
Source: path_to_url
<wire x1="-0.75" y1="0.35" x2="0.75" y2="0.35" width="0.1016" layer="21"/>
<wire x1="0.75" y1="0.35" x2="0.75" y2="-0.35" width="0.1016" layer="21"/>
<wire x1="0.75" y1="-0.35" x2="-0.75" y2="-0.35" width="0.1016" layer="21"/>
<wire x1="-0.75" y1="-0.35" x2="-0.75" y2="0.35" width="0.1016" layer="21"/>
<wire x1="-0.45" y1="0.3" x2="-0.45" y2="-0.3" width="0.1016" layer="21"/>
<wire x1="0.45" y1="0.3" x2="0.45" y2="-0.3" width="0.1016" layer="21"/>
<wire x1="-0.2" y1="0.35" x2="0.2" y2="0.35" width="0.1016" layer="21"/>
<wire x1="-0.2" y1="-0.35" x2="0.2" y2="-0.35" width="0.1016" layer="21"/>
<smd name="C" x="-0.75" y="0" dx="0.8" dy="0.8" layer="1"/>
<smd name="A" x="0.75" y="0" dx="0.8" dy="0.8" layer="1"/>
<text x="-1" y="1" size="1.27" layer="25">>NAME</text>
<text x="-1" y="-2" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.4" y1="0.175" x2="0" y2="0.4" layer="21"/>
<rectangle x1="-0.25" y1="0.175" x2="0" y2="0.4" layer="21"/>
</package>
</packages>
<symbols>
<symbol name="LED">
<wire x1="1.27" y1="0" x2="0" y2="-2.54" width="0.254" layer="94"/>
<wire x1="0" y1="-2.54" x2="-1.27" y2="0" width="0.254" layer="94"/>
<wire x1="1.27" y1="-2.54" x2="0" y2="-2.54" width="0.254" layer="94"/>
<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.254" layer="94"/>
<wire x1="1.27" y1="0" x2="0" y2="0" width="0.254" layer="94"/>
<wire x1="0" y1="0" x2="-1.27" y2="0" width="0.254" layer="94"/>
<wire x1="0" y1="0" x2="0" y2="-2.54" width="0.1524" layer="94"/>
<wire x1="-2.032" y1="-0.762" x2="-3.429" y2="-2.159" width="0.1524" layer="94"/>
<wire x1="-1.905" y1="-1.905" x2="-3.302" y2="-3.302" width="0.1524" layer="94"/>
<text x="3.556" y="-4.572" size="1.778" layer="95" rot="R90">>NAME</text>
<text x="5.715" y="-4.572" size="1.778" layer="96" rot="R90">>VALUE</text>
<pin name="C" x="0" y="-5.08" visible="off" length="short" direction="pas" rot="R90"/>
<pin name="A" x="0" y="2.54" visible="off" length="short" direction="pas" rot="R270"/>
<polygon width="0.1524" layer="94">
<vertex x="-3.429" y="-2.159"/>
<vertex x="-3.048" y="-1.27"/>
<vertex x="-2.54" y="-1.778"/>
</polygon>
<polygon width="0.1524" layer="94">
<vertex x="-3.302" y="-3.302"/>
<vertex x="-2.921" y="-2.413"/>
<vertex x="-2.413" y="-2.921"/>
</polygon>
</symbol>
</symbols>
<devicesets>
<deviceset name="LED" prefix="LED" uservalue="yes">
<description><b>LED</b><p>
<u>OSRAM</u>:<br>
- <u>CHIPLED</u><br>
LG R971, LG N971, LY N971, LG Q971, LY Q971, LO R971, LY R971
LH N974, LH R974<br>
LS Q976, LO Q976, LY Q976<br>
LO Q996<br>
- <u>Hyper CHIPLED</u><br>
LW Q18S<br>
LB Q993, LB Q99A, LB R99A<br>
- <u>SideLED</u><br>
LS A670, LO A670, LY A670, LG A670, LP A670<br>
LB A673, LV A673, LT A673, LW A673<br>
LH A674<br>
LY A675<br>
LS A676, LA A676, LO A676, LY A676, LW A676<br>
LS A679, LY A679, LG A679<br>
- <u>Hyper Micro SIDELED</u><br>
LS Y876, LA Y876, LO Y876, LY Y876<br>
LT Y87S<br>
- <u>SmartLED</u><br>
LW L88C, LW L88S<br>
LB L89C, LB L89S, LG L890<br>
LS L89K, LO L89K, LY L89K<br>
LS L896, LA L896, LO L896, LY L896<br>
- <u>TOPLED</u><br>
LS T670, LO T670, LY T670, LG T670, LP T670<br>
LSG T670, LSP T670, LSY T670, LOP T670, LYG T670<br>
LG T671, LOG T671, LSG T671<br>
LB T673, LV T673, LT T673, LW T673<br>
LH T674<br>
LS T676, LA T676, LO T676, LY T676, LB T676, LH T676, LSB T676, LW T676<br>
LB T67C, LV T67C, LT T67C, LS T67K, LO T67K, LY T67K, LW E67C<br>
LS E67B, LA E67B, LO E67B, LY E67B, LB E67C, LV E67C, LT E67C<br>
LW T67C<br>
LS T679, LY T679, LG T679<br>
LS T770, LO T770, LY T770, LG T770, LP T770<br>
LB T773, LV T773, LT T773, LW T773<br>
LH T774<br>
LS E675, LA E675, LY E675, LS T675<br>
LS T776, LA T776, LO T776, LY T776, LB T776<br>
LHGB T686<br>
LT T68C, LB T68C<br>
- <u>Hyper Mini TOPLED</u><br>
LB M676<br>
- <u>Mini TOPLED Santana</u><br>
LG M470<br>
LS M47K, LO M47K, LY M47K
<p>
Source: path_to_url
<u>LUXEON:</u><br>
- <u>LUMILED</u><br>
LXK2-PW12-R00, LXK2-PW12-S00, LXK2-PW14-U00, LXK2-PW14-V00<br>
LXK2-PM12-R00, LXK2-PM12-S00, LXK2-PM14-U00<br>
LXK2-PE12-Q00, LXK2-PE12-R00, LXK2-PE12-S00, LXK2-PE14-T00, LXK2-PE14-U00<br>
LXK2-PB12-K00, LXK2-PB12-L00, LXK2-PB12-M00, LXK2-PB14-N00, LXK2-PB14-P00, LXK2-PB14-Q00<br>
LXK2-PR12-L00, LXK2-PR12-M00, LXK2-PR14-Q00, LXK2-PR14-R00<br>
LXK2-PD12-Q00, LXK2-PD12-R00, LXK2-PD12-S00<br>
LXK2-PH12-R00, LXK2-PH12-S00<br>
LXK2-PL12-P00, LXK2-PL12-Q00, LXK2-PL12-R00
<p>
Source: www.luxeon.com<p>
<u>KINGBRIGHT:</U><p>
KA-3528ASYC<br>
Source: www.kingbright.com</description>
<gates>
<gate name="G$1" symbol="LED" x="0" y="0"/>
</gates>
<devices>
<device name="SMT1206" package="1206">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LD260" package="LD260">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SQR2X5" package="LED2X5">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="3MM" package="LED3MM">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="5MM" package="LED5MM">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LSU260" package="LSU260">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LZR181" package="LZR181">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="B152" package="Q62902-B152">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="B153" package="Q62902-B153">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="B155" package="Q62902-B155">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="B156" package="Q62902-B156">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SFH480" package="SFH480">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SFH482" package="SFH482">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SQR5.7X3.2" package="U57X32">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="IRL80A" package="IRL80A">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="P-LCC-2" package="P-LCC-2">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MINI-TOP" package="OSRAM-MINI-TOP-LED">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SIDELED" package="OSRAM-SIDELED">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMART-LED" package="SMART-LED">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="B"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="P-LCC-2-BACK" package="P-LCC-2-TOPLED-RG">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MICRO-SIDELED" package="MICRO-SIDELED">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="P-LCC-4" package="P-LCC-4">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C@4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="CHIP-LED0603" package="CHIP-LED0603">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="CHIP-LED0805" package="CHIP-LED0805">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="TOPLED-SANTANA" package="MINI-TOPLED-SANTANA">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="CHIPLED_0805" package="CHIPLED_0805">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="CHIPLED_1206" package="CHIPLED_1206">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="CHIPLED_0603" package="CHIPLED_0603">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="CHIPLED-0603-TTW" package="CHIPLED-0603-TTW">
<connects>
<connect gate="G$1" pin="A" pad="A@1"/>
<connect gate="G$1" pin="C" pad="C@1"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="" package="SMARTLED-TTW">
<connects>
<connect gate="G$1" pin="A" pad="A@1"/>
<connect gate="G$1" pin="C" pad="C@1"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="-LUMILED+" package="LUMILED+">
<connects>
<connect gate="G$1" pin="A" pad="2+"/>
<connect gate="G$1" pin="C" pad="4-"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="-LUMILED" package="LUMILED">
<connects>
<connect gate="G$1" pin="A" pad="2+"/>
<connect gate="G$1" pin="C" pad="4-"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="10MM" package="LED10MM">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="K"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="KA-3528ASYC" package="KA-3528ASYC">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SML0805" package="SML0805">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SML1206" package="SML1206">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SML0603" package="SML0603">
<connects>
<connect gate="G$1" pin="A" pad="A"/>
<connect gate="G$1" pin="C" pad="C"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="crystal">
<description><b>Crystals and Crystal Resonators</b><p>
<author>Created by librarian@cadsoft.de</author></description>
<packages>
<package name="FA-128">
<description><b><b>MHZ RANGE CRYSTASL UNIT</b></b> FA-128<p>
ULTRA MINIATURE SIZE LOW PROFILE SMD<br>
Source: Epson Toyocom FA128.pdf</description>
<wire x1="-0.9" y1="0.7" x2="0.9" y2="0.7" width="0.2032" layer="21"/>
<wire x1="0.9" y1="0.7" x2="0.9" y2="-0.7" width="0.2032" layer="21"/>
<wire x1="0.9" y1="-0.7" x2="-0.9" y2="-0.7" width="0.2032" layer="21"/>
<wire x1="-0.9" y1="-0.7" x2="-0.9" y2="0.7" width="0.2032" layer="21"/>
<smd name="1" x="-0.725" y="-0.575" dx="0.95" dy="0.85" layer="1" stop="no" cream="no"/>
<smd name="2" x="0.725" y="-0.575" dx="0.95" dy="0.85" layer="1" stop="no" cream="no"/>
<smd name="3" x="0.725" y="0.575" dx="0.95" dy="0.85" layer="1" rot="R180" stop="no" cream="no"/>
<smd name="4" x="-0.725" y="0.575" dx="0.95" dy="0.85" layer="1" rot="R180" stop="no" cream="no"/>
<text x="-1.27" y="1.27" size="1.27" layer="25">>NAME</text>
<text x="-1.27" y="-2.54" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.25" y1="0.1" x2="-0.2" y2="1.05" layer="29"/>
<rectangle x1="0.2" y1="0.1" x2="1.25" y2="1.05" layer="29"/>
<rectangle x1="-1.25" y1="-1.05" x2="-0.2" y2="-0.1" layer="29"/>
<rectangle x1="-1.15" y1="0.2" x2="-0.3" y2="0.95" layer="31"/>
<rectangle x1="0.3" y1="0.2" x2="1.15" y2="0.95" layer="31"/>
<rectangle x1="-1.15" y1="-0.95" x2="-0.3" y2="-0.2" layer="31"/>
<polygon width="0.0508" layer="31">
<vertex x="0.325" y="-0.475"/>
<vertex x="0.575" y="-0.225"/>
<vertex x="1.125" y="-0.225"/>
<vertex x="1.125" y="-0.925"/>
<vertex x="0.325" y="-0.925"/>
</polygon>
<polygon width="0.0508" layer="29">
<vertex x="0.225" y="-1.025"/>
<vertex x="0.225" y="-0.45"/>
<vertex x="0.55" y="-0.125"/>
<vertex x="1.225" y="-0.125"/>
<vertex x="1.225" y="-1.025"/>
</polygon>
</package>
<package name="FA-20H">
<description><b>MHZ RANGE CRYSTASL UNIT</b> FA-20H<p>
ULTRA MINIATURE SIZE LOW PROFILE SMD<br>
Source: Epson Toyocom FA-20H.pdf</description>
<wire x1="-1.15" y1="0.9" x2="1.15" y2="0.9" width="0.2032" layer="21"/>
<wire x1="1.15" y1="0.9" x2="1.15" y2="-0.9" width="0.2032" layer="21"/>
<wire x1="1.15" y1="-0.9" x2="-1.15" y2="-0.9" width="0.2032" layer="21"/>
<wire x1="-1.15" y1="-0.9" x2="-1.15" y2="0.9" width="0.2032" layer="21"/>
<smd name="1" x="-0.85" y="-0.7" dx="1.2" dy="1.1" layer="1" stop="no" cream="no"/>
<smd name="2" x="0.85" y="-0.7" dx="1.2" dy="1.1" layer="1" stop="no" cream="no"/>
<smd name="3" x="0.85" y="0.7" dx="1.2" dy="1.1" layer="1" rot="R180" stop="no" cream="no"/>
<smd name="4" x="-0.85" y="0.7" dx="1.2" dy="1.1" layer="1" rot="R180" stop="no" cream="no"/>
<text x="-1.445" y="1.47" size="1.27" layer="25">>NAME</text>
<text x="-1.45" y="-2.75" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-1.5" y1="0.1" x2="-0.2" y2="1.3" layer="29"/>
<rectangle x1="0.2" y1="0.1" x2="1.5" y2="1.3" layer="29"/>
<rectangle x1="-1.5" y1="-1.3" x2="-0.2" y2="-0.1" layer="29"/>
<rectangle x1="-1.4" y1="0.2" x2="-0.3" y2="1.2" layer="31"/>
<rectangle x1="0.3" y1="0.2" x2="1.4" y2="1.2" layer="31"/>
<rectangle x1="-1.4" y1="-1.2" x2="-0.3" y2="-0.2" layer="31"/>
<polygon width="0.0508" layer="31">
<vertex x="0.325" y="-0.475"/>
<vertex x="0.575" y="-0.225"/>
<vertex x="1.375" y="-0.225"/>
<vertex x="1.375" y="-1.175"/>
<vertex x="0.325" y="-1.175"/>
</polygon>
<polygon width="0.0508" layer="29">
<vertex x="0.225" y="-1.275"/>
<vertex x="0.225" y="-0.45"/>
<vertex x="0.55" y="-0.125"/>
<vertex x="1.475" y="-0.125"/>
<vertex x="1.475" y="-1.275"/>
</polygon>
</package>
</packages>
<symbols>
<symbol name="Q-SHIELD2">
<wire x1="2.286" y1="0" x2="2.54" y2="0" width="0.1524" layer="94"/>
<wire x1="0" y1="0" x2="0.254" y2="0" width="0.1524" layer="94"/>
<wire x1="0.889" y1="1.524" x2="0.889" y2="-1.524" width="0.254" layer="94"/>
<wire x1="0.889" y1="-1.524" x2="1.651" y2="-1.524" width="0.254" layer="94"/>
<wire x1="1.651" y1="-1.524" x2="1.651" y2="1.524" width="0.254" layer="94"/>
<wire x1="1.651" y1="1.524" x2="0.889" y2="1.524" width="0.254" layer="94"/>
<wire x1="2.286" y1="1.778" x2="2.286" y2="0" width="0.254" layer="94"/>
<wire x1="2.286" y1="0" x2="2.286" y2="-1.778" width="0.254" layer="94"/>
<wire x1="0.254" y1="1.778" x2="0.254" y2="0" width="0.254" layer="94"/>
<wire x1="0.254" y1="0" x2="0.254" y2="-1.778" width="0.254" layer="94"/>
<wire x1="-1.778" y1="1.905" x2="-1.778" y2="2.54" width="0.1524" layer="94" style="shortdash"/>
<wire x1="-1.778" y1="2.54" x2="4.318" y2="2.54" width="0.1524" layer="94" style="shortdash"/>
<wire x1="4.318" y1="2.54" x2="4.318" y2="1.905" width="0.1524" layer="94" style="shortdash"/>
<wire x1="4.318" y1="-1.905" x2="4.318" y2="-2.54" width="0.1524" layer="94" style="shortdash"/>
<wire x1="-1.778" y1="-2.54" x2="4.318" y2="-2.54" width="0.1524" layer="94" style="shortdash"/>
<wire x1="-1.778" y1="-2.54" x2="-1.778" y2="-1.905" width="0.1524" layer="94" style="shortdash"/>
<text x="-2.54" y="6.096" size="1.778" layer="95">>NAME</text>
<text x="-2.54" y="3.81" size="1.778" layer="96">>VALUE</text>
<pin name="3" x="5.08" y="0" visible="pad" length="short" direction="pas" swaplevel="1" rot="R180"/>
<pin name="1" x="-2.54" y="0" visible="pad" length="short" direction="pas" swaplevel="1"/>
<pin name="4" x="2.54" y="-5.08" visible="pad" length="short" direction="pas" rot="R90"/>
<pin name="2" x="0" y="-5.08" visible="pad" length="short" direction="pas" rot="R90"/>
</symbol>
</symbols>
<devicesets>
<deviceset name="FA-" prefix="Q">
<description><b>MHz RANGE CRYSTAL UNIT</b> <p>
Source: Epson Toyocom</description>
<gates>
<gate name="G$1" symbol="Q-SHIELD2" x="0" y="0"/>
</gates>
<devices>
<device name="128" package="FA-128">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="20H" package="FA-20H">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="kblom">
<packages>
<package name="SO8">
<description><b>SMALL OUTLINE INTEGRATED CIRCUIT</b></description>
<wire x1="2.4" y1="1.9" x2="2.4" y2="-1.9" width="0.2032" layer="21"/>
<wire x1="2.4" y1="-1.9" x2="-2.4" y2="-1.9" width="0.2032" layer="21"/>
<wire x1="-2.4" y1="-1.9" x2="-2.4" y2="1.9" width="0.2032" layer="21"/>
<wire x1="-2.4" y1="1.9" x2="2.4" y2="1.9" width="0.2032" layer="21"/>
<wire x1="2.4" y1="-1.4" x2="-2.4" y2="-1.4" width="0.2032" layer="21"/>
<circle x="-1.905" y="-0.889" radius="0.1796" width="0.127" layer="21"/>
<smd name="2" x="-0.635" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="7" x="-0.635" y="2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="1" x="-1.905" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="3" x="0.635" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="4" x="1.905" y="-2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="8" x="-1.905" y="2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="6" x="0.635" y="2.6" dx="0.6" dy="2.2" layer="1"/>
<smd name="5" x="1.905" y="2.6" dx="0.6" dy="2.2" layer="1"/>
<text x="-3.175" y="-1.905" size="1" layer="25" font="vector" ratio="16" rot="R90">>NAME</text>
<text x="4.445" y="-1.905" size="1" layer="27" font="vector" ratio="16" rot="R90">>VALUE</text>
<rectangle x1="-2.1501" y1="-3.1001" x2="-1.6599" y2="-2" layer="21"/>
<rectangle x1="-0.8801" y1="-3.1001" x2="-0.3899" y2="-2" layer="21"/>
<rectangle x1="0.3899" y1="-3.1001" x2="0.8801" y2="-2" layer="21"/>
<rectangle x1="1.6599" y1="-3.1001" x2="2.1501" y2="-2" layer="21"/>
<rectangle x1="1.6599" y1="2" x2="2.1501" y2="3.1001" layer="21"/>
<rectangle x1="0.3899" y1="2" x2="0.8801" y2="3.1001" layer="21"/>
<rectangle x1="-0.8801" y1="2" x2="-0.3899" y2="3.1001" layer="21"/>
<rectangle x1="-2.1501" y1="2" x2="-1.6599" y2="3.1001" layer="21"/>
</package>
<package name="MSOP8">
<description><b>8-Lead micro SO</b> (RM-8)<p>
Source: path_to_url
<wire x1="1.624" y1="1.299" x2="1.624" y2="-1.301" width="0.1524" layer="21"/>
<wire x1="-1.626" y1="-1.301" x2="-1.626" y2="1.299" width="0.1524" layer="21"/>
<wire x1="1.299" y1="1.624" x2="1.624" y2="1.299" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.626" y1="1.299" x2="-1.301" y2="1.624" width="0.1524" layer="21" curve="-90"/>
<wire x1="-1.626" y1="-1.301" x2="-1.301" y2="-1.626" width="0.1524" layer="21" curve="90"/>
<wire x1="1.299" y1="-1.626" x2="1.624" y2="-1.301" width="0.1524" layer="21" curve="90"/>
<wire x1="-1.341" y1="-1.626" x2="1.299" y2="-1.626" width="0.1524" layer="21"/>
<wire x1="-1.301" y1="1.624" x2="1.299" y2="1.624" width="0.1524" layer="21"/>
<circle x="-1.0456" y="-1.0406" radius="0.2448" width="0.0508" layer="21"/>
<smd name="8" x="-0.976" y="2.262" dx="0.4" dy="1" layer="1"/>
<smd name="7" x="-0.326" y="2.262" dx="0.4" dy="1" layer="1"/>
<smd name="6" x="0.324" y="2.262" dx="0.4" dy="1" layer="1"/>
<smd name="5" x="0.974" y="2.262" dx="0.4" dy="1" layer="1"/>
<smd name="4" x="0.974" y="-2.263" dx="0.4" dy="1" layer="1"/>
<smd name="3" x="0.324" y="-2.263" dx="0.4" dy="1" layer="1"/>
<smd name="2" x="-0.326" y="-2.263" dx="0.4" dy="1" layer="1"/>
<smd name="1" x="-0.976" y="-2.263" dx="0.4" dy="1" layer="1"/>
<text x="-2.032" y="-2.54" size="1.27" layer="25" font="vector" ratio="10" rot="R90">>NAME</text>
<text x="3.302" y="-2.54" size="1.27" layer="27" font="vector" ratio="10" rot="R90">>VALUE</text>
<rectangle x1="-1.0975" y1="1.65" x2="-0.8537" y2="2.5057" layer="21"/>
<rectangle x1="-0.4475" y1="1.65" x2="-0.2037" y2="2.5057" layer="21"/>
<rectangle x1="0.2025" y1="1.65" x2="0.4463" y2="2.5057" layer="21"/>
<rectangle x1="0.8525" y1="1.65" x2="1.0963" y2="2.5057" layer="21"/>
<rectangle x1="-1.0975" y1="-2.5069" x2="-0.8537" y2="-1.65" layer="21"/>
<rectangle x1="-0.4475" y1="-2.5069" x2="-0.2037" y2="-1.65" layer="21"/>
<rectangle x1="0.2025" y1="-2.5069" x2="0.4463" y2="-1.65" layer="21"/>
<rectangle x1="0.8525" y1="-2.5069" x2="1.0963" y2="-1.65" layer="21"/>
</package>
</packages>
<symbols>
<symbol name="ADR44X">
<wire x1="7.62" y1="-5.08" x2="-7.62" y2="-5.08" width="0.254" layer="94"/>
<wire x1="-7.62" y1="-5.08" x2="-7.62" y2="7.62" width="0.254" layer="94"/>
<wire x1="-7.62" y1="7.62" x2="7.62" y2="7.62" width="0.254" layer="94"/>
<wire x1="7.62" y1="7.62" x2="7.62" y2="-5.08" width="0.254" layer="94"/>
<text x="-7.62" y="8.382" size="1.778" layer="95">>NAME</text>
<text x="-6.604" y="0" size="1.778" layer="96">>VALUE</text>
<pin name="VIN" x="-12.7" y="5.08" length="middle" direction="sup"/>
<pin name="GND" x="-12.7" y="-2.54" length="middle" direction="sup"/>
<pin name="VOUT" x="12.7" y="5.08" length="middle" rot="R180"/>
<pin name="TRIM" x="12.7" y="-2.54" length="middle" rot="R180"/>
</symbol>
</symbols>
<devicesets>
<deviceset name="ADR44" prefix="REF">
<description><b>Ultralow Noise, LDO XFET Voltage References with Current Sink and Source</b>
<p><b>Applications:</b><br>
Precision data acquisition systems <br>
High resolution data converters <br>
Battery-powered instrumentation <br>
Portable medical instruments <br>
Industrial process control systems <br>
Precision instruments <br>
Optical control circuits<br>
<p><a href="path_to_url">source</a>
<p><i>vref</i></description>
<gates>
<gate name="G$1" symbol="ADR44X" x="-2.54" y="0"/>
</gates>
<devices>
<device name="R" package="SO8">
<connects>
<connect gate="G$1" pin="GND" pad="4"/>
<connect gate="G$1" pin="TRIM" pad="5"/>
<connect gate="G$1" pin="VIN" pad="2"/>
<connect gate="G$1" pin="VOUT" pad="6"/>
</connects>
<technologies>
<technology name="0A"/>
<technology name="0B"/>
<technology name="1A"/>
<technology name="1B"/>
<technology name="3A"/>
<technology name="3B"/>
<technology name="4A"/>
<technology name="4B"/>
<technology name="5A"/>
<technology name="5B"/>
</technologies>
</device>
<device name="RM" package="MSOP8">
<connects>
<connect gate="G$1" pin="GND" pad="4"/>
<connect gate="G$1" pin="TRIM" pad="5"/>
<connect gate="G$1" pin="VIN" pad="2"/>
<connect gate="G$1" pin="VOUT" pad="6"/>
</connects>
<technologies>
<technology name="0A"/>
<technology name="0B"/>
<technology name="1A"/>
<technology name="1B"/>
<technology name="3A"/>
<technology name="3B"/>
<technology name="4A"/>
<technology name="4B"/>
<technology name="5A"/>
<technology name="5B"/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="inductors">
<description><b>Inductors and Filters</b><p>
Based on the previous library ind-a.lbr<p>
<author>Created by librarian@cadsoft.de</author></description>
<packages>
<package name="0402">
<description><b>EMIFIL (R) Chip Ferrite Bead for GHz Noise</b><p>
Source: path_to_url Ferrite Bead BLM15H.pdf</description>
<wire x1="-0.245" y1="0.224" x2="0.245" y2="0.224" width="0.1524" layer="21"/>
<wire x1="0.245" y1="-0.224" x2="-0.245" y2="-0.224" width="0.1524" layer="21"/>
<wire x1="-1.473" y1="0.483" x2="1.473" y2="0.483" width="0.0508" layer="39"/>
<wire x1="1.473" y1="0.483" x2="1.473" y2="-0.483" width="0.0508" layer="39"/>
<wire x1="1.473" y1="-0.483" x2="-1.473" y2="-0.483" width="0.0508" layer="39"/>
<wire x1="-1.473" y1="-0.483" x2="-1.473" y2="0.483" width="0.0508" layer="39"/>
<smd name="1" x="-0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
<smd name="2" x="0.65" y="0" dx="0.7" dy="0.9" layer="1"/>
<text x="-0.635" y="0.635" size="1.27" layer="25">>NAME</text>
<text x="-0.635" y="-1.905" size="1.27" layer="27">>VALUE</text>
<rectangle x1="-0.554" y1="-0.3048" x2="-0.254" y2="0.2951" layer="21"/>
<rectangle x1="0.2588" y1="-0.3048" x2="0.5588" y2="0.2951" layer="21"/>
<rectangle x1="-0.1999" y1="-0.4001" x2="0.1999" y2="0.4001" layer="35"/>
</package>
</packages>
<symbols>
<symbol name="L">
<text x="-3.81" y="1.3716" size="1.778" layer="95">>NAME</text>
<text x="-3.81" y="-2.921" size="1.778" layer="96">>VALUE</text>
<rectangle x1="-2.54" y1="-0.889" x2="2.54" y2="0.889" layer="94"/>
<pin name="2" x="5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1" rot="R180"/>
<pin name="1" x="-5.08" y="0" visible="off" length="short" direction="pas" swaplevel="1"/>
</symbol>
</symbols>
<devicesets>
<deviceset name="BLM15H" prefix="L">
<description><b>EMIFIL (R) Chip Ferrite Bead for GHz Noise</b><p>
Source: path_to_url Ferrite Bead BLM15H.pdf</description>
<gates>
<gate name="G$1" symbol="L" x="0" y="0"/>
</gates>
<devices>
<device name="" package="0402">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
</connects>
<technologies>
<technology name="B121SN1"/>
<technology name="B221SN1"/>
<technology name="D102SN1"/>
<technology name="D182SN1"/>
<technology name="D601SN1"/>
<technology name="G102SN1"/>
<technology name="G601SN1"/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="SparkFun-Aesthetics">
<description><h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find non-functional items- supply symbols, logos, notations, frame blocks, etc.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - path_to_url
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
<packages>
<package name="OSHW-LOGO-S_COPPER">
<polygon width="0.15" layer="1">
<vertex x="0.3947" y="-0.9528" curve="9.498218"/>
<vertex x="0.5465" y="-0.8746"/>
<vertex x="0.9235" y="-1.182"/>
<vertex x="1.182" y="-0.9235"/>
<vertex x="0.8746" y="-0.5465" curve="19.000773"/>
<vertex x="1.0049" y="-0.232"/>
<vertex x="1.4888" y="-0.1828"/>
<vertex x="1.4888" y="0.1828"/>
<vertex x="1.0049" y="0.232" curve="19.000773"/>
<vertex x="0.8746" y="0.5465"/>
<vertex x="1.182" y="0.9235"/>
<vertex x="0.9235" y="1.182"/>
<vertex x="0.5465" y="0.8746" curve="19.000773"/>
<vertex x="0.232" y="1.0049"/>
<vertex x="0.1828" y="1.4888"/>
<vertex x="-0.1828" y="1.4888"/>
<vertex x="-0.232" y="1.0049" curve="19.000773"/>
<vertex x="-0.5465" y="0.8746"/>
<vertex x="-0.9235" y="1.182"/>
<vertex x="-1.182" y="0.9235"/>
<vertex x="-0.8746" y="0.5465" curve="19.000773"/>
<vertex x="-1.0049" y="0.232"/>
<vertex x="-1.4888" y="0.1828"/>
<vertex x="-1.4888" y="-0.1828"/>
<vertex x="-1.0049" y="-0.232" curve="19.000773"/>
<vertex x="-0.8746" y="-0.5465"/>
<vertex x="-1.182" y="-0.9235"/>
<vertex x="-0.9235" y="-1.182"/>
<vertex x="-0.5465" y="-0.8746" curve="9.498218"/>
<vertex x="-0.3947" y="-0.9528"/>
<vertex x="-0.1794" y="-0.4331" curve="-67.514699"/>
<vertex x="-0.4688" y="0" curve="-247.473915"/>
<vertex x="0.1794" y="-0.4331"/>
</polygon>
</package>
<package name="OSHW-LOGO-M_COPPER">
<polygon width="0.15" layer="1">
<vertex x="0.6578" y="-1.588" curve="9.499253"/>
<vertex x="0.9108" y="-1.4576"/>
<vertex x="1.5392" y="-1.97"/>
<vertex x="1.97" y="-1.5392"/>
<vertex x="1.4576" y="-0.9108" curve="19.001165"/>
<vertex x="1.6747" y="-0.3866"/>
<vertex x="2.4814" y="-0.3047"/>
<vertex x="2.4814" y="0.3047"/>
<vertex x="1.6747" y="0.3866" curve="19.001165"/>
<vertex x="1.4576" y="0.9108"/>
<vertex x="1.97" y="1.5392"/>
<vertex x="1.5392" y="1.97"/>
<vertex x="0.9108" y="1.4576" curve="19.001165"/>
<vertex x="0.3866" y="1.6747"/>
<vertex x="0.3047" y="2.4814"/>
<vertex x="-0.3047" y="2.4814"/>
<vertex x="-0.3866" y="1.6747" curve="19.001165"/>
<vertex x="-0.9108" y="1.4576"/>
<vertex x="-1.5392" y="1.97"/>
<vertex x="-1.97" y="1.5392"/>
<vertex x="-1.4576" y="0.9108" curve="19.001165"/>
<vertex x="-1.6747" y="0.3866"/>
<vertex x="-2.4814" y="0.3047"/>
<vertex x="-2.4814" y="-0.3047"/>
<vertex x="-1.6747" y="-0.3866" curve="19.001165"/>
<vertex x="-1.4576" y="-0.9108"/>
<vertex x="-1.97" y="-1.5392"/>
<vertex x="-1.5392" y="-1.97"/>
<vertex x="-0.9108" y="-1.4576" curve="9.499253"/>
<vertex x="-0.6578" y="-1.588"/>
<vertex x="-0.299" y="-0.7218" curve="-67.507353"/>
<vertex x="-0.7813" y="0" curve="-247.497552"/>
<vertex x="0.299" y="-0.7218"/>
</polygon>
</package>
<package name="OSHW-LOGO-L_COPPER">
<polygon width="0.15" layer="1">
<vertex x="0.9209" y="-2.2231" curve="9.497479"/>
<vertex x="1.2751" y="-2.0407"/>
<vertex x="2.1548" y="-2.758"/>
<vertex x="2.758" y="-2.1548"/>
<vertex x="2.0407" y="-1.2751" curve="18.998791"/>
<vertex x="2.3446" y="-0.5413"/>
<vertex x="3.4739" y="-0.4265"/>
<vertex x="3.4739" y="0.4265"/>
<vertex x="2.3446" y="0.5413" curve="18.998791"/>
<vertex x="2.0407" y="1.2751"/>
<vertex x="2.758" y="2.1548"/>
<vertex x="2.1548" y="2.758"/>
<vertex x="1.2751" y="2.0407" curve="18.998791"/>
<vertex x="0.5413" y="2.3446"/>
<vertex x="0.4265" y="3.4739"/>
<vertex x="-0.4265" y="3.4739"/>
<vertex x="-0.5413" y="2.3446" curve="18.998791"/>
<vertex x="-1.2751" y="2.0407"/>
<vertex x="-2.1548" y="2.758"/>
<vertex x="-2.758" y="2.1548"/>
<vertex x="-2.0407" y="1.2751" curve="18.998791"/>
<vertex x="-2.3446" y="0.5413"/>
<vertex x="-3.4739" y="0.4265"/>
<vertex x="-3.4739" y="-0.4265"/>
<vertex x="-2.3446" y="-0.5413" curve="18.998791"/>
<vertex x="-2.0407" y="-1.2751"/>
<vertex x="-2.758" y="-2.1548"/>
<vertex x="-2.1548" y="-2.758"/>
<vertex x="-1.2751" y="-2.0407" curve="9.497479"/>
<vertex x="-0.9209" y="-2.2231"/>
<vertex x="-0.4186" y="-1.0105" curve="-67.504205"/>
<vertex x="-1.0938" y="0" curve="-247.497204"/>
<vertex x="0.4186" y="-1.0105"/>
</polygon>
</package>
<package name="OSHW-LOGO-L">
<polygon width="0.15" layer="21">
<vertex x="0.9209" y="-2.2231" curve="9.497479"/>
<vertex x="1.2751" y="-2.0407"/>
<vertex x="2.1548" y="-2.758"/>
<vertex x="2.758" y="-2.1548"/>
<vertex x="2.0407" y="-1.2751" curve="18.998791"/>
<vertex x="2.3446" y="-0.5413"/>
<vertex x="3.4739" y="-0.4265"/>
<vertex x="3.4739" y="0.4265"/>
<vertex x="2.3446" y="0.5413" curve="18.998791"/>
<vertex x="2.0407" y="1.2751"/>
<vertex x="2.758" y="2.1548"/>
<vertex x="2.1548" y="2.758"/>
<vertex x="1.2751" y="2.0407" curve="18.998791"/>
<vertex x="0.5413" y="2.3446"/>
<vertex x="0.4265" y="3.4739"/>
<vertex x="-0.4265" y="3.4739"/>
<vertex x="-0.5413" y="2.3446" curve="18.998791"/>
<vertex x="-1.2751" y="2.0407"/>
<vertex x="-2.1548" y="2.758"/>
<vertex x="-2.758" y="2.1548"/>
<vertex x="-2.0407" y="1.2751" curve="18.998791"/>
<vertex x="-2.3446" y="0.5413"/>
<vertex x="-3.4739" y="0.4265"/>
<vertex x="-3.4739" y="-0.4265"/>
<vertex x="-2.3446" y="-0.5413" curve="18.998791"/>
<vertex x="-2.0407" y="-1.2751"/>
<vertex x="-2.758" y="-2.1548"/>
<vertex x="-2.1548" y="-2.758"/>
<vertex x="-1.2751" y="-2.0407" curve="9.497479"/>
<vertex x="-0.9209" y="-2.2231"/>
<vertex x="-0.4186" y="-1.0105" curve="-67.504205"/>
<vertex x="-1.0938" y="0" curve="-247.497204"/>
<vertex x="0.4186" y="-1.0105"/>
</polygon>
</package>
<package name="OSHW-LOGO-M">
<polygon width="0.0762" layer="21">
<vertex x="0.6578" y="-1.588" curve="9.499253"/>
<vertex x="0.9108" y="-1.4576"/>
<vertex x="1.5392" y="-1.97"/>
<vertex x="1.97" y="-1.5392"/>
<vertex x="1.4576" y="-0.9108" curve="19.001165"/>
<vertex x="1.6747" y="-0.3866"/>
<vertex x="2.4814" y="-0.3047"/>
<vertex x="2.4814" y="0.3047"/>
<vertex x="1.6747" y="0.3866" curve="19.001165"/>
<vertex x="1.4576" y="0.9108"/>
<vertex x="1.97" y="1.5392"/>
<vertex x="1.5392" y="1.97"/>
<vertex x="0.9108" y="1.4576" curve="19.001165"/>
<vertex x="0.3866" y="1.6747"/>
<vertex x="0.3047" y="2.4814"/>
<vertex x="-0.3047" y="2.4814"/>
<vertex x="-0.3866" y="1.6747" curve="19.001165"/>
<vertex x="-0.9108" y="1.4576"/>
<vertex x="-1.5392" y="1.97"/>
<vertex x="-1.97" y="1.5392"/>
<vertex x="-1.4576" y="0.9108" curve="19.001165"/>
<vertex x="-1.6747" y="0.3866"/>
<vertex x="-2.4814" y="0.3047"/>
<vertex x="-2.4814" y="-0.3047"/>
<vertex x="-1.6747" y="-0.3866" curve="19.001165"/>
<vertex x="-1.4576" y="-0.9108"/>
<vertex x="-1.97" y="-1.5392"/>
<vertex x="-1.5392" y="-1.97"/>
<vertex x="-0.9108" y="-1.4576" curve="9.499253"/>
<vertex x="-0.6578" y="-1.588"/>
<vertex x="-0.299" y="-0.7218" curve="-67.507353"/>
<vertex x="-0.7813" y="0" curve="-247.497552"/>
<vertex x="0.299" y="-0.7218"/>
</polygon>
</package>
<package name="OSHW-LOGO-S">
<polygon width="0.15" layer="21">
<vertex x="0.3947" y="-0.9528" curve="9.498218"/>
<vertex x="0.5465" y="-0.8746"/>
<vertex x="0.9235" y="-1.182"/>
<vertex x="1.182" y="-0.9235"/>
<vertex x="0.8746" y="-0.5465" curve="19.000773"/>
<vertex x="1.0049" y="-0.232"/>
<vertex x="1.4888" y="-0.1828"/>
<vertex x="1.4888" y="0.1828"/>
<vertex x="1.0049" y="0.232" curve="19.000773"/>
<vertex x="0.8746" y="0.5465"/>
<vertex x="1.182" y="0.9235"/>
<vertex x="0.9235" y="1.182"/>
<vertex x="0.5465" y="0.8746" curve="19.000773"/>
<vertex x="0.232" y="1.0049"/>
<vertex x="0.1828" y="1.4888"/>
<vertex x="-0.1828" y="1.4888"/>
<vertex x="-0.232" y="1.0049" curve="19.000773"/>
<vertex x="-0.5465" y="0.8746"/>
<vertex x="-0.9235" y="1.182"/>
<vertex x="-1.182" y="0.9235"/>
<vertex x="-0.8746" y="0.5465" curve="19.000773"/>
<vertex x="-1.0049" y="0.232"/>
<vertex x="-1.4888" y="0.1828"/>
<vertex x="-1.4888" y="-0.1828"/>
<vertex x="-1.0049" y="-0.232" curve="19.000773"/>
<vertex x="-0.8746" y="-0.5465"/>
<vertex x="-1.182" y="-0.9235"/>
<vertex x="-0.9235" y="-1.182"/>
<vertex x="-0.5465" y="-0.8746" curve="9.498218"/>
<vertex x="-0.3947" y="-0.9528"/>
<vertex x="-0.1794" y="-0.4331" curve="-67.514699"/>
<vertex x="-0.4688" y="0" curve="-247.473915"/>
<vertex x="0.1794" y="-0.4331"/>
</polygon>
</package>
<package name="CREATIVE_COMMONS">
<text x="0" y="2.54" size="1.778" layer="51" font="vector"> path_to_url
<text x="11.43" y="0" size="1.778" layer="51" font="vector">Designed by:</text>
</package>
<package name="DUMMY">
<description>NOTHING HERE!!! For when you want a symbol with no package as an option against symbols with a package.</description>
</package>
</packages>
<symbols>
<symbol name="OSHW-LOGO">
<rectangle x1="-9.5059" y1="-9.0106" x2="-9.4043" y2="-8.9979" layer="94"/>
<rectangle x1="-9.5186" y1="-8.9979" x2="-9.3916" y2="-8.9852" layer="94"/>
<rectangle x1="-9.5313" y1="-8.9852" x2="-9.3789" y2="-8.9725" layer="94"/>
<rectangle x1="-9.5313" y1="-8.9725" x2="-9.3535" y2="-8.9598" layer="94"/>
<rectangle x1="-9.544" y1="-8.9598" x2="-9.3281" y2="-8.9471" layer="94"/>
<rectangle x1="-9.544" y1="-8.9471" x2="-9.29" y2="-8.9344" layer="94"/>
<rectangle x1="-9.544" y1="-8.9344" x2="-9.2392" y2="-8.9217" layer="94"/>
<rectangle x1="-9.544" y1="-8.9217" x2="-9.2138" y2="-8.909" layer="94"/>
<rectangle x1="-9.544" y1="-8.909" x2="-9.2011" y2="-8.8963" layer="94"/>
<rectangle x1="-9.544" y1="-8.8963" x2="-9.1884" y2="-8.8836" layer="94"/>
<rectangle x1="-9.544" y1="-8.8836" x2="-9.1757" y2="-8.8709" layer="94"/>
<rectangle x1="-9.544" y1="-8.8709" x2="-9.1757" y2="-8.8582" layer="94"/>
<rectangle x1="-9.544" y1="-8.8582" x2="-9.163" y2="-8.8455" layer="94"/>
<rectangle x1="-9.544" y1="-8.8455" x2="-9.163" y2="-8.8328" layer="94"/>
<rectangle x1="-9.544" y1="-8.8328" x2="-9.163" y2="-8.8201" layer="94"/>
<rectangle x1="-9.544" y1="-8.8201" x2="-9.163" y2="-8.8074" layer="94"/>
<rectangle x1="-9.544" y1="-8.8074" x2="-9.163" y2="-8.7947" layer="94"/>
<rectangle x1="-9.544" y1="-8.7947" x2="-9.163" y2="-8.782" layer="94"/>
<rectangle x1="-9.544" y1="-8.782" x2="-9.163" y2="-8.7693" layer="94"/>
<rectangle x1="-9.544" y1="-8.7693" x2="-9.163" y2="-8.7566" layer="94"/>
<rectangle x1="-9.544" y1="-8.7566" x2="-9.163" y2="-8.7439" layer="94"/>
<rectangle x1="-9.544" y1="-8.7439" x2="-9.163" y2="-8.7312" layer="94"/>
<rectangle x1="-9.544" y1="-8.7312" x2="-9.163" y2="-8.7185" layer="94"/>
<rectangle x1="-9.544" y1="-8.7185" x2="-9.163" y2="-8.7058" layer="94"/>
<rectangle x1="-9.544" y1="-8.7058" x2="-9.163" y2="-8.6931" layer="94"/>
<rectangle x1="-9.544" y1="-8.6931" x2="-9.163" y2="-8.6804" layer="94"/>
<rectangle x1="-9.544" y1="-8.6804" x2="-9.163" y2="-8.6677" layer="94"/>
<rectangle x1="-9.544" y1="-8.6677" x2="-9.163" y2="-8.655" layer="94"/>
<rectangle x1="-9.544" y1="-8.655" x2="-9.163" y2="-8.6423" layer="94"/>
<rectangle x1="-9.544" y1="-8.6423" x2="-9.163" y2="-8.6296" layer="94"/>
<rectangle x1="-9.544" y1="-8.6296" x2="-9.163" y2="-8.6169" layer="94"/>
<rectangle x1="-9.544" y1="-8.6169" x2="-9.163" y2="-8.6042" layer="94"/>
<rectangle x1="-9.544" y1="-8.6042" x2="-9.163" y2="-8.5915" layer="94"/>
<rectangle x1="-9.544" y1="-8.5915" x2="-9.163" y2="-8.5788" layer="94"/>
<rectangle x1="-9.544" y1="-8.5788" x2="-9.163" y2="-8.5661" layer="94"/>
<rectangle x1="-9.544" y1="-8.5661" x2="-9.163" y2="-8.5534" layer="94"/>
<rectangle x1="-9.544" y1="-8.5534" x2="-9.163" y2="-8.5407" layer="94"/>
<rectangle x1="-9.544" y1="-8.5407" x2="-9.163" y2="-8.528" layer="94"/>
<rectangle x1="-9.544" y1="-8.528" x2="-9.163" y2="-8.5153" layer="94"/>
<rectangle x1="-9.544" y1="-8.5153" x2="-9.163" y2="-8.5026" layer="94"/>
<rectangle x1="-9.544" y1="-8.5026" x2="-9.163" y2="-8.4899" layer="94"/>
<rectangle x1="-9.544" y1="-8.4899" x2="-9.163" y2="-8.4772" layer="94"/>
<rectangle x1="-9.544" y1="-8.4772" x2="-9.163" y2="-8.4645" layer="94"/>
<rectangle x1="-9.544" y1="-8.4645" x2="-9.163" y2="-8.4518" layer="94"/>
<rectangle x1="-9.544" y1="-8.4518" x2="-9.163" y2="-8.4391" layer="94"/>
<rectangle x1="-9.544" y1="-8.4391" x2="-9.163" y2="-8.4264" layer="94"/>
<rectangle x1="-9.544" y1="-8.4264" x2="-9.163" y2="-8.4137" layer="94"/>
<rectangle x1="-9.544" y1="-8.4137" x2="-9.163" y2="-8.401" layer="94"/>
<rectangle x1="-9.544" y1="-8.401" x2="-9.163" y2="-8.3883" layer="94"/>
<rectangle x1="-9.544" y1="-8.3883" x2="-9.163" y2="-8.3756" layer="94"/>
<rectangle x1="-9.544" y1="-8.3756" x2="-9.163" y2="-8.3629" layer="94"/>
<rectangle x1="-9.544" y1="-8.3629" x2="-9.163" y2="-8.3502" layer="94"/>
<rectangle x1="-9.544" y1="-8.3502" x2="-9.163" y2="-8.3375" layer="94"/>
<rectangle x1="-0.2984" y1="-8.3502" x2="-0.2349" y2="-8.3375" layer="94"/>
<rectangle x1="-0.2095" y1="-8.3502" x2="-0.1968" y2="-8.3375" layer="94"/>
<rectangle x1="-0.1714" y1="-8.3502" x2="-0.1206" y2="-8.3375" layer="94"/>
<rectangle x1="-0.1079" y1="-8.3502" x2="-0.0698" y2="-8.3375" layer="94"/>
<rectangle x1="3.4481" y1="-8.3502" x2="3.4608" y2="-8.3375" layer="94"/>
<rectangle x1="3.4989" y1="-8.3502" x2="3.5116" y2="-8.3375" layer="94"/>
<rectangle x1="3.5497" y1="-8.3502" x2="3.5878" y2="-8.3375" layer="94"/>
<rectangle x1="4.8832" y1="-8.3502" x2="4.934" y2="-8.3375" layer="94"/>
<rectangle x1="5.0102" y1="-8.3502" x2="5.0229" y2="-8.3375" layer="94"/>
<rectangle x1="5.7214" y1="-8.3502" x2="5.7722" y2="-8.3375" layer="94"/>
<rectangle x1="7.0041" y1="-8.3502" x2="7.0422" y2="-8.3375" layer="94"/>
<rectangle x1="7.0549" y1="-8.3502" x2="7.0803" y2="-8.3375" layer="94"/>
<rectangle x1="7.1057" y1="-8.3502" x2="7.1311" y2="-8.3375" layer="94"/>
<rectangle x1="10.6363" y1="-8.3502" x2="10.6871" y2="-8.3375" layer="94"/>
<rectangle x1="10.7252" y1="-8.3502" x2="10.7379" y2="-8.3375" layer="94"/>
<rectangle x1="10.7506" y1="-8.3502" x2="10.7887" y2="-8.3375" layer="94"/>
<rectangle x1="10.8141" y1="-8.3502" x2="10.8522" y2="-8.3375" layer="94"/>
<rectangle x1="-9.544" y1="-8.3375" x2="-9.163" y2="-8.3248" layer="94"/>
<rectangle x1="-1.4922" y1="-8.3375" x2="-1.4541" y2="-8.3248" layer="94"/>
<rectangle x1="-0.3873" y1="-8.3375" x2="0.0318" y2="-8.3248" layer="94"/>
<rectangle x1="1.0478" y1="-8.3375" x2="1.0859" y2="-8.3248" layer="94"/>
<rectangle x1="3.2957" y1="-8.3375" x2="3.7148" y2="-8.3248" layer="94"/>
<rectangle x1="4.7943" y1="-8.3375" x2="5.1499" y2="-8.3248" layer="94"/>
<rectangle x1="5.5055" y1="-8.3375" x2="5.8484" y2="-8.3248" layer="94"/>
<rectangle x1="6.8771" y1="-8.3375" x2="7.2708" y2="-8.3248" layer="94"/>
<rectangle x1="7.5629" y1="-8.3375" x2="7.6137" y2="-8.3248" layer="94"/>
<rectangle x1="8.3122" y1="-8.3375" x2="8.3376" y2="-8.3248" layer="94"/>
<rectangle x1="10.5728" y1="-8.3375" x2="10.9792" y2="-8.3248" layer="94"/>
<rectangle x1="-10.8267" y1="-8.3248" x2="-10.6362" y2="-8.3121" layer="94"/>
<rectangle x1="-9.544" y1="-8.3248" x2="-9.163" y2="-8.3121" layer="94"/>
<rectangle x1="-8.8963" y1="-8.3248" x2="-8.7312" y2="-8.3121" layer="94"/>
<rectangle x1="-7.0167" y1="-8.3248" x2="-6.8008" y2="-8.3121" layer="94"/>
<rectangle x1="-2.5844" y1="-8.3248" x2="-2.5336" y2="-8.3121" layer="94"/>
<rectangle x1="-1.5049" y1="-8.3248" x2="-1.4287" y2="-8.3121" layer="94"/>
<rectangle x1="-0.4127" y1="-8.3248" x2="0.0572" y2="-8.3121" layer="94"/>
<rectangle x1="0.2858" y1="-8.3248" x2="0.362" y2="-8.3121" layer="94"/>
<rectangle x1="1.0351" y1="-8.3248" x2="1.1113" y2="-8.3121" layer="94"/>
<rectangle x1="3.2703" y1="-8.3248" x2="3.7402" y2="-8.3121" layer="94"/>
<rectangle x1="4.7689" y1="-8.3248" x2="5.1753" y2="-8.3121" layer="94"/>
<rectangle x1="5.4674" y1="-8.3248" x2="5.8738" y2="-8.3121" layer="94"/>
<rectangle x1="6.839" y1="-8.3248" x2="7.2962" y2="-8.3121" layer="94"/>
<rectangle x1="7.5502" y1="-8.3248" x2="7.6264" y2="-8.3121" layer="94"/>
<rectangle x1="8.2868" y1="-8.3248" x2="8.363" y2="-8.3121" layer="94"/>
<rectangle x1="10.5347" y1="-8.3248" x2="11.0046" y2="-8.3121" layer="94"/>
<rectangle x1="-10.8648" y1="-8.3121" x2="-10.5981" y2="-8.2994" layer="94"/>
<rectangle x1="-9.544" y1="-8.3121" x2="-9.1503" y2="-8.2994" layer="94"/>
<rectangle x1="-8.9471" y1="-8.3121" x2="-8.6804" y2="-8.2994" layer="94"/>
<rectangle x1="-7.0421" y1="-8.3121" x2="-6.7754" y2="-8.2994" layer="94"/>
<rectangle x1="-2.5971" y1="-8.3121" x2="-2.5082" y2="-8.2994" layer="94"/>
<rectangle x1="-1.5176" y1="-8.3121" x2="-1.416" y2="-8.2994" layer="94"/>
<rectangle x1="-0.4254" y1="-8.3121" x2="0.0699" y2="-8.2994" layer="94"/>
<rectangle x1="0.2858" y1="-8.3121" x2="0.3874" y2="-8.2994" layer="94"/>
<rectangle x1="1.0224" y1="-8.3121" x2="1.124" y2="-8.2994" layer="94"/>
<rectangle x1="3.2576" y1="-8.3121" x2="3.7656" y2="-8.2994" layer="94"/>
<rectangle x1="4.7562" y1="-8.3121" x2="5.188" y2="-8.2994" layer="94"/>
<rectangle x1="5.4547" y1="-8.3121" x2="5.8865" y2="-8.2994" layer="94"/>
<rectangle x1="6.8263" y1="-8.3121" x2="7.3216" y2="-8.2994" layer="94"/>
<rectangle x1="7.5375" y1="-8.3121" x2="7.6518" y2="-8.2994" layer="94"/>
<rectangle x1="8.2741" y1="-8.3121" x2="8.3884" y2="-8.2994" layer="94"/>
<rectangle x1="10.5093" y1="-8.3121" x2="11.0173" y2="-8.2994" layer="94"/>
<rectangle x1="-10.9029" y1="-8.2994" x2="-10.56" y2="-8.2867" layer="94"/>
<rectangle x1="-9.544" y1="-8.2994" x2="-9.1503" y2="-8.2867" layer="94"/>
<rectangle x1="-8.9852" y1="-8.2994" x2="-8.6423" y2="-8.2867" layer="94"/>
<rectangle x1="-7.0675" y1="-8.2994" x2="-6.75" y2="-8.2867" layer="94"/>
<rectangle x1="-5.6578" y1="-8.2994" x2="-5.607" y2="-8.2867" layer="94"/>
<rectangle x1="-2.5971" y1="-8.2994" x2="-2.4828" y2="-8.2867" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2994" x2="-1.4033" y2="-8.2867" layer="94"/>
<rectangle x1="-0.4508" y1="-8.2994" x2="0.0826" y2="-8.2867" layer="94"/>
<rectangle x1="0.2731" y1="-8.2994" x2="0.4128" y2="-8.2867" layer="94"/>
<rectangle x1="1.0224" y1="-8.2994" x2="1.1494" y2="-8.2867" layer="94"/>
<rectangle x1="3.2322" y1="-8.2994" x2="3.791" y2="-8.2867" layer="94"/>
<rectangle x1="4.7308" y1="-8.2994" x2="5.2007" y2="-8.2867" layer="94"/>
<rectangle x1="5.442" y1="-8.2994" x2="5.9119" y2="-8.2867" layer="94"/>
<rectangle x1="6.8009" y1="-8.2994" x2="7.3343" y2="-8.2867" layer="94"/>
<rectangle x1="7.5375" y1="-8.2994" x2="7.6645" y2="-8.2867" layer="94"/>
<rectangle x1="8.2741" y1="-8.2994" x2="8.4011" y2="-8.2867" layer="94"/>
<rectangle x1="10.4839" y1="-8.2994" x2="11.0427" y2="-8.2867" layer="94"/>
<rectangle x1="-10.941" y1="-8.2867" x2="-10.5219" y2="-8.274" layer="94"/>
<rectangle x1="-9.544" y1="-8.2867" x2="-9.1376" y2="-8.274" layer="94"/>
<rectangle x1="-9.036" y1="-8.2867" x2="-8.6042" y2="-8.274" layer="94"/>
<rectangle x1="-7.1056" y1="-8.2867" x2="-6.6992" y2="-8.274" layer="94"/>
<rectangle x1="-5.6832" y1="-8.2867" x2="-5.5943" y2="-8.274" layer="94"/>
<rectangle x1="-4.6164" y1="-8.2867" x2="-4.5148" y2="-8.274" layer="94"/>
<rectangle x1="-2.6098" y1="-8.2867" x2="-2.4574" y2="-8.274" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2867" x2="-1.3779" y2="-8.274" layer="94"/>
<rectangle x1="-0.4635" y1="-8.2867" x2="0.0826" y2="-8.274" layer="94"/>
<rectangle x1="0.2731" y1="-8.2867" x2="0.4382" y2="-8.274" layer="94"/>
<rectangle x1="1.0224" y1="-8.2867" x2="1.1748" y2="-8.274" layer="94"/>
<rectangle x1="3.2195" y1="-8.2867" x2="3.8164" y2="-8.274" layer="94"/>
<rectangle x1="4.7181" y1="-8.2867" x2="5.2261" y2="-8.274" layer="94"/>
<rectangle x1="5.4166" y1="-8.2867" x2="5.9246" y2="-8.274" layer="94"/>
<rectangle x1="6.7755" y1="-8.2867" x2="7.347" y2="-8.274" layer="94"/>
<rectangle x1="7.5375" y1="-8.2867" x2="7.6899" y2="-8.274" layer="94"/>
<rectangle x1="8.2741" y1="-8.2867" x2="8.4138" y2="-8.274" layer="94"/>
<rectangle x1="10.4585" y1="-8.2867" x2="11.0554" y2="-8.274" layer="94"/>
<rectangle x1="-10.9918" y1="-8.274" x2="-10.4711" y2="-8.2613" layer="94"/>
<rectangle x1="-9.544" y1="-8.274" x2="-9.1122" y2="-8.2613" layer="94"/>
<rectangle x1="-9.0741" y1="-8.274" x2="-8.5534" y2="-8.2613" layer="94"/>
<rectangle x1="-7.1564" y1="-8.274" x2="-6.6484" y2="-8.2613" layer="94"/>
<rectangle x1="-5.6959" y1="-8.274" x2="-5.5562" y2="-8.2613" layer="94"/>
<rectangle x1="-4.6291" y1="-8.274" x2="-4.464" y2="-8.2613" layer="94"/>
<rectangle x1="-2.6098" y1="-8.274" x2="-2.4193" y2="-8.2613" layer="94"/>
<rectangle x1="-1.5176" y1="-8.274" x2="-1.3398" y2="-8.2613" layer="94"/>
<rectangle x1="-0.5016" y1="-8.274" x2="0.0953" y2="-8.2613" layer="94"/>
<rectangle x1="0.2731" y1="-8.274" x2="0.4636" y2="-8.2613" layer="94"/>
<rectangle x1="1.0224" y1="-8.274" x2="1.2002" y2="-8.2613" layer="94"/>
<rectangle x1="3.1814" y1="-8.274" x2="3.8545" y2="-8.2613" layer="94"/>
<rectangle x1="4.6927" y1="-8.274" x2="5.2388" y2="-8.2613" layer="94"/>
<rectangle x1="5.3912" y1="-8.274" x2="5.95" y2="-8.2613" layer="94"/>
<rectangle x1="6.7501" y1="-8.274" x2="7.347" y2="-8.2613" layer="94"/>
<rectangle x1="7.5375" y1="-8.274" x2="7.728" y2="-8.2613" layer="94"/>
<rectangle x1="8.2741" y1="-8.274" x2="8.4519" y2="-8.2613" layer="94"/>
<rectangle x1="10.4331" y1="-8.274" x2="11.0808" y2="-8.2613" layer="94"/>
<rectangle x1="-11.0426" y1="-8.2613" x2="-10.4203" y2="-8.2486" layer="94"/>
<rectangle x1="-9.544" y1="-8.2613" x2="-8.5026" y2="-8.2486" layer="94"/>
<rectangle x1="-7.2072" y1="-8.2613" x2="-6.5976" y2="-8.2486" layer="94"/>
<rectangle x1="-5.7086" y1="-8.2613" x2="-5.5054" y2="-8.2486" layer="94"/>
<rectangle x1="-4.6418" y1="-8.2613" x2="-4.4259" y2="-8.2486" layer="94"/>
<rectangle x1="-2.5971" y1="-8.2613" x2="-2.3812" y2="-8.2486" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2613" x2="-1.3017" y2="-8.2486" layer="94"/>
<rectangle x1="-0.527" y1="-8.2613" x2="0.108" y2="-8.2486" layer="94"/>
<rectangle x1="0.2731" y1="-8.2613" x2="0.5271" y2="-8.2486" layer="94"/>
<rectangle x1="1.0224" y1="-8.2613" x2="1.2383" y2="-8.2486" layer="94"/>
<rectangle x1="3.156" y1="-8.2613" x2="3.8799" y2="-8.2486" layer="94"/>
<rectangle x1="4.6673" y1="-8.2613" x2="5.2896" y2="-8.2486" layer="94"/>
<rectangle x1="5.3277" y1="-8.2613" x2="5.9754" y2="-8.2486" layer="94"/>
<rectangle x1="6.712" y1="-8.2613" x2="7.347" y2="-8.2486" layer="94"/>
<rectangle x1="7.5375" y1="-8.2613" x2="7.7534" y2="-8.2486" layer="94"/>
<rectangle x1="8.2741" y1="-8.2613" x2="8.5027" y2="-8.2486" layer="94"/>
<rectangle x1="10.395" y1="-8.2613" x2="11.1189" y2="-8.2486" layer="94"/>
<rectangle x1="-11.068" y1="-8.2486" x2="-10.3822" y2="-8.2359" layer="94"/>
<rectangle x1="-9.544" y1="-8.2486" x2="-8.4772" y2="-8.2359" layer="94"/>
<rectangle x1="-7.2453" y1="-8.2486" x2="-6.5595" y2="-8.2359" layer="94"/>
<rectangle x1="-5.7213" y1="-8.2486" x2="-5.48" y2="-8.2359" layer="94"/>
<rectangle x1="-4.6418" y1="-8.2486" x2="-4.4005" y2="-8.2359" layer="94"/>
<rectangle x1="-2.5971" y1="-8.2486" x2="-2.3558" y2="-8.2359" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2486" x2="-1.289" y2="-8.2359" layer="94"/>
<rectangle x1="-0.5651" y1="-8.2486" x2="0.108" y2="-8.2359" layer="94"/>
<rectangle x1="0.2731" y1="-8.2486" x2="0.5525" y2="-8.2359" layer="94"/>
<rectangle x1="1.0224" y1="-8.2486" x2="1.2637" y2="-8.2359" layer="94"/>
<rectangle x1="3.1306" y1="-8.2486" x2="3.8926" y2="-8.2359" layer="94"/>
<rectangle x1="4.6546" y1="-8.2486" x2="5.9881" y2="-8.2359" layer="94"/>
<rectangle x1="6.6993" y1="-8.2486" x2="7.3597" y2="-8.2359" layer="94"/>
<rectangle x1="7.5375" y1="-8.2486" x2="7.7788" y2="-8.2359" layer="94"/>
<rectangle x1="8.2741" y1="-8.2486" x2="8.5281" y2="-8.2359" layer="94"/>
<rectangle x1="10.3696" y1="-8.2486" x2="11.1443" y2="-8.2359" layer="94"/>
<rectangle x1="-11.0934" y1="-8.2359" x2="-10.3695" y2="-8.2232" layer="94"/>
<rectangle x1="-9.544" y1="-8.2359" x2="-8.4518" y2="-8.2232" layer="94"/>
<rectangle x1="-7.2707" y1="-8.2359" x2="-6.5468" y2="-8.2232" layer="94"/>
<rectangle x1="-5.734" y1="-8.2359" x2="-5.4546" y2="-8.2232" layer="94"/>
<rectangle x1="-4.6545" y1="-8.2359" x2="-4.3751" y2="-8.2232" layer="94"/>
<rectangle x1="-2.5971" y1="-8.2359" x2="-2.3431" y2="-8.2232" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2359" x2="-1.2763" y2="-8.2232" layer="94"/>
<rectangle x1="-0.5778" y1="-8.2359" x2="0.108" y2="-8.2232" layer="94"/>
<rectangle x1="0.2731" y1="-8.2359" x2="0.5652" y2="-8.2232" layer="94"/>
<rectangle x1="1.0224" y1="-8.2359" x2="1.2764" y2="-8.2232" layer="94"/>
<rectangle x1="3.1179" y1="-8.2359" x2="3.918" y2="-8.2232" layer="94"/>
<rectangle x1="4.6419" y1="-8.2359" x2="6.0008" y2="-8.2232" layer="94"/>
<rectangle x1="6.6866" y1="-8.2359" x2="7.3597" y2="-8.2232" layer="94"/>
<rectangle x1="7.5375" y1="-8.2359" x2="7.7915" y2="-8.2232" layer="94"/>
<rectangle x1="8.2741" y1="-8.2359" x2="8.5281" y2="-8.2232" layer="94"/>
<rectangle x1="10.3569" y1="-8.2359" x2="11.157" y2="-8.2232" layer="94"/>
<rectangle x1="-11.1061" y1="-8.2232" x2="-10.3568" y2="-8.2105" layer="94"/>
<rectangle x1="-9.544" y1="-8.2232" x2="-8.4391" y2="-8.2105" layer="94"/>
<rectangle x1="-7.2834" y1="-8.2232" x2="-6.5341" y2="-8.2105" layer="94"/>
<rectangle x1="-5.734" y1="-8.2232" x2="-5.4292" y2="-8.2105" layer="94"/>
<rectangle x1="-4.6545" y1="-8.2232" x2="-4.3624" y2="-8.2105" layer="94"/>
<rectangle x1="-2.5971" y1="-8.2232" x2="-2.3304" y2="-8.2105" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2232" x2="-1.2636" y2="-8.2105" layer="94"/>
<rectangle x1="-0.5905" y1="-8.2232" x2="0.108" y2="-8.2105" layer="94"/>
<rectangle x1="0.2731" y1="-8.2232" x2="0.5652" y2="-8.2105" layer="94"/>
<rectangle x1="1.0224" y1="-8.2232" x2="1.2891" y2="-8.2105" layer="94"/>
<rectangle x1="3.1052" y1="-8.2232" x2="3.9307" y2="-8.2105" layer="94"/>
<rectangle x1="4.6292" y1="-8.2232" x2="6.0135" y2="-8.2105" layer="94"/>
<rectangle x1="6.6739" y1="-8.2232" x2="7.3597" y2="-8.2105" layer="94"/>
<rectangle x1="7.5375" y1="-8.2232" x2="7.7915" y2="-8.2105" layer="94"/>
<rectangle x1="8.2741" y1="-8.2232" x2="8.5408" y2="-8.2105" layer="94"/>
<rectangle x1="10.3442" y1="-8.2232" x2="11.1697" y2="-8.2105" layer="94"/>
<rectangle x1="-11.1188" y1="-8.2105" x2="-10.3441" y2="-8.1978" layer="94"/>
<rectangle x1="-9.544" y1="-8.2105" x2="-8.4264" y2="-8.1978" layer="94"/>
<rectangle x1="-7.2961" y1="-8.2105" x2="-6.5214" y2="-8.1978" layer="94"/>
<rectangle x1="-5.734" y1="-8.2105" x2="-5.4165" y2="-8.1978" layer="94"/>
<rectangle x1="-4.6545" y1="-8.2105" x2="-4.337" y2="-8.1978" layer="94"/>
<rectangle x1="-2.5971" y1="-8.2105" x2="-2.3304" y2="-8.1978" layer="94"/>
<rectangle x1="-1.5176" y1="-8.2105" x2="-1.2636" y2="-8.1978" layer="94"/>
<rectangle x1="-0.6032" y1="-8.2105" x2="0.108" y2="-8.1978" layer="94"/>
<rectangle x1="0.2731" y1="-8.2105" x2="0.5779" y2="-8.1978" layer="94"/>
<rectangle x1="1.0224" y1="-8.2105" x2="1.3018" y2="-8.1978" layer="94"/>
<rectangle x1="3.0925" y1="-8.2105" x2="3.9434" y2="-8.1978" layer="94"/>
<rectangle x1="4.6165" y1="-8.2105" x2="6.0262" y2="-8.1978" layer="94"/>
<rectangle x1="6.6612" y1="-8.2105" x2="7.3597" y2="-8.1978" layer="94"/>
<rectangle x1="7.5375" y1="-8.2105" x2="7.7915" y2="-8.1978" layer="94"/>
<rectangle x1="8.2741" y1="-8.2105" x2="8.5408" y2="-8.1978" layer="94"/>
<rectangle x1="10.3315" y1="-8.2105" x2="11.1697" y2="-8.1978" layer="94"/>
<rectangle x1="-11.1315" y1="-8.1978" x2="-10.3187" y2="-8.1851" layer="94"/>
<rectangle x1="-9.544" y1="-8.1978" x2="-8.4137" y2="-8.1851" layer="94"/>
<rectangle x1="-7.3215" y1="-8.1978" x2="-6.5087" y2="-8.1851" layer="94"/>
<rectangle x1="-5.734" y1="-8.1978" x2="-5.3911" y2="-8.1851" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1978" x2="-4.3116" y2="-8.1851" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1978" x2="-2.3304" y2="-8.1851" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1978" x2="-1.2636" y2="-8.1851" layer="94"/>
<rectangle x1="-0.6159" y1="-8.1978" x2="0.0953" y2="-8.1851" layer="94"/>
<rectangle x1="0.2731" y1="-8.1978" x2="0.5779" y2="-8.1851" layer="94"/>
<rectangle x1="1.0224" y1="-8.1978" x2="1.3018" y2="-8.1851" layer="94"/>
<rectangle x1="3.0798" y1="-8.1978" x2="3.9561" y2="-8.1851" layer="94"/>
<rectangle x1="4.6038" y1="-8.1978" x2="6.0389" y2="-8.1851" layer="94"/>
<rectangle x1="6.6358" y1="-8.1978" x2="7.347" y2="-8.1851" layer="94"/>
<rectangle x1="7.5375" y1="-8.1978" x2="7.8042" y2="-8.1851" layer="94"/>
<rectangle x1="8.2741" y1="-8.1978" x2="8.5408" y2="-8.1851" layer="94"/>
<rectangle x1="10.3188" y1="-8.1978" x2="11.1951" y2="-8.1851" layer="94"/>
<rectangle x1="-11.1569" y1="-8.1851" x2="-10.2933" y2="-8.1724" layer="94"/>
<rectangle x1="-9.544" y1="-8.1851" x2="-8.3883" y2="-8.1724" layer="94"/>
<rectangle x1="-7.3342" y1="-8.1851" x2="-6.4833" y2="-8.1724" layer="94"/>
<rectangle x1="-5.734" y1="-8.1851" x2="-5.3657" y2="-8.1724" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1851" x2="-4.2862" y2="-8.1724" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1851" x2="-2.3304" y2="-8.1724" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1851" x2="-1.2636" y2="-8.1724" layer="94"/>
<rectangle x1="-0.6413" y1="-8.1851" x2="0.0826" y2="-8.1724" layer="94"/>
<rectangle x1="0.2731" y1="-8.1851" x2="0.5779" y2="-8.1724" layer="94"/>
<rectangle x1="1.0224" y1="-8.1851" x2="1.3018" y2="-8.1724" layer="94"/>
<rectangle x1="3.0544" y1="-8.1851" x2="3.9688" y2="-8.1724" layer="94"/>
<rectangle x1="4.5911" y1="-8.1851" x2="6.0516" y2="-8.1724" layer="94"/>
<rectangle x1="6.6231" y1="-8.1851" x2="7.347" y2="-8.1724" layer="94"/>
<rectangle x1="7.5375" y1="-8.1851" x2="7.8042" y2="-8.1724" layer="94"/>
<rectangle x1="8.2741" y1="-8.1851" x2="8.5408" y2="-8.1724" layer="94"/>
<rectangle x1="10.3061" y1="-8.1851" x2="11.2078" y2="-8.1724" layer="94"/>
<rectangle x1="-11.1823" y1="-8.1724" x2="-10.2679" y2="-8.1597" layer="94"/>
<rectangle x1="-9.544" y1="-8.1724" x2="-8.3502" y2="-8.1597" layer="94"/>
<rectangle x1="-7.3596" y1="-8.1724" x2="-6.4579" y2="-8.1597" layer="94"/>
<rectangle x1="-5.734" y1="-8.1724" x2="-5.353" y2="-8.1597" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1724" x2="-4.2608" y2="-8.1597" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1724" x2="-2.3304" y2="-8.1597" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1724" x2="-1.2636" y2="-8.1597" layer="94"/>
<rectangle x1="-0.654" y1="-8.1724" x2="0.0826" y2="-8.1597" layer="94"/>
<rectangle x1="0.2731" y1="-8.1724" x2="0.5779" y2="-8.1597" layer="94"/>
<rectangle x1="1.0224" y1="-8.1724" x2="1.3145" y2="-8.1597" layer="94"/>
<rectangle x1="3.0417" y1="-8.1724" x2="3.9815" y2="-8.1597" layer="94"/>
<rectangle x1="4.5784" y1="-8.1724" x2="6.0643" y2="-8.1597" layer="94"/>
<rectangle x1="6.6104" y1="-8.1724" x2="7.347" y2="-8.1597" layer="94"/>
<rectangle x1="7.5375" y1="-8.1724" x2="7.8042" y2="-8.1597" layer="94"/>
<rectangle x1="8.2741" y1="-8.1724" x2="8.5408" y2="-8.1597" layer="94"/>
<rectangle x1="10.2934" y1="-8.1724" x2="11.2205" y2="-8.1597" layer="94"/>
<rectangle x1="-11.2077" y1="-8.1597" x2="-10.2552" y2="-8.147" layer="94"/>
<rectangle x1="-9.544" y1="-8.1597" x2="-8.3375" y2="-8.147" layer="94"/>
<rectangle x1="-7.3723" y1="-8.1597" x2="-6.4452" y2="-8.147" layer="94"/>
<rectangle x1="-5.734" y1="-8.1597" x2="-5.353" y2="-8.147" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1597" x2="-4.2608" y2="-8.147" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1597" x2="-2.3177" y2="-8.147" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1597" x2="-1.2636" y2="-8.147" layer="94"/>
<rectangle x1="-0.6667" y1="-8.1597" x2="0.0826" y2="-8.147" layer="94"/>
<rectangle x1="0.2731" y1="-8.1597" x2="0.5779" y2="-8.147" layer="94"/>
<rectangle x1="1.0224" y1="-8.1597" x2="1.3145" y2="-8.147" layer="94"/>
<rectangle x1="3.029" y1="-8.1597" x2="3.9942" y2="-8.147" layer="94"/>
<rectangle x1="4.5784" y1="-8.1597" x2="6.077" y2="-8.147" layer="94"/>
<rectangle x1="6.5977" y1="-8.1597" x2="7.347" y2="-8.147" layer="94"/>
<rectangle x1="7.5375" y1="-8.1597" x2="7.8042" y2="-8.147" layer="94"/>
<rectangle x1="8.2741" y1="-8.1597" x2="8.5408" y2="-8.147" layer="94"/>
<rectangle x1="10.268" y1="-8.1597" x2="11.2332" y2="-8.147" layer="94"/>
<rectangle x1="-11.2204" y1="-8.147" x2="-10.2425" y2="-8.1343" layer="94"/>
<rectangle x1="-9.544" y1="-8.147" x2="-8.3248" y2="-8.1343" layer="94"/>
<rectangle x1="-7.385" y1="-8.147" x2="-6.4325" y2="-8.1343" layer="94"/>
<rectangle x1="-5.734" y1="-8.147" x2="-5.3403" y2="-8.1343" layer="94"/>
<rectangle x1="-4.6545" y1="-8.147" x2="-4.2481" y2="-8.1343" layer="94"/>
<rectangle x1="-2.5971" y1="-8.147" x2="-2.3177" y2="-8.1343" layer="94"/>
<rectangle x1="-1.5176" y1="-8.147" x2="-1.2509" y2="-8.1343" layer="94"/>
<rectangle x1="-0.6794" y1="-8.147" x2="0.0699" y2="-8.1343" layer="94"/>
<rectangle x1="0.2731" y1="-8.147" x2="0.5779" y2="-8.1343" layer="94"/>
<rectangle x1="1.0224" y1="-8.147" x2="1.3145" y2="-8.1343" layer="94"/>
<rectangle x1="3.0163" y1="-8.147" x2="4.0069" y2="-8.1343" layer="94"/>
<rectangle x1="4.5657" y1="-8.147" x2="6.077" y2="-8.1343" layer="94"/>
<rectangle x1="6.585" y1="-8.147" x2="7.3343" y2="-8.1343" layer="94"/>
<rectangle x1="7.5375" y1="-8.147" x2="7.8042" y2="-8.1343" layer="94"/>
<rectangle x1="8.2741" y1="-8.147" x2="8.5408" y2="-8.1343" layer="94"/>
<rectangle x1="10.2553" y1="-8.147" x2="11.2459" y2="-8.1343" layer="94"/>
<rectangle x1="-11.2331" y1="-8.1343" x2="-10.2298" y2="-8.1216" layer="94"/>
<rectangle x1="-9.544" y1="-8.1343" x2="-8.3121" y2="-8.1216" layer="94"/>
<rectangle x1="-7.3977" y1="-8.1343" x2="-6.4198" y2="-8.1216" layer="94"/>
<rectangle x1="-5.734" y1="-8.1343" x2="-5.3403" y2="-8.1216" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1343" x2="-4.2481" y2="-8.1216" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1343" x2="-2.3177" y2="-8.1216" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1343" x2="-1.2509" y2="-8.1216" layer="94"/>
<rectangle x1="-0.6794" y1="-8.1343" x2="0.0699" y2="-8.1216" layer="94"/>
<rectangle x1="0.2731" y1="-8.1343" x2="0.5779" y2="-8.1216" layer="94"/>
<rectangle x1="1.0224" y1="-8.1343" x2="1.3145" y2="-8.1216" layer="94"/>
<rectangle x1="3.0036" y1="-8.1343" x2="4.0196" y2="-8.1216" layer="94"/>
<rectangle x1="4.5657" y1="-8.1343" x2="6.0897" y2="-8.1216" layer="94"/>
<rectangle x1="6.5723" y1="-8.1343" x2="7.3343" y2="-8.1216" layer="94"/>
<rectangle x1="7.5375" y1="-8.1343" x2="7.8042" y2="-8.1216" layer="94"/>
<rectangle x1="8.2741" y1="-8.1343" x2="8.5408" y2="-8.1216" layer="94"/>
<rectangle x1="10.2553" y1="-8.1343" x2="11.2586" y2="-8.1216" layer="94"/>
<rectangle x1="-11.2458" y1="-8.1216" x2="-10.2171" y2="-8.1089" layer="94"/>
<rectangle x1="-9.544" y1="-8.1216" x2="-8.3121" y2="-8.1089" layer="94"/>
<rectangle x1="-7.4104" y1="-8.1216" x2="-6.4071" y2="-8.1089" layer="94"/>
<rectangle x1="-5.734" y1="-8.1216" x2="-5.3403" y2="-8.1089" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1216" x2="-4.2481" y2="-8.1089" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1216" x2="-2.3177" y2="-8.1089" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1216" x2="-1.2509" y2="-8.1089" layer="94"/>
<rectangle x1="-0.6921" y1="-8.1216" x2="0.0699" y2="-8.1089" layer="94"/>
<rectangle x1="0.2731" y1="-8.1216" x2="0.5779" y2="-8.1089" layer="94"/>
<rectangle x1="1.0224" y1="-8.1216" x2="1.3145" y2="-8.1089" layer="94"/>
<rectangle x1="2.9909" y1="-8.1216" x2="4.0323" y2="-8.1089" layer="94"/>
<rectangle x1="4.553" y1="-8.1216" x2="6.0897" y2="-8.1089" layer="94"/>
<rectangle x1="6.5596" y1="-8.1216" x2="7.3343" y2="-8.1089" layer="94"/>
<rectangle x1="7.5375" y1="-8.1216" x2="7.8042" y2="-8.1089" layer="94"/>
<rectangle x1="8.2741" y1="-8.1216" x2="8.5408" y2="-8.1089" layer="94"/>
<rectangle x1="10.2426" y1="-8.1216" x2="11.2586" y2="-8.1089" layer="94"/>
<rectangle x1="-11.2585" y1="-8.1089" x2="-10.2044" y2="-8.0962" layer="94"/>
<rectangle x1="-9.544" y1="-8.1089" x2="-8.2994" y2="-8.0962" layer="94"/>
<rectangle x1="-7.4231" y1="-8.1089" x2="-6.3944" y2="-8.0962" layer="94"/>
<rectangle x1="-5.734" y1="-8.1089" x2="-5.3403" y2="-8.0962" layer="94"/>
<rectangle x1="-4.6545" y1="-8.1089" x2="-4.2481" y2="-8.0962" layer="94"/>
<rectangle x1="-2.5971" y1="-8.1089" x2="-2.3177" y2="-8.0962" layer="94"/>
<rectangle x1="-1.5176" y1="-8.1089" x2="-1.2509" y2="-8.0962" layer="94"/>
<rectangle x1="-0.7048" y1="-8.1089" x2="0.0699" y2="-8.0962" layer="94"/>
<rectangle x1="0.2731" y1="-8.1089" x2="0.5779" y2="-8.0962" layer="94"/>
<rectangle x1="1.0224" y1="-8.1089" x2="1.3145" y2="-8.0962" layer="94"/>
<rectangle x1="2.9782" y1="-8.1089" x2="4.045" y2="-8.0962" layer="94"/>
<rectangle x1="4.553" y1="-8.1089" x2="6.0897" y2="-8.0962" layer="94"/>
<rectangle x1="6.5469" y1="-8.1089" x2="7.3216" y2="-8.0962" layer="94"/>
<rectangle x1="7.5375" y1="-8.1089" x2="7.8042" y2="-8.0962" layer="94"/>
<rectangle x1="8.2741" y1="-8.1089" x2="8.5408" y2="-8.0962" layer="94"/>
<rectangle x1="10.2426" y1="-8.1089" x2="11.2713" y2="-8.0962" layer="94"/>
<rectangle x1="-11.2585" y1="-8.0962" x2="-10.1917" y2="-8.0835" layer="94"/>
<rectangle x1="-9.544" y1="-8.0962" x2="-8.2867" y2="-8.0835" layer="94"/>
<rectangle x1="-7.4358" y1="-8.0962" x2="-6.3817" y2="-8.0835" layer="94"/>
<rectangle x1="-5.734" y1="-8.0962" x2="-5.3403" y2="-8.0835" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0962" x2="-4.2481" y2="-8.0835" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0962" x2="-2.3177" y2="-8.0835" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0962" x2="-1.2509" y2="-8.0835" layer="94"/>
<rectangle x1="-0.7175" y1="-8.0962" x2="0.0699" y2="-8.0835" layer="94"/>
<rectangle x1="0.2731" y1="-8.0962" x2="0.5779" y2="-8.0835" layer="94"/>
<rectangle x1="1.0224" y1="-8.0962" x2="1.3145" y2="-8.0835" layer="94"/>
<rectangle x1="2.9655" y1="-8.0962" x2="4.0577" y2="-8.0835" layer="94"/>
<rectangle x1="4.5403" y1="-8.0962" x2="6.1024" y2="-8.0835" layer="94"/>
<rectangle x1="6.5342" y1="-8.0962" x2="7.3089" y2="-8.0835" layer="94"/>
<rectangle x1="7.5375" y1="-8.0962" x2="7.8042" y2="-8.0835" layer="94"/>
<rectangle x1="8.2741" y1="-8.0962" x2="8.5408" y2="-8.0835" layer="94"/>
<rectangle x1="10.2299" y1="-8.0962" x2="11.2967" y2="-8.0835" layer="94"/>
<rectangle x1="-11.2712" y1="-8.0835" x2="-10.179" y2="-8.0708" layer="94"/>
<rectangle x1="-9.544" y1="-8.0835" x2="-8.2613" y2="-8.0708" layer="94"/>
<rectangle x1="-7.4485" y1="-8.0835" x2="-6.369" y2="-8.0708" layer="94"/>
<rectangle x1="-5.734" y1="-8.0835" x2="-5.3403" y2="-8.0708" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0835" x2="-4.2481" y2="-8.0708" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0835" x2="-2.3177" y2="-8.0708" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0835" x2="-1.2509" y2="-8.0708" layer="94"/>
<rectangle x1="-0.7302" y1="-8.0835" x2="0.0572" y2="-8.0708" layer="94"/>
<rectangle x1="0.2731" y1="-8.0835" x2="0.5779" y2="-8.0708" layer="94"/>
<rectangle x1="1.0224" y1="-8.0835" x2="1.3145" y2="-8.0708" layer="94"/>
<rectangle x1="2.9655" y1="-8.0835" x2="4.0577" y2="-8.0708" layer="94"/>
<rectangle x1="4.5276" y1="-8.0835" x2="6.1151" y2="-8.0708" layer="94"/>
<rectangle x1="6.5215" y1="-8.0835" x2="7.2962" y2="-8.0708" layer="94"/>
<rectangle x1="7.5375" y1="-8.0835" x2="7.8042" y2="-8.0708" layer="94"/>
<rectangle x1="8.2741" y1="-8.0835" x2="8.5408" y2="-8.0708" layer="94"/>
<rectangle x1="10.2172" y1="-8.0835" x2="11.3094" y2="-8.0708" layer="94"/>
<rectangle x1="-11.2839" y1="-8.0708" x2="-10.1663" y2="-8.0581" layer="94"/>
<rectangle x1="-9.544" y1="-8.0708" x2="-8.2486" y2="-8.0581" layer="94"/>
<rectangle x1="-7.4612" y1="-8.0708" x2="-6.3563" y2="-8.0581" layer="94"/>
<rectangle x1="-5.734" y1="-8.0708" x2="-5.3403" y2="-8.0581" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0708" x2="-4.2481" y2="-8.0581" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0708" x2="-2.3177" y2="-8.0581" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0708" x2="-1.2509" y2="-8.0581" layer="94"/>
<rectangle x1="-0.7429" y1="-8.0708" x2="0.0572" y2="-8.0581" layer="94"/>
<rectangle x1="0.2731" y1="-8.0708" x2="0.5779" y2="-8.0581" layer="94"/>
<rectangle x1="1.0224" y1="-8.0708" x2="1.3145" y2="-8.0581" layer="94"/>
<rectangle x1="2.9528" y1="-8.0708" x2="4.0704" y2="-8.0581" layer="94"/>
<rectangle x1="4.5276" y1="-8.0708" x2="6.1278" y2="-8.0581" layer="94"/>
<rectangle x1="6.5215" y1="-8.0708" x2="7.2962" y2="-8.0581" layer="94"/>
<rectangle x1="7.5375" y1="-8.0708" x2="7.8042" y2="-8.0581" layer="94"/>
<rectangle x1="8.2741" y1="-8.0708" x2="8.5408" y2="-8.0581" layer="94"/>
<rectangle x1="10.2045" y1="-8.0708" x2="11.3221" y2="-8.0581" layer="94"/>
<rectangle x1="-11.2966" y1="-8.0581" x2="-10.1663" y2="-8.0454" layer="94"/>
<rectangle x1="-9.544" y1="-8.0581" x2="-8.2359" y2="-8.0454" layer="94"/>
<rectangle x1="-7.4739" y1="-8.0581" x2="-6.3563" y2="-8.0454" layer="94"/>
<rectangle x1="-5.734" y1="-8.0581" x2="-5.3403" y2="-8.0454" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0581" x2="-4.2481" y2="-8.0454" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0581" x2="-2.3177" y2="-8.0454" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0581" x2="-1.2509" y2="-8.0454" layer="94"/>
<rectangle x1="-0.7429" y1="-8.0581" x2="-0.2603" y2="-8.0454" layer="94"/>
<rectangle x1="-0.1841" y1="-8.0581" x2="0.0445" y2="-8.0454" layer="94"/>
<rectangle x1="0.2731" y1="-8.0581" x2="0.5779" y2="-8.0454" layer="94"/>
<rectangle x1="1.0224" y1="-8.0581" x2="1.3145" y2="-8.0454" layer="94"/>
<rectangle x1="2.9528" y1="-8.0581" x2="3.4735" y2="-8.0454" layer="94"/>
<rectangle x1="3.5624" y1="-8.0581" x2="4.0831" y2="-8.0454" layer="94"/>
<rectangle x1="4.5149" y1="-8.0581" x2="6.1278" y2="-8.0454" layer="94"/>
<rectangle x1="6.5088" y1="-8.0581" x2="7.2835" y2="-8.0454" layer="94"/>
<rectangle x1="7.5375" y1="-8.0581" x2="7.8042" y2="-8.0454" layer="94"/>
<rectangle x1="8.2741" y1="-8.0581" x2="8.5408" y2="-8.0454" layer="94"/>
<rectangle x1="10.1918" y1="-8.0581" x2="10.7379" y2="-8.0454" layer="94"/>
<rectangle x1="10.8268" y1="-8.0581" x2="11.3221" y2="-8.0454" layer="94"/>
<rectangle x1="-11.3093" y1="-8.0454" x2="-10.1536" y2="-8.0327" layer="94"/>
<rectangle x1="-9.544" y1="-8.0454" x2="-8.2359" y2="-8.0327" layer="94"/>
<rectangle x1="-7.4739" y1="-8.0454" x2="-6.3436" y2="-8.0327" layer="94"/>
<rectangle x1="-5.734" y1="-8.0454" x2="-5.3403" y2="-8.0327" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0454" x2="-4.2481" y2="-8.0327" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0454" x2="-2.3177" y2="-8.0327" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0454" x2="-1.2509" y2="-8.0327" layer="94"/>
<rectangle x1="-0.7556" y1="-8.0454" x2="-0.2984" y2="-8.0327" layer="94"/>
<rectangle x1="-0.1333" y1="-8.0454" x2="0.0318" y2="-8.0327" layer="94"/>
<rectangle x1="0.2731" y1="-8.0454" x2="0.5779" y2="-8.0327" layer="94"/>
<rectangle x1="1.0224" y1="-8.0454" x2="1.3145" y2="-8.0327" layer="94"/>
<rectangle x1="2.9401" y1="-8.0454" x2="3.4227" y2="-8.0327" layer="94"/>
<rectangle x1="3.6132" y1="-8.0454" x2="4.0958" y2="-8.0327" layer="94"/>
<rectangle x1="4.5149" y1="-8.0454" x2="4.9086" y2="-8.0327" layer="94"/>
<rectangle x1="5.0102" y1="-8.0454" x2="5.6325" y2="-8.0327" layer="94"/>
<rectangle x1="5.7214" y1="-8.0454" x2="6.1405" y2="-8.0327" layer="94"/>
<rectangle x1="6.5088" y1="-8.0454" x2="6.9533" y2="-8.0327" layer="94"/>
<rectangle x1="7.1184" y1="-8.0454" x2="7.2708" y2="-8.0327" layer="94"/>
<rectangle x1="7.5375" y1="-8.0454" x2="7.8042" y2="-8.0327" layer="94"/>
<rectangle x1="8.2741" y1="-8.0454" x2="8.5408" y2="-8.0327" layer="94"/>
<rectangle x1="10.1791" y1="-8.0454" x2="10.6744" y2="-8.0327" layer="94"/>
<rectangle x1="10.8776" y1="-8.0454" x2="11.3348" y2="-8.0327" layer="94"/>
<rectangle x1="-11.322" y1="-8.0327" x2="-10.1409" y2="-8.02" layer="94"/>
<rectangle x1="-9.544" y1="-8.0327" x2="-8.2232" y2="-8.02" layer="94"/>
<rectangle x1="-7.4866" y1="-8.0327" x2="-6.3309" y2="-8.02" layer="94"/>
<rectangle x1="-5.734" y1="-8.0327" x2="-5.3403" y2="-8.02" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0327" x2="-4.2481" y2="-8.02" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0327" x2="-2.3177" y2="-8.02" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0327" x2="-1.2509" y2="-8.02" layer="94"/>
<rectangle x1="-0.7556" y1="-8.0327" x2="-0.3492" y2="-8.02" layer="94"/>
<rectangle x1="-0.0571" y1="-8.0327" x2="-0.0063" y2="-8.02" layer="94"/>
<rectangle x1="0.2731" y1="-8.0327" x2="0.5779" y2="-8.02" layer="94"/>
<rectangle x1="1.0224" y1="-8.0327" x2="1.3145" y2="-8.02" layer="94"/>
<rectangle x1="2.9274" y1="-8.0327" x2="3.3719" y2="-8.02" layer="94"/>
<rectangle x1="3.664" y1="-8.0327" x2="4.1085" y2="-8.02" layer="94"/>
<rectangle x1="4.5022" y1="-8.0327" x2="4.8832" y2="-8.02" layer="94"/>
<rectangle x1="5.061" y1="-8.0327" x2="5.5817" y2="-8.02" layer="94"/>
<rectangle x1="5.7595" y1="-8.0327" x2="6.1532" y2="-8.02" layer="94"/>
<rectangle x1="6.4961" y1="-8.0327" x2="6.9152" y2="-8.02" layer="94"/>
<rectangle x1="7.1946" y1="-8.0327" x2="7.2454" y2="-8.02" layer="94"/>
<rectangle x1="7.5375" y1="-8.0327" x2="7.8042" y2="-8.02" layer="94"/>
<rectangle x1="8.2741" y1="-8.0327" x2="8.5408" y2="-8.02" layer="94"/>
<rectangle x1="10.1791" y1="-8.0327" x2="10.6109" y2="-8.02" layer="94"/>
<rectangle x1="10.9284" y1="-8.0327" x2="11.3348" y2="-8.02" layer="94"/>
<rectangle x1="-11.3347" y1="-8.02" x2="-10.1282" y2="-8.0073" layer="94"/>
<rectangle x1="-9.544" y1="-8.02" x2="-8.2232" y2="-8.0073" layer="94"/>
<rectangle x1="-7.4993" y1="-8.02" x2="-6.3182" y2="-8.0073" layer="94"/>
<rectangle x1="-5.734" y1="-8.02" x2="-5.3403" y2="-8.0073" layer="94"/>
<rectangle x1="-4.6545" y1="-8.02" x2="-4.2481" y2="-8.0073" layer="94"/>
<rectangle x1="-2.5971" y1="-8.02" x2="-2.3177" y2="-8.0073" layer="94"/>
<rectangle x1="-1.5176" y1="-8.02" x2="-1.2509" y2="-8.0073" layer="94"/>
<rectangle x1="-0.7556" y1="-8.02" x2="-0.3873" y2="-8.0073" layer="94"/>
<rectangle x1="0.2731" y1="-8.02" x2="0.5779" y2="-8.0073" layer="94"/>
<rectangle x1="1.0224" y1="-8.02" x2="1.3145" y2="-8.0073" layer="94"/>
<rectangle x1="2.9147" y1="-8.02" x2="3.3338" y2="-8.0073" layer="94"/>
<rectangle x1="3.7021" y1="-8.02" x2="4.1085" y2="-8.0073" layer="94"/>
<rectangle x1="4.5022" y1="-8.02" x2="4.8451" y2="-8.0073" layer="94"/>
<rectangle x1="5.0864" y1="-8.02" x2="5.5563" y2="-8.0073" layer="94"/>
<rectangle x1="5.7849" y1="-8.02" x2="6.1532" y2="-8.0073" layer="94"/>
<rectangle x1="6.4961" y1="-8.02" x2="6.8771" y2="-8.0073" layer="94"/>
<rectangle x1="7.5375" y1="-8.02" x2="7.8042" y2="-8.0073" layer="94"/>
<rectangle x1="8.2741" y1="-8.02" x2="8.5408" y2="-8.0073" layer="94"/>
<rectangle x1="10.1664" y1="-8.02" x2="10.5855" y2="-8.0073" layer="94"/>
<rectangle x1="10.9665" y1="-8.02" x2="11.3348" y2="-8.0073" layer="94"/>
<rectangle x1="-11.3347" y1="-8.0073" x2="-10.1155" y2="-7.9946" layer="94"/>
<rectangle x1="-9.544" y1="-8.0073" x2="-8.2105" y2="-7.9946" layer="94"/>
<rectangle x1="-7.512" y1="-8.0073" x2="-6.3055" y2="-7.9946" layer="94"/>
<rectangle x1="-5.734" y1="-8.0073" x2="-5.3403" y2="-7.9946" layer="94"/>
<rectangle x1="-4.6545" y1="-8.0073" x2="-4.2481" y2="-7.9946" layer="94"/>
<rectangle x1="-2.5971" y1="-8.0073" x2="-2.3177" y2="-7.9946" layer="94"/>
<rectangle x1="-1.5176" y1="-8.0073" x2="-1.2509" y2="-7.9946" layer="94"/>
<rectangle x1="-0.7683" y1="-8.0073" x2="-0.4" y2="-7.9946" layer="94"/>
<rectangle x1="0.2731" y1="-8.0073" x2="0.5779" y2="-7.9946" layer="94"/>
<rectangle x1="1.0224" y1="-8.0073" x2="1.3145" y2="-7.9946" layer="94"/>
<rectangle x1="2.902" y1="-8.0073" x2="3.3084" y2="-7.9946" layer="94"/>
<rectangle x1="3.7148" y1="-8.0073" x2="4.1212" y2="-7.9946" layer="94"/>
<rectangle x1="4.5022" y1="-8.0073" x2="4.8324" y2="-7.9946" layer="94"/>
<rectangle x1="5.0991" y1="-8.0073" x2="5.5436" y2="-7.9946" layer="94"/>
<rectangle x1="5.8103" y1="-8.0073" x2="6.1532" y2="-7.9946" layer="94"/>
<rectangle x1="6.4961" y1="-8.0073" x2="6.8517" y2="-7.9946" layer="94"/>
<rectangle x1="7.5375" y1="-8.0073" x2="7.8042" y2="-7.9946" layer="94"/>
<rectangle x1="8.2741" y1="-8.0073" x2="8.5408" y2="-7.9946" layer="94"/>
<rectangle x1="10.1664" y1="-8.0073" x2="10.5601" y2="-7.9946" layer="94"/>
<rectangle x1="10.9792" y1="-8.0073" x2="11.3475" y2="-7.9946" layer="94"/>
<rectangle x1="-11.3474" y1="-7.9946" x2="-10.1028" y2="-7.9819" layer="94"/>
<rectangle x1="-9.544" y1="-7.9946" x2="-8.1978" y2="-7.9819" layer="94"/>
<rectangle x1="-7.5247" y1="-7.9946" x2="-6.2928" y2="-7.9819" layer="94"/>
<rectangle x1="-5.734" y1="-7.9946" x2="-5.3403" y2="-7.9819" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9946" x2="-4.2481" y2="-7.9819" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9946" x2="-2.3177" y2="-7.9819" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9946" x2="-1.2509" y2="-7.9819" layer="94"/>
<rectangle x1="-0.7683" y1="-7.9946" x2="-0.4127" y2="-7.9819" layer="94"/>
<rectangle x1="0.2731" y1="-7.9946" x2="0.5779" y2="-7.9819" layer="94"/>
<rectangle x1="1.0224" y1="-7.9946" x2="1.3145" y2="-7.9819" layer="94"/>
<rectangle x1="2.902" y1="-7.9946" x2="3.2957" y2="-7.9819" layer="94"/>
<rectangle x1="3.7402" y1="-7.9946" x2="4.1212" y2="-7.9819" layer="94"/>
<rectangle x1="4.4895" y1="-7.9946" x2="4.8197" y2="-7.9819" layer="94"/>
<rectangle x1="5.1118" y1="-7.9946" x2="5.5182" y2="-7.9819" layer="94"/>
<rectangle x1="5.823" y1="-7.9946" x2="6.1659" y2="-7.9819" layer="94"/>
<rectangle x1="6.4834" y1="-7.9946" x2="6.839" y2="-7.9819" layer="94"/>
<rectangle x1="7.5375" y1="-7.9946" x2="7.8042" y2="-7.9819" layer="94"/>
<rectangle x1="8.2741" y1="-7.9946" x2="8.5408" y2="-7.9819" layer="94"/>
<rectangle x1="10.1537" y1="-7.9946" x2="10.5474" y2="-7.9819" layer="94"/>
<rectangle x1="10.9919" y1="-7.9946" x2="11.3475" y2="-7.9819" layer="94"/>
<rectangle x1="-11.3474" y1="-7.9819" x2="-10.0901" y2="-7.9692" layer="94"/>
<rectangle x1="-9.544" y1="-7.9819" x2="-8.1978" y2="-7.9692" layer="94"/>
<rectangle x1="-7.5247" y1="-7.9819" x2="-6.2928" y2="-7.9692" layer="94"/>
<rectangle x1="-5.734" y1="-7.9819" x2="-5.3403" y2="-7.9692" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9819" x2="-4.2481" y2="-7.9692" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9819" x2="-2.3177" y2="-7.9692" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9819" x2="-1.2509" y2="-7.9692" layer="94"/>
<rectangle x1="-0.7683" y1="-7.9819" x2="-0.4254" y2="-7.9692" layer="94"/>
<rectangle x1="0.2731" y1="-7.9819" x2="0.5779" y2="-7.9692" layer="94"/>
<rectangle x1="1.0224" y1="-7.9819" x2="1.3145" y2="-7.9692" layer="94"/>
<rectangle x1="2.8893" y1="-7.9819" x2="3.283" y2="-7.9692" layer="94"/>
<rectangle x1="3.7402" y1="-7.9819" x2="4.1339" y2="-7.9692" layer="94"/>
<rectangle x1="4.4895" y1="-7.9819" x2="4.8197" y2="-7.9692" layer="94"/>
<rectangle x1="5.1245" y1="-7.9819" x2="5.5182" y2="-7.9692" layer="94"/>
<rectangle x1="5.8357" y1="-7.9819" x2="6.1659" y2="-7.9692" layer="94"/>
<rectangle x1="6.4707" y1="-7.9819" x2="6.8263" y2="-7.9692" layer="94"/>
<rectangle x1="7.5375" y1="-7.9819" x2="7.8042" y2="-7.9692" layer="94"/>
<rectangle x1="8.2741" y1="-7.9819" x2="8.5408" y2="-7.9692" layer="94"/>
<rectangle x1="10.1537" y1="-7.9819" x2="10.5347" y2="-7.9692" layer="94"/>
<rectangle x1="11.0046" y1="-7.9819" x2="11.3602" y2="-7.9692" layer="94"/>
<rectangle x1="-11.3601" y1="-7.9692" x2="-10.0901" y2="-7.9565" layer="94"/>
<rectangle x1="-9.544" y1="-7.9692" x2="-8.1851" y2="-7.9565" layer="94"/>
<rectangle x1="-7.5374" y1="-7.9692" x2="-6.2801" y2="-7.9565" layer="94"/>
<rectangle x1="-5.734" y1="-7.9692" x2="-5.3403" y2="-7.9565" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9692" x2="-4.2481" y2="-7.9565" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9692" x2="-2.3177" y2="-7.9565" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9692" x2="-1.2509" y2="-7.9565" layer="94"/>
<rectangle x1="-0.7683" y1="-7.9692" x2="-0.4254" y2="-7.9565" layer="94"/>
<rectangle x1="0.2731" y1="-7.9692" x2="0.5779" y2="-7.9565" layer="94"/>
<rectangle x1="1.0224" y1="-7.9692" x2="1.3145" y2="-7.9565" layer="94"/>
<rectangle x1="2.8893" y1="-7.9692" x2="3.2703" y2="-7.9565" layer="94"/>
<rectangle x1="3.7656" y1="-7.9692" x2="4.1339" y2="-7.9565" layer="94"/>
<rectangle x1="4.4895" y1="-7.9692" x2="4.807" y2="-7.9565" layer="94"/>
<rectangle x1="5.1372" y1="-7.9692" x2="5.5055" y2="-7.9565" layer="94"/>
<rectangle x1="5.8357" y1="-7.9692" x2="6.1659" y2="-7.9565" layer="94"/>
<rectangle x1="6.4707" y1="-7.9692" x2="6.8263" y2="-7.9565" layer="94"/>
<rectangle x1="7.5375" y1="-7.9692" x2="7.8042" y2="-7.9565" layer="94"/>
<rectangle x1="8.2741" y1="-7.9692" x2="8.5408" y2="-7.9565" layer="94"/>
<rectangle x1="10.1537" y1="-7.9692" x2="10.522" y2="-7.9565" layer="94"/>
<rectangle x1="11.0173" y1="-7.9692" x2="11.3729" y2="-7.9565" layer="94"/>
<rectangle x1="-11.3601" y1="-7.9565" x2="-10.0901" y2="-7.9438" layer="94"/>
<rectangle x1="-9.544" y1="-7.9565" x2="-8.1724" y2="-7.9438" layer="94"/>
<rectangle x1="-7.5374" y1="-7.9565" x2="-6.2801" y2="-7.9438" layer="94"/>
<rectangle x1="-5.734" y1="-7.9565" x2="-5.3403" y2="-7.9438" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9565" x2="-4.2481" y2="-7.9438" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9565" x2="-2.3177" y2="-7.9438" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9565" x2="-1.2509" y2="-7.9438" layer="94"/>
<rectangle x1="-0.781" y1="-7.9565" x2="-0.4381" y2="-7.9438" layer="94"/>
<rectangle x1="0.2731" y1="-7.9565" x2="0.5779" y2="-7.9438" layer="94"/>
<rectangle x1="1.0224" y1="-7.9565" x2="1.3145" y2="-7.9438" layer="94"/>
<rectangle x1="2.8893" y1="-7.9565" x2="3.2449" y2="-7.9438" layer="94"/>
<rectangle x1="3.7783" y1="-7.9565" x2="4.1339" y2="-7.9438" layer="94"/>
<rectangle x1="4.4895" y1="-7.9565" x2="4.807" y2="-7.9438" layer="94"/>
<rectangle x1="5.1499" y1="-7.9565" x2="5.5055" y2="-7.9438" layer="94"/>
<rectangle x1="5.8357" y1="-7.9565" x2="6.1659" y2="-7.9438" layer="94"/>
<rectangle x1="6.458" y1="-7.9565" x2="6.8136" y2="-7.9438" layer="94"/>
<rectangle x1="7.5375" y1="-7.9565" x2="7.8042" y2="-7.9438" layer="94"/>
<rectangle x1="8.2741" y1="-7.9565" x2="8.5408" y2="-7.9438" layer="94"/>
<rectangle x1="10.141" y1="-7.9565" x2="10.4966" y2="-7.9438" layer="94"/>
<rectangle x1="11.03" y1="-7.9565" x2="11.3729" y2="-7.9438" layer="94"/>
<rectangle x1="-11.3728" y1="-7.9438" x2="-10.0774" y2="-7.9311" layer="94"/>
<rectangle x1="-9.544" y1="-7.9438" x2="-8.1597" y2="-7.9311" layer="94"/>
<rectangle x1="-7.5501" y1="-7.9438" x2="-6.2674" y2="-7.9311" layer="94"/>
<rectangle x1="-5.734" y1="-7.9438" x2="-5.3403" y2="-7.9311" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9438" x2="-4.2481" y2="-7.9311" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9438" x2="-2.3177" y2="-7.9311" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9438" x2="-1.2509" y2="-7.9311" layer="94"/>
<rectangle x1="-0.781" y1="-7.9438" x2="-0.4381" y2="-7.9311" layer="94"/>
<rectangle x1="0.2731" y1="-7.9438" x2="0.5779" y2="-7.9311" layer="94"/>
<rectangle x1="1.0224" y1="-7.9438" x2="1.3145" y2="-7.9311" layer="94"/>
<rectangle x1="2.8766" y1="-7.9438" x2="3.2322" y2="-7.9311" layer="94"/>
<rectangle x1="3.791" y1="-7.9438" x2="4.1339" y2="-7.9311" layer="94"/>
<rectangle x1="4.4895" y1="-7.9438" x2="4.807" y2="-7.9311" layer="94"/>
<rectangle x1="5.1499" y1="-7.9438" x2="5.4928" y2="-7.9311" layer="94"/>
<rectangle x1="5.8484" y1="-7.9438" x2="6.1659" y2="-7.9311" layer="94"/>
<rectangle x1="6.458" y1="-7.9438" x2="6.8009" y2="-7.9311" layer="94"/>
<rectangle x1="7.5375" y1="-7.9438" x2="7.8042" y2="-7.9311" layer="94"/>
<rectangle x1="8.2741" y1="-7.9438" x2="8.5408" y2="-7.9311" layer="94"/>
<rectangle x1="10.141" y1="-7.9438" x2="10.4839" y2="-7.9311" layer="94"/>
<rectangle x1="11.0427" y1="-7.9438" x2="11.3856" y2="-7.9311" layer="94"/>
<rectangle x1="-11.3728" y1="-7.9311" x2="-10.7886" y2="-7.9184" layer="94"/>
<rectangle x1="-10.6489" y1="-7.9311" x2="-10.0774" y2="-7.9184" layer="94"/>
<rectangle x1="-9.544" y1="-7.9311" x2="-8.8836" y2="-7.9184" layer="94"/>
<rectangle x1="-8.7439" y1="-7.9311" x2="-8.1597" y2="-7.9184" layer="94"/>
<rectangle x1="-7.5501" y1="-7.9311" x2="-6.9786" y2="-7.9184" layer="94"/>
<rectangle x1="-6.8135" y1="-7.9311" x2="-6.2674" y2="-7.9184" layer="94"/>
<rectangle x1="-5.734" y1="-7.9311" x2="-5.3403" y2="-7.9184" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9311" x2="-4.2481" y2="-7.9184" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9311" x2="-2.3177" y2="-7.9184" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9311" x2="-1.2509" y2="-7.9184" layer="94"/>
<rectangle x1="-0.781" y1="-7.9311" x2="-0.4508" y2="-7.9184" layer="94"/>
<rectangle x1="0.2731" y1="-7.9311" x2="0.5779" y2="-7.9184" layer="94"/>
<rectangle x1="1.0224" y1="-7.9311" x2="1.3145" y2="-7.9184" layer="94"/>
<rectangle x1="2.8766" y1="-7.9311" x2="3.2195" y2="-7.9184" layer="94"/>
<rectangle x1="3.8037" y1="-7.9311" x2="4.1466" y2="-7.9184" layer="94"/>
<rectangle x1="4.4895" y1="-7.9311" x2="4.807" y2="-7.9184" layer="94"/>
<rectangle x1="5.1499" y1="-7.9311" x2="5.4928" y2="-7.9184" layer="94"/>
<rectangle x1="5.8484" y1="-7.9311" x2="6.1659" y2="-7.9184" layer="94"/>
<rectangle x1="6.458" y1="-7.9311" x2="6.7882" y2="-7.9184" layer="94"/>
<rectangle x1="7.5375" y1="-7.9311" x2="7.8042" y2="-7.9184" layer="94"/>
<rectangle x1="8.2741" y1="-7.9311" x2="8.5408" y2="-7.9184" layer="94"/>
<rectangle x1="10.1283" y1="-7.9311" x2="10.4712" y2="-7.9184" layer="94"/>
<rectangle x1="11.0681" y1="-7.9311" x2="11.3983" y2="-7.9184" layer="94"/>
<rectangle x1="-11.3855" y1="-7.9184" x2="-10.8267" y2="-7.9057" layer="94"/>
<rectangle x1="-10.6108" y1="-7.9184" x2="-10.0774" y2="-7.9057" layer="94"/>
<rectangle x1="-9.544" y1="-7.9184" x2="-8.9217" y2="-7.9057" layer="94"/>
<rectangle x1="-8.7058" y1="-7.9184" x2="-8.147" y2="-7.9057" layer="94"/>
<rectangle x1="-7.5628" y1="-7.9184" x2="-7.0167" y2="-7.9057" layer="94"/>
<rectangle x1="-6.7881" y1="-7.9184" x2="-6.2674" y2="-7.9057" layer="94"/>
<rectangle x1="-5.734" y1="-7.9184" x2="-5.3403" y2="-7.9057" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9184" x2="-4.2481" y2="-7.9057" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9184" x2="-2.3177" y2="-7.9057" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9184" x2="-1.2509" y2="-7.9057" layer="94"/>
<rectangle x1="-0.781" y1="-7.9184" x2="-0.4635" y2="-7.9057" layer="94"/>
<rectangle x1="0.2731" y1="-7.9184" x2="0.5779" y2="-7.9057" layer="94"/>
<rectangle x1="1.0224" y1="-7.9184" x2="1.3145" y2="-7.9057" layer="94"/>
<rectangle x1="2.8766" y1="-7.9184" x2="3.2068" y2="-7.9057" layer="94"/>
<rectangle x1="3.8164" y1="-7.9184" x2="4.1466" y2="-7.9057" layer="94"/>
<rectangle x1="4.4895" y1="-7.9184" x2="4.7943" y2="-7.9057" layer="94"/>
<rectangle x1="5.1626" y1="-7.9184" x2="5.4928" y2="-7.9057" layer="94"/>
<rectangle x1="5.8484" y1="-7.9184" x2="6.1659" y2="-7.9057" layer="94"/>
<rectangle x1="6.458" y1="-7.9184" x2="6.7755" y2="-7.9057" layer="94"/>
<rectangle x1="7.5375" y1="-7.9184" x2="7.8042" y2="-7.9057" layer="94"/>
<rectangle x1="8.2741" y1="-7.9184" x2="8.5408" y2="-7.9057" layer="94"/>
<rectangle x1="10.1283" y1="-7.9184" x2="10.4712" y2="-7.9057" layer="94"/>
<rectangle x1="11.0808" y1="-7.9184" x2="11.3983" y2="-7.9057" layer="94"/>
<rectangle x1="-11.3982" y1="-7.9057" x2="-10.8521" y2="-7.893" layer="94"/>
<rectangle x1="-10.5981" y1="-7.9057" x2="-10.0647" y2="-7.893" layer="94"/>
<rectangle x1="-9.544" y1="-7.9057" x2="-8.9471" y2="-7.893" layer="94"/>
<rectangle x1="-8.6804" y1="-7.9057" x2="-8.147" y2="-7.893" layer="94"/>
<rectangle x1="-7.5755" y1="-7.9057" x2="-7.0294" y2="-7.893" layer="94"/>
<rectangle x1="-6.7754" y1="-7.9057" x2="-6.2547" y2="-7.893" layer="94"/>
<rectangle x1="-5.734" y1="-7.9057" x2="-5.3403" y2="-7.893" layer="94"/>
<rectangle x1="-4.6545" y1="-7.9057" x2="-4.2481" y2="-7.893" layer="94"/>
<rectangle x1="-2.5971" y1="-7.9057" x2="-2.3177" y2="-7.893" layer="94"/>
<rectangle x1="-1.5176" y1="-7.9057" x2="-1.2509" y2="-7.893" layer="94"/>
<rectangle x1="-0.781" y1="-7.9057" x2="-0.4635" y2="-7.893" layer="94"/>
<rectangle x1="0.2731" y1="-7.9057" x2="0.5779" y2="-7.893" layer="94"/>
<rectangle x1="1.0224" y1="-7.9057" x2="1.3145" y2="-7.893" layer="94"/>
<rectangle x1="2.8766" y1="-7.9057" x2="3.2068" y2="-7.893" layer="94"/>
<rectangle x1="3.8164" y1="-7.9057" x2="4.1466" y2="-7.893" layer="94"/>
<rectangle x1="4.4895" y1="-7.9057" x2="4.7943" y2="-7.893" layer="94"/>
<rectangle x1="5.1626" y1="-7.9057" x2="5.4928" y2="-7.893" layer="94"/>
<rectangle x1="5.8484" y1="-7.9057" x2="6.1659" y2="-7.893" layer="94"/>
<rectangle x1="6.4453" y1="-7.9057" x2="6.7755" y2="-7.893" layer="94"/>
<rectangle x1="7.5375" y1="-7.9057" x2="7.8042" y2="-7.893" layer="94"/>
<rectangle x1="8.2741" y1="-7.9057" x2="8.5408" y2="-7.893" layer="94"/>
<rectangle x1="10.1156" y1="-7.9057" x2="10.4585" y2="-7.893" layer="94"/>
<rectangle x1="11.0808" y1="-7.9057" x2="11.411" y2="-7.893" layer="94"/>
<rectangle x1="-11.4109" y1="-7.893" x2="-10.8648" y2="-7.8803" layer="94"/>
<rectangle x1="-10.5854" y1="-7.893" x2="-10.0647" y2="-7.8803" layer="94"/>
<rectangle x1="-9.544" y1="-7.893" x2="-8.9598" y2="-7.8803" layer="94"/>
<rectangle x1="-8.6677" y1="-7.893" x2="-8.147" y2="-7.8803" layer="94"/>
<rectangle x1="-7.5755" y1="-7.893" x2="-7.0421" y2="-7.8803" layer="94"/>
<rectangle x1="-6.75" y1="-7.893" x2="-6.2547" y2="-7.8803" layer="94"/>
<rectangle x1="-5.734" y1="-7.893" x2="-5.3403" y2="-7.8803" layer="94"/>
<rectangle x1="-4.6545" y1="-7.893" x2="-4.2481" y2="-7.8803" layer="94"/>
<rectangle x1="-2.5971" y1="-7.893" x2="-2.3177" y2="-7.8803" layer="94"/>
<rectangle x1="-1.5176" y1="-7.893" x2="-1.2509" y2="-7.8803" layer="94"/>
<rectangle x1="-0.7937" y1="-7.893" x2="-0.4762" y2="-7.8803" layer="94"/>
<rectangle x1="0.2731" y1="-7.893" x2="0.5779" y2="-7.8803" layer="94"/>
<rectangle x1="1.0224" y1="-7.893" x2="1.3145" y2="-7.8803" layer="94"/>
<rectangle x1="2.8639" y1="-7.893" x2="3.1941" y2="-7.8803" layer="94"/>
<rectangle x1="3.8291" y1="-7.893" x2="4.1593" y2="-7.8803" layer="94"/>
<rectangle x1="4.4895" y1="-7.893" x2="4.7943" y2="-7.8803" layer="94"/>
<rectangle x1="5.1626" y1="-7.893" x2="5.4928" y2="-7.8803" layer="94"/>
<rectangle x1="5.8611" y1="-7.893" x2="6.1659" y2="-7.8803" layer="94"/>
<rectangle x1="6.4453" y1="-7.893" x2="6.7628" y2="-7.8803" layer="94"/>
<rectangle x1="7.5375" y1="-7.893" x2="7.8042" y2="-7.8803" layer="94"/>
<rectangle x1="8.2741" y1="-7.893" x2="8.5408" y2="-7.8803" layer="94"/>
<rectangle x1="10.1029" y1="-7.893" x2="10.4458" y2="-7.8803" layer="94"/>
<rectangle x1="11.0935" y1="-7.893" x2="11.411" y2="-7.8803" layer="94"/>
<rectangle x1="-11.4109" y1="-7.8803" x2="-10.8902" y2="-7.8676" layer="94"/>
<rectangle x1="-10.5727" y1="-7.8803" x2="-10.052" y2="-7.8676" layer="94"/>
<rectangle x1="-9.544" y1="-7.8803" x2="-8.9725" y2="-7.8676" layer="94"/>
<rectangle x1="-8.6423" y1="-7.8803" x2="-8.1343" y2="-7.8676" layer="94"/>
<rectangle x1="-7.5882" y1="-7.8803" x2="-7.0675" y2="-7.8676" layer="94"/>
<rectangle x1="-6.7373" y1="-7.8803" x2="-6.242" y2="-7.8676" layer="94"/>
<rectangle x1="-5.734" y1="-7.8803" x2="-5.3403" y2="-7.8676" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8803" x2="-4.2481" y2="-7.8676" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8803" x2="-2.3177" y2="-7.8676" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8803" x2="-1.2509" y2="-7.8676" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8803" x2="-0.4889" y2="-7.8676" layer="94"/>
<rectangle x1="0.2731" y1="-7.8803" x2="0.5779" y2="-7.8676" layer="94"/>
<rectangle x1="1.0224" y1="-7.8803" x2="1.3145" y2="-7.8676" layer="94"/>
<rectangle x1="2.8639" y1="-7.8803" x2="3.1941" y2="-7.8676" layer="94"/>
<rectangle x1="3.8418" y1="-7.8803" x2="4.1593" y2="-7.8676" layer="94"/>
<rectangle x1="4.4895" y1="-7.8803" x2="4.7816" y2="-7.8676" layer="94"/>
<rectangle x1="5.1626" y1="-7.8803" x2="5.4801" y2="-7.8676" layer="94"/>
<rectangle x1="5.8611" y1="-7.8803" x2="6.1659" y2="-7.8676" layer="94"/>
<rectangle x1="6.4453" y1="-7.8803" x2="6.7628" y2="-7.8676" layer="94"/>
<rectangle x1="7.5375" y1="-7.8803" x2="7.8042" y2="-7.8676" layer="94"/>
<rectangle x1="8.2741" y1="-7.8803" x2="8.5408" y2="-7.8676" layer="94"/>
<rectangle x1="10.1029" y1="-7.8803" x2="10.4331" y2="-7.8676" layer="94"/>
<rectangle x1="11.0935" y1="-7.8803" x2="11.411" y2="-7.8676" layer="94"/>
<rectangle x1="-11.4109" y1="-7.8676" x2="-10.9156" y2="-7.8549" layer="94"/>
<rectangle x1="-10.5473" y1="-7.8676" x2="-10.0393" y2="-7.8549" layer="94"/>
<rectangle x1="-9.544" y1="-7.8676" x2="-8.9979" y2="-7.8549" layer="94"/>
<rectangle x1="-8.6296" y1="-7.8676" x2="-8.1343" y2="-7.8549" layer="94"/>
<rectangle x1="-7.6009" y1="-7.8676" x2="-7.0929" y2="-7.8549" layer="94"/>
<rectangle x1="-6.7119" y1="-7.8676" x2="-6.2293" y2="-7.8549" layer="94"/>
<rectangle x1="-5.734" y1="-7.8676" x2="-5.3403" y2="-7.8549" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8676" x2="-4.2481" y2="-7.8549" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8676" x2="-2.3177" y2="-7.8549" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8676" x2="-1.2509" y2="-7.8549" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8676" x2="-0.4889" y2="-7.8549" layer="94"/>
<rectangle x1="0.2731" y1="-7.8676" x2="0.5779" y2="-7.8549" layer="94"/>
<rectangle x1="1.0224" y1="-7.8676" x2="1.3145" y2="-7.8549" layer="94"/>
<rectangle x1="2.8639" y1="-7.8676" x2="3.1814" y2="-7.8549" layer="94"/>
<rectangle x1="3.8545" y1="-7.8676" x2="4.172" y2="-7.8549" layer="94"/>
<rectangle x1="4.4895" y1="-7.8676" x2="4.7816" y2="-7.8549" layer="94"/>
<rectangle x1="5.1626" y1="-7.8676" x2="5.4801" y2="-7.8549" layer="94"/>
<rectangle x1="5.8611" y1="-7.8676" x2="6.1659" y2="-7.8549" layer="94"/>
<rectangle x1="6.4453" y1="-7.8676" x2="6.7628" y2="-7.8549" layer="94"/>
<rectangle x1="7.5375" y1="-7.8676" x2="7.8042" y2="-7.8549" layer="94"/>
<rectangle x1="8.2741" y1="-7.8676" x2="8.5408" y2="-7.8549" layer="94"/>
<rectangle x1="10.0902" y1="-7.8676" x2="10.4204" y2="-7.8549" layer="94"/>
<rectangle x1="11.0935" y1="-7.8676" x2="11.411" y2="-7.8549" layer="94"/>
<rectangle x1="-11.4236" y1="-7.8549" x2="-10.9283" y2="-7.8422" layer="94"/>
<rectangle x1="-10.5219" y1="-7.8549" x2="-10.0393" y2="-7.8422" layer="94"/>
<rectangle x1="-9.544" y1="-7.8549" x2="-9.0233" y2="-7.8422" layer="94"/>
<rectangle x1="-8.5915" y1="-7.8549" x2="-8.1343" y2="-7.8422" layer="94"/>
<rectangle x1="-7.6009" y1="-7.8549" x2="-7.1183" y2="-7.8422" layer="94"/>
<rectangle x1="-6.6865" y1="-7.8549" x2="-6.2166" y2="-7.8422" layer="94"/>
<rectangle x1="-5.734" y1="-7.8549" x2="-5.3403" y2="-7.8422" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8549" x2="-4.2481" y2="-7.8422" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8549" x2="-2.3177" y2="-7.8422" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8549" x2="-1.2509" y2="-7.8422" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8549" x2="-0.5016" y2="-7.8422" layer="94"/>
<rectangle x1="0.2731" y1="-7.8549" x2="0.5779" y2="-7.8422" layer="94"/>
<rectangle x1="1.0224" y1="-7.8549" x2="1.3145" y2="-7.8422" layer="94"/>
<rectangle x1="2.8639" y1="-7.8549" x2="3.1687" y2="-7.8422" layer="94"/>
<rectangle x1="3.8672" y1="-7.8549" x2="4.172" y2="-7.8422" layer="94"/>
<rectangle x1="4.4895" y1="-7.8549" x2="4.7689" y2="-7.8422" layer="94"/>
<rectangle x1="5.1626" y1="-7.8549" x2="5.4801" y2="-7.8422" layer="94"/>
<rectangle x1="5.8738" y1="-7.8549" x2="6.1659" y2="-7.8422" layer="94"/>
<rectangle x1="6.4453" y1="-7.8549" x2="6.7628" y2="-7.8422" layer="94"/>
<rectangle x1="7.5375" y1="-7.8549" x2="7.8042" y2="-7.8422" layer="94"/>
<rectangle x1="8.2741" y1="-7.8549" x2="8.5408" y2="-7.8422" layer="94"/>
<rectangle x1="10.0902" y1="-7.8549" x2="10.4204" y2="-7.8422" layer="94"/>
<rectangle x1="11.1062" y1="-7.8549" x2="11.411" y2="-7.8422" layer="94"/>
<rectangle x1="-11.4236" y1="-7.8422" x2="-10.941" y2="-7.8295" layer="94"/>
<rectangle x1="-10.5092" y1="-7.8422" x2="-10.0266" y2="-7.8295" layer="94"/>
<rectangle x1="-9.544" y1="-7.8422" x2="-9.0487" y2="-7.8295" layer="94"/>
<rectangle x1="-8.5788" y1="-7.8422" x2="-8.1343" y2="-7.8295" layer="94"/>
<rectangle x1="-7.6009" y1="-7.8422" x2="-7.131" y2="-7.8295" layer="94"/>
<rectangle x1="-6.6738" y1="-7.8422" x2="-6.2166" y2="-7.8295" layer="94"/>
<rectangle x1="-5.734" y1="-7.8422" x2="-5.3403" y2="-7.8295" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8422" x2="-4.2481" y2="-7.8295" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8422" x2="-2.3177" y2="-7.8295" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8422" x2="-1.2509" y2="-7.8295" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8422" x2="-0.5016" y2="-7.8295" layer="94"/>
<rectangle x1="0.2731" y1="-7.8422" x2="0.5779" y2="-7.8295" layer="94"/>
<rectangle x1="1.0224" y1="-7.8422" x2="1.3145" y2="-7.8295" layer="94"/>
<rectangle x1="2.8639" y1="-7.8422" x2="3.156" y2="-7.8295" layer="94"/>
<rectangle x1="3.8672" y1="-7.8422" x2="4.172" y2="-7.8295" layer="94"/>
<rectangle x1="4.4895" y1="-7.8422" x2="4.7689" y2="-7.8295" layer="94"/>
<rectangle x1="5.1626" y1="-7.8422" x2="5.4801" y2="-7.8295" layer="94"/>
<rectangle x1="5.8738" y1="-7.8422" x2="6.1659" y2="-7.8295" layer="94"/>
<rectangle x1="6.4453" y1="-7.8422" x2="6.7628" y2="-7.8295" layer="94"/>
<rectangle x1="7.5375" y1="-7.8422" x2="7.8042" y2="-7.8295" layer="94"/>
<rectangle x1="8.2741" y1="-7.8422" x2="8.5408" y2="-7.8295" layer="94"/>
<rectangle x1="10.0902" y1="-7.8422" x2="10.4077" y2="-7.8295" layer="94"/>
<rectangle x1="11.1062" y1="-7.8422" x2="11.4237" y2="-7.8295" layer="94"/>
<rectangle x1="-11.4236" y1="-7.8295" x2="-10.9537" y2="-7.8168" layer="94"/>
<rectangle x1="-10.4965" y1="-7.8295" x2="-10.0266" y2="-7.8168" layer="94"/>
<rectangle x1="-9.544" y1="-7.8295" x2="-9.0614" y2="-7.8168" layer="94"/>
<rectangle x1="-8.5661" y1="-7.8295" x2="-8.1216" y2="-7.8168" layer="94"/>
<rectangle x1="-7.6136" y1="-7.8295" x2="-7.1437" y2="-7.8168" layer="94"/>
<rectangle x1="-6.6611" y1="-7.8295" x2="-6.2039" y2="-7.8168" layer="94"/>
<rectangle x1="-5.734" y1="-7.8295" x2="-5.3403" y2="-7.8168" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8295" x2="-4.2481" y2="-7.8168" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8295" x2="-2.3177" y2="-7.8168" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8295" x2="-1.2509" y2="-7.8168" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8295" x2="-0.5143" y2="-7.8168" layer="94"/>
<rectangle x1="0.2731" y1="-7.8295" x2="0.5779" y2="-7.8168" layer="94"/>
<rectangle x1="1.0224" y1="-7.8295" x2="1.3145" y2="-7.8168" layer="94"/>
<rectangle x1="2.8512" y1="-7.8295" x2="3.1433" y2="-7.8168" layer="94"/>
<rectangle x1="3.8799" y1="-7.8295" x2="4.1847" y2="-7.8168" layer="94"/>
<rectangle x1="4.4768" y1="-7.8295" x2="4.7562" y2="-7.8168" layer="94"/>
<rectangle x1="5.1626" y1="-7.8295" x2="5.4674" y2="-7.8168" layer="94"/>
<rectangle x1="5.8865" y1="-7.8295" x2="6.1659" y2="-7.8168" layer="94"/>
<rectangle x1="6.4453" y1="-7.8295" x2="6.7628" y2="-7.8168" layer="94"/>
<rectangle x1="7.5375" y1="-7.8295" x2="7.8042" y2="-7.8168" layer="94"/>
<rectangle x1="8.2741" y1="-7.8295" x2="8.5408" y2="-7.8168" layer="94"/>
<rectangle x1="10.0902" y1="-7.8295" x2="10.4077" y2="-7.8168" layer="94"/>
<rectangle x1="11.1189" y1="-7.8295" x2="11.4237" y2="-7.8168" layer="94"/>
<rectangle x1="-11.4236" y1="-7.8168" x2="-10.9664" y2="-7.8041" layer="94"/>
<rectangle x1="-10.4838" y1="-7.8168" x2="-10.0266" y2="-7.8041" layer="94"/>
<rectangle x1="-9.544" y1="-7.8168" x2="-9.0741" y2="-7.8041" layer="94"/>
<rectangle x1="-8.5534" y1="-7.8168" x2="-8.1216" y2="-7.8041" layer="94"/>
<rectangle x1="-7.6136" y1="-7.8168" x2="-7.1564" y2="-7.8041" layer="94"/>
<rectangle x1="-6.6484" y1="-7.8168" x2="-6.2039" y2="-7.8041" layer="94"/>
<rectangle x1="-5.734" y1="-7.8168" x2="-5.3403" y2="-7.8041" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8168" x2="-4.2481" y2="-7.8041" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8168" x2="-2.3177" y2="-7.8041" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8168" x2="-1.2509" y2="-7.8041" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8168" x2="-0.5143" y2="-7.8041" layer="94"/>
<rectangle x1="0.2731" y1="-7.8168" x2="0.5779" y2="-7.8041" layer="94"/>
<rectangle x1="1.0224" y1="-7.8168" x2="1.3145" y2="-7.8041" layer="94"/>
<rectangle x1="2.8512" y1="-7.8168" x2="3.1433" y2="-7.8041" layer="94"/>
<rectangle x1="3.8799" y1="-7.8168" x2="4.1847" y2="-7.8041" layer="94"/>
<rectangle x1="4.4768" y1="-7.8168" x2="4.7562" y2="-7.8041" layer="94"/>
<rectangle x1="5.1626" y1="-7.8168" x2="5.4674" y2="-7.8041" layer="94"/>
<rectangle x1="5.8992" y1="-7.8168" x2="6.1659" y2="-7.8041" layer="94"/>
<rectangle x1="6.4453" y1="-7.8168" x2="6.7628" y2="-7.8041" layer="94"/>
<rectangle x1="7.5375" y1="-7.8168" x2="7.8042" y2="-7.8041" layer="94"/>
<rectangle x1="8.2741" y1="-7.8168" x2="8.5408" y2="-7.8041" layer="94"/>
<rectangle x1="10.0902" y1="-7.8168" x2="10.395" y2="-7.8041" layer="94"/>
<rectangle x1="11.1316" y1="-7.8168" x2="11.4237" y2="-7.8041" layer="94"/>
<rectangle x1="-11.4363" y1="-7.8041" x2="-10.9791" y2="-7.7914" layer="94"/>
<rectangle x1="-10.4711" y1="-7.8041" x2="-10.0139" y2="-7.7914" layer="94"/>
<rectangle x1="-9.544" y1="-7.8041" x2="-9.0741" y2="-7.7914" layer="94"/>
<rectangle x1="-8.5534" y1="-7.8041" x2="-8.1216" y2="-7.7914" layer="94"/>
<rectangle x1="-7.6136" y1="-7.8041" x2="-7.1691" y2="-7.7914" layer="94"/>
<rectangle x1="-6.6357" y1="-7.8041" x2="-6.2039" y2="-7.7914" layer="94"/>
<rectangle x1="-5.734" y1="-7.8041" x2="-5.3403" y2="-7.7914" layer="94"/>
<rectangle x1="-4.6545" y1="-7.8041" x2="-4.2481" y2="-7.7914" layer="94"/>
<rectangle x1="-2.5971" y1="-7.8041" x2="-2.3177" y2="-7.7914" layer="94"/>
<rectangle x1="-1.5176" y1="-7.8041" x2="-1.2509" y2="-7.7914" layer="94"/>
<rectangle x1="-0.7937" y1="-7.8041" x2="-0.5143" y2="-7.7914" layer="94"/>
<rectangle x1="0.2731" y1="-7.8041" x2="0.5779" y2="-7.7914" layer="94"/>
<rectangle x1="1.0224" y1="-7.8041" x2="1.3145" y2="-7.7914" layer="94"/>
<rectangle x1="2.8512" y1="-7.8041" x2="3.1306" y2="-7.7914" layer="94"/>
<rectangle x1="3.8926" y1="-7.8041" x2="4.1847" y2="-7.7914" layer="94"/>
<rectangle x1="4.4768" y1="-7.8041" x2="4.7562" y2="-7.7914" layer="94"/>
<rectangle x1="5.1753" y1="-7.8041" x2="5.4674" y2="-7.7914" layer="94"/>
<rectangle x1="5.8992" y1="-7.8041" x2="6.1659" y2="-7.7914" layer="94"/>
<rectangle x1="6.4453" y1="-7.8041" x2="6.7628" y2="-7.7914" layer="94"/>
<rectangle x1="7.5375" y1="-7.8041" x2="7.8042" y2="-7.7914" layer="94"/>
<rectangle x1="8.2741" y1="-7.8041" x2="8.5408" y2="-7.7914" layer="94"/>
<rectangle x1="10.0775" y1="-7.8041" x2="10.395" y2="-7.7914" layer="94"/>
<rectangle x1="11.1316" y1="-7.8041" x2="11.4237" y2="-7.7914" layer="94"/>
<rectangle x1="-11.4363" y1="-7.7914" x2="-10.9918" y2="-7.7787" layer="94"/>
<rectangle x1="-10.4711" y1="-7.7914" x2="-10.0139" y2="-7.7787" layer="94"/>
<rectangle x1="-9.544" y1="-7.7914" x2="-9.0868" y2="-7.7787" layer="94"/>
<rectangle x1="-8.5407" y1="-7.7914" x2="-8.1089" y2="-7.7787" layer="94"/>
<rectangle x1="-7.6136" y1="-7.7914" x2="-7.1818" y2="-7.7787" layer="94"/>
<rectangle x1="-6.623" y1="-7.7914" x2="-6.2039" y2="-7.7787" layer="94"/>
<rectangle x1="-5.734" y1="-7.7914" x2="-5.3403" y2="-7.7787" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7914" x2="-4.2481" y2="-7.7787" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7914" x2="-2.3177" y2="-7.7787" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7914" x2="-1.2509" y2="-7.7787" layer="94"/>
<rectangle x1="-0.7937" y1="-7.7914" x2="-0.5143" y2="-7.7787" layer="94"/>
<rectangle x1="0.2731" y1="-7.7914" x2="0.5779" y2="-7.7787" layer="94"/>
<rectangle x1="1.0224" y1="-7.7914" x2="1.3145" y2="-7.7787" layer="94"/>
<rectangle x1="2.8512" y1="-7.7914" x2="3.1306" y2="-7.7787" layer="94"/>
<rectangle x1="3.8926" y1="-7.7914" x2="4.1974" y2="-7.7787" layer="94"/>
<rectangle x1="4.4768" y1="-7.7914" x2="4.7562" y2="-7.7787" layer="94"/>
<rectangle x1="5.1753" y1="-7.7914" x2="5.4674" y2="-7.7787" layer="94"/>
<rectangle x1="5.8992" y1="-7.7914" x2="6.1659" y2="-7.7787" layer="94"/>
<rectangle x1="6.4453" y1="-7.7914" x2="6.7628" y2="-7.7787" layer="94"/>
<rectangle x1="7.5375" y1="-7.7914" x2="7.8042" y2="-7.7787" layer="94"/>
<rectangle x1="8.2741" y1="-7.7914" x2="8.5408" y2="-7.7787" layer="94"/>
<rectangle x1="10.0775" y1="-7.7914" x2="10.395" y2="-7.7787" layer="94"/>
<rectangle x1="11.1443" y1="-7.7914" x2="11.4237" y2="-7.7787" layer="94"/>
<rectangle x1="-11.4363" y1="-7.7787" x2="-11.0045" y2="-7.766" layer="94"/>
<rectangle x1="-10.4457" y1="-7.7787" x2="-10.0139" y2="-7.766" layer="94"/>
<rectangle x1="-9.544" y1="-7.7787" x2="-9.0868" y2="-7.766" layer="94"/>
<rectangle x1="-8.5407" y1="-7.7787" x2="-8.1089" y2="-7.766" layer="94"/>
<rectangle x1="-7.6136" y1="-7.7787" x2="-7.1945" y2="-7.766" layer="94"/>
<rectangle x1="-6.623" y1="-7.7787" x2="-6.1912" y2="-7.766" layer="94"/>
<rectangle x1="-5.734" y1="-7.7787" x2="-5.3403" y2="-7.766" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7787" x2="-4.2481" y2="-7.766" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7787" x2="-2.3177" y2="-7.766" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7787" x2="-1.2509" y2="-7.766" layer="94"/>
<rectangle x1="-0.7937" y1="-7.7787" x2="-0.5016" y2="-7.766" layer="94"/>
<rectangle x1="0.2731" y1="-7.7787" x2="0.5779" y2="-7.766" layer="94"/>
<rectangle x1="1.0224" y1="-7.7787" x2="1.3145" y2="-7.766" layer="94"/>
<rectangle x1="2.8385" y1="-7.7787" x2="3.1306" y2="-7.766" layer="94"/>
<rectangle x1="3.8926" y1="-7.7787" x2="4.1974" y2="-7.766" layer="94"/>
<rectangle x1="4.4768" y1="-7.7787" x2="4.7562" y2="-7.766" layer="94"/>
<rectangle x1="5.1753" y1="-7.7787" x2="5.4674" y2="-7.766" layer="94"/>
<rectangle x1="5.8992" y1="-7.7787" x2="6.1659" y2="-7.766" layer="94"/>
<rectangle x1="6.4453" y1="-7.7787" x2="6.7628" y2="-7.766" layer="94"/>
<rectangle x1="7.5375" y1="-7.7787" x2="7.8042" y2="-7.766" layer="94"/>
<rectangle x1="8.2741" y1="-7.7787" x2="8.5408" y2="-7.766" layer="94"/>
<rectangle x1="10.0775" y1="-7.7787" x2="10.395" y2="-7.766" layer="94"/>
<rectangle x1="11.1443" y1="-7.7787" x2="11.4364" y2="-7.766" layer="94"/>
<rectangle x1="-11.4363" y1="-7.766" x2="-11.0172" y2="-7.7533" layer="94"/>
<rectangle x1="-10.433" y1="-7.766" x2="-10.0139" y2="-7.7533" layer="94"/>
<rectangle x1="-9.544" y1="-7.766" x2="-9.0995" y2="-7.7533" layer="94"/>
<rectangle x1="-8.528" y1="-7.766" x2="-8.1089" y2="-7.7533" layer="94"/>
<rectangle x1="-7.6136" y1="-7.766" x2="-7.1945" y2="-7.7533" layer="94"/>
<rectangle x1="-6.6103" y1="-7.766" x2="-6.1912" y2="-7.7533" layer="94"/>
<rectangle x1="-5.734" y1="-7.766" x2="-5.3403" y2="-7.7533" layer="94"/>
<rectangle x1="-4.6545" y1="-7.766" x2="-4.2481" y2="-7.7533" layer="94"/>
<rectangle x1="-2.5971" y1="-7.766" x2="-2.3177" y2="-7.7533" layer="94"/>
<rectangle x1="-1.5176" y1="-7.766" x2="-1.2509" y2="-7.7533" layer="94"/>
<rectangle x1="-0.7937" y1="-7.766" x2="-0.5016" y2="-7.7533" layer="94"/>
<rectangle x1="0.2731" y1="-7.766" x2="0.5779" y2="-7.7533" layer="94"/>
<rectangle x1="1.0224" y1="-7.766" x2="1.3145" y2="-7.7533" layer="94"/>
<rectangle x1="2.8385" y1="-7.766" x2="3.1179" y2="-7.7533" layer="94"/>
<rectangle x1="3.8926" y1="-7.766" x2="4.1974" y2="-7.7533" layer="94"/>
<rectangle x1="4.4768" y1="-7.766" x2="4.7562" y2="-7.7533" layer="94"/>
<rectangle x1="5.1753" y1="-7.766" x2="5.4674" y2="-7.7533" layer="94"/>
<rectangle x1="5.8992" y1="-7.766" x2="6.1659" y2="-7.7533" layer="94"/>
<rectangle x1="6.4453" y1="-7.766" x2="6.7628" y2="-7.7533" layer="94"/>
<rectangle x1="7.5375" y1="-7.766" x2="7.8042" y2="-7.7533" layer="94"/>
<rectangle x1="8.2741" y1="-7.766" x2="8.5408" y2="-7.7533" layer="94"/>
<rectangle x1="10.0775" y1="-7.766" x2="10.3823" y2="-7.7533" layer="94"/>
<rectangle x1="11.157" y1="-7.766" x2="11.4364" y2="-7.7533" layer="94"/>
<rectangle x1="-11.4363" y1="-7.7533" x2="-11.0172" y2="-7.7406" layer="94"/>
<rectangle x1="-10.4203" y1="-7.7533" x2="-10.0139" y2="-7.7406" layer="94"/>
<rectangle x1="-9.544" y1="-7.7533" x2="-9.1122" y2="-7.7406" layer="94"/>
<rectangle x1="-8.5153" y1="-7.7533" x2="-8.0962" y2="-7.7406" layer="94"/>
<rectangle x1="-7.6136" y1="-7.7533" x2="-7.2072" y2="-7.7406" layer="94"/>
<rectangle x1="-6.5976" y1="-7.7533" x2="-6.1912" y2="-7.7406" layer="94"/>
<rectangle x1="-5.734" y1="-7.7533" x2="-5.3403" y2="-7.7406" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7533" x2="-4.2481" y2="-7.7406" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7533" x2="-2.3177" y2="-7.7406" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7533" x2="-1.2509" y2="-7.7406" layer="94"/>
<rectangle x1="-0.7937" y1="-7.7533" x2="-0.4889" y2="-7.7406" layer="94"/>
<rectangle x1="0.2731" y1="-7.7533" x2="0.5779" y2="-7.7406" layer="94"/>
<rectangle x1="1.0224" y1="-7.7533" x2="1.3145" y2="-7.7406" layer="94"/>
<rectangle x1="2.8385" y1="-7.7533" x2="3.1179" y2="-7.7406" layer="94"/>
<rectangle x1="3.8926" y1="-7.7533" x2="4.1974" y2="-7.7406" layer="94"/>
<rectangle x1="4.4768" y1="-7.7533" x2="4.7562" y2="-7.7406" layer="94"/>
<rectangle x1="5.1753" y1="-7.7533" x2="5.4674" y2="-7.7406" layer="94"/>
<rectangle x1="5.8992" y1="-7.7533" x2="6.1659" y2="-7.7406" layer="94"/>
<rectangle x1="6.4453" y1="-7.7533" x2="6.7628" y2="-7.7406" layer="94"/>
<rectangle x1="7.5375" y1="-7.7533" x2="7.8042" y2="-7.7406" layer="94"/>
<rectangle x1="8.2741" y1="-7.7533" x2="8.5408" y2="-7.7406" layer="94"/>
<rectangle x1="10.0775" y1="-7.7533" x2="10.3823" y2="-7.7406" layer="94"/>
<rectangle x1="11.157" y1="-7.7533" x2="11.4364" y2="-7.7406" layer="94"/>
<rectangle x1="-11.4363" y1="-7.7406" x2="-11.0299" y2="-7.7279" layer="94"/>
<rectangle x1="-10.4203" y1="-7.7406" x2="-10.0139" y2="-7.7279" layer="94"/>
<rectangle x1="-9.544" y1="-7.7406" x2="-9.1249" y2="-7.7279" layer="94"/>
<rectangle x1="-8.5026" y1="-7.7406" x2="-8.0962" y2="-7.7279" layer="94"/>
<rectangle x1="-7.6263" y1="-7.7406" x2="-7.2072" y2="-7.7279" layer="94"/>
<rectangle x1="-6.5976" y1="-7.7406" x2="-6.1912" y2="-7.7279" layer="94"/>
<rectangle x1="-5.734" y1="-7.7406" x2="-5.3403" y2="-7.7279" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7406" x2="-4.2481" y2="-7.7279" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7406" x2="-2.3177" y2="-7.7279" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7406" x2="-1.2509" y2="-7.7279" layer="94"/>
<rectangle x1="-0.7937" y1="-7.7406" x2="-0.4889" y2="-7.7279" layer="94"/>
<rectangle x1="0.2731" y1="-7.7406" x2="0.5779" y2="-7.7279" layer="94"/>
<rectangle x1="1.0224" y1="-7.7406" x2="1.3145" y2="-7.7279" layer="94"/>
<rectangle x1="2.8258" y1="-7.7406" x2="3.1179" y2="-7.7279" layer="94"/>
<rectangle x1="3.8926" y1="-7.7406" x2="4.1974" y2="-7.7279" layer="94"/>
<rectangle x1="4.4768" y1="-7.7406" x2="4.7562" y2="-7.7279" layer="94"/>
<rectangle x1="5.1753" y1="-7.7406" x2="5.4674" y2="-7.7279" layer="94"/>
<rectangle x1="5.8992" y1="-7.7406" x2="6.1659" y2="-7.7279" layer="94"/>
<rectangle x1="6.4453" y1="-7.7406" x2="6.7628" y2="-7.7279" layer="94"/>
<rectangle x1="7.5375" y1="-7.7406" x2="7.8042" y2="-7.7279" layer="94"/>
<rectangle x1="8.2741" y1="-7.7406" x2="8.5408" y2="-7.7279" layer="94"/>
<rectangle x1="10.0775" y1="-7.7406" x2="10.3823" y2="-7.7279" layer="94"/>
<rectangle x1="11.157" y1="-7.7406" x2="11.4364" y2="-7.7279" layer="94"/>
<rectangle x1="-11.4363" y1="-7.7279" x2="-11.0299" y2="-7.7152" layer="94"/>
<rectangle x1="-10.4203" y1="-7.7279" x2="-10.0139" y2="-7.7152" layer="94"/>
<rectangle x1="-9.544" y1="-7.7279" x2="-9.1376" y2="-7.7152" layer="94"/>
<rectangle x1="-8.5026" y1="-7.7279" x2="-8.0835" y2="-7.7152" layer="94"/>
<rectangle x1="-7.6263" y1="-7.7279" x2="-7.2199" y2="-7.7152" layer="94"/>
<rectangle x1="-6.5976" y1="-7.7279" x2="-6.1912" y2="-7.7152" layer="94"/>
<rectangle x1="-5.734" y1="-7.7279" x2="-5.3403" y2="-7.7152" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7279" x2="-4.2481" y2="-7.7152" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7279" x2="-2.3177" y2="-7.7152" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7279" x2="-1.2509" y2="-7.7152" layer="94"/>
<rectangle x1="-0.7937" y1="-7.7279" x2="-0.4762" y2="-7.7152" layer="94"/>
<rectangle x1="0.2731" y1="-7.7279" x2="0.5779" y2="-7.7152" layer="94"/>
<rectangle x1="1.0224" y1="-7.7279" x2="1.3145" y2="-7.7152" layer="94"/>
<rectangle x1="2.8258" y1="-7.7279" x2="3.1179" y2="-7.7152" layer="94"/>
<rectangle x1="3.8926" y1="-7.7279" x2="4.1974" y2="-7.7152" layer="94"/>
<rectangle x1="4.4768" y1="-7.7279" x2="4.7562" y2="-7.7152" layer="94"/>
<rectangle x1="5.1626" y1="-7.7279" x2="5.4674" y2="-7.7152" layer="94"/>
<rectangle x1="5.8992" y1="-7.7279" x2="6.1659" y2="-7.7152" layer="94"/>
<rectangle x1="6.4453" y1="-7.7279" x2="6.7628" y2="-7.7152" layer="94"/>
<rectangle x1="7.5375" y1="-7.7279" x2="7.8042" y2="-7.7152" layer="94"/>
<rectangle x1="8.2741" y1="-7.7279" x2="8.5408" y2="-7.7152" layer="94"/>
<rectangle x1="10.0775" y1="-7.7279" x2="10.3823" y2="-7.7152" layer="94"/>
<rectangle x1="11.1697" y1="-7.7279" x2="11.4491" y2="-7.7152" layer="94"/>
<rectangle x1="-11.4363" y1="-7.7152" x2="-11.0299" y2="-7.7025" layer="94"/>
<rectangle x1="-10.4076" y1="-7.7152" x2="-10.0012" y2="-7.7025" layer="94"/>
<rectangle x1="-9.544" y1="-7.7152" x2="-9.1376" y2="-7.7025" layer="94"/>
<rectangle x1="-8.4899" y1="-7.7152" x2="-8.0835" y2="-7.7025" layer="94"/>
<rectangle x1="-7.6263" y1="-7.7152" x2="-7.2199" y2="-7.7025" layer="94"/>
<rectangle x1="-6.5849" y1="-7.7152" x2="-6.1912" y2="-7.7025" layer="94"/>
<rectangle x1="-5.734" y1="-7.7152" x2="-5.3403" y2="-7.7025" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7152" x2="-4.2481" y2="-7.7025" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7152" x2="-2.3177" y2="-7.7025" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7152" x2="-1.2509" y2="-7.7025" layer="94"/>
<rectangle x1="-0.781" y1="-7.7152" x2="-0.4635" y2="-7.7025" layer="94"/>
<rectangle x1="0.2731" y1="-7.7152" x2="0.5779" y2="-7.7025" layer="94"/>
<rectangle x1="1.0224" y1="-7.7152" x2="1.3145" y2="-7.7025" layer="94"/>
<rectangle x1="2.8258" y1="-7.7152" x2="3.1179" y2="-7.7025" layer="94"/>
<rectangle x1="3.8926" y1="-7.7152" x2="4.1974" y2="-7.7025" layer="94"/>
<rectangle x1="4.4768" y1="-7.7152" x2="4.7562" y2="-7.7025" layer="94"/>
<rectangle x1="5.1626" y1="-7.7152" x2="5.4674" y2="-7.7025" layer="94"/>
<rectangle x1="5.8992" y1="-7.7152" x2="6.1659" y2="-7.7025" layer="94"/>
<rectangle x1="6.4453" y1="-7.7152" x2="6.7755" y2="-7.7025" layer="94"/>
<rectangle x1="7.5375" y1="-7.7152" x2="7.8042" y2="-7.7025" layer="94"/>
<rectangle x1="8.2741" y1="-7.7152" x2="8.5408" y2="-7.7025" layer="94"/>
<rectangle x1="10.0775" y1="-7.7152" x2="10.3823" y2="-7.7025" layer="94"/>
<rectangle x1="11.1697" y1="-7.7152" x2="11.4491" y2="-7.7025" layer="94"/>
<rectangle x1="-11.449" y1="-7.7025" x2="-11.0426" y2="-7.6898" layer="94"/>
<rectangle x1="-10.4076" y1="-7.7025" x2="-10.0012" y2="-7.6898" layer="94"/>
<rectangle x1="-9.544" y1="-7.7025" x2="-9.1503" y2="-7.6898" layer="94"/>
<rectangle x1="-8.4899" y1="-7.7025" x2="-8.0835" y2="-7.6898" layer="94"/>
<rectangle x1="-7.6263" y1="-7.7025" x2="-7.2199" y2="-7.6898" layer="94"/>
<rectangle x1="-6.5849" y1="-7.7025" x2="-6.1912" y2="-7.6898" layer="94"/>
<rectangle x1="-5.734" y1="-7.7025" x2="-5.3403" y2="-7.6898" layer="94"/>
<rectangle x1="-4.6545" y1="-7.7025" x2="-4.2481" y2="-7.6898" layer="94"/>
<rectangle x1="-2.5971" y1="-7.7025" x2="-2.3177" y2="-7.6898" layer="94"/>
<rectangle x1="-1.5176" y1="-7.7025" x2="-1.2509" y2="-7.6898" layer="94"/>
<rectangle x1="-0.781" y1="-7.7025" x2="-0.4635" y2="-7.6898" layer="94"/>
<rectangle x1="0.2731" y1="-7.7025" x2="0.5779" y2="-7.6898" layer="94"/>
<rectangle x1="1.0224" y1="-7.7025" x2="1.3145" y2="-7.6898" layer="94"/>
<rectangle x1="2.8258" y1="-7.7025" x2="3.1179" y2="-7.6898" layer="94"/>
<rectangle x1="3.9053" y1="-7.7025" x2="4.1974" y2="-7.6898" layer="94"/>
<rectangle x1="4.4768" y1="-7.7025" x2="4.7562" y2="-7.6898" layer="94"/>
<rectangle x1="5.1753" y1="-7.7025" x2="5.4674" y2="-7.6898" layer="94"/>
<rectangle x1="5.8992" y1="-7.7025" x2="6.1659" y2="-7.6898" layer="94"/>
<rectangle x1="6.4453" y1="-7.7025" x2="6.7755" y2="-7.6898" layer="94"/>
<rectangle x1="7.5375" y1="-7.7025" x2="7.8042" y2="-7.6898" layer="94"/>
<rectangle x1="8.2741" y1="-7.7025" x2="8.5408" y2="-7.6898" layer="94"/>
<rectangle x1="10.0775" y1="-7.7025" x2="10.3823" y2="-7.6898" layer="94"/>
<rectangle x1="11.1697" y1="-7.7025" x2="11.4491" y2="-7.6898" layer="94"/>
<rectangle x1="-11.449" y1="-7.6898" x2="-11.0426" y2="-7.6771" layer="94"/>
<rectangle x1="-10.4076" y1="-7.6898" x2="-10.0012" y2="-7.6771" layer="94"/>
<rectangle x1="-9.544" y1="-7.6898" x2="-9.1503" y2="-7.6771" layer="94"/>
<rectangle x1="-8.4772" y1="-7.6898" x2="-8.0835" y2="-7.6771" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6898" x2="-7.2199" y2="-7.6771" layer="94"/>
<rectangle x1="-6.5849" y1="-7.6898" x2="-6.1912" y2="-7.6771" layer="94"/>
<rectangle x1="-5.734" y1="-7.6898" x2="-5.3403" y2="-7.6771" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6898" x2="-4.2481" y2="-7.6771" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6898" x2="-2.3177" y2="-7.6771" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6898" x2="-1.2509" y2="-7.6771" layer="94"/>
<rectangle x1="-0.781" y1="-7.6898" x2="-0.4508" y2="-7.6771" layer="94"/>
<rectangle x1="0.2731" y1="-7.6898" x2="0.5779" y2="-7.6771" layer="94"/>
<rectangle x1="1.0224" y1="-7.6898" x2="1.3145" y2="-7.6771" layer="94"/>
<rectangle x1="2.8258" y1="-7.6898" x2="3.1179" y2="-7.6771" layer="94"/>
<rectangle x1="3.9053" y1="-7.6898" x2="4.1974" y2="-7.6771" layer="94"/>
<rectangle x1="4.4768" y1="-7.6898" x2="4.7562" y2="-7.6771" layer="94"/>
<rectangle x1="5.1753" y1="-7.6898" x2="5.4674" y2="-7.6771" layer="94"/>
<rectangle x1="5.8992" y1="-7.6898" x2="6.1659" y2="-7.6771" layer="94"/>
<rectangle x1="6.458" y1="-7.6898" x2="6.7882" y2="-7.6771" layer="94"/>
<rectangle x1="7.5375" y1="-7.6898" x2="7.8042" y2="-7.6771" layer="94"/>
<rectangle x1="8.2741" y1="-7.6898" x2="8.5408" y2="-7.6771" layer="94"/>
<rectangle x1="10.0775" y1="-7.6898" x2="10.395" y2="-7.6771" layer="94"/>
<rectangle x1="11.1697" y1="-7.6898" x2="11.4491" y2="-7.6771" layer="94"/>
<rectangle x1="-11.449" y1="-7.6771" x2="-11.0553" y2="-7.6644" layer="94"/>
<rectangle x1="-10.3949" y1="-7.6771" x2="-10.0012" y2="-7.6644" layer="94"/>
<rectangle x1="-9.544" y1="-7.6771" x2="-9.1503" y2="-7.6644" layer="94"/>
<rectangle x1="-8.4772" y1="-7.6771" x2="-8.0835" y2="-7.6644" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6771" x2="-7.2326" y2="-7.6644" layer="94"/>
<rectangle x1="-6.5722" y1="-7.6771" x2="-6.1912" y2="-7.6644" layer="94"/>
<rectangle x1="-5.734" y1="-7.6771" x2="-5.3403" y2="-7.6644" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6771" x2="-4.2481" y2="-7.6644" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6771" x2="-2.3177" y2="-7.6644" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6771" x2="-1.2509" y2="-7.6644" layer="94"/>
<rectangle x1="-0.781" y1="-7.6771" x2="-0.4381" y2="-7.6644" layer="94"/>
<rectangle x1="0.2731" y1="-7.6771" x2="0.5779" y2="-7.6644" layer="94"/>
<rectangle x1="1.0224" y1="-7.6771" x2="1.3145" y2="-7.6644" layer="94"/>
<rectangle x1="2.8258" y1="-7.6771" x2="3.1179" y2="-7.6644" layer="94"/>
<rectangle x1="3.9053" y1="-7.6771" x2="4.1974" y2="-7.6644" layer="94"/>
<rectangle x1="4.4768" y1="-7.6771" x2="4.7562" y2="-7.6644" layer="94"/>
<rectangle x1="5.1626" y1="-7.6771" x2="5.4674" y2="-7.6644" layer="94"/>
<rectangle x1="5.8992" y1="-7.6771" x2="6.1659" y2="-7.6644" layer="94"/>
<rectangle x1="6.458" y1="-7.6771" x2="6.8136" y2="-7.6644" layer="94"/>
<rectangle x1="7.5375" y1="-7.6771" x2="7.8042" y2="-7.6644" layer="94"/>
<rectangle x1="8.2741" y1="-7.6771" x2="8.5408" y2="-7.6644" layer="94"/>
<rectangle x1="10.0775" y1="-7.6771" x2="10.395" y2="-7.6644" layer="94"/>
<rectangle x1="11.1697" y1="-7.6771" x2="11.4491" y2="-7.6644" layer="94"/>
<rectangle x1="-11.449" y1="-7.6644" x2="-11.068" y2="-7.6517" layer="94"/>
<rectangle x1="-10.3949" y1="-7.6644" x2="-10.0012" y2="-7.6517" layer="94"/>
<rectangle x1="-9.544" y1="-7.6644" x2="-9.1503" y2="-7.6517" layer="94"/>
<rectangle x1="-8.4772" y1="-7.6644" x2="-8.0835" y2="-7.6517" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6644" x2="-7.2326" y2="-7.6517" layer="94"/>
<rectangle x1="-6.5722" y1="-7.6644" x2="-6.1912" y2="-7.6517" layer="94"/>
<rectangle x1="-5.734" y1="-7.6644" x2="-5.3403" y2="-7.6517" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6644" x2="-4.2481" y2="-7.6517" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6644" x2="-2.3177" y2="-7.6517" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6644" x2="-1.2509" y2="-7.6517" layer="94"/>
<rectangle x1="-0.781" y1="-7.6644" x2="-0.4254" y2="-7.6517" layer="94"/>
<rectangle x1="0.2731" y1="-7.6644" x2="0.5779" y2="-7.6517" layer="94"/>
<rectangle x1="1.0224" y1="-7.6644" x2="1.3145" y2="-7.6517" layer="94"/>
<rectangle x1="2.8131" y1="-7.6644" x2="3.1179" y2="-7.6517" layer="94"/>
<rectangle x1="3.9053" y1="-7.6644" x2="4.1974" y2="-7.6517" layer="94"/>
<rectangle x1="4.4768" y1="-7.6644" x2="4.7562" y2="-7.6517" layer="94"/>
<rectangle x1="5.1753" y1="-7.6644" x2="5.4674" y2="-7.6517" layer="94"/>
<rectangle x1="5.8992" y1="-7.6644" x2="6.1659" y2="-7.6517" layer="94"/>
<rectangle x1="6.458" y1="-7.6644" x2="6.8263" y2="-7.6517" layer="94"/>
<rectangle x1="7.5375" y1="-7.6644" x2="7.8042" y2="-7.6517" layer="94"/>
<rectangle x1="8.2741" y1="-7.6644" x2="8.5408" y2="-7.6517" layer="94"/>
<rectangle x1="10.0775" y1="-7.6644" x2="10.4077" y2="-7.6517" layer="94"/>
<rectangle x1="11.1697" y1="-7.6644" x2="11.4491" y2="-7.6517" layer="94"/>
<rectangle x1="-11.449" y1="-7.6517" x2="-11.068" y2="-7.639" layer="94"/>
<rectangle x1="-10.3949" y1="-7.6517" x2="-10.0012" y2="-7.639" layer="94"/>
<rectangle x1="-9.544" y1="-7.6517" x2="-9.163" y2="-7.639" layer="94"/>
<rectangle x1="-8.4772" y1="-7.6517" x2="-8.0835" y2="-7.639" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6517" x2="-7.2326" y2="-7.639" layer="94"/>
<rectangle x1="-6.5595" y1="-7.6517" x2="-6.1912" y2="-7.639" layer="94"/>
<rectangle x1="-5.734" y1="-7.6517" x2="-5.3403" y2="-7.639" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6517" x2="-4.2481" y2="-7.639" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6517" x2="-2.3177" y2="-7.639" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6517" x2="-1.2509" y2="-7.639" layer="94"/>
<rectangle x1="-0.7683" y1="-7.6517" x2="-0.4127" y2="-7.639" layer="94"/>
<rectangle x1="0.2731" y1="-7.6517" x2="0.5779" y2="-7.639" layer="94"/>
<rectangle x1="1.0224" y1="-7.6517" x2="1.3145" y2="-7.639" layer="94"/>
<rectangle x1="2.8131" y1="-7.6517" x2="3.1179" y2="-7.639" layer="94"/>
<rectangle x1="3.9053" y1="-7.6517" x2="4.1974" y2="-7.639" layer="94"/>
<rectangle x1="4.4768" y1="-7.6517" x2="4.7562" y2="-7.639" layer="94"/>
<rectangle x1="5.1753" y1="-7.6517" x2="5.4674" y2="-7.639" layer="94"/>
<rectangle x1="5.8992" y1="-7.6517" x2="6.1659" y2="-7.639" layer="94"/>
<rectangle x1="6.4707" y1="-7.6517" x2="6.839" y2="-7.639" layer="94"/>
<rectangle x1="7.5375" y1="-7.6517" x2="7.8042" y2="-7.639" layer="94"/>
<rectangle x1="8.2741" y1="-7.6517" x2="8.5408" y2="-7.639" layer="94"/>
<rectangle x1="10.0775" y1="-7.6517" x2="10.4204" y2="-7.639" layer="94"/>
<rectangle x1="11.1824" y1="-7.6517" x2="11.4491" y2="-7.639" layer="94"/>
<rectangle x1="-11.4617" y1="-7.639" x2="-11.0807" y2="-7.6263" layer="94"/>
<rectangle x1="-10.3949" y1="-7.639" x2="-10.0012" y2="-7.6263" layer="94"/>
<rectangle x1="-9.544" y1="-7.639" x2="-9.163" y2="-7.6263" layer="94"/>
<rectangle x1="-8.4772" y1="-7.639" x2="-8.0835" y2="-7.6263" layer="94"/>
<rectangle x1="-7.6263" y1="-7.639" x2="-7.2326" y2="-7.6263" layer="94"/>
<rectangle x1="-6.5595" y1="-7.639" x2="-6.1912" y2="-7.6263" layer="94"/>
<rectangle x1="-5.734" y1="-7.639" x2="-5.3403" y2="-7.6263" layer="94"/>
<rectangle x1="-4.6545" y1="-7.639" x2="-4.2481" y2="-7.6263" layer="94"/>
<rectangle x1="-2.5971" y1="-7.639" x2="-2.3177" y2="-7.6263" layer="94"/>
<rectangle x1="-1.5176" y1="-7.639" x2="-1.2509" y2="-7.6263" layer="94"/>
<rectangle x1="-0.7683" y1="-7.639" x2="-0.4127" y2="-7.6263" layer="94"/>
<rectangle x1="0.2731" y1="-7.639" x2="0.5779" y2="-7.6263" layer="94"/>
<rectangle x1="1.0224" y1="-7.639" x2="1.3145" y2="-7.6263" layer="94"/>
<rectangle x1="2.8131" y1="-7.639" x2="3.1179" y2="-7.6263" layer="94"/>
<rectangle x1="3.8926" y1="-7.639" x2="4.1974" y2="-7.6263" layer="94"/>
<rectangle x1="4.4768" y1="-7.639" x2="4.7562" y2="-7.6263" layer="94"/>
<rectangle x1="5.1753" y1="-7.639" x2="5.4674" y2="-7.6263" layer="94"/>
<rectangle x1="5.8992" y1="-7.639" x2="6.1659" y2="-7.6263" layer="94"/>
<rectangle x1="6.4707" y1="-7.639" x2="6.8517" y2="-7.6263" layer="94"/>
<rectangle x1="7.5375" y1="-7.639" x2="7.8042" y2="-7.6263" layer="94"/>
<rectangle x1="8.2741" y1="-7.639" x2="8.5408" y2="-7.6263" layer="94"/>
<rectangle x1="10.0775" y1="-7.639" x2="10.4204" y2="-7.6263" layer="94"/>
<rectangle x1="11.1824" y1="-7.639" x2="11.4491" y2="-7.6263" layer="94"/>
<rectangle x1="-11.4617" y1="-7.6263" x2="-11.0807" y2="-7.6136" layer="94"/>
<rectangle x1="-10.3949" y1="-7.6263" x2="-10.0012" y2="-7.6136" layer="94"/>
<rectangle x1="-9.544" y1="-7.6263" x2="-9.163" y2="-7.6136" layer="94"/>
<rectangle x1="-8.4645" y1="-7.6263" x2="-8.0835" y2="-7.6136" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6263" x2="-7.2199" y2="-7.6136" layer="94"/>
<rectangle x1="-6.5468" y1="-7.6263" x2="-6.1912" y2="-7.6136" layer="94"/>
<rectangle x1="-5.734" y1="-7.6263" x2="-5.3403" y2="-7.6136" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6263" x2="-4.2481" y2="-7.6136" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6263" x2="-2.3177" y2="-7.6136" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6263" x2="-1.2509" y2="-7.6136" layer="94"/>
<rectangle x1="-0.7683" y1="-7.6263" x2="-0.4" y2="-7.6136" layer="94"/>
<rectangle x1="0.2731" y1="-7.6263" x2="0.5779" y2="-7.6136" layer="94"/>
<rectangle x1="1.0224" y1="-7.6263" x2="1.3145" y2="-7.6136" layer="94"/>
<rectangle x1="2.8131" y1="-7.6263" x2="3.1179" y2="-7.6136" layer="94"/>
<rectangle x1="3.9053" y1="-7.6263" x2="4.1974" y2="-7.6136" layer="94"/>
<rectangle x1="4.4768" y1="-7.6263" x2="4.7562" y2="-7.6136" layer="94"/>
<rectangle x1="5.1626" y1="-7.6263" x2="5.4674" y2="-7.6136" layer="94"/>
<rectangle x1="5.8992" y1="-7.6263" x2="6.1659" y2="-7.6136" layer="94"/>
<rectangle x1="6.4834" y1="-7.6263" x2="6.8517" y2="-7.6136" layer="94"/>
<rectangle x1="7.5375" y1="-7.6263" x2="7.8042" y2="-7.6136" layer="94"/>
<rectangle x1="8.2741" y1="-7.6263" x2="8.5408" y2="-7.6136" layer="94"/>
<rectangle x1="10.0775" y1="-7.6263" x2="10.4458" y2="-7.6136" layer="94"/>
<rectangle x1="11.1951" y1="-7.6263" x2="11.4491" y2="-7.6136" layer="94"/>
<rectangle x1="-11.4617" y1="-7.6136" x2="-11.0807" y2="-7.6009" layer="94"/>
<rectangle x1="-10.3949" y1="-7.6136" x2="-10.0012" y2="-7.6009" layer="94"/>
<rectangle x1="-9.544" y1="-7.6136" x2="-9.163" y2="-7.6009" layer="94"/>
<rectangle x1="-8.4645" y1="-7.6136" x2="-8.0835" y2="-7.6009" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6136" x2="-7.2199" y2="-7.6009" layer="94"/>
<rectangle x1="-6.5468" y1="-7.6136" x2="-6.1912" y2="-7.6009" layer="94"/>
<rectangle x1="-5.734" y1="-7.6136" x2="-5.3403" y2="-7.6009" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6136" x2="-4.2481" y2="-7.6009" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6136" x2="-2.3177" y2="-7.6009" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6136" x2="-1.2509" y2="-7.6009" layer="94"/>
<rectangle x1="-0.7683" y1="-7.6136" x2="-0.3746" y2="-7.6009" layer="94"/>
<rectangle x1="0.2731" y1="-7.6136" x2="0.5779" y2="-7.6009" layer="94"/>
<rectangle x1="1.0224" y1="-7.6136" x2="1.3145" y2="-7.6009" layer="94"/>
<rectangle x1="2.8131" y1="-7.6136" x2="3.1179" y2="-7.6009" layer="94"/>
<rectangle x1="3.9053" y1="-7.6136" x2="4.1974" y2="-7.6009" layer="94"/>
<rectangle x1="4.4768" y1="-7.6136" x2="4.7562" y2="-7.6009" layer="94"/>
<rectangle x1="5.1753" y1="-7.6136" x2="5.4674" y2="-7.6009" layer="94"/>
<rectangle x1="5.8992" y1="-7.6136" x2="6.1659" y2="-7.6009" layer="94"/>
<rectangle x1="6.4961" y1="-7.6136" x2="6.8644" y2="-7.6009" layer="94"/>
<rectangle x1="7.5375" y1="-7.6136" x2="7.8042" y2="-7.6009" layer="94"/>
<rectangle x1="8.2741" y1="-7.6136" x2="8.5408" y2="-7.6009" layer="94"/>
<rectangle x1="10.0775" y1="-7.6136" x2="10.4585" y2="-7.6009" layer="94"/>
<rectangle x1="11.2205" y1="-7.6136" x2="11.4491" y2="-7.6009" layer="94"/>
<rectangle x1="-11.4617" y1="-7.6009" x2="-11.0807" y2="-7.5882" layer="94"/>
<rectangle x1="-10.3949" y1="-7.6009" x2="-10.0012" y2="-7.5882" layer="94"/>
<rectangle x1="-9.544" y1="-7.6009" x2="-9.163" y2="-7.5882" layer="94"/>
<rectangle x1="-8.4645" y1="-7.6009" x2="-8.0835" y2="-7.5882" layer="94"/>
<rectangle x1="-7.6263" y1="-7.6009" x2="-7.2072" y2="-7.5882" layer="94"/>
<rectangle x1="-6.5468" y1="-7.6009" x2="-6.1912" y2="-7.5882" layer="94"/>
<rectangle x1="-5.734" y1="-7.6009" x2="-5.3403" y2="-7.5882" layer="94"/>
<rectangle x1="-4.6545" y1="-7.6009" x2="-4.2481" y2="-7.5882" layer="94"/>
<rectangle x1="-2.5971" y1="-7.6009" x2="-2.3177" y2="-7.5882" layer="94"/>
<rectangle x1="-1.5176" y1="-7.6009" x2="-1.2509" y2="-7.5882" layer="94"/>
<rectangle x1="-0.7556" y1="-7.6009" x2="-0.3492" y2="-7.5882" layer="94"/>
<rectangle x1="0.2731" y1="-7.6009" x2="0.5779" y2="-7.5882" layer="94"/>
<rectangle x1="1.0224" y1="-7.6009" x2="1.3145" y2="-7.5882" layer="94"/>
<rectangle x1="2.8131" y1="-7.6009" x2="3.1179" y2="-7.5882" layer="94"/>
<rectangle x1="3.8926" y1="-7.6009" x2="4.1974" y2="-7.5882" layer="94"/>
<rectangle x1="4.4768" y1="-7.6009" x2="4.7562" y2="-7.5882" layer="94"/>
<rectangle x1="5.1626" y1="-7.6009" x2="5.4674" y2="-7.5882" layer="94"/>
<rectangle x1="5.8992" y1="-7.6009" x2="6.1659" y2="-7.5882" layer="94"/>
<rectangle x1="6.4961" y1="-7.6009" x2="6.8898" y2="-7.5882" layer="94"/>
<rectangle x1="7.5375" y1="-7.6009" x2="7.8042" y2="-7.5882" layer="94"/>
<rectangle x1="8.2741" y1="-7.6009" x2="8.5408" y2="-7.5882" layer="94"/>
<rectangle x1="10.0775" y1="-7.6009" x2="10.4839" y2="-7.5882" layer="94"/>
<rectangle x1="11.2713" y1="-7.6009" x2="11.4491" y2="-7.5882" layer="94"/>
<rectangle x1="-11.4617" y1="-7.5882" x2="-11.0807" y2="-7.5755" layer="94"/>
<rectangle x1="-10.3949" y1="-7.5882" x2="-10.0012" y2="-7.5755" layer="94"/>
<rectangle x1="-9.544" y1="-7.5882" x2="-9.163" y2="-7.5755" layer="94"/>
<rectangle x1="-8.4645" y1="-7.5882" x2="-8.0835" y2="-7.5755" layer="94"/>
<rectangle x1="-7.6263" y1="-7.5882" x2="-7.1818" y2="-7.5755" layer="94"/>
<rectangle x1="-6.5468" y1="-7.5882" x2="-6.1912" y2="-7.5755" layer="94"/>
<rectangle x1="-5.734" y1="-7.5882" x2="-5.3403" y2="-7.5755" layer="94"/>
<rectangle x1="-4.6545" y1="-7.5882" x2="-4.2481" y2="-7.5755" layer="94"/>
<rectangle x1="-2.5971" y1="-7.5882" x2="-2.3177" y2="-7.5755" layer="94"/>
<rectangle x1="-1.5176" y1="-7.5882" x2="-1.2509" y2="-7.5755" layer="94"/>
<rectangle x1="-0.7556" y1="-7.5882" x2="-0.3111" y2="-7.5755" layer="94"/>
<rectangle x1="0.2731" y1="-7.5882" x2="0.5779" y2="-7.5755" layer="94"/>
<rectangle x1="1.0224" y1="-7.5882" x2="1.3145" y2="-7.5755" layer="94"/>
<rectangle x1="2.8131" y1="-7.5882" x2="3.1179" y2="-7.5755" layer="94"/>
<rectangle x1="3.9053" y1="-7.5882" x2="4.1974" y2="-7.5755" layer="94"/>
<rectangle x1="4.4768" y1="-7.5882" x2="4.7562" y2="-7.5755" layer="94"/>
<rectangle x1="5.1626" y1="-7.5882" x2="5.4674" y2="-7.5755" layer="94"/>
<rectangle x1="5.8992" y1="-7.5882" x2="6.1659" y2="-7.5755" layer="94"/>
<rectangle x1="6.4961" y1="-7.5882" x2="6.9279" y2="-7.5755" layer="94"/>
<rectangle x1="7.5375" y1="-7.5882" x2="7.8042" y2="-7.5755" layer="94"/>
<rectangle x1="8.2741" y1="-7.5882" x2="8.5408" y2="-7.5755" layer="94"/>
<rectangle x1="10.0775" y1="-7.5882" x2="10.522" y2="-7.5755" layer="94"/>
<rectangle x1="11.2967" y1="-7.5882" x2="11.4491" y2="-7.5755" layer="94"/>
<rectangle x1="-11.4617" y1="-7.5755" x2="-11.0807" y2="-7.5628" layer="94"/>
<rectangle x1="-10.3949" y1="-7.5755" x2="-10.0012" y2="-7.5628" layer="94"/>
<rectangle x1="-9.544" y1="-7.5755" x2="-9.163" y2="-7.5628" layer="94"/>
<rectangle x1="-8.4645" y1="-7.5755" x2="-8.0835" y2="-7.5628" layer="94"/>
<rectangle x1="-7.6263" y1="-7.5755" x2="-7.1564" y2="-7.5628" layer="94"/>
<rectangle x1="-6.5468" y1="-7.5755" x2="-6.1912" y2="-7.5628" layer="94"/>
<rectangle x1="-5.734" y1="-7.5755" x2="-5.3403" y2="-7.5628" layer="94"/>
<rectangle x1="-4.6545" y1="-7.5755" x2="-4.2481" y2="-7.5628" layer="94"/>
<rectangle x1="-2.5971" y1="-7.5755" x2="-2.3177" y2="-7.5628" layer="94"/>
<rectangle x1="-1.5176" y1="-7.5755" x2="-1.2509" y2="-7.5628" layer="94"/>
<rectangle x1="-0.7556" y1="-7.5755" x2="-0.273" y2="-7.5628" layer="94"/>
<rectangle x1="0.2731" y1="-7.5755" x2="0.5779" y2="-7.5628" layer="94"/>
<rectangle x1="1.0224" y1="-7.5755" x2="1.3145" y2="-7.5628" layer="94"/>
<rectangle x1="2.8131" y1="-7.5755" x2="3.1179" y2="-7.5628" layer="94"/>
<rectangle x1="3.8926" y1="-7.5755" x2="4.1974" y2="-7.5628" layer="94"/>
<rectangle x1="4.4768" y1="-7.5755" x2="4.7562" y2="-7.5628" layer="94"/>
<rectangle x1="5.1753" y1="-7.5755" x2="5.4674" y2="-7.5628" layer="94"/>
<rectangle x1="5.8992" y1="-7.5755" x2="6.1659" y2="-7.5628" layer="94"/>
<rectangle x1="6.5088" y1="-7.5755" x2="6.9787" y2="-7.5628" layer="94"/>
<rectangle x1="7.5375" y1="-7.5755" x2="7.8042" y2="-7.5628" layer="94"/>
<rectangle x1="8.2741" y1="-7.5755" x2="8.5408" y2="-7.5628" layer="94"/>
<rectangle x1="10.0775" y1="-7.5755" x2="10.5728" y2="-7.5628" layer="94"/>
<rectangle x1="11.3221" y1="-7.5755" x2="11.4364" y2="-7.5628" layer="94"/>
<rectangle x1="-11.4617" y1="-7.5628" x2="-11.0807" y2="-7.5501" layer="94"/>
<rectangle x1="-10.3949" y1="-7.5628" x2="-10.0012" y2="-7.5501" layer="94"/>
<rectangle x1="-9.544" y1="-7.5628" x2="-9.163" y2="-7.5501" layer="94"/>
<rectangle x1="-8.4645" y1="-7.5628" x2="-8.0835" y2="-7.5501" layer="94"/>
<rectangle x1="-7.6263" y1="-7.5628" x2="-7.131" y2="-7.5501" layer="94"/>
<rectangle x1="-6.5468" y1="-7.5628" x2="-6.1912" y2="-7.5501" layer="94"/>
<rectangle x1="-5.734" y1="-7.5628" x2="-5.3403" y2="-7.5501" layer="94"/>
<rectangle x1="-4.6545" y1="-7.5628" x2="-4.2481" y2="-7.5501" layer="94"/>
<rectangle x1="-2.5971" y1="-7.5628" x2="-2.3177" y2="-7.5501" layer="94"/>
<rectangle x1="-1.5176" y1="-7.5628" x2="-1.2509" y2="-7.5501" layer="94"/>
<rectangle x1="-0.7556" y1="-7.5628" x2="-0.2476" y2="-7.5501" layer="94"/>
<rectangle x1="0.2731" y1="-7.5628" x2="0.5779" y2="-7.5501" layer="94"/>
<rectangle x1="1.0224" y1="-7.5628" x2="1.3145" y2="-7.5501" layer="94"/>
<rectangle x1="2.8131" y1="-7.5628" x2="3.1179" y2="-7.5501" layer="94"/>
<rectangle x1="3.9053" y1="-7.5628" x2="4.1974" y2="-7.5501" layer="94"/>
<rectangle x1="4.4768" y1="-7.5628" x2="4.7562" y2="-7.5501" layer="94"/>
<rectangle x1="5.1626" y1="-7.5628" x2="5.4674" y2="-7.5501" layer="94"/>
<rectangle x1="5.8992" y1="-7.5628" x2="6.1659" y2="-7.5501" layer="94"/>
<rectangle x1="6.5088" y1="-7.5628" x2="7.0041" y2="-7.5501" layer="94"/>
<rectangle x1="7.5375" y1="-7.5628" x2="7.8042" y2="-7.5501" layer="94"/>
<rectangle x1="8.2741" y1="-7.5628" x2="8.5408" y2="-7.5501" layer="94"/>
<rectangle x1="10.0775" y1="-7.5628" x2="10.5982" y2="-7.5501" layer="94"/>
<rectangle x1="11.3348" y1="-7.5628" x2="11.4364" y2="-7.5501" layer="94"/>
<rectangle x1="-11.4617" y1="-7.5501" x2="-11.0807" y2="-7.5374" layer="94"/>
<rectangle x1="-10.3949" y1="-7.5501" x2="-10.0012" y2="-7.5374" layer="94"/>
<rectangle x1="-9.544" y1="-7.5501" x2="-9.163" y2="-7.5374" layer="94"/>
<rectangle x1="-8.4645" y1="-7.5501" x2="-8.0835" y2="-7.5374" layer="94"/>
<rectangle x1="-7.6263" y1="-7.5501" x2="-7.1183" y2="-7.5374" layer="94"/>
<rectangle x1="-6.5341" y1="-7.5501" x2="-6.1912" y2="-7.5374" layer="94"/>
<rectangle x1="-5.734" y1="-7.5501" x2="-5.3403" y2="-7.5374" layer="94"/>
<rectangle x1="-4.6545" y1="-7.5501" x2="-4.2481" y2="-7.5374" layer="94"/>
<rectangle x1="-2.5971" y1="-7.5501" x2="-2.3177" y2="-7.5374" layer="94"/>
<rectangle x1="-1.5176" y1="-7.5501" x2="-1.2509" y2="-7.5374" layer="94"/>
<rectangle x1="-0.7429" y1="-7.5501" x2="-0.2349" y2="-7.5374" layer="94"/>
<rectangle x1="0.2731" y1="-7.5501" x2="0.5779" y2="-7.5374" layer="94"/>
<rectangle x1="1.0224" y1="-7.5501" x2="1.3145" y2="-7.5374" layer="94"/>
<rectangle x1="2.8131" y1="-7.5501" x2="3.1179" y2="-7.5374" layer="94"/>
<rectangle x1="3.8926" y1="-7.5501" x2="4.1974" y2="-7.5374" layer="94"/>
<rectangle x1="4.4768" y1="-7.5501" x2="4.7562" y2="-7.5374" layer="94"/>
<rectangle x1="5.1753" y1="-7.5501" x2="5.4674" y2="-7.5374" layer="94"/>
<rectangle x1="5.8992" y1="-7.5501" x2="6.1659" y2="-7.5374" layer="94"/>
<rectangle x1="6.5215" y1="-7.5501" x2="7.0168" y2="-7.5374" layer="94"/>
<rectangle x1="7.5375" y1="-7.5501" x2="7.8042" y2="-7.5374" layer="94"/>
<rectangle x1="8.2741" y1="-7.5501" x2="8.5408" y2="-7.5374" layer="94"/>
<rectangle x1="10.0775" y1="-7.5501" x2="10.6236" y2="-7.5374" layer="94"/>
<rectangle x1="11.3602" y1="-7.5501" x2="11.4237" y2="-7.5374" layer="94"/>
<rectangle x1="-11.4617" y1="-7.5374" x2="-11.0807" y2="-7.5247" layer="94"/>
<rectangle x1="-10.3949" y1="-7.5374" x2="-10.0012" y2="-7.5247" layer="94"/>
<rectangle x1="-9.544" y1="-7.5374" x2="-9.163" y2="-7.5247" layer="94"/>
<rectangle x1="-8.4645" y1="-7.5374" x2="-8.0835" y2="-7.5247" layer="94"/>
<rectangle x1="-7.6263" y1="-7.5374" x2="-7.0929" y2="-7.5247" layer="94"/>
<rectangle x1="-6.5341" y1="-7.5374" x2="-6.1912" y2="-7.5247" layer="94"/>
<rectangle x1="-5.734" y1="-7.5374" x2="-5.3403" y2="-7.5247" layer="94"/>
<rectangle x1="-4.6545" y1="-7.5374" x2="-4.2481" y2="-7.5247" layer="94"/>
<rectangle x1="-2.5971" y1="-7.5374" x2="-2.3177" y2="-7.5247" layer="94"/>
<rectangle x1="-1.5176" y1="-7.5374" x2="-1.2509" y2="-7.5247" layer="94"/>
<rectangle x1="-0.7302" y1="-7.5374" x2="-0.2095" y2="-7.5247" layer="94"/>
<rectangle x1="0.2731" y1="-7.5374" x2="0.5779" y2="-7.5247" layer="94"/>
<rectangle x1="1.0224" y1="-7.5374" x2="1.3145" y2="-7.5247" layer="94"/>
<rectangle x1="2.8131" y1="-7.5374" x2="3.1179" y2="-7.5247" layer="94"/>
<rectangle x1="3.8926" y1="-7.5374" x2="4.1974" y2="-7.5247" layer="94"/>
<rectangle x1="4.4768" y1="-7.5374" x2="4.7562" y2="-7.5247" layer="94"/>
<rectangle x1="5.1753" y1="-7.5374" x2="5.4674" y2="-7.5247" layer="94"/>
<rectangle x1="5.8992" y1="-7.5374" x2="6.1659" y2="-7.5247" layer="94"/>
<rectangle x1="6.5215" y1="-7.5374" x2="7.0295" y2="-7.5247" layer="94"/>
<rectangle x1="7.5375" y1="-7.5374" x2="7.8042" y2="-7.5247" layer="94"/>
<rectangle x1="8.2741" y1="-7.5374" x2="8.5408" y2="-7.5247" layer="94"/>
<rectangle x1="10.0775" y1="-7.5374" x2="10.6363" y2="-7.5247" layer="94"/>
<rectangle x1="-11.4617" y1="-7.5247" x2="-11.0807" y2="-7.512" layer="94"/>
<rectangle x1="-10.3949" y1="-7.5247" x2="-10.0012" y2="-7.512" layer="94"/>
<rectangle x1="-9.544" y1="-7.5247" x2="-9.163" y2="-7.512" layer="94"/>
<rectangle x1="-8.4645" y1="-7.5247" x2="-8.0835" y2="-7.512" layer="94"/>
<rectangle x1="-7.6263" y1="-7.5247" x2="-7.0802" y2="-7.512" layer="94"/>
<rectangle x1="-6.5087" y1="-7.5247" x2="-6.1912" y2="-7.512" layer="94"/>
<rectangle x1="-5.734" y1="-7.5247" x2="-5.3403" y2="-7.512" layer="94"/>
<rectangle x1="-4.6545" y1="-7.5247" x2="-4.2481" y2="-7.512" layer="94"/>
<rectangle x1="-2.5971" y1="-7.5247" x2="-2.3177" y2="-7.512" layer="94"/>
<rectangle x1="-1.5176" y1="-7.5247" x2="-1.2509" y2="-7.512" layer="94"/>
<rectangle x1="-0.7175" y1="-7.5247" x2="-0.1841" y2="-7.512" layer="94"/>
<rectangle x1="0.2731" y1="-7.5247" x2="0.5779" y2="-7.512" layer="94"/>
<rectangle x1="1.0224" y1="-7.5247" x2="1.3145" y2="-7.512" layer="94"/>
<rectangle x1="2.8131" y1="-7.5247" x2="3.1179" y2="-7.512" layer="94"/>
<rectangle x1="3.9053" y1="-7.5247" x2="4.1974" y2="-7.512" layer="94"/>
<rectangle x1="4.4768" y1="-7.5247" x2="4.7562" y2="-7.512" layer="94"/>
<rectangle x1="5.1626" y1="-7.5247" x2="5.4674" y2="-7.512" layer="94"/>
<rectangle x1="5.8992" y1="-7.5247" x2="6.1659" y2="-7.512" layer="94"/>
<rectangle x1="6.5342" y1="-7.5247" x2="7.0549" y2="-7.512" layer="94"/>
<rectangle x1="7.5375" y1="-7.5247" x2="7.8042" y2="-7.512" layer="94"/>
<rectangle x1="8.2741" y1="-7.5247" x2="8.5408" y2="-7.512" layer="94"/>
<rectangle x1="10.0775" y1="-7.5247" x2="10.6617" y2="-7.512" layer="94"/>
<rectangle x1="-11.4617" y1="-7.512" x2="-11.0807" y2="-7.4993" layer="94"/>
<rectangle x1="-10.3949" y1="-7.512" x2="-10.0012" y2="-7.4993" layer="94"/>
<rectangle x1="-9.544" y1="-7.512" x2="-9.163" y2="-7.4993" layer="94"/>
<rectangle x1="-8.4645" y1="-7.512" x2="-8.0835" y2="-7.4993" layer="94"/>
<rectangle x1="-7.6263" y1="-7.512" x2="-7.0421" y2="-7.4993" layer="94"/>
<rectangle x1="-6.496" y1="-7.512" x2="-6.1912" y2="-7.4993" layer="94"/>
<rectangle x1="-5.734" y1="-7.512" x2="-5.3403" y2="-7.4993" layer="94"/>
<rectangle x1="-4.6545" y1="-7.512" x2="-4.2481" y2="-7.4993" layer="94"/>
<rectangle x1="-2.5971" y1="-7.512" x2="-2.3177" y2="-7.4993" layer="94"/>
<rectangle x1="-1.5176" y1="-7.512" x2="-1.2509" y2="-7.4993" layer="94"/>
<rectangle x1="-0.7048" y1="-7.512" x2="-0.146" y2="-7.4993" layer="94"/>
<rectangle x1="0.2731" y1="-7.512" x2="0.5779" y2="-7.4993" layer="94"/>
<rectangle x1="1.0224" y1="-7.512" x2="1.3145" y2="-7.4993" layer="94"/>
<rectangle x1="2.8131" y1="-7.512" x2="3.1179" y2="-7.4993" layer="94"/>
<rectangle x1="3.9053" y1="-7.512" x2="4.1974" y2="-7.4993" layer="94"/>
<rectangle x1="4.4768" y1="-7.512" x2="4.7562" y2="-7.4993" layer="94"/>
<rectangle x1="5.1753" y1="-7.512" x2="5.4674" y2="-7.4993" layer="94"/>
<rectangle x1="5.8992" y1="-7.512" x2="6.1659" y2="-7.4993" layer="94"/>
<rectangle x1="6.5342" y1="-7.512" x2="7.093" y2="-7.4993" layer="94"/>
<rectangle x1="7.5375" y1="-7.512" x2="7.8042" y2="-7.4993" layer="94"/>
<rectangle x1="8.2741" y1="-7.512" x2="8.5408" y2="-7.4993" layer="94"/>
<rectangle x1="10.0775" y1="-7.512" x2="10.6871" y2="-7.4993" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4993" x2="-11.0807" y2="-7.4866" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4993" x2="-10.0012" y2="-7.4866" layer="94"/>
<rectangle x1="-9.544" y1="-7.4993" x2="-9.163" y2="-7.4866" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4993" x2="-8.0835" y2="-7.4866" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4993" x2="-6.9913" y2="-7.4866" layer="94"/>
<rectangle x1="-6.4706" y1="-7.4993" x2="-6.1912" y2="-7.4866" layer="94"/>
<rectangle x1="-5.734" y1="-7.4993" x2="-5.3403" y2="-7.4866" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4993" x2="-4.2481" y2="-7.4866" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4993" x2="-2.3177" y2="-7.4866" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4993" x2="-1.2509" y2="-7.4866" layer="94"/>
<rectangle x1="-0.6921" y1="-7.4993" x2="-0.0952" y2="-7.4866" layer="94"/>
<rectangle x1="0.2731" y1="-7.4993" x2="0.5779" y2="-7.4866" layer="94"/>
<rectangle x1="1.0224" y1="-7.4993" x2="1.3145" y2="-7.4866" layer="94"/>
<rectangle x1="2.8131" y1="-7.4993" x2="3.1179" y2="-7.4866" layer="94"/>
<rectangle x1="3.9053" y1="-7.4993" x2="4.1974" y2="-7.4866" layer="94"/>
<rectangle x1="4.4768" y1="-7.4993" x2="4.7562" y2="-7.4866" layer="94"/>
<rectangle x1="5.1753" y1="-7.4993" x2="5.4674" y2="-7.4866" layer="94"/>
<rectangle x1="5.8992" y1="-7.4993" x2="6.1659" y2="-7.4866" layer="94"/>
<rectangle x1="6.5469" y1="-7.4993" x2="7.1565" y2="-7.4866" layer="94"/>
<rectangle x1="7.5375" y1="-7.4993" x2="7.8042" y2="-7.4866" layer="94"/>
<rectangle x1="8.2741" y1="-7.4993" x2="8.5408" y2="-7.4866" layer="94"/>
<rectangle x1="10.0775" y1="-7.4993" x2="10.7379" y2="-7.4866" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4866" x2="-11.0807" y2="-7.4739" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4866" x2="-10.0012" y2="-7.4739" layer="94"/>
<rectangle x1="-9.544" y1="-7.4866" x2="-9.163" y2="-7.4739" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4866" x2="-8.0835" y2="-7.4739" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4866" x2="-6.9532" y2="-7.4739" layer="94"/>
<rectangle x1="-6.4579" y1="-7.4866" x2="-6.1912" y2="-7.4739" layer="94"/>
<rectangle x1="-5.734" y1="-7.4866" x2="-5.3403" y2="-7.4739" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4866" x2="-4.2481" y2="-7.4739" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4866" x2="-2.3177" y2="-7.4739" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4866" x2="-1.2509" y2="-7.4739" layer="94"/>
<rectangle x1="-0.6794" y1="-7.4866" x2="-0.0698" y2="-7.4739" layer="94"/>
<rectangle x1="0.2731" y1="-7.4866" x2="0.5779" y2="-7.4739" layer="94"/>
<rectangle x1="1.0224" y1="-7.4866" x2="1.3145" y2="-7.4739" layer="94"/>
<rectangle x1="2.8131" y1="-7.4866" x2="3.1179" y2="-7.4739" layer="94"/>
<rectangle x1="3.9053" y1="-7.4866" x2="4.1974" y2="-7.4739" layer="94"/>
<rectangle x1="4.4768" y1="-7.4866" x2="4.7562" y2="-7.4739" layer="94"/>
<rectangle x1="5.1753" y1="-7.4866" x2="5.4674" y2="-7.4739" layer="94"/>
<rectangle x1="5.8992" y1="-7.4866" x2="6.1659" y2="-7.4739" layer="94"/>
<rectangle x1="6.5596" y1="-7.4866" x2="7.1946" y2="-7.4739" layer="94"/>
<rectangle x1="7.5375" y1="-7.4866" x2="7.8042" y2="-7.4739" layer="94"/>
<rectangle x1="8.2741" y1="-7.4866" x2="8.5408" y2="-7.4739" layer="94"/>
<rectangle x1="10.0775" y1="-7.4866" x2="10.7633" y2="-7.4739" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4739" x2="-11.0807" y2="-7.4612" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4739" x2="-10.0012" y2="-7.4612" layer="94"/>
<rectangle x1="-9.544" y1="-7.4739" x2="-9.163" y2="-7.4612" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4739" x2="-8.0835" y2="-7.4612" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4739" x2="-6.9405" y2="-7.4612" layer="94"/>
<rectangle x1="-6.4452" y1="-7.4739" x2="-6.1912" y2="-7.4612" layer="94"/>
<rectangle x1="-5.734" y1="-7.4739" x2="-5.3403" y2="-7.4612" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4739" x2="-4.2481" y2="-7.4612" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4739" x2="-2.3177" y2="-7.4612" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4739" x2="-1.2509" y2="-7.4612" layer="94"/>
<rectangle x1="-0.6794" y1="-7.4739" x2="-0.0444" y2="-7.4612" layer="94"/>
<rectangle x1="0.2731" y1="-7.4739" x2="0.5779" y2="-7.4612" layer="94"/>
<rectangle x1="1.0224" y1="-7.4739" x2="1.3145" y2="-7.4612" layer="94"/>
<rectangle x1="2.8131" y1="-7.4739" x2="3.1179" y2="-7.4612" layer="94"/>
<rectangle x1="3.8926" y1="-7.4739" x2="4.1974" y2="-7.4612" layer="94"/>
<rectangle x1="4.4768" y1="-7.4739" x2="4.7562" y2="-7.4612" layer="94"/>
<rectangle x1="5.1626" y1="-7.4739" x2="5.4674" y2="-7.4612" layer="94"/>
<rectangle x1="5.8992" y1="-7.4739" x2="6.1659" y2="-7.4612" layer="94"/>
<rectangle x1="6.5723" y1="-7.4739" x2="7.2073" y2="-7.4612" layer="94"/>
<rectangle x1="7.5375" y1="-7.4739" x2="7.8042" y2="-7.4612" layer="94"/>
<rectangle x1="8.2741" y1="-7.4739" x2="8.5408" y2="-7.4612" layer="94"/>
<rectangle x1="10.0775" y1="-7.4739" x2="10.7887" y2="-7.4612" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4612" x2="-11.0807" y2="-7.4485" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4612" x2="-10.0012" y2="-7.4485" layer="94"/>
<rectangle x1="-9.544" y1="-7.4612" x2="-9.163" y2="-7.4485" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4612" x2="-8.0835" y2="-7.4485" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4612" x2="-6.9278" y2="-7.4485" layer="94"/>
<rectangle x1="-6.4198" y1="-7.4612" x2="-6.1912" y2="-7.4485" layer="94"/>
<rectangle x1="-5.734" y1="-7.4612" x2="-5.3403" y2="-7.4485" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4612" x2="-4.2481" y2="-7.4485" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4612" x2="-2.3177" y2="-7.4485" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4612" x2="-1.2509" y2="-7.4485" layer="94"/>
<rectangle x1="-0.6667" y1="-7.4612" x2="-0.019" y2="-7.4485" layer="94"/>
<rectangle x1="0.2731" y1="-7.4612" x2="0.5779" y2="-7.4485" layer="94"/>
<rectangle x1="1.0224" y1="-7.4612" x2="1.3145" y2="-7.4485" layer="94"/>
<rectangle x1="2.8131" y1="-7.4612" x2="3.1179" y2="-7.4485" layer="94"/>
<rectangle x1="3.9053" y1="-7.4612" x2="4.1974" y2="-7.4485" layer="94"/>
<rectangle x1="4.4768" y1="-7.4612" x2="4.7562" y2="-7.4485" layer="94"/>
<rectangle x1="5.1626" y1="-7.4612" x2="5.4674" y2="-7.4485" layer="94"/>
<rectangle x1="5.8992" y1="-7.4612" x2="6.1659" y2="-7.4485" layer="94"/>
<rectangle x1="6.585" y1="-7.4612" x2="7.2327" y2="-7.4485" layer="94"/>
<rectangle x1="7.5375" y1="-7.4612" x2="7.8042" y2="-7.4485" layer="94"/>
<rectangle x1="8.2741" y1="-7.4612" x2="8.5408" y2="-7.4485" layer="94"/>
<rectangle x1="10.0775" y1="-7.4612" x2="10.8141" y2="-7.4485" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4485" x2="-11.0807" y2="-7.4358" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4485" x2="-10.0012" y2="-7.4358" layer="94"/>
<rectangle x1="-9.544" y1="-7.4485" x2="-9.163" y2="-7.4358" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4485" x2="-8.0835" y2="-7.4358" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4485" x2="-6.9024" y2="-7.4358" layer="94"/>
<rectangle x1="-6.3944" y1="-7.4485" x2="-6.1912" y2="-7.4358" layer="94"/>
<rectangle x1="-5.734" y1="-7.4485" x2="-5.3403" y2="-7.4358" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4485" x2="-4.2481" y2="-7.4358" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4485" x2="-2.3177" y2="-7.4358" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4485" x2="-1.2509" y2="-7.4358" layer="94"/>
<rectangle x1="-0.654" y1="-7.4485" x2="-0.0063" y2="-7.4358" layer="94"/>
<rectangle x1="0.2731" y1="-7.4485" x2="0.5779" y2="-7.4358" layer="94"/>
<rectangle x1="1.0224" y1="-7.4485" x2="1.3145" y2="-7.4358" layer="94"/>
<rectangle x1="2.8131" y1="-7.4485" x2="3.1179" y2="-7.4358" layer="94"/>
<rectangle x1="3.8926" y1="-7.4485" x2="4.1974" y2="-7.4358" layer="94"/>
<rectangle x1="4.4768" y1="-7.4485" x2="4.7562" y2="-7.4358" layer="94"/>
<rectangle x1="5.1753" y1="-7.4485" x2="5.4674" y2="-7.4358" layer="94"/>
<rectangle x1="5.8992" y1="-7.4485" x2="6.1659" y2="-7.4358" layer="94"/>
<rectangle x1="6.5977" y1="-7.4485" x2="7.2454" y2="-7.4358" layer="94"/>
<rectangle x1="7.5375" y1="-7.4485" x2="7.8042" y2="-7.4358" layer="94"/>
<rectangle x1="8.2741" y1="-7.4485" x2="8.5408" y2="-7.4358" layer="94"/>
<rectangle x1="10.0775" y1="-7.4485" x2="10.8268" y2="-7.4358" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4358" x2="-11.0807" y2="-7.4231" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4358" x2="-10.0012" y2="-7.4231" layer="94"/>
<rectangle x1="-9.544" y1="-7.4358" x2="-9.163" y2="-7.4231" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4358" x2="-8.0835" y2="-7.4231" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4358" x2="-6.877" y2="-7.4231" layer="94"/>
<rectangle x1="-6.3563" y1="-7.4358" x2="-6.2039" y2="-7.4231" layer="94"/>
<rectangle x1="-5.734" y1="-7.4358" x2="-5.3403" y2="-7.4231" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4358" x2="-4.2481" y2="-7.4231" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4358" x2="-2.3177" y2="-7.4231" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4358" x2="-1.2509" y2="-7.4231" layer="94"/>
<rectangle x1="-0.6413" y1="-7.4358" x2="0.0318" y2="-7.4231" layer="94"/>
<rectangle x1="0.2731" y1="-7.4358" x2="0.5779" y2="-7.4231" layer="94"/>
<rectangle x1="1.0224" y1="-7.4358" x2="1.3145" y2="-7.4231" layer="94"/>
<rectangle x1="2.8131" y1="-7.4358" x2="3.1179" y2="-7.4231" layer="94"/>
<rectangle x1="3.9053" y1="-7.4358" x2="4.1974" y2="-7.4231" layer="94"/>
<rectangle x1="4.4768" y1="-7.4358" x2="4.7562" y2="-7.4231" layer="94"/>
<rectangle x1="5.1626" y1="-7.4358" x2="5.4674" y2="-7.4231" layer="94"/>
<rectangle x1="5.8992" y1="-7.4358" x2="6.1659" y2="-7.4231" layer="94"/>
<rectangle x1="6.6231" y1="-7.4358" x2="7.2708" y2="-7.4231" layer="94"/>
<rectangle x1="7.5375" y1="-7.4358" x2="7.8042" y2="-7.4231" layer="94"/>
<rectangle x1="8.2741" y1="-7.4358" x2="8.5408" y2="-7.4231" layer="94"/>
<rectangle x1="10.0775" y1="-7.4358" x2="10.8522" y2="-7.4231" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4231" x2="-11.0807" y2="-7.4104" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4231" x2="-10.0012" y2="-7.4104" layer="94"/>
<rectangle x1="-9.544" y1="-7.4231" x2="-9.163" y2="-7.4104" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4231" x2="-8.0835" y2="-7.4104" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4231" x2="-6.8516" y2="-7.4104" layer="94"/>
<rectangle x1="-6.3055" y1="-7.4231" x2="-6.2039" y2="-7.4104" layer="94"/>
<rectangle x1="-5.734" y1="-7.4231" x2="-5.3403" y2="-7.4104" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4231" x2="-4.2481" y2="-7.4104" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4231" x2="-2.3177" y2="-7.4104" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4231" x2="-1.2509" y2="-7.4104" layer="94"/>
<rectangle x1="-0.6159" y1="-7.4231" x2="0.0699" y2="-7.4104" layer="94"/>
<rectangle x1="0.2604" y1="-7.4231" x2="0.5779" y2="-7.4104" layer="94"/>
<rectangle x1="1.0224" y1="-7.4231" x2="1.3145" y2="-7.4104" layer="94"/>
<rectangle x1="2.8131" y1="-7.4231" x2="3.1179" y2="-7.4104" layer="94"/>
<rectangle x1="3.9053" y1="-7.4231" x2="4.1974" y2="-7.4104" layer="94"/>
<rectangle x1="4.4768" y1="-7.4231" x2="4.7562" y2="-7.4104" layer="94"/>
<rectangle x1="5.1626" y1="-7.4231" x2="5.4674" y2="-7.4104" layer="94"/>
<rectangle x1="5.8992" y1="-7.4231" x2="6.1659" y2="-7.4104" layer="94"/>
<rectangle x1="6.6358" y1="-7.4231" x2="7.3216" y2="-7.4104" layer="94"/>
<rectangle x1="7.5375" y1="-7.4231" x2="7.8042" y2="-7.4104" layer="94"/>
<rectangle x1="8.2741" y1="-7.4231" x2="8.5408" y2="-7.4104" layer="94"/>
<rectangle x1="10.0775" y1="-7.4231" x2="10.8903" y2="-7.4104" layer="94"/>
<rectangle x1="-11.4617" y1="-7.4104" x2="-11.0807" y2="-7.3977" layer="94"/>
<rectangle x1="-10.3949" y1="-7.4104" x2="-10.0012" y2="-7.3977" layer="94"/>
<rectangle x1="-9.544" y1="-7.4104" x2="-9.163" y2="-7.3977" layer="94"/>
<rectangle x1="-8.4645" y1="-7.4104" x2="-8.0835" y2="-7.3977" layer="94"/>
<rectangle x1="-7.6263" y1="-7.4104" x2="-6.8008" y2="-7.3977" layer="94"/>
<rectangle x1="-6.2674" y1="-7.4104" x2="-6.2293" y2="-7.3977" layer="94"/>
<rectangle x1="-5.734" y1="-7.4104" x2="-5.3403" y2="-7.3977" layer="94"/>
<rectangle x1="-4.6545" y1="-7.4104" x2="-4.2481" y2="-7.3977" layer="94"/>
<rectangle x1="-2.5971" y1="-7.4104" x2="-2.3177" y2="-7.3977" layer="94"/>
<rectangle x1="-1.5176" y1="-7.4104" x2="-1.2509" y2="-7.3977" layer="94"/>
<rectangle x1="-0.5905" y1="-7.4104" x2="0.1207" y2="-7.3977" layer="94"/>
<rectangle x1="0.2604" y1="-7.4104" x2="0.5779" y2="-7.3977" layer="94"/>
<rectangle x1="1.0224" y1="-7.4104" x2="1.3145" y2="-7.3977" layer="94"/>
<rectangle x1="2.8131" y1="-7.4104" x2="3.1179" y2="-7.3977" layer="94"/>
<rectangle x1="3.9053" y1="-7.4104" x2="4.1974" y2="-7.3977" layer="94"/>
<rectangle x1="4.4768" y1="-7.4104" x2="4.7562" y2="-7.3977" layer="94"/>
<rectangle x1="5.1626" y1="-7.4104" x2="5.4674" y2="-7.3977" layer="94"/>
<rectangle x1="5.8992" y1="-7.4104" x2="6.1659" y2="-7.3977" layer="94"/>
<rectangle x1="6.6612" y1="-7.4104" x2="7.3724" y2="-7.3977" layer="94"/>
<rectangle x1="7.5248" y1="-7.4104" x2="7.8042" y2="-7.3977" layer="94"/>
<rectangle x1="8.2741" y1="-7.4104" x2="8.5408" y2="-7.3977" layer="94"/>
<rectangle x1="10.0775" y1="-7.4104" x2="10.9411" y2="-7.3977" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3977" x2="-11.0807" y2="-7.385" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3977" x2="-10.0012" y2="-7.385" layer="94"/>
<rectangle x1="-9.544" y1="-7.3977" x2="-9.163" y2="-7.385" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3977" x2="-8.0835" y2="-7.385" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3977" x2="-6.7627" y2="-7.385" layer="94"/>
<rectangle x1="-5.734" y1="-7.3977" x2="-5.3403" y2="-7.385" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3977" x2="-4.2481" y2="-7.385" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3977" x2="-2.3177" y2="-7.385" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3977" x2="-1.2509" y2="-7.385" layer="94"/>
<rectangle x1="-0.5778" y1="-7.3977" x2="0.1461" y2="-7.385" layer="94"/>
<rectangle x1="0.2477" y1="-7.3977" x2="0.5779" y2="-7.385" layer="94"/>
<rectangle x1="1.0224" y1="-7.3977" x2="1.3145" y2="-7.385" layer="94"/>
<rectangle x1="2.8131" y1="-7.3977" x2="3.1179" y2="-7.385" layer="94"/>
<rectangle x1="3.9053" y1="-7.3977" x2="4.1974" y2="-7.385" layer="94"/>
<rectangle x1="4.4768" y1="-7.3977" x2="4.7562" y2="-7.385" layer="94"/>
<rectangle x1="5.1753" y1="-7.3977" x2="5.4674" y2="-7.385" layer="94"/>
<rectangle x1="5.8992" y1="-7.3977" x2="6.1659" y2="-7.385" layer="94"/>
<rectangle x1="6.6739" y1="-7.3977" x2="7.4105" y2="-7.385" layer="94"/>
<rectangle x1="7.5248" y1="-7.3977" x2="7.8042" y2="-7.385" layer="94"/>
<rectangle x1="8.2741" y1="-7.3977" x2="8.5408" y2="-7.385" layer="94"/>
<rectangle x1="10.0775" y1="-7.3977" x2="10.9792" y2="-7.385" layer="94"/>
<rectangle x1="-11.4617" y1="-7.385" x2="-11.0807" y2="-7.3723" layer="94"/>
<rectangle x1="-10.3949" y1="-7.385" x2="-10.0012" y2="-7.3723" layer="94"/>
<rectangle x1="-9.544" y1="-7.385" x2="-9.163" y2="-7.3723" layer="94"/>
<rectangle x1="-8.4645" y1="-7.385" x2="-8.0835" y2="-7.3723" layer="94"/>
<rectangle x1="-7.6263" y1="-7.385" x2="-6.7373" y2="-7.3723" layer="94"/>
<rectangle x1="-5.734" y1="-7.385" x2="-5.3403" y2="-7.3723" layer="94"/>
<rectangle x1="-4.6545" y1="-7.385" x2="-4.2481" y2="-7.3723" layer="94"/>
<rectangle x1="-2.5971" y1="-7.385" x2="-2.3177" y2="-7.3723" layer="94"/>
<rectangle x1="-1.5176" y1="-7.385" x2="-1.2509" y2="-7.3723" layer="94"/>
<rectangle x1="-0.5651" y1="-7.385" x2="0.1715" y2="-7.3723" layer="94"/>
<rectangle x1="0.2477" y1="-7.385" x2="0.5779" y2="-7.3723" layer="94"/>
<rectangle x1="1.0224" y1="-7.385" x2="1.3145" y2="-7.3723" layer="94"/>
<rectangle x1="2.8131" y1="-7.385" x2="3.1179" y2="-7.3723" layer="94"/>
<rectangle x1="3.9053" y1="-7.385" x2="4.1974" y2="-7.3723" layer="94"/>
<rectangle x1="4.4768" y1="-7.385" x2="4.7562" y2="-7.3723" layer="94"/>
<rectangle x1="5.1753" y1="-7.385" x2="5.4674" y2="-7.3723" layer="94"/>
<rectangle x1="5.8992" y1="-7.385" x2="6.1659" y2="-7.3723" layer="94"/>
<rectangle x1="6.6866" y1="-7.385" x2="7.4232" y2="-7.3723" layer="94"/>
<rectangle x1="7.5248" y1="-7.385" x2="7.8042" y2="-7.3723" layer="94"/>
<rectangle x1="8.2741" y1="-7.385" x2="8.5408" y2="-7.3723" layer="94"/>
<rectangle x1="10.0775" y1="-7.385" x2="10.9919" y2="-7.3723" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3723" x2="-11.0807" y2="-7.3596" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3723" x2="-10.0012" y2="-7.3596" layer="94"/>
<rectangle x1="-9.544" y1="-7.3723" x2="-9.163" y2="-7.3596" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3723" x2="-8.0835" y2="-7.3596" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3723" x2="-6.7246" y2="-7.3596" layer="94"/>
<rectangle x1="-5.734" y1="-7.3723" x2="-5.3403" y2="-7.3596" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3723" x2="-4.2481" y2="-7.3596" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3723" x2="-2.3177" y2="-7.3596" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3723" x2="-1.2509" y2="-7.3596" layer="94"/>
<rectangle x1="-0.5524" y1="-7.3723" x2="0.1969" y2="-7.3596" layer="94"/>
<rectangle x1="0.2223" y1="-7.3723" x2="0.5779" y2="-7.3596" layer="94"/>
<rectangle x1="1.0224" y1="-7.3723" x2="1.3145" y2="-7.3596" layer="94"/>
<rectangle x1="2.8131" y1="-7.3723" x2="3.1179" y2="-7.3596" layer="94"/>
<rectangle x1="3.9053" y1="-7.3723" x2="4.1974" y2="-7.3596" layer="94"/>
<rectangle x1="4.4768" y1="-7.3723" x2="4.7562" y2="-7.3596" layer="94"/>
<rectangle x1="5.1753" y1="-7.3723" x2="5.4674" y2="-7.3596" layer="94"/>
<rectangle x1="5.8992" y1="-7.3723" x2="6.1659" y2="-7.3596" layer="94"/>
<rectangle x1="6.6993" y1="-7.3723" x2="7.4359" y2="-7.3596" layer="94"/>
<rectangle x1="7.5121" y1="-7.3723" x2="7.8042" y2="-7.3596" layer="94"/>
<rectangle x1="8.2741" y1="-7.3723" x2="8.5408" y2="-7.3596" layer="94"/>
<rectangle x1="10.0775" y1="-7.3723" x2="11.0046" y2="-7.3596" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3596" x2="-11.0807" y2="-7.3469" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3596" x2="-10.0012" y2="-7.3469" layer="94"/>
<rectangle x1="-9.544" y1="-7.3596" x2="-9.163" y2="-7.3469" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3596" x2="-8.0835" y2="-7.3469" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3596" x2="-6.7119" y2="-7.3469" layer="94"/>
<rectangle x1="-5.734" y1="-7.3596" x2="-5.3403" y2="-7.3469" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3596" x2="-4.2481" y2="-7.3469" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3596" x2="-2.3177" y2="-7.3469" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3596" x2="-1.2509" y2="-7.3469" layer="94"/>
<rectangle x1="-0.5143" y1="-7.3596" x2="0.5779" y2="-7.3469" layer="94"/>
<rectangle x1="1.0224" y1="-7.3596" x2="1.3145" y2="-7.3469" layer="94"/>
<rectangle x1="2.8131" y1="-7.3596" x2="3.1179" y2="-7.3469" layer="94"/>
<rectangle x1="3.8926" y1="-7.3596" x2="4.1974" y2="-7.3469" layer="94"/>
<rectangle x1="4.4768" y1="-7.3596" x2="4.7562" y2="-7.3469" layer="94"/>
<rectangle x1="5.1753" y1="-7.3596" x2="5.4674" y2="-7.3469" layer="94"/>
<rectangle x1="5.8992" y1="-7.3596" x2="6.1659" y2="-7.3469" layer="94"/>
<rectangle x1="6.7247" y1="-7.3596" x2="7.474" y2="-7.3469" layer="94"/>
<rectangle x1="7.4994" y1="-7.3596" x2="7.8042" y2="-7.3469" layer="94"/>
<rectangle x1="8.2741" y1="-7.3596" x2="8.5408" y2="-7.3469" layer="94"/>
<rectangle x1="10.0775" y1="-7.3596" x2="11.03" y2="-7.3469" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3469" x2="-11.0807" y2="-7.3342" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3469" x2="-10.0012" y2="-7.3342" layer="94"/>
<rectangle x1="-9.544" y1="-7.3469" x2="-9.163" y2="-7.3342" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3469" x2="-8.0835" y2="-7.3342" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3469" x2="-6.6865" y2="-7.3342" layer="94"/>
<rectangle x1="-5.734" y1="-7.3469" x2="-5.3403" y2="-7.3342" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3469" x2="-4.2481" y2="-7.3342" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3469" x2="-2.3177" y2="-7.3342" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3469" x2="-1.2509" y2="-7.3342" layer="94"/>
<rectangle x1="-0.4762" y1="-7.3469" x2="0.5779" y2="-7.3342" layer="94"/>
<rectangle x1="1.0224" y1="-7.3469" x2="1.3145" y2="-7.3342" layer="94"/>
<rectangle x1="2.8131" y1="-7.3469" x2="3.1179" y2="-7.3342" layer="94"/>
<rectangle x1="3.9053" y1="-7.3469" x2="4.1974" y2="-7.3342" layer="94"/>
<rectangle x1="4.4768" y1="-7.3469" x2="4.7562" y2="-7.3342" layer="94"/>
<rectangle x1="5.1753" y1="-7.3469" x2="5.4674" y2="-7.3342" layer="94"/>
<rectangle x1="5.8992" y1="-7.3469" x2="6.1659" y2="-7.3342" layer="94"/>
<rectangle x1="6.7755" y1="-7.3469" x2="7.8042" y2="-7.3342" layer="94"/>
<rectangle x1="8.2741" y1="-7.3469" x2="8.5408" y2="-7.3342" layer="94"/>
<rectangle x1="10.0775" y1="-7.3469" x2="11.0554" y2="-7.3342" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3342" x2="-11.0807" y2="-7.3215" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3342" x2="-10.0012" y2="-7.3215" layer="94"/>
<rectangle x1="-9.544" y1="-7.3342" x2="-9.163" y2="-7.3215" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3342" x2="-8.0835" y2="-7.3215" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3342" x2="-6.6357" y2="-7.3215" layer="94"/>
<rectangle x1="-5.734" y1="-7.3342" x2="-5.3403" y2="-7.3215" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3342" x2="-4.2481" y2="-7.3215" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3342" x2="-2.3177" y2="-7.3215" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3342" x2="-1.2509" y2="-7.3215" layer="94"/>
<rectangle x1="-0.4381" y1="-7.3342" x2="0.5779" y2="-7.3215" layer="94"/>
<rectangle x1="1.0224" y1="-7.3342" x2="1.3145" y2="-7.3215" layer="94"/>
<rectangle x1="2.8131" y1="-7.3342" x2="3.1179" y2="-7.3215" layer="94"/>
<rectangle x1="3.9053" y1="-7.3342" x2="4.1974" y2="-7.3215" layer="94"/>
<rectangle x1="4.4768" y1="-7.3342" x2="4.7562" y2="-7.3215" layer="94"/>
<rectangle x1="5.1753" y1="-7.3342" x2="5.4674" y2="-7.3215" layer="94"/>
<rectangle x1="5.8992" y1="-7.3342" x2="6.1659" y2="-7.3215" layer="94"/>
<rectangle x1="6.8136" y1="-7.3342" x2="7.8042" y2="-7.3215" layer="94"/>
<rectangle x1="8.2741" y1="-7.3342" x2="8.5408" y2="-7.3215" layer="94"/>
<rectangle x1="10.0775" y1="-7.3342" x2="11.0935" y2="-7.3215" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3215" x2="-11.0807" y2="-7.3088" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3215" x2="-10.0012" y2="-7.3088" layer="94"/>
<rectangle x1="-9.544" y1="-7.3215" x2="-9.163" y2="-7.3088" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3215" x2="-8.0835" y2="-7.3088" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3215" x2="-6.5976" y2="-7.3088" layer="94"/>
<rectangle x1="-5.734" y1="-7.3215" x2="-5.3403" y2="-7.3088" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3215" x2="-4.2481" y2="-7.3088" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3215" x2="-2.3177" y2="-7.3088" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3215" x2="-1.2509" y2="-7.3088" layer="94"/>
<rectangle x1="-0.4127" y1="-7.3215" x2="0.5779" y2="-7.3088" layer="94"/>
<rectangle x1="1.0224" y1="-7.3215" x2="1.3145" y2="-7.3088" layer="94"/>
<rectangle x1="2.8131" y1="-7.3215" x2="3.1179" y2="-7.3088" layer="94"/>
<rectangle x1="3.9053" y1="-7.3215" x2="4.1974" y2="-7.3088" layer="94"/>
<rectangle x1="4.4768" y1="-7.3215" x2="4.7562" y2="-7.3088" layer="94"/>
<rectangle x1="5.1753" y1="-7.3215" x2="5.4674" y2="-7.3088" layer="94"/>
<rectangle x1="5.8992" y1="-7.3215" x2="6.1659" y2="-7.3088" layer="94"/>
<rectangle x1="6.839" y1="-7.3215" x2="7.8042" y2="-7.3088" layer="94"/>
<rectangle x1="8.2741" y1="-7.3215" x2="8.5408" y2="-7.3088" layer="94"/>
<rectangle x1="10.0775" y1="-7.3215" x2="11.1443" y2="-7.3088" layer="94"/>
<rectangle x1="-11.4617" y1="-7.3088" x2="-11.0807" y2="-7.2961" layer="94"/>
<rectangle x1="-10.3949" y1="-7.3088" x2="-10.0012" y2="-7.2961" layer="94"/>
<rectangle x1="-9.544" y1="-7.3088" x2="-9.163" y2="-7.2961" layer="94"/>
<rectangle x1="-8.4645" y1="-7.3088" x2="-8.0835" y2="-7.2961" layer="94"/>
<rectangle x1="-7.6263" y1="-7.3088" x2="-6.5722" y2="-7.2961" layer="94"/>
<rectangle x1="-5.734" y1="-7.3088" x2="-5.3403" y2="-7.2961" layer="94"/>
<rectangle x1="-4.6545" y1="-7.3088" x2="-4.2481" y2="-7.2961" layer="94"/>
<rectangle x1="-2.5971" y1="-7.3088" x2="-2.3177" y2="-7.2961" layer="94"/>
<rectangle x1="-1.5176" y1="-7.3088" x2="-1.2509" y2="-7.2961" layer="94"/>
<rectangle x1="-0.3873" y1="-7.3088" x2="0.5779" y2="-7.2961" layer="94"/>
<rectangle x1="1.0224" y1="-7.3088" x2="1.3145" y2="-7.2961" layer="94"/>
<rectangle x1="2.8131" y1="-7.3088" x2="3.1179" y2="-7.2961" layer="94"/>
<rectangle x1="3.9053" y1="-7.3088" x2="4.1974" y2="-7.2961" layer="94"/>
<rectangle x1="4.4768" y1="-7.3088" x2="4.7562" y2="-7.2961" layer="94"/>
<rectangle x1="5.1753" y1="-7.3088" x2="5.4674" y2="-7.2961" layer="94"/>
<rectangle x1="5.8992" y1="-7.3088" x2="6.1659" y2="-7.2961" layer="94"/>
<rectangle x1="6.8517" y1="-7.3088" x2="7.8042" y2="-7.2961" layer="94"/>
<rectangle x1="8.2741" y1="-7.3088" x2="8.5408" y2="-7.2961" layer="94"/>
<rectangle x1="10.0775" y1="-7.3088" x2="11.1697" y2="-7.2961" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2961" x2="-11.0807" y2="-7.2834" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2961" x2="-10.0012" y2="-7.2834" layer="94"/>
<rectangle x1="-9.544" y1="-7.2961" x2="-9.163" y2="-7.2834" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2961" x2="-8.0835" y2="-7.2834" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2961" x2="-6.5468" y2="-7.2834" layer="94"/>
<rectangle x1="-5.734" y1="-7.2961" x2="-5.3403" y2="-7.2834" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2961" x2="-4.2481" y2="-7.2834" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2961" x2="-2.3177" y2="-7.2834" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2961" x2="-1.2509" y2="-7.2834" layer="94"/>
<rectangle x1="-0.3746" y1="-7.2961" x2="0.5779" y2="-7.2834" layer="94"/>
<rectangle x1="1.0224" y1="-7.2961" x2="1.3145" y2="-7.2834" layer="94"/>
<rectangle x1="2.8131" y1="-7.2961" x2="3.1179" y2="-7.2834" layer="94"/>
<rectangle x1="3.8926" y1="-7.2961" x2="4.1974" y2="-7.2834" layer="94"/>
<rectangle x1="4.4768" y1="-7.2961" x2="4.7562" y2="-7.2834" layer="94"/>
<rectangle x1="5.1753" y1="-7.2961" x2="5.4674" y2="-7.2834" layer="94"/>
<rectangle x1="5.8992" y1="-7.2961" x2="6.1659" y2="-7.2834" layer="94"/>
<rectangle x1="6.8644" y1="-7.2961" x2="7.8042" y2="-7.2834" layer="94"/>
<rectangle x1="8.2741" y1="-7.2961" x2="8.5408" y2="-7.2834" layer="94"/>
<rectangle x1="10.0775" y1="-7.2961" x2="10.4331" y2="-7.2834" layer="94"/>
<rectangle x1="10.4712" y1="-7.2961" x2="11.1951" y2="-7.2834" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2834" x2="-11.0807" y2="-7.2707" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2834" x2="-10.0012" y2="-7.2707" layer="94"/>
<rectangle x1="-9.544" y1="-7.2834" x2="-9.163" y2="-7.2707" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2834" x2="-8.0835" y2="-7.2707" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2834" x2="-6.5341" y2="-7.2707" layer="94"/>
<rectangle x1="-5.734" y1="-7.2834" x2="-5.3403" y2="-7.2707" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2834" x2="-4.2481" y2="-7.2707" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2834" x2="-2.3177" y2="-7.2707" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2834" x2="-1.2509" y2="-7.2707" layer="94"/>
<rectangle x1="-0.3492" y1="-7.2834" x2="0.5779" y2="-7.2707" layer="94"/>
<rectangle x1="1.0224" y1="-7.2834" x2="1.3145" y2="-7.2707" layer="94"/>
<rectangle x1="2.8131" y1="-7.2834" x2="3.1179" y2="-7.2707" layer="94"/>
<rectangle x1="3.9053" y1="-7.2834" x2="4.1974" y2="-7.2707" layer="94"/>
<rectangle x1="4.4768" y1="-7.2834" x2="4.7562" y2="-7.2707" layer="94"/>
<rectangle x1="5.1753" y1="-7.2834" x2="5.4674" y2="-7.2707" layer="94"/>
<rectangle x1="5.8992" y1="-7.2834" x2="6.1659" y2="-7.2707" layer="94"/>
<rectangle x1="6.8898" y1="-7.2834" x2="7.8042" y2="-7.2707" layer="94"/>
<rectangle x1="8.2741" y1="-7.2834" x2="8.5408" y2="-7.2707" layer="94"/>
<rectangle x1="10.0775" y1="-7.2834" x2="10.4077" y2="-7.2707" layer="94"/>
<rectangle x1="10.4966" y1="-7.2834" x2="11.2078" y2="-7.2707" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2707" x2="-11.0807" y2="-7.258" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2707" x2="-10.0012" y2="-7.258" layer="94"/>
<rectangle x1="-9.544" y1="-7.2707" x2="-9.163" y2="-7.258" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2707" x2="-8.0835" y2="-7.258" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2707" x2="-6.5087" y2="-7.258" layer="94"/>
<rectangle x1="-5.734" y1="-7.2707" x2="-5.3403" y2="-7.258" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2707" x2="-4.2481" y2="-7.258" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2707" x2="-2.3177" y2="-7.258" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2707" x2="-1.2509" y2="-7.258" layer="94"/>
<rectangle x1="-0.3111" y1="-7.2707" x2="0.5779" y2="-7.258" layer="94"/>
<rectangle x1="1.0224" y1="-7.2707" x2="1.3145" y2="-7.258" layer="94"/>
<rectangle x1="2.8131" y1="-7.2707" x2="3.1179" y2="-7.258" layer="94"/>
<rectangle x1="3.8926" y1="-7.2707" x2="4.1974" y2="-7.258" layer="94"/>
<rectangle x1="4.4768" y1="-7.2707" x2="4.7562" y2="-7.258" layer="94"/>
<rectangle x1="5.1753" y1="-7.2707" x2="5.4674" y2="-7.258" layer="94"/>
<rectangle x1="5.8992" y1="-7.2707" x2="6.1659" y2="-7.258" layer="94"/>
<rectangle x1="6.9279" y1="-7.2707" x2="7.8042" y2="-7.258" layer="94"/>
<rectangle x1="8.2741" y1="-7.2707" x2="8.5408" y2="-7.258" layer="94"/>
<rectangle x1="10.0775" y1="-7.2707" x2="10.395" y2="-7.258" layer="94"/>
<rectangle x1="10.522" y1="-7.2707" x2="11.2332" y2="-7.258" layer="94"/>
<rectangle x1="-11.4617" y1="-7.258" x2="-11.0807" y2="-7.2453" layer="94"/>
<rectangle x1="-10.3949" y1="-7.258" x2="-10.0012" y2="-7.2453" layer="94"/>
<rectangle x1="-9.544" y1="-7.258" x2="-9.163" y2="-7.2453" layer="94"/>
<rectangle x1="-8.4645" y1="-7.258" x2="-8.0835" y2="-7.2453" layer="94"/>
<rectangle x1="-7.6263" y1="-7.258" x2="-6.4706" y2="-7.2453" layer="94"/>
<rectangle x1="-5.734" y1="-7.258" x2="-5.3403" y2="-7.2453" layer="94"/>
<rectangle x1="-4.6545" y1="-7.258" x2="-4.2481" y2="-7.2453" layer="94"/>
<rectangle x1="-2.5971" y1="-7.258" x2="-2.3177" y2="-7.2453" layer="94"/>
<rectangle x1="-1.5176" y1="-7.258" x2="-1.2509" y2="-7.2453" layer="94"/>
<rectangle x1="-0.2603" y1="-7.258" x2="0.5779" y2="-7.2453" layer="94"/>
<rectangle x1="1.0224" y1="-7.258" x2="1.3145" y2="-7.2453" layer="94"/>
<rectangle x1="2.8131" y1="-7.258" x2="3.1179" y2="-7.2453" layer="94"/>
<rectangle x1="3.9053" y1="-7.258" x2="4.1974" y2="-7.2453" layer="94"/>
<rectangle x1="4.4768" y1="-7.258" x2="4.7562" y2="-7.2453" layer="94"/>
<rectangle x1="5.188" y1="-7.258" x2="5.4674" y2="-7.2453" layer="94"/>
<rectangle x1="5.8992" y1="-7.258" x2="6.1659" y2="-7.2453" layer="94"/>
<rectangle x1="6.9914" y1="-7.258" x2="7.8042" y2="-7.2453" layer="94"/>
<rectangle x1="8.2741" y1="-7.258" x2="8.5408" y2="-7.2453" layer="94"/>
<rectangle x1="10.0775" y1="-7.258" x2="10.395" y2="-7.2453" layer="94"/>
<rectangle x1="10.5601" y1="-7.258" x2="11.2586" y2="-7.2453" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2453" x2="-11.0807" y2="-7.2326" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2453" x2="-10.0012" y2="-7.2326" layer="94"/>
<rectangle x1="-9.544" y1="-7.2453" x2="-9.163" y2="-7.2326" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2453" x2="-8.0835" y2="-7.2326" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2453" x2="-6.4325" y2="-7.2326" layer="94"/>
<rectangle x1="-5.734" y1="-7.2453" x2="-5.3403" y2="-7.2326" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2453" x2="-4.2481" y2="-7.2326" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2453" x2="-2.3177" y2="-7.2326" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2453" x2="-1.2509" y2="-7.2326" layer="94"/>
<rectangle x1="-0.2349" y1="-7.2453" x2="0.5779" y2="-7.2326" layer="94"/>
<rectangle x1="1.0224" y1="-7.2453" x2="1.3145" y2="-7.2326" layer="94"/>
<rectangle x1="2.8131" y1="-7.2453" x2="3.1179" y2="-7.2326" layer="94"/>
<rectangle x1="3.9053" y1="-7.2453" x2="4.1974" y2="-7.2326" layer="94"/>
<rectangle x1="4.4768" y1="-7.2453" x2="4.7562" y2="-7.2326" layer="94"/>
<rectangle x1="5.188" y1="-7.2453" x2="5.4674" y2="-7.2326" layer="94"/>
<rectangle x1="5.8992" y1="-7.2453" x2="6.1659" y2="-7.2326" layer="94"/>
<rectangle x1="7.0168" y1="-7.2453" x2="7.8042" y2="-7.2326" layer="94"/>
<rectangle x1="8.2741" y1="-7.2453" x2="8.5408" y2="-7.2326" layer="94"/>
<rectangle x1="10.0775" y1="-7.2453" x2="10.3823" y2="-7.2326" layer="94"/>
<rectangle x1="10.5982" y1="-7.2453" x2="11.3094" y2="-7.2326" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2326" x2="-11.0807" y2="-7.2199" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2326" x2="-10.0012" y2="-7.2199" layer="94"/>
<rectangle x1="-9.544" y1="-7.2326" x2="-9.163" y2="-7.2199" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2326" x2="-8.0835" y2="-7.2199" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2326" x2="-6.3944" y2="-7.2199" layer="94"/>
<rectangle x1="-5.734" y1="-7.2326" x2="-5.3403" y2="-7.2199" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2326" x2="-4.2481" y2="-7.2199" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2326" x2="-2.3177" y2="-7.2199" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2326" x2="-1.2509" y2="-7.2199" layer="94"/>
<rectangle x1="-0.2095" y1="-7.2326" x2="0.5779" y2="-7.2199" layer="94"/>
<rectangle x1="1.0224" y1="-7.2326" x2="1.3145" y2="-7.2199" layer="94"/>
<rectangle x1="2.8131" y1="-7.2326" x2="3.1179" y2="-7.2199" layer="94"/>
<rectangle x1="3.8926" y1="-7.2326" x2="4.1974" y2="-7.2199" layer="94"/>
<rectangle x1="4.4768" y1="-7.2326" x2="4.7562" y2="-7.2199" layer="94"/>
<rectangle x1="5.188" y1="-7.2326" x2="5.4674" y2="-7.2199" layer="94"/>
<rectangle x1="5.8992" y1="-7.2326" x2="6.1659" y2="-7.2199" layer="94"/>
<rectangle x1="7.0422" y1="-7.2326" x2="7.8042" y2="-7.2199" layer="94"/>
<rectangle x1="8.2741" y1="-7.2326" x2="8.5408" y2="-7.2199" layer="94"/>
<rectangle x1="10.0775" y1="-7.2326" x2="10.3823" y2="-7.2199" layer="94"/>
<rectangle x1="10.6109" y1="-7.2326" x2="11.3475" y2="-7.2199" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2199" x2="-11.0807" y2="-7.2072" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2199" x2="-10.0012" y2="-7.2072" layer="94"/>
<rectangle x1="-9.544" y1="-7.2199" x2="-9.163" y2="-7.2072" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2199" x2="-8.0835" y2="-7.2072" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2199" x2="-6.369" y2="-7.2072" layer="94"/>
<rectangle x1="-5.734" y1="-7.2199" x2="-5.3403" y2="-7.2072" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2199" x2="-4.2481" y2="-7.2072" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2199" x2="-2.3177" y2="-7.2072" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2199" x2="-1.2509" y2="-7.2072" layer="94"/>
<rectangle x1="-0.1841" y1="-7.2199" x2="0.5779" y2="-7.2072" layer="94"/>
<rectangle x1="1.0224" y1="-7.2199" x2="1.3145" y2="-7.2072" layer="94"/>
<rectangle x1="2.8131" y1="-7.2199" x2="3.1179" y2="-7.2072" layer="94"/>
<rectangle x1="3.9053" y1="-7.2199" x2="4.1974" y2="-7.2072" layer="94"/>
<rectangle x1="4.4768" y1="-7.2199" x2="4.7562" y2="-7.2072" layer="94"/>
<rectangle x1="5.188" y1="-7.2199" x2="5.4674" y2="-7.2072" layer="94"/>
<rectangle x1="5.8992" y1="-7.2199" x2="6.1659" y2="-7.2072" layer="94"/>
<rectangle x1="7.0676" y1="-7.2199" x2="7.8042" y2="-7.2072" layer="94"/>
<rectangle x1="8.2741" y1="-7.2199" x2="8.5408" y2="-7.2072" layer="94"/>
<rectangle x1="10.0775" y1="-7.2199" x2="10.3823" y2="-7.2072" layer="94"/>
<rectangle x1="10.6363" y1="-7.2199" x2="11.3729" y2="-7.2072" layer="94"/>
<rectangle x1="-11.4617" y1="-7.2072" x2="-11.0807" y2="-7.1945" layer="94"/>
<rectangle x1="-10.3949" y1="-7.2072" x2="-10.0012" y2="-7.1945" layer="94"/>
<rectangle x1="-9.544" y1="-7.2072" x2="-9.163" y2="-7.1945" layer="94"/>
<rectangle x1="-8.4645" y1="-7.2072" x2="-8.0835" y2="-7.1945" layer="94"/>
<rectangle x1="-7.6263" y1="-7.2072" x2="-6.3563" y2="-7.1945" layer="94"/>
<rectangle x1="-5.734" y1="-7.2072" x2="-5.3403" y2="-7.1945" layer="94"/>
<rectangle x1="-4.6545" y1="-7.2072" x2="-4.2481" y2="-7.1945" layer="94"/>
<rectangle x1="-2.5971" y1="-7.2072" x2="-2.3177" y2="-7.1945" layer="94"/>
<rectangle x1="-1.5176" y1="-7.2072" x2="-1.2509" y2="-7.1945" layer="94"/>
<rectangle x1="-0.1714" y1="-7.2072" x2="0.5779" y2="-7.1945" layer="94"/>
<rectangle x1="1.0224" y1="-7.2072" x2="1.3145" y2="-7.1945" layer="94"/>
<rectangle x1="2.8131" y1="-7.2072" x2="3.1179" y2="-7.1945" layer="94"/>
<rectangle x1="3.8926" y1="-7.2072" x2="4.1974" y2="-7.1945" layer="94"/>
<rectangle x1="4.4768" y1="-7.2072" x2="4.7562" y2="-7.1945" layer="94"/>
<rectangle x1="5.188" y1="-7.2072" x2="5.4674" y2="-7.1945" layer="94"/>
<rectangle x1="5.8992" y1="-7.2072" x2="6.1659" y2="-7.1945" layer="94"/>
<rectangle x1="7.0803" y1="-7.2072" x2="7.8042" y2="-7.1945" layer="94"/>
<rectangle x1="8.2741" y1="-7.2072" x2="8.5408" y2="-7.1945" layer="94"/>
<rectangle x1="10.0775" y1="-7.2072" x2="10.3823" y2="-7.1945" layer="94"/>
<rectangle x1="10.649" y1="-7.2072" x2="11.3856" y2="-7.1945" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1945" x2="-11.0807" y2="-7.1818" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1945" x2="-10.0012" y2="-7.1818" layer="94"/>
<rectangle x1="-9.544" y1="-7.1945" x2="-9.163" y2="-7.1818" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1945" x2="-8.0835" y2="-7.1818" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1945" x2="-6.3309" y2="-7.1818" layer="94"/>
<rectangle x1="-5.734" y1="-7.1945" x2="-5.3403" y2="-7.1818" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1945" x2="-4.2481" y2="-7.1818" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1945" x2="-2.3177" y2="-7.1818" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1945" x2="-1.2509" y2="-7.1818" layer="94"/>
<rectangle x1="-0.1333" y1="-7.1945" x2="0.5779" y2="-7.1818" layer="94"/>
<rectangle x1="1.0224" y1="-7.1945" x2="1.3145" y2="-7.1818" layer="94"/>
<rectangle x1="2.8131" y1="-7.1945" x2="3.1179" y2="-7.1818" layer="94"/>
<rectangle x1="3.9053" y1="-7.1945" x2="4.1974" y2="-7.1818" layer="94"/>
<rectangle x1="4.4768" y1="-7.1945" x2="4.7562" y2="-7.1818" layer="94"/>
<rectangle x1="5.188" y1="-7.1945" x2="5.4674" y2="-7.1818" layer="94"/>
<rectangle x1="5.8992" y1="-7.1945" x2="6.1659" y2="-7.1818" layer="94"/>
<rectangle x1="7.1184" y1="-7.1945" x2="7.8042" y2="-7.1818" layer="94"/>
<rectangle x1="8.2741" y1="-7.1945" x2="8.5408" y2="-7.1818" layer="94"/>
<rectangle x1="10.0775" y1="-7.1945" x2="10.3823" y2="-7.1818" layer="94"/>
<rectangle x1="10.6871" y1="-7.1945" x2="11.3983" y2="-7.1818" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1818" x2="-11.0807" y2="-7.1691" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1818" x2="-10.0012" y2="-7.1691" layer="94"/>
<rectangle x1="-9.544" y1="-7.1818" x2="-9.163" y2="-7.1691" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1818" x2="-8.0835" y2="-7.1691" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1818" x2="-6.3055" y2="-7.1691" layer="94"/>
<rectangle x1="-5.734" y1="-7.1818" x2="-5.3403" y2="-7.1691" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1818" x2="-4.2481" y2="-7.1691" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1818" x2="-2.3177" y2="-7.1691" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1818" x2="-1.2509" y2="-7.1691" layer="94"/>
<rectangle x1="-0.0952" y1="-7.1818" x2="0.5779" y2="-7.1691" layer="94"/>
<rectangle x1="1.0224" y1="-7.1818" x2="1.3145" y2="-7.1691" layer="94"/>
<rectangle x1="2.8131" y1="-7.1818" x2="3.1179" y2="-7.1691" layer="94"/>
<rectangle x1="3.9053" y1="-7.1818" x2="4.1974" y2="-7.1691" layer="94"/>
<rectangle x1="4.4768" y1="-7.1818" x2="4.7562" y2="-7.1691" layer="94"/>
<rectangle x1="5.188" y1="-7.1818" x2="5.4674" y2="-7.1691" layer="94"/>
<rectangle x1="5.8992" y1="-7.1818" x2="6.1659" y2="-7.1691" layer="94"/>
<rectangle x1="7.1565" y1="-7.1818" x2="7.8042" y2="-7.1691" layer="94"/>
<rectangle x1="8.2741" y1="-7.1818" x2="8.5408" y2="-7.1691" layer="94"/>
<rectangle x1="10.0775" y1="-7.1818" x2="10.3823" y2="-7.1691" layer="94"/>
<rectangle x1="10.7252" y1="-7.1818" x2="11.411" y2="-7.1691" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1691" x2="-11.0807" y2="-7.1564" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1691" x2="-10.0012" y2="-7.1564" layer="94"/>
<rectangle x1="-9.544" y1="-7.1691" x2="-9.163" y2="-7.1564" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1691" x2="-8.0835" y2="-7.1564" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1691" x2="-6.2674" y2="-7.1564" layer="94"/>
<rectangle x1="-5.734" y1="-7.1691" x2="-5.3403" y2="-7.1564" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1691" x2="-4.2481" y2="-7.1564" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1691" x2="-2.3177" y2="-7.1564" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1691" x2="-1.2509" y2="-7.1564" layer="94"/>
<rectangle x1="-0.0571" y1="-7.1691" x2="0.5779" y2="-7.1564" layer="94"/>
<rectangle x1="1.0224" y1="-7.1691" x2="1.3145" y2="-7.1564" layer="94"/>
<rectangle x1="2.8131" y1="-7.1691" x2="3.1179" y2="-7.1564" layer="94"/>
<rectangle x1="3.9053" y1="-7.1691" x2="4.1974" y2="-7.1564" layer="94"/>
<rectangle x1="4.4768" y1="-7.1691" x2="4.7562" y2="-7.1564" layer="94"/>
<rectangle x1="5.188" y1="-7.1691" x2="5.4674" y2="-7.1564" layer="94"/>
<rectangle x1="5.8992" y1="-7.1691" x2="6.1659" y2="-7.1564" layer="94"/>
<rectangle x1="7.2073" y1="-7.1691" x2="7.8042" y2="-7.1564" layer="94"/>
<rectangle x1="8.2741" y1="-7.1691" x2="8.5408" y2="-7.1564" layer="94"/>
<rectangle x1="10.0775" y1="-7.1691" x2="10.3823" y2="-7.1564" layer="94"/>
<rectangle x1="10.776" y1="-7.1691" x2="11.4237" y2="-7.1564" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1564" x2="-11.0807" y2="-7.1437" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1564" x2="-10.0012" y2="-7.1437" layer="94"/>
<rectangle x1="-9.544" y1="-7.1564" x2="-9.163" y2="-7.1437" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1564" x2="-8.0835" y2="-7.1437" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1564" x2="-6.2293" y2="-7.1437" layer="94"/>
<rectangle x1="-5.734" y1="-7.1564" x2="-5.3403" y2="-7.1437" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1564" x2="-4.2481" y2="-7.1437" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1564" x2="-2.3177" y2="-7.1437" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1564" x2="-1.2509" y2="-7.1437" layer="94"/>
<rectangle x1="-0.019" y1="-7.1564" x2="0.5779" y2="-7.1437" layer="94"/>
<rectangle x1="1.0224" y1="-7.1564" x2="1.3145" y2="-7.1437" layer="94"/>
<rectangle x1="2.8131" y1="-7.1564" x2="3.1179" y2="-7.1437" layer="94"/>
<rectangle x1="3.9053" y1="-7.1564" x2="4.1974" y2="-7.1437" layer="94"/>
<rectangle x1="4.4768" y1="-7.1564" x2="4.7562" y2="-7.1437" layer="94"/>
<rectangle x1="5.188" y1="-7.1564" x2="5.4674" y2="-7.1437" layer="94"/>
<rectangle x1="5.8992" y1="-7.1564" x2="6.1659" y2="-7.1437" layer="94"/>
<rectangle x1="7.2327" y1="-7.1564" x2="7.8042" y2="-7.1437" layer="94"/>
<rectangle x1="8.2741" y1="-7.1564" x2="8.5408" y2="-7.1437" layer="94"/>
<rectangle x1="10.0775" y1="-7.1564" x2="10.3823" y2="-7.1437" layer="94"/>
<rectangle x1="10.8014" y1="-7.1564" x2="11.4237" y2="-7.1437" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1437" x2="-11.0807" y2="-7.131" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1437" x2="-10.0012" y2="-7.131" layer="94"/>
<rectangle x1="-9.544" y1="-7.1437" x2="-9.163" y2="-7.131" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1437" x2="-8.0835" y2="-7.131" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1437" x2="-6.2166" y2="-7.131" layer="94"/>
<rectangle x1="-5.734" y1="-7.1437" x2="-5.3403" y2="-7.131" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1437" x2="-4.2481" y2="-7.131" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1437" x2="-2.3177" y2="-7.131" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1437" x2="-1.2509" y2="-7.131" layer="94"/>
<rectangle x1="-0.0063" y1="-7.1437" x2="0.5779" y2="-7.131" layer="94"/>
<rectangle x1="1.0224" y1="-7.1437" x2="1.3145" y2="-7.131" layer="94"/>
<rectangle x1="2.8131" y1="-7.1437" x2="3.1179" y2="-7.131" layer="94"/>
<rectangle x1="3.9053" y1="-7.1437" x2="4.1974" y2="-7.131" layer="94"/>
<rectangle x1="4.4768" y1="-7.1437" x2="4.7562" y2="-7.131" layer="94"/>
<rectangle x1="5.188" y1="-7.1437" x2="5.4674" y2="-7.131" layer="94"/>
<rectangle x1="5.8992" y1="-7.1437" x2="6.1659" y2="-7.131" layer="94"/>
<rectangle x1="7.2454" y1="-7.1437" x2="7.8042" y2="-7.131" layer="94"/>
<rectangle x1="8.2741" y1="-7.1437" x2="8.5408" y2="-7.131" layer="94"/>
<rectangle x1="10.0775" y1="-7.1437" x2="10.3823" y2="-7.131" layer="94"/>
<rectangle x1="10.8141" y1="-7.1437" x2="11.4364" y2="-7.131" layer="94"/>
<rectangle x1="-11.4617" y1="-7.131" x2="-11.0807" y2="-7.1183" layer="94"/>
<rectangle x1="-10.3949" y1="-7.131" x2="-10.0012" y2="-7.1183" layer="94"/>
<rectangle x1="-9.544" y1="-7.131" x2="-9.163" y2="-7.1183" layer="94"/>
<rectangle x1="-8.4645" y1="-7.131" x2="-8.0835" y2="-7.1183" layer="94"/>
<rectangle x1="-7.6263" y1="-7.131" x2="-7.2326" y2="-7.1183" layer="94"/>
<rectangle x1="-7.1564" y1="-7.131" x2="-6.2039" y2="-7.1183" layer="94"/>
<rectangle x1="-5.734" y1="-7.131" x2="-5.3403" y2="-7.1183" layer="94"/>
<rectangle x1="-4.6545" y1="-7.131" x2="-4.2481" y2="-7.1183" layer="94"/>
<rectangle x1="-2.5971" y1="-7.131" x2="-2.3177" y2="-7.1183" layer="94"/>
<rectangle x1="-1.5176" y1="-7.131" x2="-1.2509" y2="-7.1183" layer="94"/>
<rectangle x1="-0.7683" y1="-7.131" x2="-0.7048" y2="-7.1183" layer="94"/>
<rectangle x1="0.0191" y1="-7.131" x2="0.5779" y2="-7.1183" layer="94"/>
<rectangle x1="1.0224" y1="-7.131" x2="1.3145" y2="-7.1183" layer="94"/>
<rectangle x1="2.8131" y1="-7.131" x2="3.1179" y2="-7.1183" layer="94"/>
<rectangle x1="3.9053" y1="-7.131" x2="4.1974" y2="-7.1183" layer="94"/>
<rectangle x1="4.4768" y1="-7.131" x2="4.7562" y2="-7.1183" layer="94"/>
<rectangle x1="5.188" y1="-7.131" x2="5.4674" y2="-7.1183" layer="94"/>
<rectangle x1="5.8992" y1="-7.131" x2="6.1659" y2="-7.1183" layer="94"/>
<rectangle x1="6.4707" y1="-7.131" x2="6.5215" y2="-7.1183" layer="94"/>
<rectangle x1="7.2708" y1="-7.131" x2="7.8042" y2="-7.1183" layer="94"/>
<rectangle x1="8.2741" y1="-7.131" x2="8.5408" y2="-7.1183" layer="94"/>
<rectangle x1="10.0775" y1="-7.131" x2="10.3823" y2="-7.1183" layer="94"/>
<rectangle x1="10.8268" y1="-7.131" x2="11.4364" y2="-7.1183" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1183" x2="-11.0807" y2="-7.1056" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1183" x2="-10.0012" y2="-7.1056" layer="94"/>
<rectangle x1="-9.544" y1="-7.1183" x2="-9.163" y2="-7.1056" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1183" x2="-8.0835" y2="-7.1056" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1183" x2="-7.2453" y2="-7.1056" layer="94"/>
<rectangle x1="-7.131" y1="-7.1183" x2="-6.1912" y2="-7.1056" layer="94"/>
<rectangle x1="-5.734" y1="-7.1183" x2="-5.3403" y2="-7.1056" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1183" x2="-4.2481" y2="-7.1056" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1183" x2="-2.3177" y2="-7.1056" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1183" x2="-1.2509" y2="-7.1056" layer="94"/>
<rectangle x1="-0.781" y1="-7.1183" x2="-0.6921" y2="-7.1056" layer="94"/>
<rectangle x1="0.0445" y1="-7.1183" x2="0.5779" y2="-7.1056" layer="94"/>
<rectangle x1="1.0224" y1="-7.1183" x2="1.3145" y2="-7.1056" layer="94"/>
<rectangle x1="2.8131" y1="-7.1183" x2="3.1179" y2="-7.1056" layer="94"/>
<rectangle x1="3.8926" y1="-7.1183" x2="4.1974" y2="-7.1056" layer="94"/>
<rectangle x1="4.4768" y1="-7.1183" x2="4.7562" y2="-7.1056" layer="94"/>
<rectangle x1="5.188" y1="-7.1183" x2="5.4674" y2="-7.1056" layer="94"/>
<rectangle x1="5.8992" y1="-7.1183" x2="6.1659" y2="-7.1056" layer="94"/>
<rectangle x1="6.458" y1="-7.1183" x2="6.5469" y2="-7.1056" layer="94"/>
<rectangle x1="7.2962" y1="-7.1183" x2="7.8042" y2="-7.1056" layer="94"/>
<rectangle x1="8.2741" y1="-7.1183" x2="8.5408" y2="-7.1056" layer="94"/>
<rectangle x1="10.0775" y1="-7.1183" x2="10.3823" y2="-7.1056" layer="94"/>
<rectangle x1="10.8522" y1="-7.1183" x2="11.4491" y2="-7.1056" layer="94"/>
<rectangle x1="-11.4617" y1="-7.1056" x2="-11.0807" y2="-7.0929" layer="94"/>
<rectangle x1="-10.3949" y1="-7.1056" x2="-10.0012" y2="-7.0929" layer="94"/>
<rectangle x1="-9.544" y1="-7.1056" x2="-9.163" y2="-7.0929" layer="94"/>
<rectangle x1="-8.4645" y1="-7.1056" x2="-8.0835" y2="-7.0929" layer="94"/>
<rectangle x1="-7.6263" y1="-7.1056" x2="-7.258" y2="-7.0929" layer="94"/>
<rectangle x1="-7.0929" y1="-7.1056" x2="-6.1912" y2="-7.0929" layer="94"/>
<rectangle x1="-5.734" y1="-7.1056" x2="-5.3403" y2="-7.0929" layer="94"/>
<rectangle x1="-4.6545" y1="-7.1056" x2="-4.2481" y2="-7.0929" layer="94"/>
<rectangle x1="-2.5971" y1="-7.1056" x2="-2.3177" y2="-7.0929" layer="94"/>
<rectangle x1="-1.5176" y1="-7.1056" x2="-1.2509" y2="-7.0929" layer="94"/>
<rectangle x1="-0.781" y1="-7.1056" x2="-0.6667" y2="-7.0929" layer="94"/>
<rectangle x1="0.0826" y1="-7.1056" x2="0.5779" y2="-7.0929" layer="94"/>
<rectangle x1="1.0224" y1="-7.1056" x2="1.3145" y2="-7.0929" layer="94"/>
<rectangle x1="2.8131" y1="-7.1056" x2="3.1179" y2="-7.0929" layer="94"/>
<rectangle x1="3.9053" y1="-7.1056" x2="4.1974" y2="-7.0929" layer="94"/>
<rectangle x1="4.4768" y1="-7.1056" x2="4.7562" y2="-7.0929" layer="94"/>
<rectangle x1="5.188" y1="-7.1056" x2="5.4674" y2="-7.0929" layer="94"/>
<rectangle x1="5.8992" y1="-7.1056" x2="6.1659" y2="-7.0929" layer="94"/>
<rectangle x1="6.458" y1="-7.1056" x2="6.585" y2="-7.0929" layer="94"/>
<rectangle x1="7.3343" y1="-7.1056" x2="7.8042" y2="-7.0929" layer="94"/>
<rectangle x1="8.2741" y1="-7.1056" x2="8.5408" y2="-7.0929" layer="94"/>
<rectangle x1="10.0775" y1="-7.1056" x2="10.3823" y2="-7.0929" layer="94"/>
<rectangle x1="10.8903" y1="-7.1056" x2="11.4491" y2="-7.0929" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0929" x2="-11.0807" y2="-7.0802" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0929" x2="-10.0012" y2="-7.0802" layer="94"/>
<rectangle x1="-9.544" y1="-7.0929" x2="-9.163" y2="-7.0802" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0929" x2="-8.0835" y2="-7.0802" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0929" x2="-7.258" y2="-7.0802" layer="94"/>
<rectangle x1="-7.0421" y1="-7.0929" x2="-6.1912" y2="-7.0802" layer="94"/>
<rectangle x1="-5.734" y1="-7.0929" x2="-5.3403" y2="-7.0802" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0929" x2="-4.2481" y2="-7.0802" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0929" x2="-2.3177" y2="-7.0802" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0929" x2="-1.2509" y2="-7.0802" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0929" x2="-0.6413" y2="-7.0802" layer="94"/>
<rectangle x1="0.1334" y1="-7.0929" x2="0.5779" y2="-7.0802" layer="94"/>
<rectangle x1="1.0224" y1="-7.0929" x2="1.3145" y2="-7.0802" layer="94"/>
<rectangle x1="2.1273" y1="-7.0929" x2="2.2035" y2="-7.0802" layer="94"/>
<rectangle x1="2.8131" y1="-7.0929" x2="3.1179" y2="-7.0802" layer="94"/>
<rectangle x1="3.9053" y1="-7.0929" x2="4.1974" y2="-7.0802" layer="94"/>
<rectangle x1="4.4768" y1="-7.0929" x2="4.7562" y2="-7.0802" layer="94"/>
<rectangle x1="5.188" y1="-7.0929" x2="5.4674" y2="-7.0802" layer="94"/>
<rectangle x1="5.8992" y1="-7.0929" x2="6.1659" y2="-7.0802" layer="94"/>
<rectangle x1="6.458" y1="-7.0929" x2="6.6104" y2="-7.0802" layer="94"/>
<rectangle x1="7.3851" y1="-7.0929" x2="7.8042" y2="-7.0802" layer="94"/>
<rectangle x1="8.2741" y1="-7.0929" x2="8.5408" y2="-7.0802" layer="94"/>
<rectangle x1="9.3536" y1="-7.0929" x2="9.4552" y2="-7.0802" layer="94"/>
<rectangle x1="10.0775" y1="-7.0929" x2="10.3823" y2="-7.0802" layer="94"/>
<rectangle x1="10.9284" y1="-7.0929" x2="11.4491" y2="-7.0802" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0802" x2="-11.0807" y2="-7.0675" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0802" x2="-10.0012" y2="-7.0675" layer="94"/>
<rectangle x1="-9.544" y1="-7.0802" x2="-9.163" y2="-7.0675" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0802" x2="-8.0835" y2="-7.0675" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0802" x2="-7.258" y2="-7.0675" layer="94"/>
<rectangle x1="-7.004" y1="-7.0802" x2="-6.1912" y2="-7.0675" layer="94"/>
<rectangle x1="-5.734" y1="-7.0802" x2="-5.3403" y2="-7.0675" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0802" x2="-4.2481" y2="-7.0675" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0802" x2="-2.3177" y2="-7.0675" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0802" x2="-1.2509" y2="-7.0675" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0802" x2="-0.5905" y2="-7.0675" layer="94"/>
<rectangle x1="0.1715" y1="-7.0802" x2="0.5779" y2="-7.0675" layer="94"/>
<rectangle x1="1.0224" y1="-7.0802" x2="1.3145" y2="-7.0675" layer="94"/>
<rectangle x1="2.1273" y1="-7.0802" x2="2.2416" y2="-7.0675" layer="94"/>
<rectangle x1="2.8131" y1="-7.0802" x2="3.1179" y2="-7.0675" layer="94"/>
<rectangle x1="3.9053" y1="-7.0802" x2="4.1974" y2="-7.0675" layer="94"/>
<rectangle x1="4.4768" y1="-7.0802" x2="4.7562" y2="-7.0675" layer="94"/>
<rectangle x1="5.188" y1="-7.0802" x2="5.4674" y2="-7.0675" layer="94"/>
<rectangle x1="5.8992" y1="-7.0802" x2="6.1659" y2="-7.0675" layer="94"/>
<rectangle x1="6.458" y1="-7.0802" x2="6.6485" y2="-7.0675" layer="94"/>
<rectangle x1="7.4232" y1="-7.0802" x2="7.8042" y2="-7.0675" layer="94"/>
<rectangle x1="8.2741" y1="-7.0802" x2="8.5408" y2="-7.0675" layer="94"/>
<rectangle x1="9.3536" y1="-7.0802" x2="9.4933" y2="-7.0675" layer="94"/>
<rectangle x1="10.0775" y1="-7.0802" x2="10.3823" y2="-7.0675" layer="94"/>
<rectangle x1="10.9665" y1="-7.0802" x2="11.4491" y2="-7.0675" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0675" x2="-11.0807" y2="-7.0548" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0675" x2="-10.0012" y2="-7.0548" layer="94"/>
<rectangle x1="-9.544" y1="-7.0675" x2="-9.163" y2="-7.0548" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0675" x2="-8.0835" y2="-7.0548" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0675" x2="-7.2707" y2="-7.0548" layer="94"/>
<rectangle x1="-6.9913" y1="-7.0675" x2="-6.1912" y2="-7.0548" layer="94"/>
<rectangle x1="-5.734" y1="-7.0675" x2="-5.3403" y2="-7.0548" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0675" x2="-4.2481" y2="-7.0548" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0675" x2="-2.3177" y2="-7.0548" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0675" x2="-1.2509" y2="-7.0548" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0675" x2="-0.5524" y2="-7.0548" layer="94"/>
<rectangle x1="0.1969" y1="-7.0675" x2="0.5779" y2="-7.0548" layer="94"/>
<rectangle x1="1.0224" y1="-7.0675" x2="1.3145" y2="-7.0548" layer="94"/>
<rectangle x1="2.1146" y1="-7.0675" x2="2.2797" y2="-7.0548" layer="94"/>
<rectangle x1="2.8131" y1="-7.0675" x2="3.1179" y2="-7.0548" layer="94"/>
<rectangle x1="3.9053" y1="-7.0675" x2="4.1974" y2="-7.0548" layer="94"/>
<rectangle x1="4.4768" y1="-7.0675" x2="4.7562" y2="-7.0548" layer="94"/>
<rectangle x1="5.188" y1="-7.0675" x2="5.4674" y2="-7.0548" layer="94"/>
<rectangle x1="5.8992" y1="-7.0675" x2="6.1659" y2="-7.0548" layer="94"/>
<rectangle x1="6.458" y1="-7.0675" x2="6.6739" y2="-7.0548" layer="94"/>
<rectangle x1="7.4486" y1="-7.0675" x2="7.8042" y2="-7.0548" layer="94"/>
<rectangle x1="8.2741" y1="-7.0675" x2="8.5408" y2="-7.0548" layer="94"/>
<rectangle x1="9.3409" y1="-7.0675" x2="9.5314" y2="-7.0548" layer="94"/>
<rectangle x1="10.0775" y1="-7.0675" x2="10.3823" y2="-7.0548" layer="94"/>
<rectangle x1="10.9919" y1="-7.0675" x2="11.4491" y2="-7.0548" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0548" x2="-11.0807" y2="-7.0421" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0548" x2="-10.0012" y2="-7.0421" layer="94"/>
<rectangle x1="-9.544" y1="-7.0548" x2="-9.163" y2="-7.0421" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0548" x2="-8.0835" y2="-7.0421" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0548" x2="-7.2707" y2="-7.0421" layer="94"/>
<rectangle x1="-6.9659" y1="-7.0548" x2="-6.1912" y2="-7.0421" layer="94"/>
<rectangle x1="-5.734" y1="-7.0548" x2="-5.3403" y2="-7.0421" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0548" x2="-4.2481" y2="-7.0421" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0548" x2="-2.3177" y2="-7.0421" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0548" x2="-1.2509" y2="-7.0421" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0548" x2="-0.5397" y2="-7.0421" layer="94"/>
<rectangle x1="0.2096" y1="-7.0548" x2="0.5779" y2="-7.0421" layer="94"/>
<rectangle x1="1.0224" y1="-7.0548" x2="1.3145" y2="-7.0421" layer="94"/>
<rectangle x1="2.1146" y1="-7.0548" x2="2.3051" y2="-7.0421" layer="94"/>
<rectangle x1="2.8131" y1="-7.0548" x2="3.1179" y2="-7.0421" layer="94"/>
<rectangle x1="3.9053" y1="-7.0548" x2="4.1974" y2="-7.0421" layer="94"/>
<rectangle x1="4.4768" y1="-7.0548" x2="4.7562" y2="-7.0421" layer="94"/>
<rectangle x1="5.188" y1="-7.0548" x2="5.4674" y2="-7.0421" layer="94"/>
<rectangle x1="5.8992" y1="-7.0548" x2="6.1659" y2="-7.0421" layer="94"/>
<rectangle x1="6.458" y1="-7.0548" x2="6.6993" y2="-7.0421" layer="94"/>
<rectangle x1="7.4613" y1="-7.0548" x2="7.8042" y2="-7.0421" layer="94"/>
<rectangle x1="8.2741" y1="-7.0548" x2="8.5408" y2="-7.0421" layer="94"/>
<rectangle x1="9.3409" y1="-7.0548" x2="9.5568" y2="-7.0421" layer="94"/>
<rectangle x1="10.0775" y1="-7.0548" x2="10.3823" y2="-7.0421" layer="94"/>
<rectangle x1="11.0046" y1="-7.0548" x2="11.4491" y2="-7.0421" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0421" x2="-11.0807" y2="-7.0294" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0421" x2="-10.0012" y2="-7.0294" layer="94"/>
<rectangle x1="-9.544" y1="-7.0421" x2="-9.163" y2="-7.0294" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0421" x2="-8.0835" y2="-7.0294" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0421" x2="-7.2707" y2="-7.0294" layer="94"/>
<rectangle x1="-6.9532" y1="-7.0421" x2="-6.1912" y2="-7.0294" layer="94"/>
<rectangle x1="-5.734" y1="-7.0421" x2="-5.3403" y2="-7.0294" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0421" x2="-4.2481" y2="-7.0294" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0421" x2="-2.3177" y2="-7.0294" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0421" x2="-1.2509" y2="-7.0294" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0421" x2="-0.527" y2="-7.0294" layer="94"/>
<rectangle x1="0.2223" y1="-7.0421" x2="0.5779" y2="-7.0294" layer="94"/>
<rectangle x1="1.0224" y1="-7.0421" x2="1.3145" y2="-7.0294" layer="94"/>
<rectangle x1="2.1146" y1="-7.0421" x2="2.3178" y2="-7.0294" layer="94"/>
<rectangle x1="2.8131" y1="-7.0421" x2="3.1179" y2="-7.0294" layer="94"/>
<rectangle x1="3.8926" y1="-7.0421" x2="4.1974" y2="-7.0294" layer="94"/>
<rectangle x1="4.4768" y1="-7.0421" x2="4.7562" y2="-7.0294" layer="94"/>
<rectangle x1="5.188" y1="-7.0421" x2="5.4674" y2="-7.0294" layer="94"/>
<rectangle x1="5.8992" y1="-7.0421" x2="6.1659" y2="-7.0294" layer="94"/>
<rectangle x1="6.458" y1="-7.0421" x2="6.712" y2="-7.0294" layer="94"/>
<rectangle x1="7.4867" y1="-7.0421" x2="7.8042" y2="-7.0294" layer="94"/>
<rectangle x1="8.2741" y1="-7.0421" x2="8.5408" y2="-7.0294" layer="94"/>
<rectangle x1="9.3409" y1="-7.0421" x2="9.5695" y2="-7.0294" layer="94"/>
<rectangle x1="10.0775" y1="-7.0421" x2="10.3823" y2="-7.0294" layer="94"/>
<rectangle x1="11.03" y1="-7.0421" x2="11.4491" y2="-7.0294" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0294" x2="-11.0807" y2="-7.0167" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0294" x2="-10.0012" y2="-7.0167" layer="94"/>
<rectangle x1="-9.544" y1="-7.0294" x2="-9.163" y2="-7.0167" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0294" x2="-8.0835" y2="-7.0167" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0294" x2="-7.2707" y2="-7.0167" layer="94"/>
<rectangle x1="-6.9278" y1="-7.0294" x2="-6.1912" y2="-7.0167" layer="94"/>
<rectangle x1="-5.734" y1="-7.0294" x2="-5.3403" y2="-7.0167" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0294" x2="-4.2481" y2="-7.0167" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0294" x2="-2.3177" y2="-7.0167" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0294" x2="-1.2509" y2="-7.0167" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0294" x2="-0.527" y2="-7.0167" layer="94"/>
<rectangle x1="0.235" y1="-7.0294" x2="0.5779" y2="-7.0167" layer="94"/>
<rectangle x1="1.0224" y1="-7.0294" x2="1.3145" y2="-7.0167" layer="94"/>
<rectangle x1="2.1146" y1="-7.0294" x2="2.3305" y2="-7.0167" layer="94"/>
<rectangle x1="2.8131" y1="-7.0294" x2="3.1179" y2="-7.0167" layer="94"/>
<rectangle x1="3.9053" y1="-7.0294" x2="4.1974" y2="-7.0167" layer="94"/>
<rectangle x1="4.4768" y1="-7.0294" x2="4.7562" y2="-7.0167" layer="94"/>
<rectangle x1="5.188" y1="-7.0294" x2="5.4674" y2="-7.0167" layer="94"/>
<rectangle x1="5.8992" y1="-7.0294" x2="6.1659" y2="-7.0167" layer="94"/>
<rectangle x1="6.458" y1="-7.0294" x2="6.712" y2="-7.0167" layer="94"/>
<rectangle x1="7.4994" y1="-7.0294" x2="7.8042" y2="-7.0167" layer="94"/>
<rectangle x1="8.2741" y1="-7.0294" x2="8.5408" y2="-7.0167" layer="94"/>
<rectangle x1="9.3409" y1="-7.0294" x2="9.5822" y2="-7.0167" layer="94"/>
<rectangle x1="10.0775" y1="-7.0294" x2="10.3823" y2="-7.0167" layer="94"/>
<rectangle x1="11.0554" y1="-7.0294" x2="11.4491" y2="-7.0167" layer="94"/>
<rectangle x1="-11.4617" y1="-7.0167" x2="-11.0807" y2="-7.004" layer="94"/>
<rectangle x1="-10.3949" y1="-7.0167" x2="-10.0012" y2="-7.004" layer="94"/>
<rectangle x1="-9.544" y1="-7.0167" x2="-9.163" y2="-7.004" layer="94"/>
<rectangle x1="-8.4645" y1="-7.0167" x2="-8.0835" y2="-7.004" layer="94"/>
<rectangle x1="-7.6263" y1="-7.0167" x2="-7.2707" y2="-7.004" layer="94"/>
<rectangle x1="-6.8897" y1="-7.0167" x2="-6.1912" y2="-7.004" layer="94"/>
<rectangle x1="-5.734" y1="-7.0167" x2="-5.3403" y2="-7.004" layer="94"/>
<rectangle x1="-4.6545" y1="-7.0167" x2="-4.2481" y2="-7.004" layer="94"/>
<rectangle x1="-2.5971" y1="-7.0167" x2="-2.3177" y2="-7.004" layer="94"/>
<rectangle x1="-1.5176" y1="-7.0167" x2="-1.2509" y2="-7.004" layer="94"/>
<rectangle x1="-0.7937" y1="-7.0167" x2="-0.527" y2="-7.004" layer="94"/>
<rectangle x1="0.2477" y1="-7.0167" x2="0.5779" y2="-7.004" layer="94"/>
<rectangle x1="1.0224" y1="-7.0167" x2="1.3145" y2="-7.004" layer="94"/>
<rectangle x1="2.1019" y1="-7.0167" x2="2.3432" y2="-7.004" layer="94"/>
<rectangle x1="2.8131" y1="-7.0167" x2="3.1179" y2="-7.004" layer="94"/>
<rectangle x1="3.9053" y1="-7.0167" x2="4.1974" y2="-7.004" layer="94"/>
<rectangle x1="4.4768" y1="-7.0167" x2="4.7562" y2="-7.004" layer="94"/>
<rectangle x1="5.188" y1="-7.0167" x2="5.4674" y2="-7.004" layer="94"/>
<rectangle x1="5.8992" y1="-7.0167" x2="6.1659" y2="-7.004" layer="94"/>
<rectangle x1="6.458" y1="-7.0167" x2="6.7247" y2="-7.004" layer="94"/>
<rectangle x1="7.5121" y1="-7.0167" x2="7.8042" y2="-7.004" layer="94"/>
<rectangle x1="8.2741" y1="-7.0167" x2="8.5408" y2="-7.004" layer="94"/>
<rectangle x1="9.3409" y1="-7.0167" x2="9.6076" y2="-7.004" layer="94"/>
<rectangle x1="10.0775" y1="-7.0167" x2="10.3823" y2="-7.004" layer="94"/>
<rectangle x1="11.0808" y1="-7.0167" x2="11.4491" y2="-7.004" layer="94"/>
<rectangle x1="-11.4617" y1="-7.004" x2="-11.0807" y2="-6.9913" layer="94"/>
<rectangle x1="-10.3949" y1="-7.004" x2="-10.0012" y2="-6.9913" layer="94"/>
<rectangle x1="-9.544" y1="-7.004" x2="-9.163" y2="-6.9913" layer="94"/>
<rectangle x1="-8.4645" y1="-7.004" x2="-8.0835" y2="-6.9913" layer="94"/>
<rectangle x1="-7.6263" y1="-7.004" x2="-7.2707" y2="-6.9913" layer="94"/>
<rectangle x1="-6.8389" y1="-7.004" x2="-6.1912" y2="-6.9913" layer="94"/>
<rectangle x1="-5.734" y1="-7.004" x2="-5.3403" y2="-6.9913" layer="94"/>
<rectangle x1="-4.6545" y1="-7.004" x2="-4.2481" y2="-6.9913" layer="94"/>
<rectangle x1="-2.5971" y1="-7.004" x2="-2.3177" y2="-6.9913" layer="94"/>
<rectangle x1="-1.5303" y1="-7.004" x2="-1.2509" y2="-6.9913" layer="94"/>
<rectangle x1="-0.7937" y1="-7.004" x2="-0.5143" y2="-6.9913" layer="94"/>
<rectangle x1="0.2604" y1="-7.004" x2="0.5779" y2="-6.9913" layer="94"/>
<rectangle x1="1.0224" y1="-7.004" x2="1.3145" y2="-6.9913" layer="94"/>
<rectangle x1="2.1019" y1="-7.004" x2="2.3559" y2="-6.9913" layer="94"/>
<rectangle x1="2.8258" y1="-7.004" x2="3.1179" y2="-6.9913" layer="94"/>
<rectangle x1="3.9053" y1="-7.004" x2="4.1974" y2="-6.9913" layer="94"/>
<rectangle x1="4.4768" y1="-7.004" x2="4.7562" y2="-6.9913" layer="94"/>
<rectangle x1="5.188" y1="-7.004" x2="5.4674" y2="-6.9913" layer="94"/>
<rectangle x1="5.8992" y1="-7.004" x2="6.1659" y2="-6.9913" layer="94"/>
<rectangle x1="6.458" y1="-7.004" x2="6.7374" y2="-6.9913" layer="94"/>
<rectangle x1="7.5248" y1="-7.004" x2="7.8042" y2="-6.9913" layer="94"/>
<rectangle x1="8.2741" y1="-7.004" x2="8.5408" y2="-6.9913" layer="94"/>
<rectangle x1="9.3409" y1="-7.004" x2="9.6203" y2="-6.9913" layer="94"/>
<rectangle x1="10.0775" y1="-7.004" x2="10.3823" y2="-6.9913" layer="94"/>
<rectangle x1="11.1189" y1="-7.004" x2="11.4491" y2="-6.9913" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9913" x2="-11.0807" y2="-6.9786" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9913" x2="-10.0012" y2="-6.9786" layer="94"/>
<rectangle x1="-9.544" y1="-6.9913" x2="-9.163" y2="-6.9786" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9913" x2="-8.0835" y2="-6.9786" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9913" x2="-7.2707" y2="-6.9786" layer="94"/>
<rectangle x1="-6.8135" y1="-6.9913" x2="-6.1912" y2="-6.9786" layer="94"/>
<rectangle x1="-5.734" y1="-6.9913" x2="-5.3403" y2="-6.9786" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9913" x2="-4.2481" y2="-6.9786" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9913" x2="-2.3177" y2="-6.9786" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9913" x2="-1.2509" y2="-6.9786" layer="94"/>
<rectangle x1="-0.7937" y1="-6.9913" x2="-0.5143" y2="-6.9786" layer="94"/>
<rectangle x1="0.2731" y1="-6.9913" x2="0.5779" y2="-6.9786" layer="94"/>
<rectangle x1="1.0224" y1="-6.9913" x2="1.3145" y2="-6.9786" layer="94"/>
<rectangle x1="2.1019" y1="-6.9913" x2="2.3686" y2="-6.9786" layer="94"/>
<rectangle x1="2.8258" y1="-6.9913" x2="3.1179" y2="-6.9786" layer="94"/>
<rectangle x1="3.9053" y1="-6.9913" x2="4.1974" y2="-6.9786" layer="94"/>
<rectangle x1="4.4768" y1="-6.9913" x2="4.7562" y2="-6.9786" layer="94"/>
<rectangle x1="5.188" y1="-6.9913" x2="5.4674" y2="-6.9786" layer="94"/>
<rectangle x1="5.8992" y1="-6.9913" x2="6.1659" y2="-6.9786" layer="94"/>
<rectangle x1="6.458" y1="-6.9913" x2="6.7374" y2="-6.9786" layer="94"/>
<rectangle x1="7.5248" y1="-6.9913" x2="7.8042" y2="-6.9786" layer="94"/>
<rectangle x1="8.2741" y1="-6.9913" x2="8.5408" y2="-6.9786" layer="94"/>
<rectangle x1="9.3409" y1="-6.9913" x2="9.6203" y2="-6.9786" layer="94"/>
<rectangle x1="10.0775" y1="-6.9913" x2="10.3823" y2="-6.9786" layer="94"/>
<rectangle x1="11.1316" y1="-6.9913" x2="11.4491" y2="-6.9786" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9786" x2="-11.0807" y2="-6.9659" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9786" x2="-10.0012" y2="-6.9659" layer="94"/>
<rectangle x1="-9.544" y1="-6.9786" x2="-9.163" y2="-6.9659" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9786" x2="-8.0835" y2="-6.9659" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9786" x2="-7.2707" y2="-6.9659" layer="94"/>
<rectangle x1="-6.7881" y1="-6.9786" x2="-6.1912" y2="-6.9659" layer="94"/>
<rectangle x1="-5.734" y1="-6.9786" x2="-5.3403" y2="-6.9659" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9786" x2="-4.2481" y2="-6.9659" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9786" x2="-2.3177" y2="-6.9659" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9786" x2="-1.2509" y2="-6.9659" layer="94"/>
<rectangle x1="-0.7937" y1="-6.9786" x2="-0.5143" y2="-6.9659" layer="94"/>
<rectangle x1="0.2731" y1="-6.9786" x2="0.5779" y2="-6.9659" layer="94"/>
<rectangle x1="1.0224" y1="-6.9786" x2="1.3145" y2="-6.9659" layer="94"/>
<rectangle x1="2.1019" y1="-6.9786" x2="2.3686" y2="-6.9659" layer="94"/>
<rectangle x1="2.8258" y1="-6.9786" x2="3.1179" y2="-6.9659" layer="94"/>
<rectangle x1="3.8926" y1="-6.9786" x2="4.1974" y2="-6.9659" layer="94"/>
<rectangle x1="4.4768" y1="-6.9786" x2="4.7562" y2="-6.9659" layer="94"/>
<rectangle x1="5.188" y1="-6.9786" x2="5.4674" y2="-6.9659" layer="94"/>
<rectangle x1="5.8992" y1="-6.9786" x2="6.1659" y2="-6.9659" layer="94"/>
<rectangle x1="6.458" y1="-6.9786" x2="6.7501" y2="-6.9659" layer="94"/>
<rectangle x1="7.5375" y1="-6.9786" x2="7.8042" y2="-6.9659" layer="94"/>
<rectangle x1="8.2741" y1="-6.9786" x2="8.5408" y2="-6.9659" layer="94"/>
<rectangle x1="9.3409" y1="-6.9786" x2="9.633" y2="-6.9659" layer="94"/>
<rectangle x1="10.0775" y1="-6.9786" x2="10.3823" y2="-6.9659" layer="94"/>
<rectangle x1="11.1443" y1="-6.9786" x2="11.4491" y2="-6.9659" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9659" x2="-11.0807" y2="-6.9532" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9659" x2="-10.0012" y2="-6.9532" layer="94"/>
<rectangle x1="-9.544" y1="-6.9659" x2="-9.163" y2="-6.9532" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9659" x2="-8.0835" y2="-6.9532" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9659" x2="-7.2707" y2="-6.9532" layer="94"/>
<rectangle x1="-6.7754" y1="-6.9659" x2="-6.1912" y2="-6.9532" layer="94"/>
<rectangle x1="-5.734" y1="-6.9659" x2="-5.3403" y2="-6.9532" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9659" x2="-4.2481" y2="-6.9532" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9659" x2="-2.305" y2="-6.9532" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9659" x2="-1.2509" y2="-6.9532" layer="94"/>
<rectangle x1="-0.7937" y1="-6.9659" x2="-0.5143" y2="-6.9532" layer="94"/>
<rectangle x1="0.2731" y1="-6.9659" x2="0.5779" y2="-6.9532" layer="94"/>
<rectangle x1="1.0224" y1="-6.9659" x2="1.3145" y2="-6.9532" layer="94"/>
<rectangle x1="2.1019" y1="-6.9659" x2="2.3686" y2="-6.9532" layer="94"/>
<rectangle x1="2.8258" y1="-6.9659" x2="3.1179" y2="-6.9532" layer="94"/>
<rectangle x1="3.8926" y1="-6.9659" x2="4.1974" y2="-6.9532" layer="94"/>
<rectangle x1="4.4768" y1="-6.9659" x2="4.7562" y2="-6.9532" layer="94"/>
<rectangle x1="5.188" y1="-6.9659" x2="5.4674" y2="-6.9532" layer="94"/>
<rectangle x1="5.8992" y1="-6.9659" x2="6.1659" y2="-6.9532" layer="94"/>
<rectangle x1="6.458" y1="-6.9659" x2="6.7501" y2="-6.9532" layer="94"/>
<rectangle x1="7.5375" y1="-6.9659" x2="7.8042" y2="-6.9532" layer="94"/>
<rectangle x1="8.2741" y1="-6.9659" x2="8.5408" y2="-6.9532" layer="94"/>
<rectangle x1="9.3409" y1="-6.9659" x2="9.633" y2="-6.9532" layer="94"/>
<rectangle x1="10.0775" y1="-6.9659" x2="10.3823" y2="-6.9532" layer="94"/>
<rectangle x1="11.157" y1="-6.9659" x2="11.4491" y2="-6.9532" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9532" x2="-11.0807" y2="-6.9405" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9532" x2="-10.0012" y2="-6.9405" layer="94"/>
<rectangle x1="-9.544" y1="-6.9532" x2="-9.163" y2="-6.9405" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9532" x2="-8.0835" y2="-6.9405" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9532" x2="-7.258" y2="-6.9405" layer="94"/>
<rectangle x1="-6.7627" y1="-6.9532" x2="-6.1912" y2="-6.9405" layer="94"/>
<rectangle x1="-5.734" y1="-6.9532" x2="-5.3403" y2="-6.9405" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9532" x2="-4.2481" y2="-6.9405" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9532" x2="-2.305" y2="-6.9405" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9532" x2="-1.2509" y2="-6.9405" layer="94"/>
<rectangle x1="-0.781" y1="-6.9532" x2="-0.5143" y2="-6.9405" layer="94"/>
<rectangle x1="0.2731" y1="-6.9532" x2="0.5779" y2="-6.9405" layer="94"/>
<rectangle x1="1.0224" y1="-6.9532" x2="1.3272" y2="-6.9405" layer="94"/>
<rectangle x1="2.1019" y1="-6.9532" x2="2.3813" y2="-6.9405" layer="94"/>
<rectangle x1="2.8258" y1="-6.9532" x2="3.1179" y2="-6.9405" layer="94"/>
<rectangle x1="3.8926" y1="-6.9532" x2="4.1974" y2="-6.9405" layer="94"/>
<rectangle x1="4.4768" y1="-6.9532" x2="4.7562" y2="-6.9405" layer="94"/>
<rectangle x1="5.188" y1="-6.9532" x2="5.4674" y2="-6.9405" layer="94"/>
<rectangle x1="5.8992" y1="-6.9532" x2="6.1659" y2="-6.9405" layer="94"/>
<rectangle x1="6.458" y1="-6.9532" x2="6.7501" y2="-6.9405" layer="94"/>
<rectangle x1="7.5375" y1="-6.9532" x2="7.8042" y2="-6.9405" layer="94"/>
<rectangle x1="8.2741" y1="-6.9532" x2="8.5535" y2="-6.9405" layer="94"/>
<rectangle x1="9.3282" y1="-6.9532" x2="9.633" y2="-6.9405" layer="94"/>
<rectangle x1="10.0775" y1="-6.9532" x2="10.3823" y2="-6.9405" layer="94"/>
<rectangle x1="11.157" y1="-6.9532" x2="11.4364" y2="-6.9405" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9405" x2="-11.0807" y2="-6.9278" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9405" x2="-10.0012" y2="-6.9278" layer="94"/>
<rectangle x1="-9.544" y1="-6.9405" x2="-9.163" y2="-6.9278" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9405" x2="-8.0835" y2="-6.9278" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9405" x2="-7.258" y2="-6.9278" layer="94"/>
<rectangle x1="-6.7373" y1="-6.9405" x2="-6.1912" y2="-6.9278" layer="94"/>
<rectangle x1="-5.734" y1="-6.9405" x2="-5.3403" y2="-6.9278" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9405" x2="-4.2481" y2="-6.9278" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9405" x2="-2.305" y2="-6.9278" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9405" x2="-1.2509" y2="-6.9278" layer="94"/>
<rectangle x1="-0.781" y1="-6.9405" x2="-0.5143" y2="-6.9278" layer="94"/>
<rectangle x1="0.2731" y1="-6.9405" x2="0.5779" y2="-6.9278" layer="94"/>
<rectangle x1="1.0224" y1="-6.9405" x2="1.3272" y2="-6.9278" layer="94"/>
<rectangle x1="2.1019" y1="-6.9405" x2="2.3813" y2="-6.9278" layer="94"/>
<rectangle x1="2.8258" y1="-6.9405" x2="3.1179" y2="-6.9278" layer="94"/>
<rectangle x1="3.8926" y1="-6.9405" x2="4.1974" y2="-6.9278" layer="94"/>
<rectangle x1="4.4768" y1="-6.9405" x2="4.7562" y2="-6.9278" layer="94"/>
<rectangle x1="5.188" y1="-6.9405" x2="5.4674" y2="-6.9278" layer="94"/>
<rectangle x1="5.8992" y1="-6.9405" x2="6.1659" y2="-6.9278" layer="94"/>
<rectangle x1="6.458" y1="-6.9405" x2="6.7501" y2="-6.9278" layer="94"/>
<rectangle x1="7.5375" y1="-6.9405" x2="7.8042" y2="-6.9278" layer="94"/>
<rectangle x1="8.2741" y1="-6.9405" x2="8.5535" y2="-6.9278" layer="94"/>
<rectangle x1="9.3282" y1="-6.9405" x2="9.633" y2="-6.9278" layer="94"/>
<rectangle x1="10.0775" y1="-6.9405" x2="10.3823" y2="-6.9278" layer="94"/>
<rectangle x1="11.157" y1="-6.9405" x2="11.4364" y2="-6.9278" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9278" x2="-11.0807" y2="-6.9151" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9278" x2="-10.0012" y2="-6.9151" layer="94"/>
<rectangle x1="-9.544" y1="-6.9278" x2="-9.163" y2="-6.9151" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9278" x2="-8.0835" y2="-6.9151" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9278" x2="-7.258" y2="-6.9151" layer="94"/>
<rectangle x1="-6.6738" y1="-6.9278" x2="-6.1912" y2="-6.9151" layer="94"/>
<rectangle x1="-5.734" y1="-6.9278" x2="-5.3403" y2="-6.9151" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9278" x2="-4.2481" y2="-6.9151" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9278" x2="-2.305" y2="-6.9151" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9278" x2="-1.2509" y2="-6.9151" layer="94"/>
<rectangle x1="-0.781" y1="-6.9278" x2="-0.5016" y2="-6.9151" layer="94"/>
<rectangle x1="0.2731" y1="-6.9278" x2="0.5779" y2="-6.9151" layer="94"/>
<rectangle x1="1.0224" y1="-6.9278" x2="1.3272" y2="-6.9151" layer="94"/>
<rectangle x1="2.0892" y1="-6.9278" x2="2.3686" y2="-6.9151" layer="94"/>
<rectangle x1="2.8385" y1="-6.9278" x2="3.1179" y2="-6.9151" layer="94"/>
<rectangle x1="3.8926" y1="-6.9278" x2="4.1974" y2="-6.9151" layer="94"/>
<rectangle x1="4.4768" y1="-6.9278" x2="4.7562" y2="-6.9151" layer="94"/>
<rectangle x1="5.188" y1="-6.9278" x2="5.4674" y2="-6.9151" layer="94"/>
<rectangle x1="5.8992" y1="-6.9278" x2="6.1659" y2="-6.9151" layer="94"/>
<rectangle x1="6.458" y1="-6.9278" x2="6.7628" y2="-6.9151" layer="94"/>
<rectangle x1="7.5375" y1="-6.9278" x2="7.8042" y2="-6.9151" layer="94"/>
<rectangle x1="8.2741" y1="-6.9278" x2="8.5535" y2="-6.9151" layer="94"/>
<rectangle x1="9.3282" y1="-6.9278" x2="9.633" y2="-6.9151" layer="94"/>
<rectangle x1="10.0775" y1="-6.9278" x2="10.3823" y2="-6.9151" layer="94"/>
<rectangle x1="11.1443" y1="-6.9278" x2="11.4364" y2="-6.9151" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9151" x2="-11.0807" y2="-6.9024" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9151" x2="-10.0012" y2="-6.9024" layer="94"/>
<rectangle x1="-9.544" y1="-6.9151" x2="-9.163" y2="-6.9024" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9151" x2="-8.0835" y2="-6.9024" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9151" x2="-7.258" y2="-6.9024" layer="94"/>
<rectangle x1="-6.6357" y1="-6.9151" x2="-6.1912" y2="-6.9024" layer="94"/>
<rectangle x1="-5.734" y1="-6.9151" x2="-5.3403" y2="-6.9024" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9151" x2="-4.2481" y2="-6.9024" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9151" x2="-2.305" y2="-6.9024" layer="94"/>
<rectangle x1="-1.5303" y1="-6.9151" x2="-1.2509" y2="-6.9024" layer="94"/>
<rectangle x1="-0.781" y1="-6.9151" x2="-0.5016" y2="-6.9024" layer="94"/>
<rectangle x1="0.2604" y1="-6.9151" x2="0.5779" y2="-6.9024" layer="94"/>
<rectangle x1="1.0224" y1="-6.9151" x2="1.3272" y2="-6.9024" layer="94"/>
<rectangle x1="2.0892" y1="-6.9151" x2="2.3686" y2="-6.9024" layer="94"/>
<rectangle x1="2.8385" y1="-6.9151" x2="3.1306" y2="-6.9024" layer="94"/>
<rectangle x1="3.8926" y1="-6.9151" x2="4.1974" y2="-6.9024" layer="94"/>
<rectangle x1="4.4768" y1="-6.9151" x2="4.7562" y2="-6.9024" layer="94"/>
<rectangle x1="5.188" y1="-6.9151" x2="5.4674" y2="-6.9024" layer="94"/>
<rectangle x1="5.8992" y1="-6.9151" x2="6.1659" y2="-6.9024" layer="94"/>
<rectangle x1="6.458" y1="-6.9151" x2="6.7628" y2="-6.9024" layer="94"/>
<rectangle x1="7.5248" y1="-6.9151" x2="7.8042" y2="-6.9024" layer="94"/>
<rectangle x1="8.2868" y1="-6.9151" x2="8.5535" y2="-6.9024" layer="94"/>
<rectangle x1="9.3282" y1="-6.9151" x2="9.633" y2="-6.9024" layer="94"/>
<rectangle x1="10.0775" y1="-6.9151" x2="10.3823" y2="-6.9024" layer="94"/>
<rectangle x1="11.1443" y1="-6.9151" x2="11.4364" y2="-6.9024" layer="94"/>
<rectangle x1="-11.4617" y1="-6.9024" x2="-11.0807" y2="-6.8897" layer="94"/>
<rectangle x1="-10.3949" y1="-6.9024" x2="-10.0012" y2="-6.8897" layer="94"/>
<rectangle x1="-9.544" y1="-6.9024" x2="-9.163" y2="-6.8897" layer="94"/>
<rectangle x1="-8.4645" y1="-6.9024" x2="-8.0835" y2="-6.8897" layer="94"/>
<rectangle x1="-7.6263" y1="-6.9024" x2="-7.2453" y2="-6.8897" layer="94"/>
<rectangle x1="-6.623" y1="-6.9024" x2="-6.1912" y2="-6.8897" layer="94"/>
<rectangle x1="-5.734" y1="-6.9024" x2="-5.3403" y2="-6.8897" layer="94"/>
<rectangle x1="-4.6545" y1="-6.9024" x2="-4.2481" y2="-6.8897" layer="94"/>
<rectangle x1="-2.5971" y1="-6.9024" x2="-2.305" y2="-6.8897" layer="94"/>
<rectangle x1="-1.543" y1="-6.9024" x2="-1.2509" y2="-6.8897" layer="94"/>
<rectangle x1="-0.781" y1="-6.9024" x2="-0.5016" y2="-6.8897" layer="94"/>
<rectangle x1="0.2604" y1="-6.9024" x2="0.5652" y2="-6.8897" layer="94"/>
<rectangle x1="1.0224" y1="-6.9024" x2="1.3272" y2="-6.8897" layer="94"/>
<rectangle x1="2.0765" y1="-6.9024" x2="2.3686" y2="-6.8897" layer="94"/>
<rectangle x1="2.8385" y1="-6.9024" x2="3.1306" y2="-6.8897" layer="94"/>
<rectangle x1="3.8926" y1="-6.9024" x2="4.1974" y2="-6.8897" layer="94"/>
<rectangle x1="4.4768" y1="-6.9024" x2="4.7562" y2="-6.8897" layer="94"/>
<rectangle x1="5.188" y1="-6.9024" x2="5.4674" y2="-6.8897" layer="94"/>
<rectangle x1="5.8992" y1="-6.9024" x2="6.1659" y2="-6.8897" layer="94"/>
<rectangle x1="6.458" y1="-6.9024" x2="6.7628" y2="-6.8897" layer="94"/>
<rectangle x1="7.5248" y1="-6.9024" x2="7.8042" y2="-6.8897" layer="94"/>
<rectangle x1="8.2868" y1="-6.9024" x2="8.5662" y2="-6.8897" layer="94"/>
<rectangle x1="9.3282" y1="-6.9024" x2="9.633" y2="-6.8897" layer="94"/>
<rectangle x1="10.0775" y1="-6.9024" x2="10.395" y2="-6.8897" layer="94"/>
<rectangle x1="11.1443" y1="-6.9024" x2="11.4237" y2="-6.8897" layer="94"/>
<rectangle x1="-11.4617" y1="-6.8897" x2="-11.0807" y2="-6.877" layer="94"/>
<rectangle x1="-10.3949" y1="-6.8897" x2="-10.0012" y2="-6.877" layer="94"/>
<rectangle x1="-9.544" y1="-6.8897" x2="-9.163" y2="-6.877" layer="94"/>
<rectangle x1="-8.4772" y1="-6.8897" x2="-8.0835" y2="-6.877" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8897" x2="-7.2453" y2="-6.877" layer="94"/>
<rectangle x1="-6.6103" y1="-6.8897" x2="-6.1912" y2="-6.877" layer="94"/>
<rectangle x1="-5.734" y1="-6.8897" x2="-5.3403" y2="-6.877" layer="94"/>
<rectangle x1="-4.6545" y1="-6.8897" x2="-4.2481" y2="-6.877" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8897" x2="-2.305" y2="-6.877" layer="94"/>
<rectangle x1="-1.543" y1="-6.8897" x2="-1.2509" y2="-6.877" layer="94"/>
<rectangle x1="-0.7683" y1="-6.8897" x2="-0.4889" y2="-6.877" layer="94"/>
<rectangle x1="0.2604" y1="-6.8897" x2="0.5652" y2="-6.877" layer="94"/>
<rectangle x1="1.0224" y1="-6.8897" x2="1.3272" y2="-6.877" layer="94"/>
<rectangle x1="2.0765" y1="-6.8897" x2="2.3686" y2="-6.877" layer="94"/>
<rectangle x1="2.8512" y1="-6.8897" x2="3.1306" y2="-6.877" layer="94"/>
<rectangle x1="3.8926" y1="-6.8897" x2="4.1974" y2="-6.877" layer="94"/>
<rectangle x1="4.4768" y1="-6.8897" x2="4.7562" y2="-6.877" layer="94"/>
<rectangle x1="5.188" y1="-6.8897" x2="5.4674" y2="-6.877" layer="94"/>
<rectangle x1="5.8992" y1="-6.8897" x2="6.1659" y2="-6.877" layer="94"/>
<rectangle x1="6.4707" y1="-6.8897" x2="6.7628" y2="-6.877" layer="94"/>
<rectangle x1="7.5248" y1="-6.8897" x2="7.8042" y2="-6.877" layer="94"/>
<rectangle x1="8.2868" y1="-6.8897" x2="8.5662" y2="-6.877" layer="94"/>
<rectangle x1="9.3155" y1="-6.8897" x2="9.633" y2="-6.877" layer="94"/>
<rectangle x1="10.0775" y1="-6.8897" x2="10.395" y2="-6.877" layer="94"/>
<rectangle x1="11.1316" y1="-6.8897" x2="11.4237" y2="-6.877" layer="94"/>
<rectangle x1="-11.4617" y1="-6.877" x2="-11.0807" y2="-6.8643" layer="94"/>
<rectangle x1="-10.3949" y1="-6.877" x2="-10.0012" y2="-6.8643" layer="94"/>
<rectangle x1="-9.544" y1="-6.877" x2="-9.163" y2="-6.8643" layer="94"/>
<rectangle x1="-8.4772" y1="-6.877" x2="-8.0835" y2="-6.8643" layer="94"/>
<rectangle x1="-7.6263" y1="-6.877" x2="-7.2326" y2="-6.8643" layer="94"/>
<rectangle x1="-6.6103" y1="-6.877" x2="-6.1912" y2="-6.8643" layer="94"/>
<rectangle x1="-5.734" y1="-6.877" x2="-5.3403" y2="-6.8643" layer="94"/>
<rectangle x1="-4.6545" y1="-6.877" x2="-4.2481" y2="-6.8643" layer="94"/>
<rectangle x1="-2.5971" y1="-6.877" x2="-2.2923" y2="-6.8643" layer="94"/>
<rectangle x1="-1.543" y1="-6.877" x2="-1.2636" y2="-6.8643" layer="94"/>
<rectangle x1="-0.7683" y1="-6.877" x2="-0.4889" y2="-6.8643" layer="94"/>
<rectangle x1="0.2604" y1="-6.877" x2="0.5652" y2="-6.8643" layer="94"/>
<rectangle x1="1.0224" y1="-6.877" x2="1.3399" y2="-6.8643" layer="94"/>
<rectangle x1="2.0638" y1="-6.877" x2="2.3686" y2="-6.8643" layer="94"/>
<rectangle x1="2.8512" y1="-6.877" x2="3.1306" y2="-6.8643" layer="94"/>
<rectangle x1="3.8926" y1="-6.877" x2="4.1974" y2="-6.8643" layer="94"/>
<rectangle x1="4.4768" y1="-6.877" x2="4.7562" y2="-6.8643" layer="94"/>
<rectangle x1="5.188" y1="-6.877" x2="5.4674" y2="-6.8643" layer="94"/>
<rectangle x1="5.8992" y1="-6.877" x2="6.1659" y2="-6.8643" layer="94"/>
<rectangle x1="6.4707" y1="-6.877" x2="6.7628" y2="-6.8643" layer="94"/>
<rectangle x1="7.5121" y1="-6.877" x2="7.8042" y2="-6.8643" layer="94"/>
<rectangle x1="8.2868" y1="-6.877" x2="8.5789" y2="-6.8643" layer="94"/>
<rectangle x1="9.3155" y1="-6.877" x2="9.633" y2="-6.8643" layer="94"/>
<rectangle x1="10.0902" y1="-6.877" x2="10.395" y2="-6.8643" layer="94"/>
<rectangle x1="11.1316" y1="-6.877" x2="11.4237" y2="-6.8643" layer="94"/>
<rectangle x1="-11.449" y1="-6.8643" x2="-11.068" y2="-6.8516" layer="94"/>
<rectangle x1="-10.3949" y1="-6.8643" x2="-10.0012" y2="-6.8516" layer="94"/>
<rectangle x1="-9.544" y1="-6.8643" x2="-9.163" y2="-6.8516" layer="94"/>
<rectangle x1="-8.4772" y1="-6.8643" x2="-8.0835" y2="-6.8516" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8643" x2="-7.2326" y2="-6.8516" layer="94"/>
<rectangle x1="-6.5976" y1="-6.8643" x2="-6.1912" y2="-6.8516" layer="94"/>
<rectangle x1="-5.734" y1="-6.8643" x2="-5.3403" y2="-6.8516" layer="94"/>
<rectangle x1="-4.6545" y1="-6.8643" x2="-4.2481" y2="-6.8516" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8643" x2="-2.2923" y2="-6.8516" layer="94"/>
<rectangle x1="-1.5557" y1="-6.8643" x2="-1.2636" y2="-6.8516" layer="94"/>
<rectangle x1="-0.7683" y1="-6.8643" x2="-0.4762" y2="-6.8516" layer="94"/>
<rectangle x1="0.2477" y1="-6.8643" x2="0.5652" y2="-6.8516" layer="94"/>
<rectangle x1="1.0224" y1="-6.8643" x2="1.3399" y2="-6.8516" layer="94"/>
<rectangle x1="2.0638" y1="-6.8643" x2="2.3686" y2="-6.8516" layer="94"/>
<rectangle x1="2.8512" y1="-6.8643" x2="3.1433" y2="-6.8516" layer="94"/>
<rectangle x1="3.8926" y1="-6.8643" x2="4.1974" y2="-6.8516" layer="94"/>
<rectangle x1="4.4768" y1="-6.8643" x2="4.7562" y2="-6.8516" layer="94"/>
<rectangle x1="5.188" y1="-6.8643" x2="5.4674" y2="-6.8516" layer="94"/>
<rectangle x1="5.8992" y1="-6.8643" x2="6.1659" y2="-6.8516" layer="94"/>
<rectangle x1="6.4707" y1="-6.8643" x2="6.7628" y2="-6.8516" layer="94"/>
<rectangle x1="7.5121" y1="-6.8643" x2="7.8042" y2="-6.8516" layer="94"/>
<rectangle x1="8.2868" y1="-6.8643" x2="8.5789" y2="-6.8516" layer="94"/>
<rectangle x1="9.3155" y1="-6.8643" x2="9.633" y2="-6.8516" layer="94"/>
<rectangle x1="10.0902" y1="-6.8643" x2="10.395" y2="-6.8516" layer="94"/>
<rectangle x1="11.1189" y1="-6.8643" x2="11.4237" y2="-6.8516" layer="94"/>
<rectangle x1="-11.449" y1="-6.8516" x2="-11.068" y2="-6.8389" layer="94"/>
<rectangle x1="-10.3949" y1="-6.8516" x2="-10.0012" y2="-6.8389" layer="94"/>
<rectangle x1="-9.544" y1="-6.8516" x2="-9.1503" y2="-6.8389" layer="94"/>
<rectangle x1="-8.4772" y1="-6.8516" x2="-8.0835" y2="-6.8389" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8516" x2="-7.2326" y2="-6.8389" layer="94"/>
<rectangle x1="-6.5976" y1="-6.8516" x2="-6.1912" y2="-6.8389" layer="94"/>
<rectangle x1="-5.7213" y1="-6.8516" x2="-5.3403" y2="-6.8389" layer="94"/>
<rectangle x1="-4.6545" y1="-6.8516" x2="-4.2481" y2="-6.8389" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8516" x2="-2.2923" y2="-6.8389" layer="94"/>
<rectangle x1="-1.5684" y1="-6.8516" x2="-1.2636" y2="-6.8389" layer="94"/>
<rectangle x1="-0.7683" y1="-6.8516" x2="-0.4635" y2="-6.8389" layer="94"/>
<rectangle x1="0.2477" y1="-6.8516" x2="0.5652" y2="-6.8389" layer="94"/>
<rectangle x1="1.0224" y1="-6.8516" x2="1.3399" y2="-6.8389" layer="94"/>
<rectangle x1="2.0511" y1="-6.8516" x2="2.3559" y2="-6.8389" layer="94"/>
<rectangle x1="2.8639" y1="-6.8516" x2="3.156" y2="-6.8389" layer="94"/>
<rectangle x1="3.8799" y1="-6.8516" x2="4.1974" y2="-6.8389" layer="94"/>
<rectangle x1="4.4768" y1="-6.8516" x2="4.7562" y2="-6.8389" layer="94"/>
<rectangle x1="5.188" y1="-6.8516" x2="5.4674" y2="-6.8389" layer="94"/>
<rectangle x1="5.8992" y1="-6.8516" x2="6.1659" y2="-6.8389" layer="94"/>
<rectangle x1="6.4834" y1="-6.8516" x2="6.7755" y2="-6.8389" layer="94"/>
<rectangle x1="7.4994" y1="-6.8516" x2="7.8042" y2="-6.8389" layer="94"/>
<rectangle x1="8.2995" y1="-6.8516" x2="8.5916" y2="-6.8389" layer="94"/>
<rectangle x1="9.3155" y1="-6.8516" x2="9.6203" y2="-6.8389" layer="94"/>
<rectangle x1="10.0902" y1="-6.8516" x2="10.395" y2="-6.8389" layer="94"/>
<rectangle x1="11.1189" y1="-6.8516" x2="11.4237" y2="-6.8389" layer="94"/>
<rectangle x1="-11.449" y1="-6.8389" x2="-11.0553" y2="-6.8262" layer="94"/>
<rectangle x1="-10.4076" y1="-6.8389" x2="-10.0012" y2="-6.8262" layer="94"/>
<rectangle x1="-9.544" y1="-6.8389" x2="-9.1503" y2="-6.8262" layer="94"/>
<rectangle x1="-8.4772" y1="-6.8389" x2="-8.0835" y2="-6.8262" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8389" x2="-7.2199" y2="-6.8262" layer="94"/>
<rectangle x1="-6.5976" y1="-6.8389" x2="-6.1912" y2="-6.8262" layer="94"/>
<rectangle x1="-5.7213" y1="-6.8389" x2="-5.3276" y2="-6.8262" layer="94"/>
<rectangle x1="-4.6545" y1="-6.8389" x2="-4.2608" y2="-6.8262" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8389" x2="-2.2796" y2="-6.8262" layer="94"/>
<rectangle x1="-1.5811" y1="-6.8389" x2="-1.2636" y2="-6.8262" layer="94"/>
<rectangle x1="-0.7683" y1="-6.8389" x2="-0.4635" y2="-6.8262" layer="94"/>
<rectangle x1="0.2477" y1="-6.8389" x2="0.5652" y2="-6.8262" layer="94"/>
<rectangle x1="1.0351" y1="-6.8389" x2="1.3399" y2="-6.8262" layer="94"/>
<rectangle x1="2.0511" y1="-6.8389" x2="2.3559" y2="-6.8262" layer="94"/>
<rectangle x1="2.8639" y1="-6.8389" x2="3.1687" y2="-6.8262" layer="94"/>
<rectangle x1="3.8672" y1="-6.8389" x2="4.1974" y2="-6.8262" layer="94"/>
<rectangle x1="4.4768" y1="-6.8389" x2="4.7562" y2="-6.8262" layer="94"/>
<rectangle x1="5.188" y1="-6.8389" x2="5.4674" y2="-6.8262" layer="94"/>
<rectangle x1="5.8992" y1="-6.8389" x2="6.1659" y2="-6.8262" layer="94"/>
<rectangle x1="6.4834" y1="-6.8389" x2="6.7755" y2="-6.8262" layer="94"/>
<rectangle x1="7.4867" y1="-6.8389" x2="7.7915" y2="-6.8262" layer="94"/>
<rectangle x1="8.2995" y1="-6.8389" x2="8.6043" y2="-6.8262" layer="94"/>
<rectangle x1="9.3028" y1="-6.8389" x2="9.6203" y2="-6.8262" layer="94"/>
<rectangle x1="10.0902" y1="-6.8389" x2="10.4077" y2="-6.8262" layer="94"/>
<rectangle x1="11.1062" y1="-6.8389" x2="11.4237" y2="-6.8262" layer="94"/>
<rectangle x1="-11.449" y1="-6.8262" x2="-11.0553" y2="-6.8135" layer="94"/>
<rectangle x1="-10.4076" y1="-6.8262" x2="-10.0012" y2="-6.8135" layer="94"/>
<rectangle x1="-9.544" y1="-6.8262" x2="-9.1503" y2="-6.8135" layer="94"/>
<rectangle x1="-8.4772" y1="-6.8262" x2="-8.0835" y2="-6.8135" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8262" x2="-7.2199" y2="-6.8135" layer="94"/>
<rectangle x1="-6.5976" y1="-6.8262" x2="-6.1912" y2="-6.8135" layer="94"/>
<rectangle x1="-5.7213" y1="-6.8262" x2="-5.3276" y2="-6.8135" layer="94"/>
<rectangle x1="-4.6545" y1="-6.8262" x2="-4.2608" y2="-6.8135" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8262" x2="-2.2796" y2="-6.8135" layer="94"/>
<rectangle x1="-1.5811" y1="-6.8262" x2="-1.2763" y2="-6.8135" layer="94"/>
<rectangle x1="-0.7683" y1="-6.8262" x2="-0.4508" y2="-6.8135" layer="94"/>
<rectangle x1="0.235" y1="-6.8262" x2="0.5525" y2="-6.8135" layer="94"/>
<rectangle x1="1.0351" y1="-6.8262" x2="1.3526" y2="-6.8135" layer="94"/>
<rectangle x1="2.0384" y1="-6.8262" x2="2.3559" y2="-6.8135" layer="94"/>
<rectangle x1="2.8639" y1="-6.8262" x2="3.1814" y2="-6.8135" layer="94"/>
<rectangle x1="3.8672" y1="-6.8262" x2="4.1974" y2="-6.8135" layer="94"/>
<rectangle x1="4.4768" y1="-6.8262" x2="4.7562" y2="-6.8135" layer="94"/>
<rectangle x1="5.188" y1="-6.8262" x2="5.4674" y2="-6.8135" layer="94"/>
<rectangle x1="5.8992" y1="-6.8262" x2="6.1659" y2="-6.8135" layer="94"/>
<rectangle x1="6.4961" y1="-6.8262" x2="6.7882" y2="-6.8135" layer="94"/>
<rectangle x1="7.4867" y1="-6.8262" x2="7.7915" y2="-6.8135" layer="94"/>
<rectangle x1="8.2995" y1="-6.8262" x2="8.6043" y2="-6.8135" layer="94"/>
<rectangle x1="9.3028" y1="-6.8262" x2="9.6203" y2="-6.8135" layer="94"/>
<rectangle x1="10.0902" y1="-6.8262" x2="10.4077" y2="-6.8135" layer="94"/>
<rectangle x1="11.1062" y1="-6.8262" x2="11.4237" y2="-6.8135" layer="94"/>
<rectangle x1="-11.449" y1="-6.8135" x2="-11.0553" y2="-6.8008" layer="94"/>
<rectangle x1="-10.4076" y1="-6.8135" x2="-10.0012" y2="-6.8008" layer="94"/>
<rectangle x1="-9.544" y1="-6.8135" x2="-9.1503" y2="-6.8008" layer="94"/>
<rectangle x1="-8.4899" y1="-6.8135" x2="-8.0835" y2="-6.8008" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8135" x2="-7.2199" y2="-6.8008" layer="94"/>
<rectangle x1="-6.5976" y1="-6.8135" x2="-6.1912" y2="-6.8008" layer="94"/>
<rectangle x1="-5.7213" y1="-6.8135" x2="-5.3276" y2="-6.8008" layer="94"/>
<rectangle x1="-4.6672" y1="-6.8135" x2="-4.2608" y2="-6.8008" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8135" x2="-2.2669" y2="-6.8008" layer="94"/>
<rectangle x1="-1.5938" y1="-6.8135" x2="-1.2763" y2="-6.8008" layer="94"/>
<rectangle x1="-0.7683" y1="-6.8135" x2="-0.4508" y2="-6.8008" layer="94"/>
<rectangle x1="0.235" y1="-6.8135" x2="0.5525" y2="-6.8008" layer="94"/>
<rectangle x1="1.0351" y1="-6.8135" x2="1.3526" y2="-6.8008" layer="94"/>
<rectangle x1="2.0384" y1="-6.8135" x2="2.3559" y2="-6.8008" layer="94"/>
<rectangle x1="2.8639" y1="-6.8135" x2="3.1814" y2="-6.8008" layer="94"/>
<rectangle x1="3.8545" y1="-6.8135" x2="4.1974" y2="-6.8008" layer="94"/>
<rectangle x1="4.4768" y1="-6.8135" x2="4.7562" y2="-6.8008" layer="94"/>
<rectangle x1="5.188" y1="-6.8135" x2="5.4674" y2="-6.8008" layer="94"/>
<rectangle x1="5.8992" y1="-6.8135" x2="6.1659" y2="-6.8008" layer="94"/>
<rectangle x1="6.4961" y1="-6.8135" x2="6.8009" y2="-6.8008" layer="94"/>
<rectangle x1="7.474" y1="-6.8135" x2="7.7915" y2="-6.8008" layer="94"/>
<rectangle x1="8.2995" y1="-6.8135" x2="8.617" y2="-6.8008" layer="94"/>
<rectangle x1="9.3028" y1="-6.8135" x2="9.6203" y2="-6.8008" layer="94"/>
<rectangle x1="10.1029" y1="-6.8135" x2="10.4204" y2="-6.8008" layer="94"/>
<rectangle x1="11.0935" y1="-6.8135" x2="11.4237" y2="-6.8008" layer="94"/>
<rectangle x1="-11.449" y1="-6.8008" x2="-11.0426" y2="-6.7881" layer="94"/>
<rectangle x1="-10.4076" y1="-6.8008" x2="-10.0012" y2="-6.7881" layer="94"/>
<rectangle x1="-9.544" y1="-6.8008" x2="-9.1376" y2="-6.7881" layer="94"/>
<rectangle x1="-8.4899" y1="-6.8008" x2="-8.0835" y2="-6.7881" layer="94"/>
<rectangle x1="-7.6263" y1="-6.8008" x2="-7.2199" y2="-6.7881" layer="94"/>
<rectangle x1="-6.6103" y1="-6.8008" x2="-6.1912" y2="-6.7881" layer="94"/>
<rectangle x1="-5.7086" y1="-6.8008" x2="-5.3149" y2="-6.7881" layer="94"/>
<rectangle x1="-4.6672" y1="-6.8008" x2="-4.2608" y2="-6.7881" layer="94"/>
<rectangle x1="-2.5971" y1="-6.8008" x2="-2.2542" y2="-6.7881" layer="94"/>
<rectangle x1="-1.5938" y1="-6.8008" x2="-1.2763" y2="-6.7881" layer="94"/>
<rectangle x1="-0.7556" y1="-6.8008" x2="-0.4381" y2="-6.7881" layer="94"/>
<rectangle x1="0.2223" y1="-6.8008" x2="0.5398" y2="-6.7881" layer="94"/>
<rectangle x1="1.0478" y1="-6.8008" x2="1.3653" y2="-6.7881" layer="94"/>
<rectangle x1="2.0257" y1="-6.8008" x2="2.3559" y2="-6.7881" layer="94"/>
<rectangle x1="2.8639" y1="-6.8008" x2="3.1941" y2="-6.7881" layer="94"/>
<rectangle x1="3.8418" y1="-6.8008" x2="4.1974" y2="-6.7881" layer="94"/>
<rectangle x1="4.4768" y1="-6.8008" x2="4.7562" y2="-6.7881" layer="94"/>
<rectangle x1="5.188" y1="-6.8008" x2="5.4674" y2="-6.7881" layer="94"/>
<rectangle x1="5.8992" y1="-6.8008" x2="6.1659" y2="-6.7881" layer="94"/>
<rectangle x1="6.4961" y1="-6.8008" x2="6.8136" y2="-6.7881" layer="94"/>
<rectangle x1="7.4613" y1="-6.8008" x2="7.7915" y2="-6.7881" layer="94"/>
<rectangle x1="8.2995" y1="-6.8008" x2="8.617" y2="-6.7881" layer="94"/>
<rectangle x1="9.2901" y1="-6.8008" x2="9.6076" y2="-6.7881" layer="94"/>
<rectangle x1="10.1029" y1="-6.8008" x2="10.4204" y2="-6.7881" layer="94"/>
<rectangle x1="11.0935" y1="-6.8008" x2="11.4237" y2="-6.7881" layer="94"/>
<rectangle x1="-11.449" y1="-6.7881" x2="-11.0426" y2="-6.7754" layer="94"/>
<rectangle x1="-10.4203" y1="-6.7881" x2="-10.0139" y2="-6.7754" layer="94"/>
<rectangle x1="-9.544" y1="-6.7881" x2="-9.1376" y2="-6.7754" layer="94"/>
<rectangle x1="-8.5026" y1="-6.7881" x2="-8.0835" y2="-6.7754" layer="94"/>
<rectangle x1="-7.6263" y1="-6.7881" x2="-7.2072" y2="-6.7754" layer="94"/>
<rectangle x1="-6.6103" y1="-6.7881" x2="-6.1912" y2="-6.7754" layer="94"/>
<rectangle x1="-5.7086" y1="-6.7881" x2="-5.3022" y2="-6.7754" layer="94"/>
<rectangle x1="-4.6672" y1="-6.7881" x2="-4.2608" y2="-6.7754" layer="94"/>
<rectangle x1="-2.5971" y1="-6.7881" x2="-2.2415" y2="-6.7754" layer="94"/>
<rectangle x1="-1.6065" y1="-6.7881" x2="-1.2763" y2="-6.7754" layer="94"/>
<rectangle x1="-0.7556" y1="-6.7881" x2="-0.4381" y2="-6.7754" layer="94"/>
<rectangle x1="0.2096" y1="-6.7881" x2="0.5398" y2="-6.7754" layer="94"/>
<rectangle x1="1.0478" y1="-6.7881" x2="1.378" y2="-6.7754" layer="94"/>
<rectangle x1="2.0257" y1="-6.7881" x2="2.3559" y2="-6.7754" layer="94"/>
<rectangle x1="2.8766" y1="-6.7881" x2="3.1941" y2="-6.7754" layer="94"/>
<rectangle x1="3.8291" y1="-6.7881" x2="4.1974" y2="-6.7754" layer="94"/>
<rectangle x1="4.4768" y1="-6.7881" x2="4.7562" y2="-6.7754" layer="94"/>
<rectangle x1="5.188" y1="-6.7881" x2="5.4674" y2="-6.7754" layer="94"/>
<rectangle x1="5.8992" y1="-6.7881" x2="6.1659" y2="-6.7754" layer="94"/>
<rectangle x1="6.5088" y1="-6.7881" x2="6.8136" y2="-6.7754" layer="94"/>
<rectangle x1="7.4613" y1="-6.7881" x2="7.7788" y2="-6.7754" layer="94"/>
<rectangle x1="8.2995" y1="-6.7881" x2="8.6297" y2="-6.7754" layer="94"/>
<rectangle x1="9.2774" y1="-6.7881" x2="9.6076" y2="-6.7754" layer="94"/>
<rectangle x1="10.1156" y1="-6.7881" x2="10.4331" y2="-6.7754" layer="94"/>
<rectangle x1="11.0808" y1="-6.7881" x2="11.411" y2="-6.7754" layer="94"/>
<rectangle x1="-11.4363" y1="-6.7754" x2="-11.0299" y2="-6.7627" layer="94"/>
<rectangle x1="-10.4203" y1="-6.7754" x2="-10.0139" y2="-6.7627" layer="94"/>
<rectangle x1="-9.544" y1="-6.7754" x2="-9.1249" y2="-6.7627" layer="94"/>
<rectangle x1="-8.5026" y1="-6.7754" x2="-8.0962" y2="-6.7627" layer="94"/>
<rectangle x1="-7.6263" y1="-6.7754" x2="-7.2072" y2="-6.7627" layer="94"/>
<rectangle x1="-6.6103" y1="-6.7754" x2="-6.1912" y2="-6.7627" layer="94"/>
<rectangle x1="-5.7086" y1="-6.7754" x2="-5.2895" y2="-6.7627" layer="94"/>
<rectangle x1="-4.6799" y1="-6.7754" x2="-4.2608" y2="-6.7627" layer="94"/>
<rectangle x1="-2.5971" y1="-6.7754" x2="-2.2288" y2="-6.7627" layer="94"/>
<rectangle x1="-1.6065" y1="-6.7754" x2="-1.289" y2="-6.7627" layer="94"/>
<rectangle x1="-0.7556" y1="-6.7754" x2="-0.4254" y2="-6.7627" layer="94"/>
<rectangle x1="0.1969" y1="-6.7754" x2="0.5271" y2="-6.7627" layer="94"/>
<rectangle x1="1.0605" y1="-6.7754" x2="1.3907" y2="-6.7627" layer="94"/>
<rectangle x1="2.013" y1="-6.7754" x2="2.3559" y2="-6.7627" layer="94"/>
<rectangle x1="2.8766" y1="-6.7754" x2="3.2068" y2="-6.7627" layer="94"/>
<rectangle x1="3.8164" y1="-6.7754" x2="4.1974" y2="-6.7627" layer="94"/>
<rectangle x1="4.4768" y1="-6.7754" x2="4.7562" y2="-6.7627" layer="94"/>
<rectangle x1="5.188" y1="-6.7754" x2="5.4674" y2="-6.7627" layer="94"/>
<rectangle x1="5.8992" y1="-6.7754" x2="6.1659" y2="-6.7627" layer="94"/>
<rectangle x1="6.5088" y1="-6.7754" x2="6.8263" y2="-6.7627" layer="94"/>
<rectangle x1="7.4486" y1="-6.7754" x2="7.7788" y2="-6.7627" layer="94"/>
<rectangle x1="8.2995" y1="-6.7754" x2="8.6297" y2="-6.7627" layer="94"/>
<rectangle x1="9.2647" y1="-6.7754" x2="9.5949" y2="-6.7627" layer="94"/>
<rectangle x1="10.1156" y1="-6.7754" x2="10.4458" y2="-6.7627" layer="94"/>
<rectangle x1="11.0808" y1="-6.7754" x2="11.411" y2="-6.7627" layer="94"/>
<rectangle x1="-11.4363" y1="-6.7627" x2="-11.0299" y2="-6.75" layer="94"/>
<rectangle x1="-10.4203" y1="-6.7627" x2="-10.0139" y2="-6.75" layer="94"/>
<rectangle x1="-9.5313" y1="-6.7627" x2="-9.1122" y2="-6.75" layer="94"/>
<rectangle x1="-8.5153" y1="-6.7627" x2="-8.0962" y2="-6.75" layer="94"/>
<rectangle x1="-7.6136" y1="-6.7627" x2="-7.2072" y2="-6.75" layer="94"/>
<rectangle x1="-6.6103" y1="-6.7627" x2="-6.1912" y2="-6.75" layer="94"/>
<rectangle x1="-5.6959" y1="-6.7627" x2="-5.2895" y2="-6.75" layer="94"/>
<rectangle x1="-4.6926" y1="-6.7627" x2="-4.2735" y2="-6.75" layer="94"/>
<rectangle x1="-2.5971" y1="-6.7627" x2="-2.2288" y2="-6.75" layer="94"/>
<rectangle x1="-1.6192" y1="-6.7627" x2="-1.289" y2="-6.75" layer="94"/>
<rectangle x1="-0.7556" y1="-6.7627" x2="-0.4127" y2="-6.75" layer="94"/>
<rectangle x1="0.1842" y1="-6.7627" x2="0.5271" y2="-6.75" layer="94"/>
<rectangle x1="1.0605" y1="-6.7627" x2="1.4034" y2="-6.75" layer="94"/>
<rectangle x1="2.013" y1="-6.7627" x2="2.3432" y2="-6.75" layer="94"/>
<rectangle x1="2.8766" y1="-6.7627" x2="3.2068" y2="-6.75" layer="94"/>
<rectangle x1="3.8164" y1="-6.7627" x2="4.1974" y2="-6.75" layer="94"/>
<rectangle x1="4.4768" y1="-6.7627" x2="4.7562" y2="-6.75" layer="94"/>
<rectangle x1="5.188" y1="-6.7627" x2="5.4674" y2="-6.75" layer="94"/>
<rectangle x1="5.8992" y1="-6.7627" x2="6.1659" y2="-6.75" layer="94"/>
<rectangle x1="6.5088" y1="-6.7627" x2="6.839" y2="-6.75" layer="94"/>
<rectangle x1="7.4486" y1="-6.7627" x2="7.7788" y2="-6.75" layer="94"/>
<rectangle x1="8.2995" y1="-6.7627" x2="8.6424" y2="-6.75" layer="94"/>
<rectangle x1="9.252" y1="-6.7627" x2="9.5822" y2="-6.75" layer="94"/>
<rectangle x1="10.1283" y1="-6.7627" x2="10.4585" y2="-6.75" layer="94"/>
<rectangle x1="11.0681" y1="-6.7627" x2="11.411" y2="-6.75" layer="94"/>
<rectangle x1="-11.4363" y1="-6.75" x2="-11.0299" y2="-6.7373" layer="94"/>
<rectangle x1="-10.433" y1="-6.75" x2="-10.0139" y2="-6.7373" layer="94"/>
<rectangle x1="-9.5313" y1="-6.75" x2="-9.0995" y2="-6.7373" layer="94"/>
<rectangle x1="-8.528" y1="-6.75" x2="-8.1089" y2="-6.7373" layer="94"/>
<rectangle x1="-7.6136" y1="-6.75" x2="-7.1945" y2="-6.7373" layer="94"/>
<rectangle x1="-6.623" y1="-6.75" x2="-6.1912" y2="-6.7373" layer="94"/>
<rectangle x1="-5.6959" y1="-6.75" x2="-5.2768" y2="-6.7373" layer="94"/>
<rectangle x1="-4.7053" y1="-6.75" x2="-4.2735" y2="-6.7373" layer="94"/>
<rectangle x1="-2.5971" y1="-6.75" x2="-2.2161" y2="-6.7373" layer="94"/>
<rectangle x1="-1.6319" y1="-6.75" x2="-1.289" y2="-6.7373" layer="94"/>
<rectangle x1="-0.7429" y1="-6.75" x2="-0.4" y2="-6.7373" layer="94"/>
<rectangle x1="0.1715" y1="-6.75" x2="0.5144" y2="-6.7373" layer="94"/>
<rectangle x1="1.0732" y1="-6.75" x2="1.4161" y2="-6.7373" layer="94"/>
<rectangle x1="1.9876" y1="-6.75" x2="2.3432" y2="-6.7373" layer="94"/>
<rectangle x1="2.8766" y1="-6.75" x2="3.2195" y2="-6.7373" layer="94"/>
<rectangle x1="3.8037" y1="-6.75" x2="4.1974" y2="-6.7373" layer="94"/>
<rectangle x1="4.4768" y1="-6.75" x2="4.7562" y2="-6.7373" layer="94"/>
<rectangle x1="5.188" y1="-6.75" x2="5.4674" y2="-6.7373" layer="94"/>
<rectangle x1="5.8992" y1="-6.75" x2="6.1659" y2="-6.7373" layer="94"/>
<rectangle x1="6.5215" y1="-6.75" x2="6.8517" y2="-6.7373" layer="94"/>
<rectangle x1="7.4359" y1="-6.75" x2="7.7788" y2="-6.7373" layer="94"/>
<rectangle x1="8.3122" y1="-6.75" x2="8.6678" y2="-6.7373" layer="94"/>
<rectangle x1="9.2393" y1="-6.75" x2="9.5822" y2="-6.7373" layer="94"/>
<rectangle x1="10.141" y1="-6.75" x2="10.4712" y2="-6.7373" layer="94"/>
<rectangle x1="11.0554" y1="-6.75" x2="11.411" y2="-6.7373" layer="94"/>
<rectangle x1="-11.4363" y1="-6.7373" x2="-11.0172" y2="-6.7246" layer="94"/>
<rectangle x1="-10.4457" y1="-6.7373" x2="-10.0139" y2="-6.7246" layer="94"/>
<rectangle x1="-9.5313" y1="-6.7373" x2="-9.0868" y2="-6.7246" layer="94"/>
<rectangle x1="-8.5407" y1="-6.7373" x2="-8.1089" y2="-6.7246" layer="94"/>
<rectangle x1="-7.6136" y1="-6.7373" x2="-7.1945" y2="-6.7246" layer="94"/>
<rectangle x1="-6.6357" y1="-6.7373" x2="-6.1912" y2="-6.7246" layer="94"/>
<rectangle x1="-5.6959" y1="-6.7373" x2="-5.2641" y2="-6.7246" layer="94"/>
<rectangle x1="-4.718" y1="-6.7373" x2="-4.2735" y2="-6.7246" layer="94"/>
<rectangle x1="-2.5971" y1="-6.7373" x2="-2.2034" y2="-6.7246" layer="94"/>
<rectangle x1="-1.6446" y1="-6.7373" x2="-1.289" y2="-6.7246" layer="94"/>
<rectangle x1="-0.7429" y1="-6.7373" x2="-0.3873" y2="-6.7246" layer="94"/>
<rectangle x1="0.1588" y1="-6.7373" x2="0.5144" y2="-6.7246" layer="94"/>
<rectangle x1="1.0732" y1="-6.7373" x2="1.4288" y2="-6.7246" layer="94"/>
<rectangle x1="1.9749" y1="-6.7373" x2="2.3305" y2="-6.7246" layer="94"/>
<rectangle x1="2.8893" y1="-6.7373" x2="3.2449" y2="-6.7246" layer="94"/>
<rectangle x1="3.791" y1="-6.7373" x2="4.1974" y2="-6.7246" layer="94"/>
<rectangle x1="4.4768" y1="-6.7373" x2="4.7562" y2="-6.7246" layer="94"/>
<rectangle x1="5.188" y1="-6.7373" x2="5.4674" y2="-6.7246" layer="94"/>
<rectangle x1="5.8992" y1="-6.7373" x2="6.1659" y2="-6.7246" layer="94"/>
<rectangle x1="6.5215" y1="-6.7373" x2="6.8644" y2="-6.7246" layer="94"/>
<rectangle x1="7.4105" y1="-6.7373" x2="7.7661" y2="-6.7246" layer="94"/>
<rectangle x1="8.3122" y1="-6.7373" x2="8.6805" y2="-6.7246" layer="94"/>
<rectangle x1="9.2266" y1="-6.7373" x2="9.5695" y2="-6.7246" layer="94"/>
<rectangle x1="10.141" y1="-6.7373" x2="10.4839" y2="-6.7246" layer="94"/>
<rectangle x1="11.03" y1="-6.7373" x2="11.411" y2="-6.7246" layer="94"/>
<rectangle x1="-11.4363" y1="-6.7246" x2="-11.0172" y2="-6.7119" layer="94"/>
<rectangle x1="-10.4584" y1="-6.7246" x2="-10.0139" y2="-6.7119" layer="94"/>
<rectangle x1="-9.5186" y1="-6.7246" x2="-9.0868" y2="-6.7119" layer="94"/>
<rectangle x1="-8.5407" y1="-6.7246" x2="-8.1216" y2="-6.7119" layer="94"/>
<rectangle x1="-7.6136" y1="-6.7246" x2="-7.1818" y2="-6.7119" layer="94"/>
<rectangle x1="-6.6484" y1="-6.7246" x2="-6.1912" y2="-6.7119" layer="94"/>
<rectangle x1="-5.6959" y1="-6.7246" x2="-5.2641" y2="-6.7119" layer="94"/>
<rectangle x1="-4.718" y1="-6.7246" x2="-4.2862" y2="-6.7119" layer="94"/>
<rectangle x1="-2.5971" y1="-6.7246" x2="-2.1907" y2="-6.7119" layer="94"/>
<rectangle x1="-1.6573" y1="-6.7246" x2="-1.289" y2="-6.7119" layer="94"/>
<rectangle x1="-0.7302" y1="-6.7246" x2="-0.3746" y2="-6.7119" layer="94"/>
<rectangle x1="0.1461" y1="-6.7246" x2="0.5017" y2="-6.7119" layer="94"/>
<rectangle x1="1.0859" y1="-6.7246" x2="1.4415" y2="-6.7119" layer="94"/>
<rectangle x1="1.9622" y1="-6.7246" x2="2.3305" y2="-6.7119" layer="94"/>
<rectangle x1="2.8893" y1="-6.7246" x2="3.2576" y2="-6.7119" layer="94"/>
<rectangle x1="3.7783" y1="-6.7246" x2="4.1974" y2="-6.7119" layer="94"/>
<rectangle x1="4.4768" y1="-6.7246" x2="4.7562" y2="-6.7119" layer="94"/>
<rectangle x1="5.188" y1="-6.7246" x2="5.4674" y2="-6.7119" layer="94"/>
<rectangle x1="5.8992" y1="-6.7246" x2="6.1659" y2="-6.7119" layer="94"/>
<rectangle x1="6.5215" y1="-6.7246" x2="6.8771" y2="-6.7119" layer="94"/>
<rectangle x1="7.3978" y1="-6.7246" x2="7.7661" y2="-6.7119" layer="94"/>
<rectangle x1="8.3249" y1="-6.7246" x2="8.6932" y2="-6.7119" layer="94"/>
<rectangle x1="9.2139" y1="-6.7246" x2="9.5695" y2="-6.7119" layer="94"/>
<rectangle x1="10.1537" y1="-6.7246" x2="10.4966" y2="-6.7119" layer="94"/>
<rectangle x1="11.0173" y1="-6.7246" x2="11.3983" y2="-6.7119" layer="94"/>
<rectangle x1="-11.4363" y1="-6.7119" x2="-11.0045" y2="-6.6992" layer="94"/>
<rectangle x1="-10.4711" y1="-6.7119" x2="-10.0139" y2="-6.6992" layer="94"/>
<rectangle x1="-9.5186" y1="-6.7119" x2="-9.0741" y2="-6.6992" layer="94"/>
<rectangle x1="-8.5534" y1="-6.7119" x2="-8.1216" y2="-6.6992" layer="94"/>
<rectangle x1="-7.6136" y1="-6.7119" x2="-7.1691" y2="-6.6992" layer="94"/>
<rectangle x1="-6.6611" y1="-6.7119" x2="-6.1912" y2="-6.6992" layer="94"/>
<rectangle x1="-5.6832" y1="-6.7119" x2="-5.2514" y2="-6.6992" layer="94"/>
<rectangle x1="-4.7307" y1="-6.7119" x2="-4.2862" y2="-6.6992" layer="94"/>
<rectangle x1="-2.5971" y1="-6.7119" x2="-2.178" y2="-6.6992" layer="94"/>
<rectangle x1="-1.67" y1="-6.7119" x2="-1.3017" y2="-6.6992" layer="94"/>
<rectangle x1="-0.7175" y1="-6.7119" x2="-0.3619" y2="-6.6992" layer="94"/>
<rectangle x1="0.1334" y1="-6.7119" x2="0.5017" y2="-6.6992" layer="94"/>
<rectangle x1="1.0859" y1="-6.7119" x2="1.4542" y2="-6.6992" layer="94"/>
<rectangle x1="1.9495" y1="-6.7119" x2="2.3178" y2="-6.6992" layer="94"/>
<rectangle x1="2.8893" y1="-6.7119" x2="3.2703" y2="-6.6992" layer="94"/>
<rectangle x1="3.7656" y1="-6.7119" x2="4.1974" y2="-6.6992" layer="94"/>
<rectangle x1="4.4768" y1="-6.7119" x2="4.7562" y2="-6.6992" layer="94"/>
<rectangle x1="5.188" y1="-6.7119" x2="5.4674" y2="-6.6992" layer="94"/>
<rectangle x1="5.8992" y1="-6.7119" x2="6.1659" y2="-6.6992" layer="94"/>
<rectangle x1="6.5215" y1="-6.7119" x2="6.8898" y2="-6.6992" layer="94"/>
<rectangle x1="7.3851" y1="-6.7119" x2="7.7661" y2="-6.6992" layer="94"/>
<rectangle x1="8.3249" y1="-6.7119" x2="8.7059" y2="-6.6992" layer="94"/>
<rectangle x1="9.2012" y1="-6.7119" x2="9.5568" y2="-6.6992" layer="94"/>
<rectangle x1="10.1537" y1="-6.7119" x2="10.5093" y2="-6.6992" layer="94"/>
<rectangle x1="11.0046" y1="-6.7119" x2="11.3983" y2="-6.6992" layer="94"/>
<rectangle x1="-11.4236" y1="-6.6992" x2="-10.9918" y2="-6.6865" layer="94"/>
<rectangle x1="-10.4711" y1="-6.6992" x2="-10.0139" y2="-6.6865" layer="94"/>
<rectangle x1="-9.5059" y1="-6.6992" x2="-9.0614" y2="-6.6865" layer="94"/>
<rectangle x1="-8.5534" y1="-6.6992" x2="-8.1216" y2="-6.6865" layer="94"/>
<rectangle x1="-7.6136" y1="-6.6992" x2="-7.1564" y2="-6.6865" layer="94"/>
<rectangle x1="-6.6611" y1="-6.6992" x2="-6.2039" y2="-6.6865" layer="94"/>
<rectangle x1="-5.6832" y1="-6.6992" x2="-5.2514" y2="-6.6865" layer="94"/>
<rectangle x1="-4.7307" y1="-6.6992" x2="-4.2862" y2="-6.6865" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6992" x2="-2.1653" y2="-6.6865" layer="94"/>
<rectangle x1="-1.6827" y1="-6.6992" x2="-1.3017" y2="-6.6865" layer="94"/>
<rectangle x1="-0.7175" y1="-6.6992" x2="-0.3492" y2="-6.6865" layer="94"/>
<rectangle x1="0.1207" y1="-6.6992" x2="0.5017" y2="-6.6865" layer="94"/>
<rectangle x1="1.0859" y1="-6.6992" x2="1.4669" y2="-6.6865" layer="94"/>
<rectangle x1="1.9368" y1="-6.6992" x2="2.3051" y2="-6.6865" layer="94"/>
<rectangle x1="2.902" y1="-6.6992" x2="3.283" y2="-6.6865" layer="94"/>
<rectangle x1="3.7529" y1="-6.6992" x2="4.1974" y2="-6.6865" layer="94"/>
<rectangle x1="4.4768" y1="-6.6992" x2="4.7562" y2="-6.6865" layer="94"/>
<rectangle x1="5.188" y1="-6.6992" x2="5.4674" y2="-6.6865" layer="94"/>
<rectangle x1="5.8992" y1="-6.6992" x2="6.1659" y2="-6.6865" layer="94"/>
<rectangle x1="6.5342" y1="-6.6992" x2="6.9025" y2="-6.6865" layer="94"/>
<rectangle x1="7.3724" y1="-6.6992" x2="7.7534" y2="-6.6865" layer="94"/>
<rectangle x1="8.3376" y1="-6.6992" x2="8.7186" y2="-6.6865" layer="94"/>
<rectangle x1="9.1885" y1="-6.6992" x2="9.5568" y2="-6.6865" layer="94"/>
<rectangle x1="10.1537" y1="-6.6992" x2="10.522" y2="-6.6865" layer="94"/>
<rectangle x1="10.9919" y1="-6.6992" x2="11.3856" y2="-6.6865" layer="94"/>
<rectangle x1="-11.4236" y1="-6.6865" x2="-10.9791" y2="-6.6738" layer="94"/>
<rectangle x1="-10.4838" y1="-6.6865" x2="-10.0266" y2="-6.6738" layer="94"/>
<rectangle x1="-9.5059" y1="-6.6865" x2="-9.0614" y2="-6.6738" layer="94"/>
<rectangle x1="-8.5661" y1="-6.6865" x2="-8.1216" y2="-6.6738" layer="94"/>
<rectangle x1="-7.6009" y1="-6.6865" x2="-7.1437" y2="-6.6738" layer="94"/>
<rectangle x1="-6.6738" y1="-6.6865" x2="-6.2039" y2="-6.6738" layer="94"/>
<rectangle x1="-5.6832" y1="-6.6865" x2="-5.2387" y2="-6.6738" layer="94"/>
<rectangle x1="-4.7434" y1="-6.6865" x2="-4.2989" y2="-6.6738" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6865" x2="-2.1399" y2="-6.6738" layer="94"/>
<rectangle x1="-1.6954" y1="-6.6865" x2="-1.3144" y2="-6.6738" layer="94"/>
<rectangle x1="-0.7048" y1="-6.6865" x2="-0.3365" y2="-6.6738" layer="94"/>
<rectangle x1="0.108" y1="-6.6865" x2="0.489" y2="-6.6738" layer="94"/>
<rectangle x1="1.0986" y1="-6.6865" x2="1.4796" y2="-6.6738" layer="94"/>
<rectangle x1="1.9241" y1="-6.6865" x2="2.2924" y2="-6.6738" layer="94"/>
<rectangle x1="2.902" y1="-6.6865" x2="3.2957" y2="-6.6738" layer="94"/>
<rectangle x1="3.7402" y1="-6.6865" x2="4.1974" y2="-6.6738" layer="94"/>
<rectangle x1="4.4768" y1="-6.6865" x2="4.7562" y2="-6.6738" layer="94"/>
<rectangle x1="5.188" y1="-6.6865" x2="5.4674" y2="-6.6738" layer="94"/>
<rectangle x1="5.8992" y1="-6.6865" x2="6.1659" y2="-6.6738" layer="94"/>
<rectangle x1="6.5342" y1="-6.6865" x2="6.9152" y2="-6.6738" layer="94"/>
<rectangle x1="7.3597" y1="-6.6865" x2="7.7534" y2="-6.6738" layer="94"/>
<rectangle x1="8.3503" y1="-6.6865" x2="8.7313" y2="-6.6738" layer="94"/>
<rectangle x1="9.1758" y1="-6.6865" x2="9.5568" y2="-6.6738" layer="94"/>
<rectangle x1="10.1664" y1="-6.6865" x2="10.5347" y2="-6.6738" layer="94"/>
<rectangle x1="10.9919" y1="-6.6865" x2="11.3729" y2="-6.6738" layer="94"/>
<rectangle x1="-11.4236" y1="-6.6738" x2="-10.9664" y2="-6.6611" layer="94"/>
<rectangle x1="-10.4965" y1="-6.6738" x2="-10.0266" y2="-6.6611" layer="94"/>
<rectangle x1="-9.5059" y1="-6.6738" x2="-9.0487" y2="-6.6611" layer="94"/>
<rectangle x1="-8.5788" y1="-6.6738" x2="-8.1343" y2="-6.6611" layer="94"/>
<rectangle x1="-7.6009" y1="-6.6738" x2="-7.131" y2="-6.6611" layer="94"/>
<rectangle x1="-6.6865" y1="-6.6738" x2="-6.2039" y2="-6.6611" layer="94"/>
<rectangle x1="-5.6832" y1="-6.6738" x2="-5.2133" y2="-6.6611" layer="94"/>
<rectangle x1="-4.7561" y1="-6.6738" x2="-4.3116" y2="-6.6611" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6738" x2="-2.1272" y2="-6.6611" layer="94"/>
<rectangle x1="-1.7081" y1="-6.6738" x2="-1.3271" y2="-6.6611" layer="94"/>
<rectangle x1="-0.6921" y1="-6.6738" x2="-0.3238" y2="-6.6611" layer="94"/>
<rectangle x1="0.0953" y1="-6.6738" x2="0.489" y2="-6.6611" layer="94"/>
<rectangle x1="1.0986" y1="-6.6738" x2="1.4923" y2="-6.6611" layer="94"/>
<rectangle x1="1.9114" y1="-6.6738" x2="2.2924" y2="-6.6611" layer="94"/>
<rectangle x1="2.9147" y1="-6.6738" x2="3.3084" y2="-6.6611" layer="94"/>
<rectangle x1="3.7148" y1="-6.6738" x2="4.1974" y2="-6.6611" layer="94"/>
<rectangle x1="4.4768" y1="-6.6738" x2="4.7562" y2="-6.6611" layer="94"/>
<rectangle x1="5.188" y1="-6.6738" x2="5.4674" y2="-6.6611" layer="94"/>
<rectangle x1="5.8992" y1="-6.6738" x2="6.1659" y2="-6.6611" layer="94"/>
<rectangle x1="6.5469" y1="-6.6738" x2="6.9279" y2="-6.6611" layer="94"/>
<rectangle x1="7.347" y1="-6.6738" x2="7.7407" y2="-6.6611" layer="94"/>
<rectangle x1="8.363" y1="-6.6738" x2="8.744" y2="-6.6611" layer="94"/>
<rectangle x1="9.1631" y1="-6.6738" x2="9.5441" y2="-6.6611" layer="94"/>
<rectangle x1="10.1664" y1="-6.6738" x2="10.5601" y2="-6.6611" layer="94"/>
<rectangle x1="10.9665" y1="-6.6738" x2="11.3602" y2="-6.6611" layer="94"/>
<rectangle x1="-11.4236" y1="-6.6611" x2="-10.941" y2="-6.6484" layer="94"/>
<rectangle x1="-10.5092" y1="-6.6611" x2="-10.0393" y2="-6.6484" layer="94"/>
<rectangle x1="-9.4932" y1="-6.6611" x2="-9.0233" y2="-6.6484" layer="94"/>
<rectangle x1="-8.5915" y1="-6.6611" x2="-8.1343" y2="-6.6484" layer="94"/>
<rectangle x1="-7.6009" y1="-6.6611" x2="-7.1183" y2="-6.6484" layer="94"/>
<rectangle x1="-6.6992" y1="-6.6611" x2="-6.2039" y2="-6.6484" layer="94"/>
<rectangle x1="-5.6705" y1="-6.6611" x2="-5.2006" y2="-6.6484" layer="94"/>
<rectangle x1="-4.7815" y1="-6.6611" x2="-4.3116" y2="-6.6484" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6611" x2="-2.1018" y2="-6.6484" layer="94"/>
<rectangle x1="-1.7462" y1="-6.6611" x2="-1.3398" y2="-6.6484" layer="94"/>
<rectangle x1="-0.6794" y1="-6.6611" x2="-0.2984" y2="-6.6484" layer="94"/>
<rectangle x1="0.0572" y1="-6.6611" x2="0.489" y2="-6.6484" layer="94"/>
<rectangle x1="1.1113" y1="-6.6611" x2="1.5177" y2="-6.6484" layer="94"/>
<rectangle x1="1.8733" y1="-6.6611" x2="2.2797" y2="-6.6484" layer="94"/>
<rectangle x1="2.9274" y1="-6.6611" x2="3.3338" y2="-6.6484" layer="94"/>
<rectangle x1="3.6894" y1="-6.6611" x2="4.1974" y2="-6.6484" layer="94"/>
<rectangle x1="4.4768" y1="-6.6611" x2="4.7562" y2="-6.6484" layer="94"/>
<rectangle x1="5.188" y1="-6.6611" x2="5.4674" y2="-6.6484" layer="94"/>
<rectangle x1="5.8992" y1="-6.6611" x2="6.1659" y2="-6.6484" layer="94"/>
<rectangle x1="6.5596" y1="-6.6611" x2="6.966" y2="-6.6484" layer="94"/>
<rectangle x1="7.3089" y1="-6.6611" x2="7.728" y2="-6.6484" layer="94"/>
<rectangle x1="8.363" y1="-6.6611" x2="8.7821" y2="-6.6484" layer="94"/>
<rectangle x1="9.1377" y1="-6.6611" x2="9.5441" y2="-6.6484" layer="94"/>
<rectangle x1="10.1664" y1="-6.6611" x2="10.5855" y2="-6.6484" layer="94"/>
<rectangle x1="10.9411" y1="-6.6611" x2="11.3475" y2="-6.6484" layer="94"/>
<rectangle x1="-11.4236" y1="-6.6484" x2="-10.9283" y2="-6.6357" layer="94"/>
<rectangle x1="-10.5346" y1="-6.6484" x2="-10.052" y2="-6.6357" layer="94"/>
<rectangle x1="-9.4932" y1="-6.6484" x2="-9.0106" y2="-6.6357" layer="94"/>
<rectangle x1="-8.6169" y1="-6.6484" x2="-8.1343" y2="-6.6357" layer="94"/>
<rectangle x1="-7.5882" y1="-6.6484" x2="-7.0929" y2="-6.6357" layer="94"/>
<rectangle x1="-6.7119" y1="-6.6484" x2="-6.2166" y2="-6.6357" layer="94"/>
<rectangle x1="-5.6705" y1="-6.6484" x2="-5.1752" y2="-6.6357" layer="94"/>
<rectangle x1="-4.8069" y1="-6.6484" x2="-4.3116" y2="-6.6357" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6484" x2="-2.0637" y2="-6.6357" layer="94"/>
<rectangle x1="-1.7843" y1="-6.6484" x2="-1.3525" y2="-6.6357" layer="94"/>
<rectangle x1="-0.6794" y1="-6.6484" x2="-0.2476" y2="-6.6357" layer="94"/>
<rectangle x1="0.0191" y1="-6.6484" x2="0.4763" y2="-6.6357" layer="94"/>
<rectangle x1="1.1113" y1="-6.6484" x2="1.5685" y2="-6.6357" layer="94"/>
<rectangle x1="1.8352" y1="-6.6484" x2="2.2797" y2="-6.6357" layer="94"/>
<rectangle x1="2.9401" y1="-6.6484" x2="3.3719" y2="-6.6357" layer="94"/>
<rectangle x1="3.6513" y1="-6.6484" x2="4.1974" y2="-6.6357" layer="94"/>
<rectangle x1="4.4768" y1="-6.6484" x2="4.7562" y2="-6.6357" layer="94"/>
<rectangle x1="5.188" y1="-6.6484" x2="5.4674" y2="-6.6357" layer="94"/>
<rectangle x1="5.8992" y1="-6.6484" x2="6.1659" y2="-6.6357" layer="94"/>
<rectangle x1="6.5723" y1="-6.6484" x2="7.0041" y2="-6.6357" layer="94"/>
<rectangle x1="7.2708" y1="-6.6484" x2="7.7153" y2="-6.6357" layer="94"/>
<rectangle x1="8.3757" y1="-6.6484" x2="8.8202" y2="-6.6357" layer="94"/>
<rectangle x1="9.0869" y1="-6.6484" x2="9.5441" y2="-6.6357" layer="94"/>
<rectangle x1="10.1791" y1="-6.6484" x2="10.6236" y2="-6.6357" layer="94"/>
<rectangle x1="10.8903" y1="-6.6484" x2="11.3475" y2="-6.6357" layer="94"/>
<rectangle x1="-11.4109" y1="-6.6357" x2="-10.9029" y2="-6.623" layer="94"/>
<rectangle x1="-10.56" y1="-6.6357" x2="-10.052" y2="-6.623" layer="94"/>
<rectangle x1="-9.4932" y1="-6.6357" x2="-8.9852" y2="-6.623" layer="94"/>
<rectangle x1="-8.6423" y1="-6.6357" x2="-8.1343" y2="-6.623" layer="94"/>
<rectangle x1="-7.5882" y1="-6.6357" x2="-7.0675" y2="-6.623" layer="94"/>
<rectangle x1="-6.7373" y1="-6.6357" x2="-6.2166" y2="-6.623" layer="94"/>
<rectangle x1="-5.6705" y1="-6.6357" x2="-5.1625" y2="-6.623" layer="94"/>
<rectangle x1="-4.8196" y1="-6.6357" x2="-4.3243" y2="-6.623" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6357" x2="-2.0256" y2="-6.623" layer="94"/>
<rectangle x1="-1.8224" y1="-6.6357" x2="-1.3525" y2="-6.623" layer="94"/>
<rectangle x1="-0.6794" y1="-6.6357" x2="-0.2095" y2="-6.623" layer="94"/>
<rectangle x1="-0.019" y1="-6.6357" x2="0.4763" y2="-6.623" layer="94"/>
<rectangle x1="1.124" y1="-6.6357" x2="1.6066" y2="-6.623" layer="94"/>
<rectangle x1="1.7971" y1="-6.6357" x2="2.2797" y2="-6.623" layer="94"/>
<rectangle x1="2.9528" y1="-6.6357" x2="3.41" y2="-6.623" layer="94"/>
<rectangle x1="3.6005" y1="-6.6357" x2="4.1974" y2="-6.623" layer="94"/>
<rectangle x1="4.4768" y1="-6.6357" x2="4.7562" y2="-6.623" layer="94"/>
<rectangle x1="5.188" y1="-6.6357" x2="5.4674" y2="-6.623" layer="94"/>
<rectangle x1="5.8992" y1="-6.6357" x2="6.1659" y2="-6.623" layer="94"/>
<rectangle x1="6.585" y1="-6.6357" x2="7.0295" y2="-6.623" layer="94"/>
<rectangle x1="7.22" y1="-6.6357" x2="7.7026" y2="-6.623" layer="94"/>
<rectangle x1="8.3757" y1="-6.6357" x2="8.8583" y2="-6.623" layer="94"/>
<rectangle x1="9.0488" y1="-6.6357" x2="9.5314" y2="-6.623" layer="94"/>
<rectangle x1="10.1791" y1="-6.6357" x2="10.6617" y2="-6.623" layer="94"/>
<rectangle x1="10.8522" y1="-6.6357" x2="11.3348" y2="-6.623" layer="94"/>
<rectangle x1="-11.4109" y1="-6.623" x2="-10.8902" y2="-6.6103" layer="94"/>
<rectangle x1="-10.5854" y1="-6.623" x2="-10.0647" y2="-6.6103" layer="94"/>
<rectangle x1="-9.4805" y1="-6.623" x2="-8.9725" y2="-6.6103" layer="94"/>
<rectangle x1="-8.655" y1="-6.623" x2="-8.147" y2="-6.6103" layer="94"/>
<rectangle x1="-7.5755" y1="-6.623" x2="-7.0548" y2="-6.6103" layer="94"/>
<rectangle x1="-6.7627" y1="-6.623" x2="-6.2293" y2="-6.6103" layer="94"/>
<rectangle x1="-5.6705" y1="-6.623" x2="-5.1371" y2="-6.6103" layer="94"/>
<rectangle x1="-4.8323" y1="-6.623" x2="-4.3243" y2="-6.6103" layer="94"/>
<rectangle x1="-2.5971" y1="-6.623" x2="-2.0002" y2="-6.6103" layer="94"/>
<rectangle x1="-1.8478" y1="-6.623" x2="-1.3652" y2="-6.6103" layer="94"/>
<rectangle x1="-0.6667" y1="-6.623" x2="-0.1841" y2="-6.6103" layer="94"/>
<rectangle x1="-0.0444" y1="-6.623" x2="0.4636" y2="-6.6103" layer="94"/>
<rectangle x1="1.124" y1="-6.623" x2="1.6447" y2="-6.6103" layer="94"/>
<rectangle x1="1.7717" y1="-6.623" x2="2.267" y2="-6.6103" layer="94"/>
<rectangle x1="2.9528" y1="-6.623" x2="3.4481" y2="-6.6103" layer="94"/>
<rectangle x1="3.5751" y1="-6.623" x2="4.1974" y2="-6.6103" layer="94"/>
<rectangle x1="4.4768" y1="-6.623" x2="4.7562" y2="-6.6103" layer="94"/>
<rectangle x1="5.188" y1="-6.623" x2="5.4674" y2="-6.6103" layer="94"/>
<rectangle x1="5.8992" y1="-6.623" x2="6.1659" y2="-6.6103" layer="94"/>
<rectangle x1="6.5977" y1="-6.623" x2="7.0676" y2="-6.6103" layer="94"/>
<rectangle x1="7.1946" y1="-6.623" x2="7.7026" y2="-6.6103" layer="94"/>
<rectangle x1="8.3757" y1="-6.623" x2="8.8837" y2="-6.6103" layer="94"/>
<rectangle x1="9.0107" y1="-6.623" x2="9.5314" y2="-6.6103" layer="94"/>
<rectangle x1="10.1918" y1="-6.623" x2="10.6871" y2="-6.6103" layer="94"/>
<rectangle x1="10.8268" y1="-6.623" x2="11.3348" y2="-6.6103" layer="94"/>
<rectangle x1="-11.3982" y1="-6.6103" x2="-10.8648" y2="-6.5976" layer="94"/>
<rectangle x1="-10.5981" y1="-6.6103" x2="-10.0647" y2="-6.5976" layer="94"/>
<rectangle x1="-9.4805" y1="-6.6103" x2="-8.9598" y2="-6.5976" layer="94"/>
<rectangle x1="-8.6804" y1="-6.6103" x2="-8.147" y2="-6.5976" layer="94"/>
<rectangle x1="-7.5628" y1="-6.6103" x2="-7.0421" y2="-6.5976" layer="94"/>
<rectangle x1="-6.7754" y1="-6.6103" x2="-6.2293" y2="-6.5976" layer="94"/>
<rectangle x1="-5.6578" y1="-6.6103" x2="-5.1244" y2="-6.5976" layer="94"/>
<rectangle x1="-4.845" y1="-6.6103" x2="-4.3243" y2="-6.5976" layer="94"/>
<rectangle x1="-2.5971" y1="-6.6103" x2="-1.9621" y2="-6.5976" layer="94"/>
<rectangle x1="-1.8859" y1="-6.6103" x2="-1.3652" y2="-6.5976" layer="94"/>
<rectangle x1="-0.6667" y1="-6.6103" x2="-0.146" y2="-6.5976" layer="94"/>
<rectangle x1="-0.0825" y1="-6.6103" x2="0.4509" y2="-6.5976" layer="94"/>
<rectangle x1="1.1367" y1="-6.6103" x2="1.6828" y2="-6.5976" layer="94"/>
<rectangle x1="1.7463" y1="-6.6103" x2="2.267" y2="-6.5976" layer="94"/>
<rectangle x1="2.9655" y1="-6.6103" x2="3.4735" y2="-6.5976" layer="94"/>
<rectangle x1="3.537" y1="-6.6103" x2="4.1974" y2="-6.5976" layer="94"/>
<rectangle x1="4.4768" y1="-6.6103" x2="4.7562" y2="-6.5976" layer="94"/>
<rectangle x1="5.188" y1="-6.6103" x2="5.4674" y2="-6.5976" layer="94"/>
<rectangle x1="5.8992" y1="-6.6103" x2="6.1659" y2="-6.5976" layer="94"/>
<rectangle x1="6.5977" y1="-6.6103" x2="7.1057" y2="-6.5976" layer="94"/>
<rectangle x1="7.1692" y1="-6.6103" x2="7.6899" y2="-6.5976" layer="94"/>
<rectangle x1="8.3884" y1="-6.6103" x2="8.9091" y2="-6.5976" layer="94"/>
<rectangle x1="8.9726" y1="-6.6103" x2="9.5187" y2="-6.5976" layer="94"/>
<rectangle x1="10.2045" y1="-6.6103" x2="10.7125" y2="-6.5976" layer="94"/>
<rectangle x1="10.8014" y1="-6.6103" x2="11.3221" y2="-6.5976" layer="94"/>
<rectangle x1="-11.3855" y1="-6.5976" x2="-10.8521" y2="-6.5849" layer="94"/>
<rectangle x1="-10.6235" y1="-6.5976" x2="-10.0774" y2="-6.5849" layer="94"/>
<rectangle x1="-9.4805" y1="-6.5976" x2="-8.9471" y2="-6.5849" layer="94"/>
<rectangle x1="-8.7058" y1="-6.5976" x2="-8.147" y2="-6.5849" layer="94"/>
<rectangle x1="-7.5628" y1="-6.5976" x2="-7.0167" y2="-6.5849" layer="94"/>
<rectangle x1="-6.8008" y1="-6.5976" x2="-6.242" y2="-6.5849" layer="94"/>
<rectangle x1="-5.6578" y1="-6.5976" x2="-5.099" y2="-6.5849" layer="94"/>
<rectangle x1="-4.8704" y1="-6.5976" x2="-4.337" y2="-6.5849" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5976" x2="-1.3779" y2="-6.5849" layer="94"/>
<rectangle x1="-0.654" y1="-6.5976" x2="0.4382" y2="-6.5849" layer="94"/>
<rectangle x1="1.1494" y1="-6.5976" x2="2.2543" y2="-6.5849" layer="94"/>
<rectangle x1="2.9655" y1="-6.5976" x2="4.1974" y2="-6.5849" layer="94"/>
<rectangle x1="4.4768" y1="-6.5976" x2="4.7562" y2="-6.5849" layer="94"/>
<rectangle x1="5.188" y1="-6.5976" x2="5.4674" y2="-6.5849" layer="94"/>
<rectangle x1="5.8992" y1="-6.5976" x2="6.1659" y2="-6.5849" layer="94"/>
<rectangle x1="6.6104" y1="-6.5976" x2="7.6899" y2="-6.5849" layer="94"/>
<rectangle x1="8.4011" y1="-6.5976" x2="9.4933" y2="-6.5849" layer="94"/>
<rectangle x1="10.2172" y1="-6.5976" x2="11.3221" y2="-6.5849" layer="94"/>
<rectangle x1="-11.3855" y1="-6.5849" x2="-10.8013" y2="-6.5722" layer="94"/>
<rectangle x1="-10.687" y1="-6.5849" x2="-10.0774" y2="-6.5722" layer="94"/>
<rectangle x1="-9.4678" y1="-6.5849" x2="-8.8963" y2="-6.5722" layer="94"/>
<rectangle x1="-8.7566" y1="-6.5849" x2="-8.1597" y2="-6.5722" layer="94"/>
<rectangle x1="-7.5501" y1="-6.5849" x2="-6.9659" y2="-6.5722" layer="94"/>
<rectangle x1="-6.8389" y1="-6.5849" x2="-6.2547" y2="-6.5722" layer="94"/>
<rectangle x1="-5.6451" y1="-6.5849" x2="-5.0482" y2="-6.5722" layer="94"/>
<rectangle x1="-4.9212" y1="-6.5849" x2="-4.337" y2="-6.5722" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5849" x2="-1.3906" y2="-6.5722" layer="94"/>
<rectangle x1="-0.6286" y1="-6.5849" x2="0.4255" y2="-6.5722" layer="94"/>
<rectangle x1="1.1621" y1="-6.5849" x2="2.2416" y2="-6.5722" layer="94"/>
<rectangle x1="2.9782" y1="-6.5849" x2="4.1974" y2="-6.5722" layer="94"/>
<rectangle x1="4.4768" y1="-6.5849" x2="4.7562" y2="-6.5722" layer="94"/>
<rectangle x1="5.188" y1="-6.5849" x2="5.4674" y2="-6.5722" layer="94"/>
<rectangle x1="5.8992" y1="-6.5849" x2="6.1659" y2="-6.5722" layer="94"/>
<rectangle x1="6.6104" y1="-6.5849" x2="7.6772" y2="-6.5722" layer="94"/>
<rectangle x1="8.4138" y1="-6.5849" x2="9.4806" y2="-6.5722" layer="94"/>
<rectangle x1="10.2299" y1="-6.5849" x2="11.3094" y2="-6.5722" layer="94"/>
<rectangle x1="-11.3728" y1="-6.5722" x2="-10.0901" y2="-6.5595" layer="94"/>
<rectangle x1="-9.4678" y1="-6.5722" x2="-8.1597" y2="-6.5595" layer="94"/>
<rectangle x1="-7.5374" y1="-6.5722" x2="-6.2547" y2="-6.5595" layer="94"/>
<rectangle x1="-5.6451" y1="-6.5722" x2="-4.337" y2="-6.5595" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5722" x2="-1.3906" y2="-6.5595" layer="94"/>
<rectangle x1="-0.6159" y1="-6.5722" x2="0.4128" y2="-6.5595" layer="94"/>
<rectangle x1="1.1748" y1="-6.5722" x2="2.2289" y2="-6.5595" layer="94"/>
<rectangle x1="2.9782" y1="-6.5722" x2="4.1974" y2="-6.5595" layer="94"/>
<rectangle x1="4.4768" y1="-6.5722" x2="4.7562" y2="-6.5595" layer="94"/>
<rectangle x1="5.188" y1="-6.5722" x2="5.4674" y2="-6.5595" layer="94"/>
<rectangle x1="5.8992" y1="-6.5722" x2="6.1659" y2="-6.5595" layer="94"/>
<rectangle x1="6.6231" y1="-6.5722" x2="7.6772" y2="-6.5595" layer="94"/>
<rectangle x1="8.4265" y1="-6.5722" x2="9.4679" y2="-6.5595" layer="94"/>
<rectangle x1="10.2426" y1="-6.5722" x2="11.2967" y2="-6.5595" layer="94"/>
<rectangle x1="-11.3601" y1="-6.5595" x2="-10.0901" y2="-6.5468" layer="94"/>
<rectangle x1="-9.4678" y1="-6.5595" x2="-8.1724" y2="-6.5468" layer="94"/>
<rectangle x1="-7.5374" y1="-6.5595" x2="-6.2674" y2="-6.5468" layer="94"/>
<rectangle x1="-5.6324" y1="-6.5595" x2="-4.3497" y2="-6.5468" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5595" x2="-1.4033" y2="-6.5468" layer="94"/>
<rectangle x1="-0.6032" y1="-6.5595" x2="0.4001" y2="-6.5468" layer="94"/>
<rectangle x1="1.1875" y1="-6.5595" x2="2.2162" y2="-6.5468" layer="94"/>
<rectangle x1="2.9909" y1="-6.5595" x2="4.1974" y2="-6.5468" layer="94"/>
<rectangle x1="4.4768" y1="-6.5595" x2="4.7562" y2="-6.5468" layer="94"/>
<rectangle x1="5.188" y1="-6.5595" x2="5.4674" y2="-6.5468" layer="94"/>
<rectangle x1="5.8992" y1="-6.5595" x2="6.1659" y2="-6.5468" layer="94"/>
<rectangle x1="6.6358" y1="-6.5595" x2="7.6645" y2="-6.5468" layer="94"/>
<rectangle x1="8.4392" y1="-6.5595" x2="9.4679" y2="-6.5468" layer="94"/>
<rectangle x1="10.2553" y1="-6.5595" x2="11.284" y2="-6.5468" layer="94"/>
<rectangle x1="-11.3601" y1="-6.5468" x2="-10.0901" y2="-6.5341" layer="94"/>
<rectangle x1="-9.4551" y1="-6.5468" x2="-8.1851" y2="-6.5341" layer="94"/>
<rectangle x1="-7.5374" y1="-6.5468" x2="-6.2674" y2="-6.5341" layer="94"/>
<rectangle x1="-5.6197" y1="-6.5468" x2="-4.3497" y2="-6.5341" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5468" x2="-1.416" y2="-6.5341" layer="94"/>
<rectangle x1="-0.6032" y1="-6.5468" x2="0.4001" y2="-6.5341" layer="94"/>
<rectangle x1="1.1875" y1="-6.5468" x2="2.2035" y2="-6.5341" layer="94"/>
<rectangle x1="3.0036" y1="-6.5468" x2="4.1974" y2="-6.5341" layer="94"/>
<rectangle x1="4.4768" y1="-6.5468" x2="4.7562" y2="-6.5341" layer="94"/>
<rectangle x1="5.188" y1="-6.5468" x2="5.4674" y2="-6.5341" layer="94"/>
<rectangle x1="5.8992" y1="-6.5468" x2="6.1659" y2="-6.5341" layer="94"/>
<rectangle x1="6.6358" y1="-6.5468" x2="7.6518" y2="-6.5341" layer="94"/>
<rectangle x1="8.4519" y1="-6.5468" x2="9.4552" y2="-6.5341" layer="94"/>
<rectangle x1="10.2553" y1="-6.5468" x2="11.2713" y2="-6.5341" layer="94"/>
<rectangle x1="-11.3474" y1="-6.5341" x2="-10.1028" y2="-6.5214" layer="94"/>
<rectangle x1="-9.4424" y1="-6.5341" x2="-8.1978" y2="-6.5214" layer="94"/>
<rectangle x1="-7.5247" y1="-6.5341" x2="-6.2801" y2="-6.5214" layer="94"/>
<rectangle x1="-5.607" y1="-6.5341" x2="-4.3624" y2="-6.5214" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5341" x2="-1.4287" y2="-6.5214" layer="94"/>
<rectangle x1="-0.5905" y1="-6.5341" x2="0.3874" y2="-6.5214" layer="94"/>
<rectangle x1="1.2002" y1="-6.5341" x2="2.2035" y2="-6.5214" layer="94"/>
<rectangle x1="3.0163" y1="-6.5341" x2="4.1974" y2="-6.5214" layer="94"/>
<rectangle x1="4.4768" y1="-6.5341" x2="4.7562" y2="-6.5214" layer="94"/>
<rectangle x1="5.188" y1="-6.5341" x2="5.4674" y2="-6.5214" layer="94"/>
<rectangle x1="5.8992" y1="-6.5341" x2="6.1659" y2="-6.5214" layer="94"/>
<rectangle x1="6.6485" y1="-6.5341" x2="7.6391" y2="-6.5214" layer="94"/>
<rectangle x1="8.4519" y1="-6.5341" x2="9.4425" y2="-6.5214" layer="94"/>
<rectangle x1="10.268" y1="-6.5341" x2="11.2586" y2="-6.5214" layer="94"/>
<rectangle x1="-11.3474" y1="-6.5214" x2="-10.1028" y2="-6.5087" layer="94"/>
<rectangle x1="-9.4297" y1="-6.5214" x2="-8.2105" y2="-6.5087" layer="94"/>
<rectangle x1="-7.5247" y1="-6.5214" x2="-6.2801" y2="-6.5087" layer="94"/>
<rectangle x1="-5.607" y1="-6.5214" x2="-4.3751" y2="-6.5087" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5214" x2="-1.4414" y2="-6.5087" layer="94"/>
<rectangle x1="-0.5778" y1="-6.5214" x2="0.3747" y2="-6.5087" layer="94"/>
<rectangle x1="1.2129" y1="-6.5214" x2="2.1908" y2="-6.5087" layer="94"/>
<rectangle x1="3.029" y1="-6.5214" x2="4.1974" y2="-6.5087" layer="94"/>
<rectangle x1="4.4768" y1="-6.5214" x2="4.7562" y2="-6.5087" layer="94"/>
<rectangle x1="5.188" y1="-6.5214" x2="5.4674" y2="-6.5087" layer="94"/>
<rectangle x1="5.8992" y1="-6.5214" x2="6.1659" y2="-6.5087" layer="94"/>
<rectangle x1="6.6739" y1="-6.5214" x2="7.6264" y2="-6.5087" layer="94"/>
<rectangle x1="8.4646" y1="-6.5214" x2="9.4298" y2="-6.5087" layer="94"/>
<rectangle x1="10.2807" y1="-6.5214" x2="11.2459" y2="-6.5087" layer="94"/>
<rectangle x1="-11.3347" y1="-6.5087" x2="-10.1155" y2="-6.496" layer="94"/>
<rectangle x1="-9.417" y1="-6.5087" x2="-8.2105" y2="-6.496" layer="94"/>
<rectangle x1="-7.512" y1="-6.5087" x2="-6.2928" y2="-6.496" layer="94"/>
<rectangle x1="-5.5943" y1="-6.5087" x2="-4.3878" y2="-6.496" layer="94"/>
<rectangle x1="-2.5971" y1="-6.5087" x2="-1.4668" y2="-6.496" layer="94"/>
<rectangle x1="-0.5651" y1="-6.5087" x2="0.3493" y2="-6.496" layer="94"/>
<rectangle x1="1.2256" y1="-6.5087" x2="2.1781" y2="-6.496" layer="94"/>
<rectangle x1="3.0417" y1="-6.5087" x2="4.1974" y2="-6.496" layer="94"/>
<rectangle x1="4.4768" y1="-6.5087" x2="4.7562" y2="-6.496" layer="94"/>
<rectangle x1="5.188" y1="-6.5087" x2="5.4674" y2="-6.496" layer="94"/>
<rectangle x1="5.8992" y1="-6.5087" x2="6.1659" y2="-6.496" layer="94"/>
<rectangle x1="6.6866" y1="-6.5087" x2="7.6137" y2="-6.496" layer="94"/>
<rectangle x1="8.4773" y1="-6.5087" x2="9.4171" y2="-6.496" layer="94"/>
<rectangle x1="10.3061" y1="-6.5087" x2="11.2332" y2="-6.496" layer="94"/>
<rectangle x1="-11.3347" y1="-6.496" x2="-10.1282" y2="-6.4833" layer="94"/>
<rectangle x1="-9.4043" y1="-6.496" x2="-8.2232" y2="-6.4833" layer="94"/>
<rectangle x1="-7.4993" y1="-6.496" x2="-6.2928" y2="-6.4833" layer="94"/>
<rectangle x1="-5.5943" y1="-6.496" x2="-4.4005" y2="-6.4833" layer="94"/>
<rectangle x1="-2.5971" y1="-6.496" x2="-1.4795" y2="-6.4833" layer="94"/>
<rectangle x1="-0.5524" y1="-6.496" x2="0.3366" y2="-6.4833" layer="94"/>
<rectangle x1="1.2383" y1="-6.496" x2="2.1527" y2="-6.4833" layer="94"/>
<rectangle x1="3.0671" y1="-6.496" x2="4.1974" y2="-6.4833" layer="94"/>
<rectangle x1="4.4768" y1="-6.496" x2="4.7562" y2="-6.4833" layer="94"/>
<rectangle x1="5.188" y1="-6.496" x2="5.4674" y2="-6.4833" layer="94"/>
<rectangle x1="5.8992" y1="-6.496" x2="6.1659" y2="-6.4833" layer="94"/>
<rectangle x1="6.6993" y1="-6.496" x2="7.5883" y2="-6.4833" layer="94"/>
<rectangle x1="8.49" y1="-6.496" x2="9.4044" y2="-6.4833" layer="94"/>
<rectangle x1="10.3188" y1="-6.496" x2="11.2078" y2="-6.4833" layer="94"/>
<rectangle x1="-11.322" y1="-6.4833" x2="-10.1409" y2="-6.4706" layer="94"/>
<rectangle x1="-9.4043" y1="-6.4833" x2="-8.2232" y2="-6.4706" layer="94"/>
<rectangle x1="-7.4866" y1="-6.4833" x2="-6.3055" y2="-6.4706" layer="94"/>
<rectangle x1="-5.5816" y1="-6.4833" x2="-4.4005" y2="-6.4706" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4833" x2="-1.4922" y2="-6.4706" layer="94"/>
<rectangle x1="-0.5397" y1="-6.4833" x2="0.3239" y2="-6.4706" layer="94"/>
<rectangle x1="1.2637" y1="-6.4833" x2="2.14" y2="-6.4706" layer="94"/>
<rectangle x1="3.0798" y1="-6.4833" x2="4.1974" y2="-6.4706" layer="94"/>
<rectangle x1="4.4895" y1="-6.4833" x2="4.7562" y2="-6.4706" layer="94"/>
<rectangle x1="5.188" y1="-6.4833" x2="5.4674" y2="-6.4706" layer="94"/>
<rectangle x1="5.8992" y1="-6.4833" x2="6.1659" y2="-6.4706" layer="94"/>
<rectangle x1="6.712" y1="-6.4833" x2="7.5756" y2="-6.4706" layer="94"/>
<rectangle x1="8.5154" y1="-6.4833" x2="9.3917" y2="-6.4706" layer="94"/>
<rectangle x1="10.3315" y1="-6.4833" x2="11.1951" y2="-6.4706" layer="94"/>
<rectangle x1="-11.322" y1="-6.4706" x2="-10.1536" y2="-6.4579" layer="94"/>
<rectangle x1="-9.3916" y1="-6.4706" x2="-8.2359" y2="-6.4579" layer="94"/>
<rectangle x1="-7.4739" y1="-6.4706" x2="-6.3182" y2="-6.4579" layer="94"/>
<rectangle x1="-5.5816" y1="-6.4706" x2="-4.4132" y2="-6.4579" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4706" x2="-1.5049" y2="-6.4579" layer="94"/>
<rectangle x1="-0.527" y1="-6.4706" x2="0.3112" y2="-6.4579" layer="94"/>
<rectangle x1="1.2764" y1="-6.4706" x2="2.1273" y2="-6.4579" layer="94"/>
<rectangle x1="3.0925" y1="-6.4706" x2="4.1974" y2="-6.4579" layer="94"/>
<rectangle x1="4.4895" y1="-6.4706" x2="4.7562" y2="-6.4579" layer="94"/>
<rectangle x1="5.188" y1="-6.4706" x2="5.4674" y2="-6.4579" layer="94"/>
<rectangle x1="5.8992" y1="-6.4706" x2="6.1659" y2="-6.4579" layer="94"/>
<rectangle x1="6.7247" y1="-6.4706" x2="7.5629" y2="-6.4579" layer="94"/>
<rectangle x1="8.5281" y1="-6.4706" x2="9.379" y2="-6.4579" layer="94"/>
<rectangle x1="10.3315" y1="-6.4706" x2="11.1824" y2="-6.4579" layer="94"/>
<rectangle x1="-11.3093" y1="-6.4579" x2="-10.1663" y2="-6.4452" layer="94"/>
<rectangle x1="-9.3916" y1="-6.4579" x2="-8.2359" y2="-6.4452" layer="94"/>
<rectangle x1="-7.4612" y1="-6.4579" x2="-6.3309" y2="-6.4452" layer="94"/>
<rectangle x1="-5.5689" y1="-6.4579" x2="-4.4132" y2="-6.4452" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4579" x2="-1.5176" y2="-6.4452" layer="94"/>
<rectangle x1="-0.5143" y1="-6.4579" x2="0.2985" y2="-6.4452" layer="94"/>
<rectangle x1="1.2891" y1="-6.4579" x2="2.1146" y2="-6.4452" layer="94"/>
<rectangle x1="3.1052" y1="-6.4579" x2="4.1974" y2="-6.4452" layer="94"/>
<rectangle x1="4.4895" y1="-6.4579" x2="4.7562" y2="-6.4452" layer="94"/>
<rectangle x1="5.2007" y1="-6.4579" x2="5.4674" y2="-6.4452" layer="94"/>
<rectangle x1="5.9119" y1="-6.4579" x2="6.1659" y2="-6.4452" layer="94"/>
<rectangle x1="6.7374" y1="-6.4579" x2="7.5502" y2="-6.4452" layer="94"/>
<rectangle x1="8.5408" y1="-6.4579" x2="9.3663" y2="-6.4452" layer="94"/>
<rectangle x1="10.3442" y1="-6.4579" x2="11.1697" y2="-6.4452" layer="94"/>
<rectangle x1="-11.2966" y1="-6.4452" x2="-10.1663" y2="-6.4325" layer="94"/>
<rectangle x1="-9.3789" y1="-6.4452" x2="-8.2486" y2="-6.4325" layer="94"/>
<rectangle x1="-7.4612" y1="-6.4452" x2="-6.3436" y2="-6.4325" layer="94"/>
<rectangle x1="-5.5562" y1="-6.4452" x2="-4.4259" y2="-6.4325" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4452" x2="-1.5303" y2="-6.4325" layer="94"/>
<rectangle x1="-0.5016" y1="-6.4452" x2="0.2858" y2="-6.4325" layer="94"/>
<rectangle x1="1.3018" y1="-6.4452" x2="2.1019" y2="-6.4325" layer="94"/>
<rectangle x1="3.1179" y1="-6.4452" x2="4.1974" y2="-6.4325" layer="94"/>
<rectangle x1="4.5022" y1="-6.4452" x2="4.7562" y2="-6.4325" layer="94"/>
<rectangle x1="5.2134" y1="-6.4452" x2="5.4674" y2="-6.4325" layer="94"/>
<rectangle x1="5.9246" y1="-6.4452" x2="6.1659" y2="-6.4325" layer="94"/>
<rectangle x1="6.7501" y1="-6.4452" x2="7.5375" y2="-6.4325" layer="94"/>
<rectangle x1="8.5535" y1="-6.4452" x2="9.3536" y2="-6.4325" layer="94"/>
<rectangle x1="10.3569" y1="-6.4452" x2="11.157" y2="-6.4325" layer="94"/>
<rectangle x1="-11.2712" y1="-6.4325" x2="-10.179" y2="-6.4198" layer="94"/>
<rectangle x1="-9.3789" y1="-6.4325" x2="-8.274" y2="-6.4198" layer="94"/>
<rectangle x1="-7.4485" y1="-6.4325" x2="-6.3563" y2="-6.4198" layer="94"/>
<rectangle x1="-5.5435" y1="-6.4325" x2="-4.4386" y2="-6.4198" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4325" x2="-1.5557" y2="-6.4198" layer="94"/>
<rectangle x1="-0.4889" y1="-6.4325" x2="0.2731" y2="-6.4198" layer="94"/>
<rectangle x1="1.3145" y1="-6.4325" x2="2.0765" y2="-6.4198" layer="94"/>
<rectangle x1="3.1433" y1="-6.4325" x2="4.1974" y2="-6.4198" layer="94"/>
<rectangle x1="4.5149" y1="-6.4325" x2="4.7562" y2="-6.4198" layer="94"/>
<rectangle x1="5.2388" y1="-6.4325" x2="5.4674" y2="-6.4198" layer="94"/>
<rectangle x1="5.9373" y1="-6.4325" x2="6.1659" y2="-6.4198" layer="94"/>
<rectangle x1="6.7755" y1="-6.4325" x2="7.5121" y2="-6.4198" layer="94"/>
<rectangle x1="8.5662" y1="-6.4325" x2="9.3409" y2="-6.4198" layer="94"/>
<rectangle x1="10.3823" y1="-6.4325" x2="11.1443" y2="-6.4198" layer="94"/>
<rectangle x1="-11.2585" y1="-6.4198" x2="-10.1917" y2="-6.4071" layer="94"/>
<rectangle x1="-9.3535" y1="-6.4198" x2="-8.2867" y2="-6.4071" layer="94"/>
<rectangle x1="-7.4358" y1="-6.4198" x2="-6.369" y2="-6.4071" layer="94"/>
<rectangle x1="-5.5308" y1="-6.4198" x2="-4.4513" y2="-6.4071" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4198" x2="-1.5811" y2="-6.4071" layer="94"/>
<rectangle x1="-0.4508" y1="-6.4198" x2="0.235" y2="-6.4071" layer="94"/>
<rectangle x1="1.3526" y1="-6.4198" x2="2.0511" y2="-6.4071" layer="94"/>
<rectangle x1="3.1687" y1="-6.4198" x2="4.1974" y2="-6.4071" layer="94"/>
<rectangle x1="4.553" y1="-6.4198" x2="4.7562" y2="-6.4071" layer="94"/>
<rectangle x1="5.2642" y1="-6.4198" x2="5.4674" y2="-6.4071" layer="94"/>
<rectangle x1="5.9627" y1="-6.4198" x2="6.1659" y2="-6.4071" layer="94"/>
<rectangle x1="6.8009" y1="-6.4198" x2="7.4867" y2="-6.4071" layer="94"/>
<rectangle x1="8.6043" y1="-6.4198" x2="9.3028" y2="-6.4071" layer="94"/>
<rectangle x1="10.4077" y1="-6.4198" x2="11.1062" y2="-6.4071" layer="94"/>
<rectangle x1="-11.2458" y1="-6.4071" x2="-10.2044" y2="-6.3944" layer="94"/>
<rectangle x1="-9.3408" y1="-6.4071" x2="-8.2994" y2="-6.3944" layer="94"/>
<rectangle x1="-7.4104" y1="-6.4071" x2="-6.3817" y2="-6.3944" layer="94"/>
<rectangle x1="-5.5181" y1="-6.4071" x2="-4.4767" y2="-6.3944" layer="94"/>
<rectangle x1="-2.5971" y1="-6.4071" x2="-1.6065" y2="-6.3944" layer="94"/>
<rectangle x1="-0.4254" y1="-6.4071" x2="0.2096" y2="-6.3944" layer="94"/>
<rectangle x1="1.3907" y1="-6.4071" x2="2.013" y2="-6.3944" layer="94"/>
<rectangle x1="3.1941" y1="-6.4071" x2="3.8164" y2="-6.3944" layer="94"/>
<rectangle x1="3.8545" y1="-6.4071" x2="4.1974" y2="-6.3944" layer="94"/>
<rectangle x1="4.6038" y1="-6.4071" x2="4.7562" y2="-6.3944" layer="94"/>
<rectangle x1="5.3023" y1="-6.4071" x2="5.4674" y2="-6.3944" layer="94"/>
<rectangle x1="6.0008" y1="-6.4071" x2="6.1659" y2="-6.3944" layer="94"/>
<rectangle x1="6.8263" y1="-6.4071" x2="7.4486" y2="-6.3944" layer="94"/>
<rectangle x1="8.6297" y1="-6.4071" x2="9.2647" y2="-6.3944" layer="94"/>
<rectangle x1="10.4458" y1="-6.4071" x2="11.0681" y2="-6.3944" layer="94"/>
<rectangle x1="-11.2458" y1="-6.3944" x2="-10.2171" y2="-6.3817" layer="94"/>
<rectangle x1="-9.3281" y1="-6.3944" x2="-8.3121" y2="-6.3817" layer="94"/>
<rectangle x1="-7.3977" y1="-6.3944" x2="-6.3944" y2="-6.3817" layer="94"/>
<rectangle x1="-5.5054" y1="-6.3944" x2="-4.4894" y2="-6.3817" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3944" x2="-2.2923" y2="-6.3817" layer="94"/>
<rectangle x1="-2.2034" y1="-6.3944" x2="-1.6319" y2="-6.3817" layer="94"/>
<rectangle x1="-0.4" y1="-6.3944" x2="0.1842" y2="-6.3817" layer="94"/>
<rectangle x1="1.4161" y1="-6.3944" x2="2.0003" y2="-6.3817" layer="94"/>
<rectangle x1="3.2322" y1="-6.3944" x2="3.791" y2="-6.3817" layer="94"/>
<rectangle x1="3.8799" y1="-6.3944" x2="4.1974" y2="-6.3817" layer="94"/>
<rectangle x1="4.6292" y1="-6.3944" x2="4.7562" y2="-6.3817" layer="94"/>
<rectangle x1="5.3277" y1="-6.3944" x2="5.4674" y2="-6.3817" layer="94"/>
<rectangle x1="6.0262" y1="-6.3944" x2="6.1659" y2="-6.3817" layer="94"/>
<rectangle x1="6.8517" y1="-6.3944" x2="7.4232" y2="-6.3817" layer="94"/>
<rectangle x1="8.6424" y1="-6.3944" x2="9.2393" y2="-6.3817" layer="94"/>
<rectangle x1="10.4712" y1="-6.3944" x2="11.0427" y2="-6.3817" layer="94"/>
<rectangle x1="-11.2331" y1="-6.3817" x2="-10.2298" y2="-6.369" layer="94"/>
<rectangle x1="-9.3154" y1="-6.3817" x2="-8.3248" y2="-6.369" layer="94"/>
<rectangle x1="-7.385" y1="-6.3817" x2="-6.4071" y2="-6.369" layer="94"/>
<rectangle x1="-5.4927" y1="-6.3817" x2="-4.4894" y2="-6.369" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3817" x2="-2.305" y2="-6.369" layer="94"/>
<rectangle x1="-2.1907" y1="-6.3817" x2="-1.6446" y2="-6.369" layer="94"/>
<rectangle x1="-0.3873" y1="-6.3817" x2="0.1715" y2="-6.369" layer="94"/>
<rectangle x1="1.4288" y1="-6.3817" x2="1.9749" y2="-6.369" layer="94"/>
<rectangle x1="3.2449" y1="-6.3817" x2="3.7783" y2="-6.369" layer="94"/>
<rectangle x1="3.8799" y1="-6.3817" x2="4.1974" y2="-6.369" layer="94"/>
<rectangle x1="4.6419" y1="-6.3817" x2="4.7562" y2="-6.369" layer="94"/>
<rectangle x1="5.3404" y1="-6.3817" x2="5.4674" y2="-6.369" layer="94"/>
<rectangle x1="6.0389" y1="-6.3817" x2="6.1659" y2="-6.369" layer="94"/>
<rectangle x1="6.8771" y1="-6.3817" x2="7.4105" y2="-6.369" layer="94"/>
<rectangle x1="8.6678" y1="-6.3817" x2="9.2266" y2="-6.369" layer="94"/>
<rectangle x1="10.4839" y1="-6.3817" x2="11.03" y2="-6.369" layer="94"/>
<rectangle x1="-11.2204" y1="-6.369" x2="-10.2425" y2="-6.3563" layer="94"/>
<rectangle x1="-9.3027" y1="-6.369" x2="-8.3248" y2="-6.3563" layer="94"/>
<rectangle x1="-7.3723" y1="-6.369" x2="-6.4198" y2="-6.3563" layer="94"/>
<rectangle x1="-5.48" y1="-6.369" x2="-4.5021" y2="-6.3563" layer="94"/>
<rectangle x1="-2.5971" y1="-6.369" x2="-2.3177" y2="-6.3563" layer="94"/>
<rectangle x1="-2.1653" y1="-6.369" x2="-1.67" y2="-6.3563" layer="94"/>
<rectangle x1="-0.3619" y1="-6.369" x2="0.1461" y2="-6.3563" layer="94"/>
<rectangle x1="1.4415" y1="-6.369" x2="1.9622" y2="-6.3563" layer="94"/>
<rectangle x1="3.2576" y1="-6.369" x2="3.7656" y2="-6.3563" layer="94"/>
<rectangle x1="3.8926" y1="-6.369" x2="4.1974" y2="-6.3563" layer="94"/>
<rectangle x1="4.6546" y1="-6.369" x2="4.7435" y2="-6.3563" layer="94"/>
<rectangle x1="5.3531" y1="-6.369" x2="5.4674" y2="-6.3563" layer="94"/>
<rectangle x1="6.0516" y1="-6.369" x2="6.1532" y2="-6.3563" layer="94"/>
<rectangle x1="6.8898" y1="-6.369" x2="7.3978" y2="-6.3563" layer="94"/>
<rectangle x1="8.6805" y1="-6.369" x2="9.2139" y2="-6.3563" layer="94"/>
<rectangle x1="10.5093" y1="-6.369" x2="11.0046" y2="-6.3563" layer="94"/>
<rectangle x1="-11.195" y1="-6.3563" x2="-10.2552" y2="-6.3436" layer="94"/>
<rectangle x1="-9.29" y1="-6.3563" x2="-8.3375" y2="-6.3436" layer="94"/>
<rectangle x1="-7.3723" y1="-6.3563" x2="-6.4325" y2="-6.3436" layer="94"/>
<rectangle x1="-5.4673" y1="-6.3563" x2="-4.5148" y2="-6.3436" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3563" x2="-2.3177" y2="-6.3436" layer="94"/>
<rectangle x1="-2.1399" y1="-6.3563" x2="-1.6954" y2="-6.3436" layer="94"/>
<rectangle x1="-0.3492" y1="-6.3563" x2="0.1334" y2="-6.3436" layer="94"/>
<rectangle x1="1.4669" y1="-6.3563" x2="1.9241" y2="-6.3436" layer="94"/>
<rectangle x1="3.283" y1="-6.3563" x2="3.7402" y2="-6.3436" layer="94"/>
<rectangle x1="3.8926" y1="-6.3563" x2="4.1974" y2="-6.3436" layer="94"/>
<rectangle x1="4.6673" y1="-6.3563" x2="4.7308" y2="-6.3436" layer="94"/>
<rectangle x1="5.3912" y1="-6.3563" x2="5.442" y2="-6.3436" layer="94"/>
<rectangle x1="6.077" y1="-6.3563" x2="6.1532" y2="-6.3436" layer="94"/>
<rectangle x1="6.9152" y1="-6.3563" x2="7.3724" y2="-6.3436" layer="94"/>
<rectangle x1="8.7059" y1="-6.3563" x2="9.1885" y2="-6.3436" layer="94"/>
<rectangle x1="10.522" y1="-6.3563" x2="10.9792" y2="-6.3436" layer="94"/>
<rectangle x1="-11.1823" y1="-6.3436" x2="-10.2679" y2="-6.3309" layer="94"/>
<rectangle x1="-9.2646" y1="-6.3436" x2="-8.3629" y2="-6.3309" layer="94"/>
<rectangle x1="-7.3469" y1="-6.3436" x2="-6.4452" y2="-6.3309" layer="94"/>
<rectangle x1="-5.4546" y1="-6.3436" x2="-4.5402" y2="-6.3309" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3436" x2="-2.3177" y2="-6.3309" layer="94"/>
<rectangle x1="-2.1018" y1="-6.3436" x2="-1.7462" y2="-6.3309" layer="94"/>
<rectangle x1="-0.2984" y1="-6.3436" x2="0.0699" y2="-6.3309" layer="94"/>
<rectangle x1="1.5177" y1="-6.3436" x2="1.8733" y2="-6.3309" layer="94"/>
<rectangle x1="3.3211" y1="-6.3436" x2="3.7021" y2="-6.3309" layer="94"/>
<rectangle x1="3.8926" y1="-6.3436" x2="4.1974" y2="-6.3309" layer="94"/>
<rectangle x1="6.9533" y1="-6.3436" x2="7.3216" y2="-6.3309" layer="94"/>
<rectangle x1="8.7567" y1="-6.3436" x2="9.1377" y2="-6.3309" layer="94"/>
<rectangle x1="10.5855" y1="-6.3436" x2="10.9284" y2="-6.3309" layer="94"/>
<rectangle x1="-11.1569" y1="-6.3309" x2="-10.2933" y2="-6.3182" layer="94"/>
<rectangle x1="-9.2392" y1="-6.3309" x2="-8.3883" y2="-6.3182" layer="94"/>
<rectangle x1="-7.3342" y1="-6.3309" x2="-6.4706" y2="-6.3182" layer="94"/>
<rectangle x1="-5.4292" y1="-6.3309" x2="-4.5656" y2="-6.3182" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3309" x2="-2.3177" y2="-6.3182" layer="94"/>
<rectangle x1="-1.9748" y1="-6.3309" x2="-1.8859" y2="-6.3182" layer="94"/>
<rectangle x1="-0.1587" y1="-6.3309" x2="-0.0317" y2="-6.3182" layer="94"/>
<rectangle x1="1.632" y1="-6.3309" x2="1.7463" y2="-6.3182" layer="94"/>
<rectangle x1="3.4481" y1="-6.3309" x2="3.5624" y2="-6.3182" layer="94"/>
<rectangle x1="3.8926" y1="-6.3309" x2="4.1974" y2="-6.3182" layer="94"/>
<rectangle x1="7.093" y1="-6.3309" x2="7.1819" y2="-6.3182" layer="94"/>
<rectangle x1="8.8964" y1="-6.3309" x2="9.0234" y2="-6.3182" layer="94"/>
<rectangle x1="10.6871" y1="-6.3309" x2="10.8141" y2="-6.3182" layer="94"/>
<rectangle x1="-11.1442" y1="-6.3182" x2="-10.3187" y2="-6.3055" layer="94"/>
<rectangle x1="-9.2265" y1="-6.3182" x2="-8.4137" y2="-6.3055" layer="94"/>
<rectangle x1="-7.3088" y1="-6.3182" x2="-6.496" y2="-6.3055" layer="94"/>
<rectangle x1="-5.4038" y1="-6.3182" x2="-4.5783" y2="-6.3055" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3182" x2="-2.3177" y2="-6.3055" layer="94"/>
<rectangle x1="3.8926" y1="-6.3182" x2="4.1974" y2="-6.3055" layer="94"/>
<rectangle x1="-11.1315" y1="-6.3055" x2="-10.3314" y2="-6.2928" layer="94"/>
<rectangle x1="-9.2138" y1="-6.3055" x2="-8.4264" y2="-6.2928" layer="94"/>
<rectangle x1="-7.2961" y1="-6.3055" x2="-6.5087" y2="-6.2928" layer="94"/>
<rectangle x1="-5.3911" y1="-6.3055" x2="-4.6037" y2="-6.2928" layer="94"/>
<rectangle x1="-2.5971" y1="-6.3055" x2="-2.3177" y2="-6.2928" layer="94"/>
<rectangle x1="3.8926" y1="-6.3055" x2="4.1974" y2="-6.2928" layer="94"/>
<rectangle x1="-11.1061" y1="-6.2928" x2="-10.3441" y2="-6.2801" layer="94"/>
<rectangle x1="-9.1884" y1="-6.2928" x2="-8.4391" y2="-6.2801" layer="94"/>
<rectangle x1="-7.2834" y1="-6.2928" x2="-6.5214" y2="-6.2801" layer="94"/>
<rectangle x1="-5.3784" y1="-6.2928" x2="-4.6037" y2="-6.2801" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2928" x2="-2.3177" y2="-6.2801" layer="94"/>
<rectangle x1="3.8926" y1="-6.2928" x2="4.1974" y2="-6.2801" layer="94"/>
<rectangle x1="-11.0934" y1="-6.2801" x2="-10.3568" y2="-6.2674" layer="94"/>
<rectangle x1="-9.1757" y1="-6.2801" x2="-8.4518" y2="-6.2674" layer="94"/>
<rectangle x1="-7.2707" y1="-6.2801" x2="-6.5341" y2="-6.2674" layer="94"/>
<rectangle x1="-5.353" y1="-6.2801" x2="-4.6291" y2="-6.2674" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2801" x2="-2.3177" y2="-6.2674" layer="94"/>
<rectangle x1="3.8926" y1="-6.2801" x2="4.1974" y2="-6.2674" layer="94"/>
<rectangle x1="-11.0807" y1="-6.2674" x2="-10.3822" y2="-6.2547" layer="94"/>
<rectangle x1="-9.163" y1="-6.2674" x2="-8.4772" y2="-6.2547" layer="94"/>
<rectangle x1="-7.258" y1="-6.2674" x2="-6.5595" y2="-6.2547" layer="94"/>
<rectangle x1="-5.3403" y1="-6.2674" x2="-4.6545" y2="-6.2547" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2674" x2="-2.3177" y2="-6.2547" layer="94"/>
<rectangle x1="3.9053" y1="-6.2674" x2="4.1974" y2="-6.2547" layer="94"/>
<rectangle x1="-11.0426" y1="-6.2547" x2="-10.4203" y2="-6.242" layer="94"/>
<rectangle x1="-9.1249" y1="-6.2547" x2="-8.5026" y2="-6.242" layer="94"/>
<rectangle x1="-7.2199" y1="-6.2547" x2="-6.5976" y2="-6.242" layer="94"/>
<rectangle x1="-5.3149" y1="-6.2547" x2="-4.6926" y2="-6.242" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2547" x2="-2.3177" y2="-6.242" layer="94"/>
<rectangle x1="3.9053" y1="-6.2547" x2="4.1974" y2="-6.242" layer="94"/>
<rectangle x1="-10.9918" y1="-6.242" x2="-10.4711" y2="-6.2293" layer="94"/>
<rectangle x1="-9.0614" y1="-6.242" x2="-8.5534" y2="-6.2293" layer="94"/>
<rectangle x1="-7.1691" y1="-6.242" x2="-6.6484" y2="-6.2293" layer="94"/>
<rectangle x1="-5.2514" y1="-6.242" x2="-4.7434" y2="-6.2293" layer="94"/>
<rectangle x1="-2.5971" y1="-6.242" x2="-2.3177" y2="-6.2293" layer="94"/>
<rectangle x1="3.9053" y1="-6.242" x2="4.1974" y2="-6.2293" layer="94"/>
<rectangle x1="-10.9537" y1="-6.2293" x2="-10.5092" y2="-6.2166" layer="94"/>
<rectangle x1="-9.0233" y1="-6.2293" x2="-8.6042" y2="-6.2166" layer="94"/>
<rectangle x1="-7.1183" y1="-6.2293" x2="-6.6992" y2="-6.2166" layer="94"/>
<rectangle x1="-5.2133" y1="-6.2293" x2="-4.7815" y2="-6.2166" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2293" x2="-2.3177" y2="-6.2166" layer="94"/>
<rectangle x1="3.9053" y1="-6.2293" x2="4.1974" y2="-6.2166" layer="94"/>
<rectangle x1="-10.9156" y1="-6.2166" x2="-10.5473" y2="-6.2039" layer="94"/>
<rectangle x1="-8.9979" y1="-6.2166" x2="-8.6296" y2="-6.2039" layer="94"/>
<rectangle x1="-7.0802" y1="-6.2166" x2="-6.7373" y2="-6.2039" layer="94"/>
<rectangle x1="-5.1752" y1="-6.2166" x2="-4.8069" y2="-6.2039" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2166" x2="-2.3177" y2="-6.2039" layer="94"/>
<rectangle x1="3.8926" y1="-6.2166" x2="4.1974" y2="-6.2039" layer="94"/>
<rectangle x1="-10.8775" y1="-6.2039" x2="-10.5727" y2="-6.1912" layer="94"/>
<rectangle x1="-8.9725" y1="-6.2039" x2="-8.6677" y2="-6.1912" layer="94"/>
<rectangle x1="-7.0421" y1="-6.2039" x2="-6.7627" y2="-6.1912" layer="94"/>
<rectangle x1="-5.1498" y1="-6.2039" x2="-4.8323" y2="-6.1912" layer="94"/>
<rectangle x1="-2.5971" y1="-6.2039" x2="-2.3177" y2="-6.1912" layer="94"/>
<rectangle x1="3.9053" y1="-6.2039" x2="4.1974" y2="-6.1912" layer="94"/>
<rectangle x1="-10.814" y1="-6.1912" x2="-10.6235" y2="-6.1785" layer="94"/>
<rectangle x1="-8.9344" y1="-6.1912" x2="-8.7312" y2="-6.1785" layer="94"/>
<rectangle x1="-7.004" y1="-6.1912" x2="-6.8135" y2="-6.1785" layer="94"/>
<rectangle x1="-5.0863" y1="-6.1912" x2="-4.8704" y2="-6.1785" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1912" x2="-2.3177" y2="-6.1785" layer="94"/>
<rectangle x1="3.9053" y1="-6.1912" x2="4.1974" y2="-6.1785" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1785" x2="-2.3177" y2="-6.1658" layer="94"/>
<rectangle x1="3.8926" y1="-6.1785" x2="4.1974" y2="-6.1658" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1658" x2="-2.3177" y2="-6.1531" layer="94"/>
<rectangle x1="3.9053" y1="-6.1658" x2="4.1974" y2="-6.1531" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1531" x2="-2.3177" y2="-6.1404" layer="94"/>
<rectangle x1="3.9053" y1="-6.1531" x2="4.1974" y2="-6.1404" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1404" x2="-2.3177" y2="-6.1277" layer="94"/>
<rectangle x1="3.8926" y1="-6.1404" x2="4.1974" y2="-6.1277" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1277" x2="-2.3177" y2="-6.115" layer="94"/>
<rectangle x1="3.9053" y1="-6.1277" x2="4.1974" y2="-6.115" layer="94"/>
<rectangle x1="-2.5971" y1="-6.115" x2="-2.3177" y2="-6.1023" layer="94"/>
<rectangle x1="3.8926" y1="-6.115" x2="4.1974" y2="-6.1023" layer="94"/>
<rectangle x1="-2.5971" y1="-6.1023" x2="-2.3177" y2="-6.0896" layer="94"/>
<rectangle x1="3.8926" y1="-6.1023" x2="4.1974" y2="-6.0896" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0896" x2="-2.3177" y2="-6.0769" layer="94"/>
<rectangle x1="3.9053" y1="-6.0896" x2="4.1974" y2="-6.0769" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0769" x2="-2.3177" y2="-6.0642" layer="94"/>
<rectangle x1="3.9053" y1="-6.0769" x2="4.1974" y2="-6.0642" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0642" x2="-2.3177" y2="-6.0515" layer="94"/>
<rectangle x1="3.8926" y1="-6.0642" x2="4.1974" y2="-6.0515" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0515" x2="-2.3177" y2="-6.0388" layer="94"/>
<rectangle x1="3.9053" y1="-6.0515" x2="4.1974" y2="-6.0388" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0388" x2="-2.3177" y2="-6.0261" layer="94"/>
<rectangle x1="3.9053" y1="-6.0388" x2="4.1974" y2="-6.0261" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0261" x2="-2.3177" y2="-6.0134" layer="94"/>
<rectangle x1="3.9053" y1="-6.0261" x2="4.1974" y2="-6.0134" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0134" x2="-2.3177" y2="-6.0007" layer="94"/>
<rectangle x1="3.8926" y1="-6.0134" x2="4.1974" y2="-6.0007" layer="94"/>
<rectangle x1="-2.5971" y1="-6.0007" x2="-2.3177" y2="-5.988" layer="94"/>
<rectangle x1="3.9053" y1="-6.0007" x2="4.1974" y2="-5.988" layer="94"/>
<rectangle x1="-2.5971" y1="-5.988" x2="-2.3177" y2="-5.9753" layer="94"/>
<rectangle x1="3.9053" y1="-5.988" x2="4.1974" y2="-5.9753" layer="94"/>
<rectangle x1="-2.5971" y1="-5.9753" x2="-2.3177" y2="-5.9626" layer="94"/>
<rectangle x1="3.9053" y1="-5.9753" x2="4.1974" y2="-5.9626" layer="94"/>
<rectangle x1="-2.5971" y1="-5.9626" x2="-2.3177" y2="-5.9499" layer="94"/>
<rectangle x1="3.8926" y1="-5.9626" x2="4.1974" y2="-5.9499" layer="94"/>
<rectangle x1="-2.5971" y1="-5.9499" x2="-2.3177" y2="-5.9372" layer="94"/>
<rectangle x1="3.9053" y1="-5.9499" x2="4.1974" y2="-5.9372" layer="94"/>
<rectangle x1="-2.5971" y1="-5.9372" x2="-2.3177" y2="-5.9245" layer="94"/>
<rectangle x1="3.8926" y1="-5.9372" x2="4.1974" y2="-5.9245" layer="94"/>
<rectangle x1="-2.5971" y1="-5.9245" x2="-2.3177" y2="-5.9118" layer="94"/>
<rectangle x1="3.9053" y1="-5.9245" x2="4.1974" y2="-5.9118" layer="94"/>
<rectangle x1="-2.5971" y1="-5.9118" x2="-2.3177" y2="-5.8991" layer="94"/>
<rectangle x1="3.9053" y1="-5.9118" x2="4.1974" y2="-5.8991" layer="94"/>
<rectangle x1="-2.5971" y1="-5.8991" x2="-2.3177" y2="-5.8864" layer="94"/>
<rectangle x1="3.9053" y1="-5.8991" x2="4.1974" y2="-5.8864" layer="94"/>
<rectangle x1="-2.5971" y1="-5.8864" x2="-2.3177" y2="-5.8737" layer="94"/>
<rectangle x1="3.9053" y1="-5.8864" x2="4.1974" y2="-5.8737" layer="94"/>
<rectangle x1="-2.5971" y1="-5.8737" x2="-2.3177" y2="-5.861" layer="94"/>
<rectangle x1="3.9053" y1="-5.8737" x2="4.1974" y2="-5.861" layer="94"/>
<rectangle x1="-2.5971" y1="-5.861" x2="-2.3177" y2="-5.8483" layer="94"/>
<rectangle x1="3.8926" y1="-5.861" x2="4.1974" y2="-5.8483" layer="94"/>
<rectangle x1="-2.5971" y1="-5.8483" x2="-2.3177" y2="-5.8356" layer="94"/>
<rectangle x1="3.8926" y1="-5.8483" x2="4.1974" y2="-5.8356" layer="94"/>
<rectangle x1="-2.5971" y1="-5.8356" x2="-2.3177" y2="-5.8229" layer="94"/>
<rectangle x1="3.8926" y1="-5.8356" x2="4.1974" y2="-5.8229" layer="94"/>
<rectangle x1="-2.6098" y1="-5.8229" x2="-2.3177" y2="-5.8102" layer="94"/>
<rectangle x1="3.8926" y1="-5.8229" x2="4.1974" y2="-5.8102" layer="94"/>
<rectangle x1="-2.5971" y1="-5.8102" x2="-2.3177" y2="-5.7975" layer="94"/>
<rectangle x1="3.8926" y1="-5.8102" x2="4.1974" y2="-5.7975" layer="94"/>
<rectangle x1="-2.5971" y1="-5.7975" x2="-2.3177" y2="-5.7848" layer="94"/>
<rectangle x1="3.8926" y1="-5.7975" x2="4.1974" y2="-5.7848" layer="94"/>
<rectangle x1="-2.5971" y1="-5.7848" x2="-2.3177" y2="-5.7721" layer="94"/>
<rectangle x1="3.9053" y1="-5.7848" x2="4.1974" y2="-5.7721" layer="94"/>
<rectangle x1="-2.5971" y1="-5.7721" x2="-2.3177" y2="-5.7594" layer="94"/>
<rectangle x1="3.9053" y1="-5.7721" x2="4.1974" y2="-5.7594" layer="94"/>
<rectangle x1="-2.5844" y1="-5.7594" x2="-2.3177" y2="-5.7467" layer="94"/>
<rectangle x1="3.9053" y1="-5.7594" x2="4.1974" y2="-5.7467" layer="94"/>
<rectangle x1="-2.5717" y1="-5.7467" x2="-2.3177" y2="-5.734" layer="94"/>
<rectangle x1="3.918" y1="-5.7467" x2="4.1974" y2="-5.734" layer="94"/>
<rectangle x1="-2.559" y1="-5.734" x2="-2.3177" y2="-5.7213" layer="94"/>
<rectangle x1="3.9434" y1="-5.734" x2="4.1974" y2="-5.7213" layer="94"/>
<rectangle x1="-2.5463" y1="-5.7213" x2="-2.3177" y2="-5.7086" layer="94"/>
<rectangle x1="3.9688" y1="-5.7213" x2="4.1974" y2="-5.7086" layer="94"/>
<rectangle x1="-2.5336" y1="-5.7086" x2="-2.3177" y2="-5.6959" layer="94"/>
<rectangle x1="3.9815" y1="-5.7086" x2="4.1974" y2="-5.6959" layer="94"/>
<rectangle x1="-2.5082" y1="-5.6959" x2="-2.3177" y2="-5.6832" layer="94"/>
<rectangle x1="4.0069" y1="-5.6959" x2="4.1974" y2="-5.6832" layer="94"/>
<rectangle x1="-2.4955" y1="-5.6832" x2="-2.3304" y2="-5.6705" layer="94"/>
<rectangle x1="4.0196" y1="-5.6832" x2="4.1974" y2="-5.6705" layer="94"/>
<rectangle x1="-2.4701" y1="-5.6705" x2="-2.3304" y2="-5.6578" layer="94"/>
<rectangle x1="4.0577" y1="-5.6705" x2="4.1847" y2="-5.6578" layer="94"/>
<rectangle x1="-2.4066" y1="-5.6578" x2="-2.3558" y2="-5.6451" layer="94"/>
<rectangle x1="4.1085" y1="-5.6578" x2="4.1593" y2="-5.6451" layer="94"/>
<polygon width="0.381" layer="94">
<vertex x="1.5036" y="-3.63" curve="9.499632"/>
<vertex x="2.0821" y="-3.3321"/>
<vertex x="3.5185" y="-4.5035"/>
<vertex x="4.5035" y="-3.5185"/>
<vertex x="3.3321" y="-2.0821" curve="18.999117"/>
<vertex x="3.8284" y="-0.8839"/>
<vertex x="5.6724" y="-0.6965"/>
<vertex x="5.6724" y="0.6965"/>
<vertex x="3.8284" y="0.8839" curve="18.999117"/>
<vertex x="3.3321" y="2.0821"/>
<vertex x="4.5035" y="3.5185"/>
<vertex x="3.5185" y="4.5035"/>
<vertex x="2.0821" y="3.3321" curve="18.999117"/>
<vertex x="0.8839" y="3.8284"/>
<vertex x="0.6965" y="5.6724"/>
<vertex x="-0.6965" y="5.6724"/>
<vertex x="-0.8839" y="3.8284" curve="18.999117"/>
<vertex x="-2.0821" y="3.3321"/>
<vertex x="-3.5185" y="4.5035"/>
<vertex x="-4.5035" y="3.5185"/>
<vertex x="-3.3321" y="2.0821" curve="18.999117"/>
<vertex x="-3.8284" y="0.8839"/>
<vertex x="-5.6724" y="0.6965"/>
<vertex x="-5.6724" y="-0.6965"/>
<vertex x="-3.8284" y="-0.8839" curve="18.999117"/>
<vertex x="-3.3321" y="-2.0821"/>
<vertex x="-4.5035" y="-3.5185"/>
<vertex x="-3.5185" y="-4.5035"/>
<vertex x="-2.0821" y="-3.3321" curve="9.499632"/>
<vertex x="-1.5036" y="-3.63"/>
<vertex x="-0.6834" y="-1.65" curve="-67.502133"/>
<vertex x="-1.7859" y="0" curve="-247.502133"/>
<vertex x="0.6834" y="-1.65"/>
</polygon>
</symbol>
<symbol name="LETTER_L">
<wire x1="0" y1="185.42" x2="248.92" y2="185.42" width="0.4064" layer="94"/>
<wire x1="248.92" y1="185.42" x2="248.92" y2="0" width="0.4064" layer="94"/>
<wire x1="0" y1="185.42" x2="0" y2="0" width="0.4064" layer="94"/>
<wire x1="0" y1="0" x2="248.92" y2="0" width="0.4064" layer="94"/>
</symbol>
<symbol name="DOCFIELD">
<wire x1="0" y1="0" x2="71.12" y2="0" width="0.254" layer="94"/>
<wire x1="101.6" y1="15.24" x2="87.63" y2="15.24" width="0.254" layer="94"/>
<wire x1="0" y1="0" x2="0" y2="5.08" width="0.254" layer="94"/>
<wire x1="0" y1="5.08" x2="71.12" y2="5.08" width="0.254" layer="94"/>
<wire x1="0" y1="5.08" x2="0" y2="15.24" width="0.254" layer="94"/>
<wire x1="101.6" y1="15.24" x2="101.6" y2="5.08" width="0.254" layer="94"/>
<wire x1="71.12" y1="5.08" x2="71.12" y2="0" width="0.254" layer="94"/>
<wire x1="71.12" y1="5.08" x2="87.63" y2="5.08" width="0.254" layer="94"/>
<wire x1="71.12" y1="0" x2="101.6" y2="0" width="0.254" layer="94"/>
<wire x1="87.63" y1="15.24" x2="87.63" y2="5.08" width="0.254" layer="94"/>
<wire x1="87.63" y1="15.24" x2="0" y2="15.24" width="0.254" layer="94"/>
<wire x1="87.63" y1="5.08" x2="101.6" y2="5.08" width="0.254" layer="94"/>
<wire x1="101.6" y1="5.08" x2="101.6" y2="0" width="0.254" layer="94"/>
<wire x1="0" y1="15.24" x2="0" y2="22.86" width="0.254" layer="94"/>
<wire x1="101.6" y1="35.56" x2="0" y2="35.56" width="0.254" layer="94"/>
<wire x1="101.6" y1="35.56" x2="101.6" y2="22.86" width="0.254" layer="94"/>
<wire x1="0" y1="22.86" x2="101.6" y2="22.86" width="0.254" layer="94"/>
<wire x1="0" y1="22.86" x2="0" y2="35.56" width="0.254" layer="94"/>
<wire x1="101.6" y1="22.86" x2="101.6" y2="15.24" width="0.254" layer="94"/>
<text x="1.27" y="1.27" size="2.54" layer="94" font="vector">Date:</text>
<text x="12.7" y="1.27" size="2.54" layer="94" font="vector">>LAST_DATE_TIME</text>
<text x="72.39" y="1.27" size="2.54" layer="94" font="vector">Sheet:</text>
<text x="86.36" y="1.27" size="2.54" layer="94" font="vector">>SHEET</text>
<text x="88.9" y="11.43" size="2.54" layer="94" font="vector">REV:</text>
<text x="1.524" y="17.78" size="2.54" layer="94" font="vector">TITLE:</text>
<text x="15.494" y="17.78" size="2.7432" layer="94" font="vector">>DRAWING_NAME</text>
<text x="2.54" y="31.75" size="1.9304" layer="94">Released under the Creative Commons</text>
<text x="2.54" y="24.13" size="1.9304" layer="94"> path_to_url
<text x="1.27" y="11.43" size="2.54" layer="94">Design by:</text>
</symbol>
</symbols>
<devicesets>
<deviceset name="OSHW-LOGO" prefix="LOGO">
<description><b>Open Source Hardware Logo</b>
This logo indicates the piece of hardware it is found on incorporates a OSHW license and/or adheres to the definition of open source hardware found here: path_to_url
<gates>
<gate name="G$1" symbol="OSHW-LOGO" x="-5.08" y="-5.08"/>
</gates>
<devices>
<device name="S-COPPER" package="OSHW-LOGO-S_COPPER">
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M-COPPER" package="OSHW-LOGO-M_COPPER">
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="L-COPPER" package="OSHW-LOGO-L_COPPER">
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="L" package="OSHW-LOGO-L">
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="M" package="OSHW-LOGO-M">
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="S" package="OSHW-LOGO-S">
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="FRAME-LETTER" prefix="FRAME">
<description><b>Schematic Frame</b><p>
Standard 8.5x11 US Letter frame</description>
<gates>
<gate name="G$1" symbol="LETTER_L" x="0" y="0"/>
<gate name="V" symbol="DOCFIELD" x="147.32" y="0" addlevel="must"/>
</gates>
<devices>
<device name="" package="CREATIVE_COMMONS">
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="NO_PACKAGE" package="DUMMY">
<technologies>
<technology name="">
<attribute name="DESIGNER" value="Nobody" constant="no"/>
<attribute name="VERSION" value="v01" constant="no"/>
</technology>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="SparkFun-Connectors">
<description><h3>SparkFun Electronics' preferred foot prints</h3>
In this library you'll find connectors and sockets- basically anything that can be plugged into or onto.<br><br>
We've spent an enormous amount of time creating and checking these footprints and parts, but it is the end user's responsibility to ensure correctness and suitablity for a given componet or application. If you enjoy using this library, please buy one of our products at www.sparkfun.com.
<br><br>
<b>Licensing:</b> Creative Commons ShareAlike 4.0 International - path_to_url
<br><br>
You are welcome to use this library for commercial purposes. For attribution, we ask that when you begin to sell your device using our footprint, you email us with a link to the product being sold. We want bragging rights that we helped (in a very small part) to create your 8th world wonder. We would like the opportunity to feature your device on our homepage.</description>
<packages>
<package name="1X05">
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="11.43" y1="0.635" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X05-1.27MM">
<description>Header for OS4000-T</description>
<wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
<wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
<wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
<wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
<wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
<wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
<wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
<wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
<wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
<wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
<wire x1="4.191" y1="-0.889" x2="4.445" y2="-0.635" width="0.127" layer="21"/>
<wire x1="4.445" y1="-0.635" x2="4.699" y2="-0.889" width="0.127" layer="21"/>
<wire x1="4.699" y1="-0.889" x2="5.461" y2="-0.889" width="0.127" layer="21"/>
<wire x1="5.461" y1="0.889" x2="4.699" y2="0.889" width="0.127" layer="21"/>
<wire x1="4.699" y1="0.889" x2="4.445" y2="0.635" width="0.127" layer="21"/>
<wire x1="4.445" y1="0.635" x2="4.191" y2="0.889" width="0.127" layer="21"/>
<wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
<wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
<wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
<wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
<wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
<wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
<wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
<wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
<wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
<wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
<wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
<wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
<wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
<wire x1="5.461" y1="0.889" x2="5.969" y2="0.381" width="0.127" layer="21"/>
<wire x1="5.969" y1="0.381" x2="5.969" y2="-0.381" width="0.127" layer="21"/>
<wire x1="5.969" y1="-0.381" x2="5.461" y2="-0.889" width="0.127" layer="21"/>
<pad name="5" x="5.08" y="0" drill="0.508" diameter="1"/>
<pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
<pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
<pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
<pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
<text x="-0.508" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="-0.508" y="-1.651" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X05_LOCK">
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="11.43" y1="0.635" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X05_LOCK_LONGPADS">
<description>This footprint was designed to help hold the alignment of a through-hole component (i.e. 6-pin header) while soldering it into place.
You may notice that each hole has been shifted either up or down by 0.005 of an inch from it's more standard position (which is a perfectly straight line).
This slight alteration caused the pins (the squares in the middle) to touch the edges of the holes. Because they are alternating, it causes a "brace"
to hold the component in place. 0.005 has proven to be the perfect amount of "off-center" position when using our standard breakaway headers.
Although looks a little odd when you look at the bare footprint, once you have a header in there, the alteration is very hard to notice. Also,
if you push a header all the way into place, it is covered up entirely on the bottom side. This idea of altering the position of holes to aid alignment
will be further integrated into the Sparkfun Library for other footprints. It can help hold any component with 3 or more connection pins.</description>
<wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="9.144" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.127" x2="11.176" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.127" x2="11.43" y2="-1.1176" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-1.1176" x2="11.1506" y2="-1.397" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.127" x2="11.43" y2="0.8636" width="0.2032" layer="21"/>
<wire x1="11.43" y1="0.8636" x2="11.1506" y2="1.143" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
<pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.016" shape="long" rot="R90"/>
<text x="-1.27" y="1.778" size="1.27" layer="25" font="vector">>NAME</text>
<text x="-1.27" y="-3.302" size="1.27" layer="27" font="vector">>VALUE</text>
<rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="21"/>
<rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="21"/>
<rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="21"/>
<rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="21" rot="R90"/>
<rectangle x1="9.8679" y1="-0.4191" x2="10.4521" y2="0.1651" layer="21"/>
</package>
<package name="1X05_LONGPADS">
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="11.43" y1="0.635" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X05-1MM">
<wire x1="2" y1="2.921" x2="-2.08" y2="2.921" width="0.254" layer="21"/>
<wire x1="3.778" y1="0.762" x2="3.778" y2="-0.635" width="0.254" layer="21"/>
<wire x1="-2.842" y1="-0.635" x2="-3.858" y2="-0.635" width="0.254" layer="21"/>
<wire x1="-3.858" y1="-0.635" x2="-3.858" y2="0.762" width="0.254" layer="21"/>
<wire x1="3.778" y1="-0.635" x2="2.762" y2="-0.635" width="0.254" layer="21"/>
<smd name="NC2" x="3.3" y="2.225" dx="1.2" dy="1.8" layer="1" rot="R180"/>
<smd name="NC1" x="-3.3" y="2.225" dx="1.2" dy="1.8" layer="1" rot="R180"/>
<smd name="5" x="2" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
<smd name="4" x="1" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
<smd name="3" x="0" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
<smd name="2" x="-1" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
<smd name="1" x="-2" y="0" dx="0.6" dy="1.55" layer="1" rot="R180"/>
<text x="1.73" y="-1.73" size="0.4064" layer="25">>NAME</text>
<text x="-3.46" y="-1.73" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X05-1MM-RA">
<wire x1="-2" y1="-4.6" x2="2" y2="-4.6" width="0.254" layer="21"/>
<wire x1="-3.5" y1="-2" x2="-3.5" y2="-0.35" width="0.254" layer="21"/>
<wire x1="2.75" y1="-0.35" x2="3.5" y2="-0.35" width="0.254" layer="21"/>
<wire x1="3.5" y1="-0.35" x2="3.5" y2="-2" width="0.254" layer="21"/>
<wire x1="-3.5" y1="-0.35" x2="-2.75" y2="-0.35" width="0.254" layer="21"/>
<circle x="-3" y="0.3" radius="0.1414" width="0.4" layer="21"/>
<smd name="NC2" x="-3.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
<smd name="NC1" x="3.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
<smd name="1" x="-2" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="2" x="-1" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="3" x="0" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="4" x="1" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="5" x="2" y="0" dx="0.6" dy="1.35" layer="1"/>
<text x="-3.27" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="1.54" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X05_NO_SILK">
<description>No outline in silkscreen</description>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="JST-5-PTH">
<pad name="1" x="-4" y="0" drill="0.7" diameter="1.6"/>
<pad name="2" x="-2" y="0" drill="0.7" diameter="1.6"/>
<pad name="3" x="0" y="0" drill="0.7" diameter="1.6"/>
<pad name="4" x="2" y="0" drill="0.7" diameter="1.6"/>
<text x="-3.27" y="5.27" size="0.4064" layer="25">>Name</text>
<text x="-3.27" y="4" size="0.4064" layer="27">>Value</text>
<pad name="5" x="4" y="0" drill="0.7" diameter="1.6"/>
<wire x1="-5.95" y1="-1.6" x2="-5.95" y2="6" width="0.2032" layer="21"/>
<wire x1="-5.95" y1="6" x2="5.95" y2="6" width="0.2032" layer="21"/>
<wire x1="5.95" y1="6" x2="5.95" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-5.95" y1="-1.6" x2="-5.3" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="5.95" y1="-1.6" x2="5.3" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-5.3" y1="-1.6" x2="-5.3" y2="0" width="0.2032" layer="21"/>
<wire x1="5.3" y1="-1.6" x2="5.3" y2="0" width="0.2032" layer="21"/>
</package>
<package name="JST-5-PTH-VERT">
<wire x1="-5.95" y1="-1.52" x2="-5.95" y2="2.98" width="0.2032" layer="21"/>
<wire x1="-5.95" y1="2.98" x2="5.95" y2="2.98" width="0.2032" layer="21"/>
<wire x1="5.95" y1="-1.52" x2="1" y2="-1.52" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.52" x2="-5.95" y2="-1.52" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.02" x2="1" y2="-1.02" width="0.2032" layer="21"/>
<wire x1="1" y1="-1.02" x2="1" y2="-1.52" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.02" x2="-1" y2="-1.52" width="0.2032" layer="21"/>
<wire x1="5.95" y1="2.98" x2="5.95" y2="-1.52" width="0.2032" layer="21"/>
<pad name="1" x="-4" y="0.18" drill="0.7" diameter="1.6"/>
<pad name="2" x="-2" y="0.18" drill="0.7" diameter="1.6"/>
<pad name="3" x="0" y="0.18" drill="0.7" diameter="1.6"/>
<pad name="4" x="2" y="0.18" drill="0.7" diameter="1.6"/>
<text x="-4" y="3.73" size="0.4064" layer="25">>Name</text>
<text x="0" y="3.73" size="0.4064" layer="27">>Value</text>
<pad name="5" x="4" y="0.18" drill="0.7" diameter="1.6"/>
</package>
<package name="SCREWTERMINAL-3.5MM-5">
<wire x1="-1.75" y1="3.4" x2="15.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="15.75" y1="3.4" x2="15.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="15.75" y1="-2.8" x2="15.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="15.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="15.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="15.75" y1="3.15" x2="16.25" y2="3.15" width="0.2032" layer="21"/>
<wire x1="16.25" y1="3.15" x2="16.25" y2="2.15" width="0.2032" layer="21"/>
<wire x1="16.25" y1="2.15" x2="15.75" y2="2.15" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
<pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
<pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
<pad name="5" x="14" y="0" drill="1.2" diameter="2.032"/>
<text x="-1.27" y="2.54" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X12">
<wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
<wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
<wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
<wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
<wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
<wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
<wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
<wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
<wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
<wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="19.685" y1="1.27" x2="20.955" y2="1.27" width="0.2032" layer="21"/>
<wire x1="20.955" y1="1.27" x2="21.59" y2="0.635" width="0.2032" layer="21"/>
<wire x1="21.59" y1="-0.635" x2="20.955" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="19.685" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
<wire x1="19.05" y1="-0.635" x2="19.685" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="20.955" y1="-1.27" x2="19.685" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="22.225" y1="1.27" x2="23.495" y2="1.27" width="0.2032" layer="21"/>
<wire x1="23.495" y1="1.27" x2="24.13" y2="0.635" width="0.2032" layer="21"/>
<wire x1="24.13" y1="-0.635" x2="23.495" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="22.225" y1="1.27" x2="21.59" y2="0.635" width="0.2032" layer="21"/>
<wire x1="21.59" y1="-0.635" x2="22.225" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="23.495" y1="-1.27" x2="22.225" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="24.765" y1="1.27" x2="26.035" y2="1.27" width="0.2032" layer="21"/>
<wire x1="26.035" y1="1.27" x2="26.67" y2="0.635" width="0.2032" layer="21"/>
<wire x1="26.67" y1="-0.635" x2="26.035" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="24.765" y1="1.27" x2="24.13" y2="0.635" width="0.2032" layer="21"/>
<wire x1="24.13" y1="-0.635" x2="24.765" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="26.035" y1="-1.27" x2="24.765" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="27.305" y1="1.27" x2="28.575" y2="1.27" width="0.2032" layer="21"/>
<wire x1="28.575" y1="1.27" x2="29.21" y2="0.635" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0.635" x2="29.21" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="29.21" y1="-0.635" x2="28.575" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="27.305" y1="1.27" x2="26.67" y2="0.635" width="0.2032" layer="21"/>
<wire x1="26.67" y1="-0.635" x2="27.305" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="28.575" y1="-1.27" x2="27.305" y2="-1.27" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="9" x="20.32" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="10" x="22.86" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="11" x="25.4" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="12" x="27.94" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="21"/>
<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="21"/>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="21"/>
<rectangle x1="20.066" y1="-0.254" x2="20.574" y2="0.254" layer="21"/>
<rectangle x1="22.606" y1="-0.254" x2="23.114" y2="0.254" layer="21"/>
<rectangle x1="25.146" y1="-0.254" x2="25.654" y2="0.254" layer="21"/>
<rectangle x1="27.686" y1="-0.254" x2="28.194" y2="0.254" layer="21"/>
</package>
<package name="1X12_LOCK">
<wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
<wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
<wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
<wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
<wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
<wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
<wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
<wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
<wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="17.145" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
<wire x1="16.51" y1="-0.635" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="19.685" y1="1.27" x2="20.955" y2="1.27" width="0.2032" layer="21"/>
<wire x1="20.955" y1="1.27" x2="21.59" y2="0.635" width="0.2032" layer="21"/>
<wire x1="21.59" y1="-0.635" x2="20.955" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="19.685" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
<wire x1="19.05" y1="-0.635" x2="19.685" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="20.955" y1="-1.27" x2="19.685" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="22.225" y1="1.27" x2="23.495" y2="1.27" width="0.2032" layer="21"/>
<wire x1="23.495" y1="1.27" x2="24.13" y2="0.635" width="0.2032" layer="21"/>
<wire x1="24.13" y1="-0.635" x2="23.495" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="22.225" y1="1.27" x2="21.59" y2="0.635" width="0.2032" layer="21"/>
<wire x1="21.59" y1="-0.635" x2="22.225" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="23.495" y1="-1.27" x2="22.225" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="24.765" y1="1.27" x2="26.035" y2="1.27" width="0.2032" layer="21"/>
<wire x1="26.035" y1="1.27" x2="26.67" y2="0.635" width="0.2032" layer="21"/>
<wire x1="26.67" y1="-0.635" x2="26.035" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="24.765" y1="1.27" x2="24.13" y2="0.635" width="0.2032" layer="21"/>
<wire x1="24.13" y1="-0.635" x2="24.765" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="26.035" y1="-1.27" x2="24.765" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="27.305" y1="1.27" x2="28.575" y2="1.27" width="0.2032" layer="21"/>
<wire x1="28.575" y1="1.27" x2="29.21" y2="0.635" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0.635" x2="29.21" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="29.21" y1="-0.635" x2="28.575" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="27.305" y1="1.27" x2="26.67" y2="0.635" width="0.2032" layer="21"/>
<wire x1="26.67" y1="-0.635" x2="27.305" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="28.575" y1="-1.27" x2="27.305" y2="-1.27" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="9" x="20.32" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="10" x="22.86" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="11" x="25.4" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="12" x="27.94" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="21"/>
<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="21" rot="R90"/>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="21"/>
<rectangle x1="20.066" y1="-0.254" x2="20.574" y2="0.254" layer="21"/>
<rectangle x1="22.606" y1="-0.254" x2="23.114" y2="0.254" layer="21"/>
<rectangle x1="25.146" y1="-0.254" x2="25.654" y2="0.254" layer="21"/>
<rectangle x1="27.686" y1="-0.254" x2="28.194" y2="0.254" layer="21"/>
</package>
<package name="1X12_LOCK_LONGPADS">
<wire x1="1.524" y1="0" x2="1.016" y2="0" width="0.2032" layer="21"/>
<wire x1="4.064" y1="0" x2="3.556" y2="0" width="0.2032" layer="21"/>
<wire x1="6.604" y1="0" x2="6.096" y2="0" width="0.2032" layer="21"/>
<wire x1="9.144" y1="0" x2="8.636" y2="0" width="0.2032" layer="21"/>
<wire x1="11.684" y1="0" x2="11.176" y2="0" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.016" y2="0" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.27" y2="0.9906" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.9906" x2="-0.9906" y2="1.27" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0" x2="-1.27" y2="-0.9906" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.9906" x2="-0.9906" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="14.224" y1="0" x2="13.716" y2="0" width="0.2032" layer="21"/>
<wire x1="16.764" y1="0" x2="16.256" y2="0" width="0.2032" layer="21"/>
<wire x1="19.304" y1="0" x2="18.796" y2="0" width="0.2032" layer="21"/>
<wire x1="21.844" y1="0" x2="21.336" y2="0" width="0.2032" layer="21"/>
<wire x1="24.384" y1="0" x2="23.876" y2="0" width="0.2032" layer="21"/>
<wire x1="26.924" y1="0" x2="26.416" y2="0" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0" x2="29.21" y2="-0.9906" width="0.2032" layer="21"/>
<wire x1="29.21" y1="-0.9906" x2="28.9306" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0" x2="29.21" y2="0.9906" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0.9906" x2="28.9306" y2="1.27" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0" x2="28.956" y2="0" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="4" x="7.62" y="-0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="5" x="10.16" y="0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="6" x="12.7" y="-0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="7" x="15.24" y="0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="8" x="17.78" y="-0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="9" x="20.32" y="0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="10" x="22.86" y="-0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="11" x="25.4" y="0.127" drill="1.016" shape="long" rot="R90"/>
<pad name="12" x="27.94" y="-0.127" drill="1.016" shape="long" rot="R90"/>
<text x="-1.27" y="1.905" size="1.27" layer="25" font="vector">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27" font="vector">>VALUE</text>
<rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="21"/>
<rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="21"/>
<rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="21"/>
<rectangle x1="7.3279" y1="-0.2921" x2="7.9121" y2="0.2921" layer="21" rot="R90"/>
<rectangle x1="9.8679" y1="-0.2921" x2="10.4521" y2="0.2921" layer="21"/>
<rectangle x1="12.4079" y1="-0.2921" x2="12.9921" y2="0.2921" layer="21"/>
<rectangle x1="14.9479" y1="-0.2921" x2="15.5321" y2="0.2921" layer="21"/>
<rectangle x1="17.4879" y1="-0.2921" x2="18.0721" y2="0.2921" layer="21"/>
<rectangle x1="20.0279" y1="-0.2921" x2="20.6121" y2="0.2921" layer="21"/>
<rectangle x1="22.5679" y1="-0.2921" x2="23.1521" y2="0.2921" layer="21" rot="R90"/>
<rectangle x1="25.1079" y1="-0.2921" x2="25.6921" y2="0.2921" layer="21"/>
<rectangle x1="27.6479" y1="-0.2921" x2="28.2321" y2="0.2921" layer="21"/>
</package>
<package name="1X12_MACHINE-PIN-HEADER_LOCK.004">
<wire x1="11.43" y1="0.635" x2="12.065" y2="1.27" width="0.2032" layer="21"/>
<wire x1="12.065" y1="1.27" x2="13.335" y2="1.27" width="0.2032" layer="21"/>
<wire x1="13.335" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
<wire x1="13.97" y1="-0.635" x2="13.335" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="13.335" y1="-1.27" x2="12.065" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="12.065" y1="-1.27" x2="11.43" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="9.525" y2="1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="1.27" x2="10.795" y2="1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="1.27" x2="11.43" y2="0.635" width="0.2032" layer="21"/>
<wire x1="11.43" y1="-0.635" x2="10.795" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="10.795" y1="-1.27" x2="9.525" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="9.525" y1="-1.27" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="26.67" y1="0.635" x2="27.305" y2="1.27" width="0.2032" layer="21"/>
<wire x1="27.305" y1="1.27" x2="28.575" y2="1.27" width="0.2032" layer="21"/>
<wire x1="28.575" y1="1.27" x2="29.21" y2="0.635" width="0.2032" layer="21"/>
<wire x1="29.21" y1="-0.635" x2="28.575" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="28.575" y1="-1.27" x2="27.305" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="27.305" y1="-1.27" x2="26.67" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="22.225" y1="1.27" x2="23.495" y2="1.27" width="0.2032" layer="21"/>
<wire x1="23.495" y1="1.27" x2="24.13" y2="0.635" width="0.2032" layer="21"/>
<wire x1="24.13" y1="-0.635" x2="23.495" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="24.13" y1="0.635" x2="24.765" y2="1.27" width="0.2032" layer="21"/>
<wire x1="24.765" y1="1.27" x2="26.035" y2="1.27" width="0.2032" layer="21"/>
<wire x1="26.035" y1="1.27" x2="26.67" y2="0.635" width="0.2032" layer="21"/>
<wire x1="26.67" y1="-0.635" x2="26.035" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="26.035" y1="-1.27" x2="24.765" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="24.765" y1="-1.27" x2="24.13" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="19.05" y1="0.635" x2="19.685" y2="1.27" width="0.2032" layer="21"/>
<wire x1="19.685" y1="1.27" x2="20.955" y2="1.27" width="0.2032" layer="21"/>
<wire x1="20.955" y1="1.27" x2="21.59" y2="0.635" width="0.2032" layer="21"/>
<wire x1="21.59" y1="-0.635" x2="20.955" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="20.955" y1="-1.27" x2="19.685" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="19.685" y1="-1.27" x2="19.05" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="22.225" y1="1.27" x2="21.59" y2="0.635" width="0.2032" layer="21"/>
<wire x1="21.59" y1="-0.635" x2="22.225" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="23.495" y1="-1.27" x2="22.225" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="14.605" y1="1.27" x2="15.875" y2="1.27" width="0.2032" layer="21"/>
<wire x1="15.875" y1="1.27" x2="16.51" y2="0.635" width="0.2032" layer="21"/>
<wire x1="16.51" y1="-0.635" x2="15.875" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="16.51" y1="0.635" x2="17.145" y2="1.27" width="0.2032" layer="21"/>
<wire x1="17.145" y1="1.27" x2="18.415" y2="1.27" width="0.2032" layer="21"/>
<wire x1="18.415" y1="1.27" x2="19.05" y2="0.635" width="0.2032" layer="21"/>
<wire x1="19.05" y1="-0.635" x2="18.415" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="18.415" y1="-1.27" x2="17.145" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="17.145" y1="-1.27" x2="16.51" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="14.605" y1="1.27" x2="13.97" y2="0.635" width="0.2032" layer="21"/>
<wire x1="13.97" y1="-0.635" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="15.875" y1="-1.27" x2="14.605" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0.635" x2="29.21" y2="-0.635" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="2.54" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="5.08" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="7.62" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="10.16" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="12.7" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="15.24" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="17.78" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="20.32" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="22.86" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="25.4" y="0" radius="0.3302" width="0.0254" layer="21"/>
<circle x="27.94" y="0" radius="0.3302" width="0.0254" layer="21"/>
<pad name="1" x="0" y="0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="-0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="-0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="6" x="12.7" y="-0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="7" x="15.24" y="0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="8" x="17.78" y="-0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="9" x="20.32" y="0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="10" x="22.86" y="-0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="11" x="25.4" y="0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<pad name="12" x="27.94" y="-0.1016" drill="0.889" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
</package>
<package name="1X12_LONGPADS">
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="29.21" y1="0.635" x2="29.21" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="6" x="12.7" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="7" x="15.24" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="8" x="17.78" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="9" x="20.32" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="10" x="22.86" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="11" x="25.4" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="12" x="27.94" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<text x="-1.3462" y="2.4638" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.81" size="1.27" layer="27">>VALUE</text>
<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="21"/>
<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="21"/>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="21"/>
<rectangle x1="20.066" y1="-0.254" x2="20.574" y2="0.254" layer="21"/>
<rectangle x1="22.606" y1="-0.254" x2="23.114" y2="0.254" layer="21"/>
<rectangle x1="25.146" y1="-0.254" x2="25.654" y2="0.254" layer="21"/>
<rectangle x1="27.686" y1="-0.254" x2="28.194" y2="0.254" layer="21"/>
</package>
<package name="1X12_HOLES_ONLY">
<circle x="0" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="2.54" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="5.08" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="7.62" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="10.16" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="12.7" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="15.24" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="17.78" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="20.32" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="22.86" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="25.4" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="27.94" y="0" radius="0.635" width="0.127" layer="21"/>
<pad name="1" x="0" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="6" x="12.7" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="7" x="15.24" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="8" x="17.78" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="9" x="20.32" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="10" x="22.86" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="11" x="25.4" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<pad name="12" x="27.94" y="0" drill="0.889" diameter="0.8128" rot="R90"/>
<hole x="0" y="0" drill="1.4732"/>
<hole x="2.54" y="0" drill="1.4732"/>
<hole x="5.08" y="0" drill="1.4732"/>
<hole x="7.62" y="0" drill="1.4732"/>
<hole x="10.16" y="0" drill="1.4732"/>
<hole x="12.7" y="0" drill="1.4732"/>
<hole x="15.24" y="0" drill="1.4732"/>
<hole x="17.78" y="0" drill="1.4732"/>
<hole x="20.32" y="0" drill="1.4732"/>
<hole x="22.86" y="0" drill="1.4732"/>
<hole x="25.4" y="0" drill="1.4732"/>
<hole x="27.94" y="0" drill="1.4732"/>
</package>
<package name="1X12_NO_SILK_KIT">
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="9" x="20.32" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="10" x="22.86" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<pad name="11" x="25.4" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<circle x="0" y="0" radius="0.508" width="0" layer="29"/>
<circle x="0" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="2.54" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="5.08" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="7.62" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="10.16" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="12.7" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="15.24" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="17.78" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="20.32" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="22.86" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="25.4" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="2.54" y="0" radius="0.508" width="0" layer="29"/>
<circle x="5.08" y="0" radius="0.508" width="0" layer="29"/>
<circle x="7.62" y="0" radius="0.508" width="0" layer="29"/>
<circle x="10.16" y="0" radius="0.508" width="0" layer="29"/>
<circle x="12.7" y="0" radius="0.508" width="0" layer="29"/>
<circle x="15.24" y="0" radius="0.508" width="0" layer="29"/>
<circle x="17.78" y="0" radius="0.508" width="0" layer="29"/>
<circle x="20.32" y="0" radius="0.508" width="0" layer="29"/>
<circle x="22.86" y="0" radius="0.508" width="0" layer="29"/>
<circle x="25.4" y="0" radius="0.508" width="0" layer="29"/>
<pad name="12" x="27.94" y="0" drill="1.016" diameter="1.8796" rot="R90" stop="no"/>
<circle x="27.94" y="0" radius="0.9525" width="0" layer="30"/>
<circle x="27.94" y="0" radius="0.508" width="0" layer="29"/>
</package>
<package name="1X12_NO_SILK">
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="6" x="12.7" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="7" x="15.24" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="8" x="17.78" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="9" x="20.32" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="10" x="22.86" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="11" x="25.4" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="12" x="27.94" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
</package>
<package name="1X12_LOCK_NO_SILK">
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="5" x="10.16" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="6" x="12.7" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="7" x="15.24" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="8" x="17.78" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="9" x="20.32" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="10" x="22.86" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="11" x="25.4" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="12" x="27.94" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="14.986" y1="-0.254" x2="15.494" y2="0.254" layer="21"/>
<rectangle x1="12.446" y1="-0.254" x2="12.954" y2="0.254" layer="21"/>
<rectangle x1="9.906" y1="-0.254" x2="10.414" y2="0.254" layer="21"/>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
<rectangle x1="27.686" y1="-0.254" x2="28.194" y2="0.254" layer="21"/>
<rectangle x1="25.146" y1="-0.254" x2="25.654" y2="0.254" layer="21"/>
<rectangle x1="22.606" y1="-0.254" x2="23.114" y2="0.254" layer="21"/>
<rectangle x1="20.066" y1="-0.254" x2="20.574" y2="0.254" layer="21"/>
<rectangle x1="17.526" y1="-0.254" x2="18.034" y2="0.254" layer="21"/>
</package>
<package name="1X04">
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="MOLEX-1X4">
<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
<wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
<wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
<wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
<wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
<wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796"/>
</package>
<package name="SCREWTERMINAL-3.5MM-4">
<wire x1="-1.75" y1="3.4" x2="12.25" y2="3.4" width="0.2032" layer="21"/>
<wire x1="12.25" y1="3.4" x2="12.25" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="12.25" y1="-2.8" x2="12.25" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="12.25" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="12.25" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="12.25" y1="3.15" x2="12.75" y2="3.15" width="0.2032" layer="21"/>
<wire x1="12.75" y1="3.15" x2="12.75" y2="2.15" width="0.2032" layer="21"/>
<wire x1="12.75" y1="2.15" x2="12.25" y2="2.15" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="3.5" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="7" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="10.5" y="0" radius="0.425" width="0.001" layer="21"/>
<pad name="1" x="0" y="0" drill="1.2" diameter="2.032" shape="square"/>
<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
<pad name="3" x="7" y="0" drill="1.2" diameter="2.032"/>
<pad name="4" x="10.5" y="0" drill="1.2" diameter="2.032"/>
<text x="-1.27" y="2.54" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X04-1.27MM">
<wire x1="-0.381" y1="-0.889" x2="0.381" y2="-0.889" width="0.127" layer="21"/>
<wire x1="0.381" y1="-0.889" x2="0.635" y2="-0.635" width="0.127" layer="21"/>
<wire x1="0.635" y1="-0.635" x2="0.889" y2="-0.889" width="0.127" layer="21"/>
<wire x1="0.889" y1="-0.889" x2="1.651" y2="-0.889" width="0.127" layer="21"/>
<wire x1="1.651" y1="-0.889" x2="1.905" y2="-0.635" width="0.127" layer="21"/>
<wire x1="1.905" y1="-0.635" x2="2.159" y2="-0.889" width="0.127" layer="21"/>
<wire x1="2.159" y1="-0.889" x2="2.921" y2="-0.889" width="0.127" layer="21"/>
<wire x1="2.921" y1="-0.889" x2="3.175" y2="-0.635" width="0.127" layer="21"/>
<wire x1="3.175" y1="-0.635" x2="3.429" y2="-0.889" width="0.127" layer="21"/>
<wire x1="3.429" y1="-0.889" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
<wire x1="4.191" y1="0.889" x2="3.429" y2="0.889" width="0.127" layer="21"/>
<wire x1="3.429" y1="0.889" x2="3.175" y2="0.635" width="0.127" layer="21"/>
<wire x1="3.175" y1="0.635" x2="2.921" y2="0.889" width="0.127" layer="21"/>
<wire x1="2.921" y1="0.889" x2="2.159" y2="0.889" width="0.127" layer="21"/>
<wire x1="2.159" y1="0.889" x2="1.905" y2="0.635" width="0.127" layer="21"/>
<wire x1="1.905" y1="0.635" x2="1.651" y2="0.889" width="0.127" layer="21"/>
<wire x1="1.651" y1="0.889" x2="0.889" y2="0.889" width="0.127" layer="21"/>
<wire x1="0.889" y1="0.889" x2="0.635" y2="0.635" width="0.127" layer="21"/>
<wire x1="0.635" y1="0.635" x2="0.381" y2="0.889" width="0.127" layer="21"/>
<wire x1="0.381" y1="0.889" x2="-0.381" y2="0.889" width="0.127" layer="21"/>
<wire x1="-0.381" y1="0.889" x2="-0.889" y2="0.381" width="0.127" layer="21"/>
<wire x1="-0.889" y1="-0.381" x2="-0.381" y2="-0.889" width="0.127" layer="21"/>
<wire x1="-0.889" y1="0.381" x2="-0.889" y2="-0.381" width="0.127" layer="21"/>
<wire x1="4.191" y1="0.889" x2="4.699" y2="0.381" width="0.127" layer="21"/>
<wire x1="4.699" y1="0.381" x2="4.699" y2="-0.381" width="0.127" layer="21"/>
<wire x1="4.699" y1="-0.381" x2="4.191" y2="-0.889" width="0.127" layer="21"/>
<pad name="4" x="3.81" y="0" drill="0.508" diameter="1"/>
<pad name="3" x="2.54" y="0" drill="0.508" diameter="1"/>
<pad name="2" x="1.27" y="0" drill="0.508" diameter="1"/>
<pad name="1" x="0" y="0" drill="0.508" diameter="1"/>
<text x="-0.508" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="-0.508" y="-1.651" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X04_LOCK">
<wire x1="6.985" y1="1.27" x2="8.255" y2="1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="1.27" x2="8.89" y2="0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.635" x2="8.255" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.985" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.255" y1="-1.27" x2="6.985" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X04_LOCK_LONGPADS">
<description>This footprint was designed to help hold the alignment of a through-hole component (i.e. 6-pin header) while soldering it into place.
You may notice that each hole has been shifted either up or down by 0.005 of an inch from it's more standard position (which is a perfectly straight line).
This slight alteration caused the pins (the squares in the middle) to touch the edges of the holes. Because they are alternating, it causes a "brace"
to hold the component in place. 0.005 has proven to be the perfect amount of "off-center" position when using our standard breakaway headers.
Although looks a little odd when you look at the bare footprint, once you have a header in there, the alteration is very hard to notice. Also,
if you push a header all the way into place, it is covered up entirely on the bottom side. This idea of altering the position of holes to aid alignment
will be further integrated into the Sparkfun Library for other footprints. It can help hold any component with 3 or more connection pins.</description>
<wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="6.604" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.127" x2="8.636" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.127" x2="8.89" y2="-1.1176" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-1.1176" x2="8.6106" y2="-1.397" width="0.2032" layer="21"/>
<wire x1="8.89" y1="-0.127" x2="8.89" y2="0.8636" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.8636" x2="8.6106" y2="1.143" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
<pad name="4" x="7.62" y="-0.254" drill="1.016" shape="long" rot="R90"/>
<text x="-1.27" y="1.778" size="1.27" layer="25" font="vector">>NAME</text>
<text x="-1.27" y="-3.302" size="1.27" layer="27" font="vector">>VALUE</text>
<rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="21"/>
<rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="21"/>
<rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="21"/>
<rectangle x1="7.3279" y1="-0.4191" x2="7.9121" y2="0.1651" layer="21" rot="R90"/>
</package>
<package name="MOLEX-1X4_LOCK">
<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="8.89" y1="3.048" x2="8.89" y2="-2.54" width="0.127" layer="21"/>
<wire x1="8.89" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
<wire x1="8.89" y1="-2.54" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
<wire x1="7.62" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
<wire x1="0" y1="-1.27" x2="7.62" y2="-1.27" width="0.127" layer="21"/>
<wire x1="7.62" y1="-1.27" x2="7.62" y2="-2.54" width="0.127" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
<pad name="4" x="7.62" y="-0.127" drill="1.016" diameter="1.8796"/>
</package>
<package name="1X04-SMD">
<wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="21"/>
<wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="21"/>
<wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="21"/>
<wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="21"/>
<wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="21"/>
<wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="21"/>
<wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="21"/>
<wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="21"/>
<smd name="4" x="3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
<smd name="3" x="1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
<smd name="2" x="-1.27" y="5" dx="3" dy="1" layer="1" rot="R90"/>
<smd name="1" x="-3.81" y="5" dx="3" dy="1" layer="1" rot="R90"/>
<hole x="-2.54" y="0" drill="1.4"/>
<hole x="2.54" y="0" drill="1.4"/>
</package>
<package name="1X04_LONGPADS">
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="8.89" y1="0.635" x2="8.89" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<text x="-1.3462" y="2.4638" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.81" size="1.27" layer="27">>VALUE</text>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X04_NO_SILK">
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="JST-4-PTH">
<pad name="1" x="-3" y="0" drill="0.7" diameter="1.6"/>
<pad name="2" x="-1" y="0" drill="0.7" diameter="1.6"/>
<pad name="3" x="1" y="0" drill="0.7" diameter="1.6"/>
<pad name="4" x="3" y="0" drill="0.7" diameter="1.6"/>
<text x="-2.27" y="5.27" size="0.4064" layer="25">>Name</text>
<text x="-2.27" y="4" size="0.4064" layer="27">>Value</text>
<text x="-3.4" y="0.7" size="1.27" layer="21">+</text>
<text x="-1.4" y="0.7" size="1.27" layer="21">-</text>
<text x="0.7" y="0.9" size="0.8" layer="21">S</text>
<text x="2.7" y="0.9" size="0.8" layer="21">S</text>
<wire x1="-4.95" y1="-1.6" x2="-4.95" y2="6" width="0.2032" layer="21"/>
<wire x1="-4.95" y1="6" x2="4.95" y2="6" width="0.2032" layer="21"/>
<wire x1="4.95" y1="6" x2="4.95" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-4.95" y1="-1.6" x2="-4.3" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="4.95" y1="-1.6" x2="4.3" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-4.3" y1="-1.6" x2="-4.3" y2="0" width="0.2032" layer="21"/>
<wire x1="4.3" y1="-1.6" x2="4.3" y2="0" width="0.2032" layer="21"/>
</package>
<package name="SCREWTERMINAL-3.5MM-4_LOCK">
<wire x1="-2.3" y1="3.4" x2="12.8" y2="3.4" width="0.2032" layer="21"/>
<wire x1="12.8" y1="3.4" x2="12.8" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="12.8" y1="-2.8" x2="12.8" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="12.8" y1="-3.6" x2="-2.3" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="-2.3" y1="-3.6" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-2.3" y1="-2.8" x2="-2.3" y2="3.4" width="0.2032" layer="21"/>
<wire x1="12.8" y1="-2.8" x2="-2.3" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-2.3" y1="-1.35" x2="-2.7" y2="-1.35" width="0.2032" layer="21"/>
<wire x1="-2.7" y1="-1.35" x2="-2.7" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="-2.7" y1="-2.35" x2="-2.3" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="12.8" y1="3.15" x2="13.2" y2="3.15" width="0.2032" layer="21"/>
<wire x1="13.2" y1="3.15" x2="13.2" y2="2.15" width="0.2032" layer="21"/>
<wire x1="13.2" y1="2.15" x2="12.8" y2="2.15" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="3.5" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="7" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="10.5" y="0" radius="0.425" width="0.001" layer="21"/>
<pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
<pad name="2" x="3.6778" y="0" drill="1.2" diameter="2.032"/>
<pad name="3" x="6.8222" y="0" drill="1.2" diameter="2.032"/>
<pad name="4" x="10.6778" y="0" drill="1.2" diameter="2.032"/>
<text x="-1.27" y="2.54" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X04-1MM-RA">
<wire x1="-1.5" y1="-4.6" x2="1.5" y2="-4.6" width="0.254" layer="21"/>
<wire x1="-3" y1="-2" x2="-3" y2="-0.35" width="0.254" layer="21"/>
<wire x1="2.25" y1="-0.35" x2="3" y2="-0.35" width="0.254" layer="21"/>
<wire x1="3" y1="-0.35" x2="3" y2="-2" width="0.254" layer="21"/>
<wire x1="-3" y1="-0.35" x2="-2.25" y2="-0.35" width="0.254" layer="21"/>
<circle x="-2.5" y="0.3" radius="0.1414" width="0.4" layer="21"/>
<smd name="NC2" x="-2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
<smd name="NC1" x="2.8" y="-3.675" dx="1.2" dy="2" layer="1"/>
<smd name="1" x="-1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="2" x="-0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="3" x="0.5" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="4" x="1.5" y="0" dx="0.6" dy="1.35" layer="1"/>
<text x="-1.73" y="1.73" size="0.4064" layer="25" rot="R180">>NAME</text>
<text x="3.46" y="1.73" size="0.4064" layer="27" rot="R180">>VALUE</text>
</package>
<package name="1X04_SMD_STRAIGHT_COMBO">
<wire x1="7.62" y1="1.27" x2="7.62" y2="-1.27" width="0.4064" layer="1"/>
<wire x1="5.08" y1="1.27" x2="5.08" y2="-1.27" width="0.4064" layer="1"/>
<wire x1="2.54" y1="1.27" x2="2.54" y2="-1.27" width="0.4064" layer="1"/>
<wire x1="0" y1="1.27" x2="0" y2="-1.27" width="0.4064" layer="1"/>
<wire x1="-1.37" y1="-1.25" x2="-1.37" y2="1.25" width="0.1778" layer="21"/>
<wire x1="8.99" y1="1.25" x2="8.99" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-0.73" y1="-1.25" x2="-1.37" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="8.99" y1="-1.25" x2="8.32" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="8.32" y1="1.25" x2="8.99" y2="1.25" width="0.1778" layer="21"/>
<wire x1="-1.37" y1="1.25" x2="-0.73" y2="1.25" width="0.1778" layer="21"/>
<wire x1="5.869" y1="-1.29" x2="6.831" y2="-1.29" width="0.1778" layer="21"/>
<wire x1="5.869" y1="1.25" x2="6.831" y2="1.25" width="0.1778" layer="21"/>
<wire x1="3.329" y1="-1.29" x2="4.291" y2="-1.29" width="0.1778" layer="21"/>
<wire x1="3.329" y1="1.25" x2="4.291" y2="1.25" width="0.1778" layer="21"/>
<wire x1="0.789" y1="-1.29" x2="1.751" y2="-1.29" width="0.1778" layer="21"/>
<wire x1="0.789" y1="1.25" x2="1.751" y2="1.25" width="0.1778" layer="21"/>
<smd name="3" x="5.08" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
<smd name="1" x="0" y="-1.65" dx="2" dy="1" layer="1" rot="R270"/>
<smd name="4" x="7.62" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
<smd name="2" x="2.54" y="1.65" dx="2" dy="1" layer="1" rot="R270"/>
<smd name="1-2" x="0" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
<smd name="2-2" x="2.54" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
<smd name="3-2" x="5.08" y="1.65" dx="2" dy="1" layer="1" rot="R90"/>
<smd name="4-2" x="7.62" y="-1.65" dx="2" dy="1" layer="1" rot="R90"/>
<text x="0" y="2.921" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="0" y="-4.191" size="1.27" layer="27">>VALUE</text>
</package>
<package name="1X04-SMD_LONG">
<wire x1="5.08" y1="1.25" x2="-5.08" y2="1.25" width="0.127" layer="21"/>
<wire x1="-5.08" y1="1.25" x2="-5.08" y2="-1.25" width="0.127" layer="21"/>
<wire x1="-5.08" y1="-1.25" x2="-3.81" y2="-1.25" width="0.127" layer="21"/>
<wire x1="-3.81" y1="-1.25" x2="-1.27" y2="-1.25" width="0.127" layer="21"/>
<wire x1="-1.27" y1="-1.25" x2="1.27" y2="-1.25" width="0.127" layer="21"/>
<wire x1="1.27" y1="-1.25" x2="3.81" y2="-1.25" width="0.127" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="5.08" y2="-1.25" width="0.127" layer="21"/>
<wire x1="5.08" y1="-1.25" x2="5.08" y2="1.25" width="0.127" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="3.81" y2="-7.25" width="0.127" layer="21"/>
<wire x1="1.27" y1="-1.25" x2="1.27" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-1.27" y1="-1.25" x2="-1.27" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-3.81" y1="-1.25" x2="-3.81" y2="-7.25" width="0.127" layer="21"/>
<smd name="4" x="3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
<smd name="3" x="1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
<smd name="2" x="-1.27" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
<smd name="1" x="-3.81" y="5.5" dx="4" dy="1" layer="1" rot="R90"/>
<hole x="-2.54" y="0" drill="1.4"/>
<hole x="2.54" y="0" drill="1.4"/>
</package>
<package name="JST-4-PTH-VERT">
<wire x1="-4.95" y1="-2.25" x2="-4.95" y2="2.25" width="0.2032" layer="21"/>
<wire x1="-4.95" y1="2.25" x2="4.95" y2="2.25" width="0.2032" layer="21"/>
<wire x1="4.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="-1" y1="-2.25" x2="-4.95" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
<wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="4.95" y1="2.25" x2="4.95" y2="-2.25" width="0.2032" layer="21"/>
<pad name="1" x="-3" y="-0.55" drill="0.7" diameter="1.6"/>
<pad name="2" x="-1" y="-0.55" drill="0.7" diameter="1.6"/>
<pad name="3" x="1" y="-0.55" drill="0.7" diameter="1.6"/>
<pad name="4" x="3" y="-0.55" drill="0.7" diameter="1.6"/>
<text x="-3" y="3" size="0.4064" layer="25">>Name</text>
<text x="1" y="3" size="0.4064" layer="27">>Value</text>
<text x="-1.4" y="0.75" size="1.27" layer="21">+</text>
<text x="0.6" y="0.75" size="1.27" layer="21">-</text>
<text x="2.7" y="0.95" size="0.8" layer="21">Y</text>
<text x="-3.3" y="0.95" size="0.8" layer="21">B</text>
</package>
<package name="1X04_SMD_RA_FEMALE">
<wire x1="-5.205" y1="4.25" x2="-5.205" y2="-4.25" width="0.1778" layer="21"/>
<wire x1="5.205" y1="4.25" x2="-5.205" y2="4.25" width="0.1778" layer="21"/>
<wire x1="5.205" y1="-4.25" x2="5.205" y2="4.25" width="0.1778" layer="21"/>
<wire x1="-5.205" y1="-4.25" x2="5.205" y2="-4.25" width="0.1778" layer="21"/>
<rectangle x1="-1.59" y1="6.8" x2="-0.95" y2="7.65" layer="21"/>
<rectangle x1="0.95" y1="6.8" x2="1.59" y2="7.65" layer="21"/>
<rectangle x1="-4.13" y1="6.8" x2="-3.49" y2="7.65" layer="21"/>
<smd name="3" x="1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
<smd name="2" x="-1.27" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
<smd name="1" x="-3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
<text x="-4.425" y="2.775" size="1" layer="27">>Value</text>
<text x="-4.225" y="-3.395" size="1" layer="25">>Name</text>
<rectangle x1="3.49" y1="6.8" x2="4.13" y2="7.65" layer="21"/>
<smd name="4" x="3.81" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
</package>
<package name="1X04-1.5MM_JST">
<pad name="4" x="4.5" y="0" drill="0.7"/>
<pad name="3" x="3" y="0" drill="0.7"/>
<pad name="2" x="1.5" y="0" drill="0.7"/>
<pad name="1" x="0" y="0" drill="0.7"/>
<text x="-0.508" y="1.27" size="0.4064" layer="25">>NAME</text>
<text x="-0.508" y="-1.651" size="0.4064" layer="27">>VALUE</text>
<wire x1="-1.5" y1="2.2" x2="6" y2="2.2" width="0.3048" layer="21"/>
<wire x1="6" y1="2.2" x2="6" y2="-1.5" width="0.3048" layer="21"/>
<wire x1="6" y1="-1.5" x2="4.5" y2="-1.5" width="0.3048" layer="21"/>
<wire x1="4.5" y1="-1.5" x2="4.5" y2="-1" width="0.3048" layer="21"/>
<wire x1="4.5" y1="-1" x2="0" y2="-1" width="0.3048" layer="21"/>
<wire x1="0" y1="-1" x2="0" y2="-1.5" width="0.3048" layer="21"/>
<wire x1="0" y1="-1.5" x2="-1.5" y2="-1.5" width="0.3048" layer="21"/>
<wire x1="-1.5" y1="-1.5" x2="-1.5" y2="2.2" width="0.3048" layer="21"/>
</package>
<package name="1X04_NO_SILK_ALL_ROUND">
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="4" x="7.62" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="7.366" y1="-0.254" x2="7.874" y2="0.254" layer="21"/>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X03">
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" shape="square" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="MOLEX-1X3">
<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="6.35" y1="3.048" x2="6.35" y2="-2.54" width="0.127" layer="21"/>
<wire x1="6.35" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
<wire x1="6.35" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
<wire x1="5.08" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
<wire x1="0" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
<wire x1="5.08" y1="-1.27" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" shape="square"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796"/>
</package>
<package name="SCREWTERMINAL-3.5MM-3">
<wire x1="-1.75" y1="3.4" x2="8.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="8.75" y1="3.4" x2="8.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="8.75" y1="-2.8" x2="8.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="8.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="8.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="8.75" y1="3.15" x2="9.25" y2="3.15" width="0.2032" layer="21"/>
<wire x1="9.25" y1="3.15" x2="9.25" y2="2.15" width="0.2032" layer="21"/>
<wire x1="9.25" y1="2.15" x2="8.75" y2="2.15" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.2" diameter="2.413" shape="square"/>
<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.413"/>
<pad name="3" x="7" y="0" drill="1.2" diameter="2.413"/>
<text x="-1.27" y="2.54" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X03_LOCK">
<wire x1="3.81" y1="0.635" x2="4.445" y2="1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="1.27" x2="5.715" y2="1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="1.27" x2="6.35" y2="0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.635" x2="5.715" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="5.715" y1="-1.27" x2="4.445" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="4.445" y1="-1.27" x2="3.81" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="0.635" y2="1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="1.27" x2="1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="1.27" y1="-0.635" x2="0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.27" y1="0.635" x2="1.905" y2="1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="1.27" x2="3.175" y2="1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="1.27" x2="3.81" y2="0.635" width="0.2032" layer="21"/>
<wire x1="3.81" y1="-0.635" x2="3.175" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="3.175" y1="-1.27" x2="1.905" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="1.905" y1="-1.27" x2="1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="-0.635" y1="1.27" x2="-1.27" y2="0.635" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.635" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="0.635" y1="-1.27" x2="-0.635" y2="-1.27" width="0.2032" layer="21"/>
<wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X03_LOCK_LONGPADS">
<description>This footprint was designed to help hold the alignment of a through-hole component (i.e. 6-pin header) while soldering it into place.
You may notice that each hole has been shifted either up or down by 0.005 of an inch from it's more standard position (which is a perfectly straight line).
This slight alteration caused the pins (the squares in the middle) to touch the edges of the holes. Because they are alternating, it causes a "brace"
to hold the component in place. 0.005 has proven to be the perfect amount of "off-center" position when using our standard breakaway headers.
Although looks a little odd when you look at the bare footprint, once you have a header in there, the alteration is very hard to notice. Also,
if you push a header all the way into place, it is covered up entirely on the bottom side. This idea of altering the position of holes to aid alignment
will be further integrated into the Sparkfun Library for other footprints. It can help hold any component with 3 or more connection pins.</description>
<wire x1="1.524" y1="-0.127" x2="1.016" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="4.064" y1="-0.127" x2="3.556" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.016" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="0.8636" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="0.8636" x2="-0.9906" y2="1.143" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-0.127" x2="-1.27" y2="-1.1176" width="0.2032" layer="21"/>
<wire x1="-1.27" y1="-1.1176" x2="-0.9906" y2="-1.397" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.127" x2="6.096" y2="-0.127" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.127" x2="6.35" y2="-1.1176" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-1.1176" x2="6.0706" y2="-1.397" width="0.2032" layer="21"/>
<wire x1="6.35" y1="-0.127" x2="6.35" y2="0.8636" width="0.2032" layer="21"/>
<wire x1="6.35" y1="0.8636" x2="6.0706" y2="1.143" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.016" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="-0.254" drill="1.016" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" shape="long" rot="R90"/>
<text x="-1.27" y="1.778" size="1.27" layer="25" font="vector">>NAME</text>
<text x="-1.27" y="-3.302" size="1.27" layer="27" font="vector">>VALUE</text>
<rectangle x1="-0.2921" y1="-0.4191" x2="0.2921" y2="0.1651" layer="21"/>
<rectangle x1="2.2479" y1="-0.4191" x2="2.8321" y2="0.1651" layer="21"/>
<rectangle x1="4.7879" y1="-0.4191" x2="5.3721" y2="0.1651" layer="21"/>
</package>
<package name="MOLEX-1X3_LOCK">
<wire x1="-1.27" y1="3.048" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="6.35" y1="3.048" x2="6.35" y2="-2.54" width="0.127" layer="21"/>
<wire x1="6.35" y1="3.048" x2="-1.27" y2="3.048" width="0.127" layer="21"/>
<wire x1="6.35" y1="-2.54" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
<wire x1="5.08" y1="-2.54" x2="0" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="-1.27" y2="-2.54" width="0.127" layer="21"/>
<wire x1="0" y1="-2.54" x2="0" y2="-1.27" width="0.127" layer="21"/>
<wire x1="0" y1="-1.27" x2="5.08" y2="-1.27" width="0.127" layer="21"/>
<wire x1="5.08" y1="-1.27" x2="5.08" y2="-2.54" width="0.127" layer="21"/>
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" shape="square"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796"/>
<rectangle x1="-0.2921" y1="-0.2921" x2="0.2921" y2="0.2921" layer="21"/>
<rectangle x1="2.2479" y1="-0.2921" x2="2.8321" y2="0.2921" layer="21"/>
<rectangle x1="4.7879" y1="-0.2921" x2="5.3721" y2="0.2921" layer="21"/>
</package>
<package name="SCREWTERMINAL-3.5MM-3_LOCK.007S">
<wire x1="-1.75" y1="3.4" x2="8.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="8.75" y1="3.4" x2="8.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="8.75" y1="-2.8" x2="8.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="8.75" y1="-3.6" x2="-1.75" y2="-3.6" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-3.6" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-2.8" x2="-1.75" y2="3.4" width="0.2032" layer="21"/>
<wire x1="8.75" y1="-2.8" x2="-1.75" y2="-2.8" width="0.2032" layer="21"/>
<wire x1="-1.75" y1="-1.35" x2="-2.25" y2="-1.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-1.35" x2="-2.25" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="-2.25" y1="-2.35" x2="-1.75" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="8.75" y1="3.15" x2="9.25" y2="3.15" width="0.2032" layer="21"/>
<wire x1="9.25" y1="3.15" x2="9.25" y2="2.15" width="0.2032" layer="21"/>
<wire x1="9.25" y1="2.15" x2="8.75" y2="2.15" width="0.2032" layer="21"/>
<circle x="0" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="3.5" y="0" radius="0.425" width="0.001" layer="21"/>
<circle x="7" y="0" radius="0.425" width="0.001" layer="21"/>
<pad name="1" x="-0.1778" y="0" drill="1.2" diameter="2.032" shape="square"/>
<pad name="2" x="3.5" y="0" drill="1.2" diameter="2.032"/>
<pad name="3" x="7.1778" y="0" drill="1.2" diameter="2.032"/>
<text x="-1.27" y="2.54" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X03_NO_SILK">
<pad name="1" x="0" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="1X03_LONGPADS">
<wire x1="-1.27" y1="0.635" x2="-1.27" y2="-0.635" width="0.2032" layer="21"/>
<wire x1="6.35" y1="0.635" x2="6.35" y2="-0.635" width="0.2032" layer="21"/>
<pad name="1" x="0" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="1.1176" diameter="1.8796" shape="long" rot="R90"/>
<text x="-1.3462" y="2.4638" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.81" size="1.27" layer="27">>VALUE</text>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="JST-3-PTH">
<wire x1="-3.95" y1="-1.6" x2="-3.95" y2="6" width="0.2032" layer="21"/>
<wire x1="-3.95" y1="6" x2="3.95" y2="6" width="0.2032" layer="21"/>
<wire x1="3.95" y1="6" x2="3.95" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-3.95" y1="-1.6" x2="-3.3" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="3.95" y1="-1.6" x2="3.3" y2="-1.6" width="0.2032" layer="21"/>
<wire x1="-3.3" y1="-1.6" x2="-3.3" y2="0" width="0.2032" layer="21"/>
<wire x1="3.3" y1="-1.6" x2="3.3" y2="0" width="0.2032" layer="21"/>
<pad name="1" x="-2" y="0" drill="0.7" diameter="1.6"/>
<pad name="2" x="0" y="0" drill="0.7" diameter="1.6"/>
<pad name="3" x="2" y="0" drill="0.7" diameter="1.6"/>
<text x="-1.27" y="5.24" size="0.4064" layer="25">>Name</text>
<text x="-1.27" y="3.97" size="0.4064" layer="27">>Value</text>
<text x="-2.4" y="0.67" size="1.27" layer="21">+</text>
<text x="-0.4" y="0.67" size="1.27" layer="21">-</text>
<text x="1.7" y="0.87" size="0.8" layer="21">S</text>
</package>
<package name="1X03_PP_HOLES_ONLY">
<circle x="0" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="2.54" y="0" radius="0.635" width="0.127" layer="21"/>
<circle x="5.08" y="0" radius="0.635" width="0.127" layer="21"/>
<pad name="1" x="0" y="0" drill="0.9" diameter="0.8128" rot="R90"/>
<pad name="2" x="2.54" y="0" drill="0.9" diameter="0.8128" rot="R90"/>
<pad name="3" x="5.08" y="0" drill="0.9" diameter="0.8128" rot="R90"/>
<hole x="0" y="0" drill="1.4732"/>
<hole x="2.54" y="0" drill="1.4732"/>
<hole x="5.08" y="0" drill="1.4732"/>
</package>
<package name="SCREWTERMINAL-5MM-3">
<wire x1="-3.1" y1="4.2" x2="13.1" y2="4.2" width="0.2032" layer="21"/>
<wire x1="13.1" y1="4.2" x2="13.1" y2="-2.3" width="0.2032" layer="21"/>
<wire x1="13.1" y1="-2.3" x2="13.1" y2="-3.3" width="0.2032" layer="21"/>
<wire x1="13.1" y1="-3.3" x2="-3.1" y2="-3.3" width="0.2032" layer="21"/>
<wire x1="-3.1" y1="-3.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
<wire x1="-3.1" y1="-2.3" x2="-3.1" y2="4.2" width="0.2032" layer="21"/>
<wire x1="13.1" y1="-2.3" x2="-3.1" y2="-2.3" width="0.2032" layer="21"/>
<wire x1="-3.1" y1="-1.35" x2="-3.7" y2="-1.35" width="0.2032" layer="21"/>
<wire x1="-3.7" y1="-1.35" x2="-3.7" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="-3.7" y1="-2.35" x2="-3.1" y2="-2.35" width="0.2032" layer="21"/>
<wire x1="13.1" y1="4" x2="13.7" y2="4" width="0.2032" layer="21"/>
<wire x1="13.7" y1="4" x2="13.7" y2="3" width="0.2032" layer="21"/>
<wire x1="13.7" y1="3" x2="13.1" y2="3" width="0.2032" layer="21"/>
<circle x="2.5" y="3.7" radius="0.2828" width="0.127" layer="21"/>
<pad name="1" x="0" y="0" drill="1.3" diameter="2.413" shape="square"/>
<pad name="2" x="5" y="0" drill="1.3" diameter="2.413"/>
<pad name="3" x="10" y="0" drill="1.3" diameter="2.413"/>
<text x="-1.27" y="2.54" size="0.4064" layer="25">>NAME</text>
<text x="-1.27" y="1.27" size="0.4064" layer="27">>VALUE</text>
</package>
<package name="1X03_LOCK_NO_SILK">
<pad name="1" x="0" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="2" x="2.54" y="-0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<pad name="3" x="5.08" y="0.127" drill="1.016" diameter="1.8796" rot="R90"/>
<text x="-1.3462" y="1.8288" size="1.27" layer="25" ratio="10">>NAME</text>
<text x="-1.27" y="-3.175" size="1.27" layer="27">>VALUE</text>
<rectangle x1="4.826" y1="-0.254" x2="5.334" y2="0.254" layer="21"/>
<rectangle x1="2.286" y1="-0.254" x2="2.794" y2="0.254" layer="21"/>
<rectangle x1="-0.254" y1="-0.254" x2="0.254" y2="0.254" layer="21"/>
</package>
<package name="JST-3-SMD">
<wire x1="-4.99" y1="-2.07" x2="-4.99" y2="-5.57" width="0.2032" layer="21"/>
<wire x1="-4.99" y1="-5.57" x2="-4.19" y2="-5.57" width="0.2032" layer="21"/>
<wire x1="-4.19" y1="-5.57" x2="-4.19" y2="-3.07" width="0.2032" layer="21"/>
<wire x1="-4.19" y1="-3.07" x2="-2.99" y2="-3.07" width="0.2032" layer="21"/>
<wire x1="3.01" y1="-3.07" x2="4.21" y2="-3.07" width="0.2032" layer="21"/>
<wire x1="4.21" y1="-3.07" x2="4.21" y2="-5.57" width="0.2032" layer="21"/>
<wire x1="4.21" y1="-5.57" x2="5.01" y2="-5.57" width="0.2032" layer="21"/>
<wire x1="5.01" y1="-5.57" x2="5.01" y2="-2.07" width="0.2032" layer="21"/>
<wire x1="3.01" y1="1.93" x2="-2.99" y2="1.93" width="0.2032" layer="21"/>
<smd name="1" x="-1.99" y="-4.77" dx="1" dy="4.6" layer="1"/>
<smd name="3" x="2.01" y="-4.77" dx="1" dy="4.6" layer="1"/>
<smd name="NC1" x="-4.39" y="0.43" dx="3.4" dy="1.6" layer="1" rot="R90"/>
<smd name="NC2" x="4.41" y="0.43" dx="3.4" dy="1.6" layer="1" rot="R90"/>
<smd name="2" x="0.01" y="-4.77" dx="1" dy="4.6" layer="1"/>
<text x="-2.26" y="0.2" size="0.4064" layer="25">>Name</text>
<text x="-2.26" y="-1.07" size="0.4064" layer="27">>Value</text>
</package>
<package name="1X03-1MM-RA">
<wire x1="-1" y1="-4.6" x2="1" y2="-4.6" width="0.254" layer="21"/>
<wire x1="-2.5" y1="-2" x2="-2.5" y2="-0.35" width="0.254" layer="21"/>
<wire x1="1.75" y1="-0.35" x2="2.4997" y2="-0.35" width="0.254" layer="21"/>
<wire x1="2.4997" y1="-0.35" x2="2.4997" y2="-2" width="0.254" layer="21"/>
<wire x1="-2.5" y1="-0.35" x2="-1.75" y2="-0.35" width="0.254" layer="21"/>
<circle x="-2" y="0.3" radius="0.1414" width="0.4" layer="21"/>
<smd name="NC2" x="-2.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
<smd name="NC1" x="2.3" y="-3.675" dx="1.2" dy="2" layer="1"/>
<smd name="1" x="-1" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="2" x="0" y="0" dx="0.6" dy="1.35" layer="1"/>
<smd name="3" x="1" y="0" dx="0.6" dy="1.35" layer="1"/>
<text x="-1.73" y="1.73" size="0.4064" layer="25" rot="R180">>NAME</text>
<text x="3.46" y="1.73" size="0.4064" layer="27" rot="R180">>VALUE</text>
</package>
<package name="1X03_SMD_RA_FEMALE">
<wire x1="-3.935" y1="4.25" x2="-3.935" y2="-4.25" width="0.1778" layer="21"/>
<wire x1="3.935" y1="4.25" x2="-3.935" y2="4.25" width="0.1778" layer="21"/>
<wire x1="3.935" y1="-4.25" x2="3.935" y2="4.25" width="0.1778" layer="21"/>
<wire x1="-3.935" y1="-4.25" x2="3.935" y2="-4.25" width="0.1778" layer="21"/>
<rectangle x1="-0.32" y1="6.8" x2="0.32" y2="7.65" layer="21"/>
<rectangle x1="2.22" y1="6.8" x2="2.86" y2="7.65" layer="21"/>
<rectangle x1="-2.86" y1="6.8" x2="-2.22" y2="7.65" layer="21"/>
<smd name="3" x="2.54" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
<smd name="2" x="0" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
<smd name="1" x="-2.54" y="7.225" dx="1.25" dy="3" layer="1" rot="R180"/>
<text x="-3.155" y="2.775" size="1" layer="27">>Value</text>
<text x="-2.955" y="-3.395" size="1" layer="25">>Name</text>
</package>
<package name="1X03_SMD_RA_MALE">
<wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="21"/>
<rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="21"/>
<rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="21"/>
<rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="21"/>
<smd name="1" x="-2.54" y="5" dx="3" dy="1" layer="1" rot="R90"/>
<smd name="2" x="0" y="5" dx="3" dy="1" layer="1" rot="R90"/>
<smd name="3" x="2.54" y="5" dx="3" dy="1" layer="1" rot="R90"/>
</package>
<package name="1X03_SMD_RA_MALE_POST">
<description><h3>SMD 3-Pin Male Right-Angle Header w/ Alignment posts</h3>
Matches 4UCONN part # 11026<br>
<a href="path_to_url">path_to_url
<wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="21"/>
<rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="21"/>
<rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="21"/>
<rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="21"/>
<smd name="1" x="-2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<smd name="2" x="0" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<smd name="3" x="2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<hole x="-1.27" y="0" drill="1.6"/>
<hole x="1.27" y="0" drill="1.6"/>
</package>
<package name="JST-3-PTH-VERT">
<description>This 3-pin connector mates with the JST cable sold on SparkFun.</description>
<wire x1="-3.95" y1="-2.25" x2="-3.95" y2="2.25" width="0.2032" layer="21"/>
<wire x1="-3.95" y1="2.25" x2="3.95" y2="2.25" width="0.2032" layer="21"/>
<wire x1="3.95" y1="2.25" x2="3.95" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="3.95" y1="-2.25" x2="1" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="-1" y1="-2.25" x2="-3.95" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.75" x2="1" y2="-1.75" width="0.2032" layer="21"/>
<wire x1="1" y1="-1.75" x2="1" y2="-2.25" width="0.2032" layer="21"/>
<wire x1="-1" y1="-1.75" x2="-1" y2="-2.25" width="0.2032" layer="21"/>
<pad name="1" x="-2" y="-0.55" drill="0.7" diameter="1.6"/>
<pad name="2" x="0" y="-0.55" drill="0.7" diameter="1.6"/>
<pad name="3" x="2" y="-0.55" drill="0.7" diameter="1.6"/>
<text x="-3" y="3" size="0.4064" layer="25">>Name</text>
<text x="1" y="3" size="0.4064" layer="27">>Value</text>
<text x="-2.4" y="0.75" size="1.27" layer="21">+</text>
<text x="-0.4" y="0.75" size="1.27" layer="21">-</text>
<text x="1.7" y="0.95" size="0.8" layer="21">S</text>
</package>
<package name="1X03_SMD_RA_MALE_POST_SMALLER">
<wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="21"/>
<rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="21"/>
<rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="21"/>
<rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="21"/>
<smd name="1" x="-2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<smd name="2" x="0" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<smd name="3" x="2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<hole x="-1.27" y="0" drill="1.3589"/>
<hole x="1.27" y="0" drill="1.3589"/>
</package>
<package name="1X03_SMD_RA_MALE_POST_SMALLEST">
<wire x1="3.81" y1="1.25" x2="-3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="-3.81" y1="1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="2.53" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="-0.01" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-2.55" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-3.81" y2="-1.25" width="0.1778" layer="21"/>
<wire x1="3.81" y1="-1.25" x2="3.81" y2="1.25" width="0.1778" layer="21"/>
<wire x1="2.53" y1="-1.25" x2="2.53" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-0.01" y1="-1.25" x2="-0.01" y2="-7.25" width="0.127" layer="21"/>
<wire x1="-2.55" y1="-1.25" x2="-2.55" y2="-7.25" width="0.127" layer="21"/>
<rectangle x1="-0.32" y1="4.15" x2="0.32" y2="5.95" layer="21"/>
<rectangle x1="-2.86" y1="4.15" x2="-2.22" y2="5.95" layer="21"/>
<rectangle x1="2.22" y1="4.15" x2="2.86" y2="5.95" layer="21"/>
<smd name="1" x="-2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<smd name="2" x="0" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<smd name="3" x="2.54" y="5.07" dx="2.5" dy="1.27" layer="1" rot="R90"/>
<hole x="-1.27" y="0" drill="1.3462"/>
<hole x="1.27" y="0" drill="1.3462"/>
</package>
</packages>
<symbols>
<symbol name="M05">
<wire x1="3.81" y1="-7.62" x2="-2.54" y2="-7.62" width="0.4064" layer="94"/>
<wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
<wire x1="1.27" y1="-2.54" x2="2.54" y2="-2.54" width="0.6096" layer="94"/>
<wire x1="1.27" y1="-5.08" x2="2.54" y2="-5.08" width="0.6096" layer="94"/>
<wire x1="-2.54" y1="7.62" x2="-2.54" y2="-7.62" width="0.4064" layer="94"/>
<wire x1="3.81" y1="-7.62" x2="3.81" y2="7.62" width="0.4064" layer="94"/>
<wire x1="-2.54" y1="7.62" x2="3.81" y2="7.62" width="0.4064" layer="94"/>
<wire x1="1.27" y1="5.08" x2="2.54" y2="5.08" width="0.6096" layer="94"/>
<wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
<text x="-2.54" y="-10.16" size="1.778" layer="96">>VALUE</text>
<text x="-2.54" y="8.382" size="1.778" layer="95">>NAME</text>
<pin name="1" x="7.62" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="2" x="7.62" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="3" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="4" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="5" x="7.62" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
</symbol>
<symbol name="M12">
<wire x1="6.35" y1="-17.78" x2="0" y2="-17.78" width="0.4064" layer="94"/>
<wire x1="3.81" y1="-10.16" x2="5.08" y2="-10.16" width="0.6096" layer="94"/>
<wire x1="3.81" y1="-12.7" x2="5.08" y2="-12.7" width="0.6096" layer="94"/>
<wire x1="3.81" y1="-15.24" x2="5.08" y2="-15.24" width="0.6096" layer="94"/>
<wire x1="0" y1="15.24" x2="0" y2="-17.78" width="0.4064" layer="94"/>
<wire x1="6.35" y1="-17.78" x2="6.35" y2="15.24" width="0.4064" layer="94"/>
<wire x1="0" y1="15.24" x2="6.35" y2="15.24" width="0.4064" layer="94"/>
<wire x1="3.81" y1="-5.08" x2="5.08" y2="-5.08" width="0.6096" layer="94"/>
<wire x1="3.81" y1="-7.62" x2="5.08" y2="-7.62" width="0.6096" layer="94"/>
<wire x1="3.81" y1="-2.54" x2="5.08" y2="-2.54" width="0.6096" layer="94"/>
<wire x1="3.81" y1="0" x2="5.08" y2="0" width="0.6096" layer="94"/>
<wire x1="3.81" y1="2.54" x2="5.08" y2="2.54" width="0.6096" layer="94"/>
<wire x1="3.81" y1="5.08" x2="5.08" y2="5.08" width="0.6096" layer="94"/>
<wire x1="3.81" y1="7.62" x2="5.08" y2="7.62" width="0.6096" layer="94"/>
<wire x1="3.81" y1="10.16" x2="5.08" y2="10.16" width="0.6096" layer="94"/>
<wire x1="3.81" y1="12.7" x2="5.08" y2="12.7" width="0.6096" layer="94"/>
<text x="0" y="-20.32" size="1.778" layer="96">>VALUE</text>
<text x="0" y="16.002" size="1.778" layer="95">>NAME</text>
<pin name="1" x="10.16" y="-15.24" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="2" x="10.16" y="-12.7" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="3" x="10.16" y="-10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="4" x="10.16" y="-7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="5" x="10.16" y="-5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="6" x="10.16" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="7" x="10.16" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="8" x="10.16" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="9" x="10.16" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="10" x="10.16" y="7.62" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="11" x="10.16" y="10.16" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="12" x="10.16" y="12.7" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
</symbol>
<symbol name="M04">
<wire x1="1.27" y1="-5.08" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
<wire x1="-1.27" y1="2.54" x2="0" y2="2.54" width="0.6096" layer="94"/>
<wire x1="-1.27" y1="0" x2="0" y2="0" width="0.6096" layer="94"/>
<wire x1="-1.27" y1="-2.54" x2="0" y2="-2.54" width="0.6096" layer="94"/>
<wire x1="-5.08" y1="7.62" x2="-5.08" y2="-5.08" width="0.4064" layer="94"/>
<wire x1="1.27" y1="-5.08" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
<wire x1="-5.08" y1="7.62" x2="1.27" y2="7.62" width="0.4064" layer="94"/>
<wire x1="-1.27" y1="5.08" x2="0" y2="5.08" width="0.6096" layer="94"/>
<text x="-5.08" y="-7.62" size="1.778" layer="96">>VALUE</text>
<text x="-5.08" y="8.382" size="1.778" layer="95">>NAME</text>
<pin name="1" x="5.08" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="2" x="5.08" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="3" x="5.08" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="4" x="5.08" y="5.08" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
</symbol>
<symbol name="M03">
<wire x1="3.81" y1="-5.08" x2="-2.54" y2="-5.08" width="0.4064" layer="94"/>
<wire x1="1.27" y1="2.54" x2="2.54" y2="2.54" width="0.6096" layer="94"/>
<wire x1="1.27" y1="0" x2="2.54" y2="0" width="0.6096" layer="94"/>
<wire x1="1.27" y1="-2.54" x2="2.54" y2="-2.54" width="0.6096" layer="94"/>
<wire x1="-2.54" y1="5.08" x2="-2.54" y2="-5.08" width="0.4064" layer="94"/>
<wire x1="3.81" y1="-5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
<wire x1="-2.54" y1="5.08" x2="3.81" y2="5.08" width="0.4064" layer="94"/>
<text x="-2.54" y="-7.62" size="1.778" layer="96">>VALUE</text>
<text x="-2.54" y="5.842" size="1.778" layer="95">>NAME</text>
<pin name="1" x="7.62" y="-2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="2" x="7.62" y="0" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
<pin name="3" x="7.62" y="2.54" visible="pad" length="middle" direction="pas" swaplevel="1" rot="R180"/>
</symbol>
</symbols>
<devicesets>
<deviceset name="M05" prefix="JP" uservalue="yes">
<description><b>Header 5</b>
Standard 5-pin 0.1" header. Use with straight break away headers (SKU : PRT-00116), right angle break away headers (PRT-00553), swiss pins (PRT-00743), machine pins (PRT-00117), and female headers (PRT-00115). Molex polarized connector foot print use with SKU : PRT-08230 with associated crimp pins and housings.</description>
<gates>
<gate name="G$1" symbol="M05" x="-2.54" y="0"/>
</gates>
<devices>
<device name="PTH" package="1X05">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="1.27MM" package="1X05-1.27MM">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK" package="1X05_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK_LONGPADS" package="1X05_LOCK_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="PTH_LONGPADS" package="1X05_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD" package="1X05-1MM">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD2" package="1X05-1MM-RA">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="NO_SILK" package="1X05_NO_SILK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST" package="JST-5-PTH">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST-VERT" package="JST-5-PTH-VERT">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SCREW" package="SCREWTERMINAL-3.5MM-5">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="Combine 8288+8399" constant="no"/>
</technology>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="M12" prefix="JP" uservalue="yes">
<description><b>Header 12</b>
Standard 12-pin 0.1" header. Use with straight break away headers (SKU : PRT-00116), right angle break away headers (PRT-00553), swiss pins (PRT-00743), machine pins (PRT-00117), and female headers (PRT-00115).</description>
<gates>
<gate name="G$1" symbol="M12" x="0" y="0"/>
</gates>
<devices>
<device name="PTH" package="1X12">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK" package="1X12_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK_LONGPADS" package="1X12_LOCK_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="MACHINE-PIN_LOCK" package="1X12_MACHINE-PIN-HEADER_LOCK.004">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LONGPADS" package="1X12_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="POGOPIN_HOLES_ONLY" package="1X12_HOLES_ONLY">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="1X12_NO_SILK_KIT" package="1X12_NO_SILK_KIT">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="NO_SILK" package="1X12_NO_SILK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK_NO_SILK" package="1X12_LOCK_NO_SILK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="10" pad="10"/>
<connect gate="G$1" pin="11" pad="11"/>
<connect gate="G$1" pin="12" pad="12"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
<connect gate="G$1" pin="5" pad="5"/>
<connect gate="G$1" pin="6" pad="6"/>
<connect gate="G$1" pin="7" pad="7"/>
<connect gate="G$1" pin="8" pad="8"/>
<connect gate="G$1" pin="9" pad="9"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="M04" prefix="JP" uservalue="yes">
<description><b>Header 4</b>
Standard 4-pin 0.1" header. Use with straight break away headers (SKU : PRT-00116), right angle break away headers (PRT-00553), swiss pins (PRT-00743), machine pins (PRT-00117), and female headers (PRT-00115). Molex polarized connector foot print use with SKU : PRT-08231 with associated crimp pins and housings. 1MM SMD Version SKU: PRT-10208</description>
<gates>
<gate name="G$1" symbol="M04" x="-2.54" y="0"/>
</gates>
<devices>
<device name="PTH" package="1X04">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="POLAR" package="MOLEX-1X4">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SCREW" package="SCREWTERMINAL-3.5MM-4">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="Combine 2x8399" constant="no"/>
</technology>
</technologies>
</device>
<device name="1.27MM" package="1X04-1.27MM">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK" package="1X04_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK_LONGPADS" package="1X04_LOCK_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="POLAR_LOCK" package="MOLEX-1X4_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD" package="1X04-SMD">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LONGPADS" package="1X04_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="1X04_NO_SILK" package="1X04_NO_SILK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST-PTH" package="JST-4-PTH">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name="">
<attribute name="SKU" value="PRT-09916" constant="no"/>
</technology>
</technologies>
</device>
<device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-4_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD2" package="1X04-1MM-RA">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD_STRAIGHT_COMBO" package="1X04_SMD_STRAIGHT_COMBO">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="CONN-08511"/>
<attribute name="VALUE" value="1X04_SMD_STRAIGHT_COMBO"/>
</technology>
</technologies>
</device>
<device name="SMD_LONG" package="1X04-SMD_LONG">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST-PTH-VERT" package="JST-4-PTH-VERT">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD_RA_FEMALE" package="1X04_SMD_RA_FEMALE">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST" package="1X04-1.5MM_JST">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="NO_SILK_ALL_ROUND" package="1X04_NO_SILK_ALL_ROUND">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
<connect gate="G$1" pin="4" pad="4"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
<deviceset name="M03" prefix="JP" uservalue="yes">
<description><b>Header 3</b>
Standard 3-pin 0.1" header. Use with straight break away headers (SKU : PRT-00116), right angle break away headers (PRT-00553), swiss pins (PRT-00743), machine pins (PRT-00117), and female headers (PRT-00115). Molex polarized connector foot print use with SKU : PRT-08232 with associated crimp pins and housings.</description>
<gates>
<gate name="G$1" symbol="M03" x="-2.54" y="0"/>
</gates>
<devices>
<device name="PTH" package="1X03">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="POLAR" package="MOLEX-1X3">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SCREW" package="SCREWTERMINAL-3.5MM-3">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="CONN-08288" constant="no"/>
</technology>
</technologies>
</device>
<device name="LOCK" package="1X03_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LOCK_LONGPADS" package="1X03_LOCK_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="POLAR_LOCK" package="MOLEX-1X3_LOCK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SCREW_LOCK" package="SCREWTERMINAL-3.5MM-3_LOCK.007S">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="CONN-08288" constant="no"/>
</technology>
</technologies>
</device>
<device name="1X03_NO_SILK" package="1X03_NO_SILK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="LONGPADS" package="1X03_LONGPADS">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST-PTH" package="JST-3-PTH">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="SKU" value="PRT-09915" constant="no"/>
</technology>
</technologies>
</device>
<device name="POGO_PIN_HOLES_ONLY" package="1X03_PP_HOLES_ONLY">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="-SCREW-5MM" package="SCREWTERMINAL-5MM-3">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="STOREFRONT_ID" value="PRT-08433" constant="no"/>
</technology>
</technologies>
</device>
<device name="LOCK_NO_SILK" package="1X03_LOCK_NO_SILK">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST-SMD" package="JST-3-SMD">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="CONN-12591" constant="no"/>
<attribute name="VALUE" value="3-PIN SMD" constant="no"/>
</technology>
</technologies>
</device>
<device name="SMD" package="1X03-1MM-RA">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="SMD_RA_FEMALE" package="1X03_SMD_RA_FEMALE">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="CONN-10926"/>
<attribute name="VALUE" value="1x3 RA Female .1""/>
</technology>
</technologies>
</device>
<device name="SMD_RA_MALE" package="1X03_SMD_RA_MALE">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name="">
<attribute name="PROD_ID" value="CONN-10925"/>
</technology>
</technologies>
</device>
<device name="SMD_RA_MALE_POST" package="1X03_SMD_RA_MALE_POST">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="JST-PTH-VERT" package="JST-3-PTH-VERT">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="1X03_SMD_RA_MALE_POST_SMALLER" package="1X03_SMD_RA_MALE_POST_SMALLER">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
<device name="1X03_SMD_RA_MALE_POST_SMALLEST" package="1X03_SMD_RA_MALE_POST_SMALLEST">
<connects>
<connect gate="G$1" pin="1" pad="1"/>
<connect gate="G$1" pin="2" pad="2"/>
<connect gate="G$1" pin="3" pad="3"/>
</connects>
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
<library name="dp_devices">
<description>Dangerous Prototypes Standard PCB sizes
path_to_url
<packages>
<package name="LOGO_CC-BY-SA">
<rectangle x1="0.0191" y1="-0.0191" x2="15.2972" y2="0.0191" layer="21"/>
<rectangle x1="-0.0191" y1="0.0191" x2="15.3353" y2="0.0572" layer="21"/>
<rectangle x1="-0.0191" y1="0.0572" x2="15.3353" y2="0.0953" layer="21"/>
<rectangle x1="-0.0191" y1="0.0953" x2="15.3353" y2="0.1334" layer="21"/>
<rectangle x1="-0.0191" y1="0.1334" x2="15.3353" y2="0.1715" layer="21"/>
<rectangle x1="-0.0191" y1="0.1715" x2="15.3353" y2="0.2096" layer="21"/>
<rectangle x1="-0.0191" y1="0.2096" x2="15.3353" y2="0.2477" layer="21"/>
<rectangle x1="-0.0191" y1="0.2477" x2="15.3353" y2="0.2858" layer="21"/>
<rectangle x1="-0.0191" y1="0.2858" x2="11.1443" y2="0.3239" layer="21"/>
<rectangle x1="11.2205" y1="0.2858" x2="15.3353" y2="0.3239" layer="21"/>
<rectangle x1="-0.0191" y1="0.3239" x2="7.2581" y2="0.362" layer="21"/>
<rectangle x1="7.7915" y1="0.3239" x2="8.3249" y2="0.362" layer="21"/>
<rectangle x1="8.5154" y1="0.3239" x2="10.9919" y2="0.362" layer="21"/>
<rectangle x1="11.3729" y1="0.3239" x2="11.5634" y2="0.362" layer="21"/>
<rectangle x1="11.7539" y1="0.3239" x2="12.173" y2="0.362" layer="21"/>
<rectangle x1="12.3635" y1="0.3239" x2="15.3353" y2="0.362" layer="21"/>
<rectangle x1="-0.0191" y1="0.362" x2="7.2581" y2="0.4001" layer="21"/>
<rectangle x1="7.8677" y1="0.362" x2="8.3249" y2="0.4001" layer="21"/>
<rectangle x1="8.5154" y1="0.362" x2="10.9157" y2="0.4001" layer="21"/>
<rectangle x1="11.4491" y1="0.362" x2="11.5634" y2="0.4001" layer="21"/>
<rectangle x1="11.7539" y1="0.362" x2="12.173" y2="0.4001" layer="21"/>
<rectangle x1="12.3635" y1="0.362" x2="15.3353" y2="0.4001" layer="21"/>
<rectangle x1="-0.0191" y1="0.4001" x2="2.6099" y2="0.4382" layer="21"/>
<rectangle x1="2.7242" y1="0.4001" x2="7.2581" y2="0.4382" layer="21"/>
<rectangle x1="7.9058" y1="0.4001" x2="8.3249" y2="0.4382" layer="21"/>
<rectangle x1="8.5154" y1="0.4001" x2="10.8776" y2="0.4382" layer="21"/>
<rectangle x1="11.4872" y1="0.4001" x2="11.6015" y2="0.4382" layer="21"/>
<rectangle x1="11.792" y1="0.4001" x2="12.173" y2="0.4382" layer="21"/>
<rectangle x1="12.3635" y1="0.4001" x2="15.3353" y2="0.4382" layer="21"/>
<rectangle x1="-0.0191" y1="0.4382" x2="2.2289" y2="0.4763" layer="21"/>
<rectangle x1="3.0671" y1="0.4382" x2="7.2581" y2="0.4763" layer="21"/>
<rectangle x1="7.9439" y1="0.4382" x2="8.3249" y2="0.4763" layer="21"/>
<rectangle x1="8.5154" y1="0.4382" x2="10.8776" y2="0.4763" layer="21"/>
<rectangle x1="11.1062" y1="0.4382" x2="11.2586" y2="0.4763" layer="21"/>
<rectangle x1="11.5253" y1="0.4382" x2="11.6015" y2="0.4763" layer="21"/>
<rectangle x1="11.792" y1="0.4382" x2="12.1349" y2="0.4763" layer="21"/>
<rectangle x1="12.3254" y1="0.4382" x2="15.3353" y2="0.4763" layer="21"/>
<rectangle x1="-0.0191" y1="0.4763" x2="2.0384" y2="0.5144" layer="21"/>
<rectangle x1="3.2576" y1="0.4763" x2="7.2581" y2="0.5144" layer="21"/>
<rectangle x1="7.4486" y1="0.4763" x2="7.7534" y2="0.5144" layer="21"/>
<rectangle x1="7.9439" y1="0.4763" x2="8.3249" y2="0.5144" layer="21"/>
<rectangle x1="8.5154" y1="0.4763" x2="10.8395" y2="0.5144" layer="21"/>
<rectangle x1="11.03" y1="0.4763" x2="11.3348" y2="0.5144" layer="21"/>
<rectangle x1="11.5253" y1="0.4763" x2="11.6396" y2="0.5144" layer="21"/>
<rectangle x1="11.8301" y1="0.4763" x2="12.1349" y2="0.5144" layer="21"/>
<rectangle x1="12.3254" y1="0.4763" x2="15.3353" y2="0.5144" layer="21"/>
<rectangle x1="-0.0191" y1="0.5144" x2="1.9241" y2="0.5525" layer="21"/>
<rectangle x1="3.3719" y1="0.5144" x2="7.2581" y2="0.5525" layer="21"/>
<rectangle x1="7.4486" y1="0.5144" x2="7.7915" y2="0.5525" layer="21"/>
<rectangle x1="7.982" y1="0.5144" x2="8.3249" y2="0.5525" layer="21"/>
<rectangle x1="8.5154" y1="0.5144" x2="10.8395" y2="0.5525" layer="21"/>
<rectangle x1="11.03" y1="0.5144" x2="11.3348" y2="0.5525" layer="21"/>
<rectangle x1="11.5253" y1="0.5144" x2="11.6396" y2="0.5525" layer="21"/>
<rectangle x1="12.2873" y1="0.5144" x2="15.3353" y2="0.5525" layer="21"/>
<rectangle x1="-0.0191" y1="0.5525" x2="1.8479" y2="0.5906" layer="21"/>
<rectangle x1="3.4862" y1="0.5525" x2="7.2581" y2="0.5906" layer="21"/>
<rectangle x1="7.4486" y1="0.5525" x2="7.7915" y2="0.5906" layer="21"/>
<rectangle x1="7.982" y1="0.5525" x2="8.3249" y2="0.5906" layer="21"/>
<rectangle x1="8.5154" y1="0.5525" x2="10.8395" y2="0.5906" layer="21"/>
<rectangle x1="10.9919" y1="0.5525" x2="11.3348" y2="0.5906" layer="21"/>
<rectangle x1="11.5253" y1="0.5525" x2="11.6396" y2="0.5906" layer="21"/>
<rectangle x1="12.2873" y1="0.5525" x2="15.3353" y2="0.5906" layer="21"/>
<rectangle x1="-0.0191" y1="0.5906" x2="1.7336" y2="0.6287" layer="21"/>
<rectangle x1="3.5624" y1="0.5906" x2="7.2581" y2="0.6287" layer="21"/>
<rectangle x1="7.4486" y1="0.5906" x2="7.7915" y2="0.6287" layer="21"/>
<rectangle x1="7.982" y1="0.5906" x2="8.3249" y2="0.6287" layer="21"/>
<rectangle x1="8.5154" y1="0.5906" x2="11.3348" y2="0.6287" layer="21"/>
<rectangle x1="11.5253" y1="0.5906" x2="11.6777" y2="0.6287" layer="21"/>
<rectangle x1="12.2873" y1="0.5906" x2="15.3353" y2="0.6287" layer="21"/>
<rectangle x1="-0.0191" y1="0.6287" x2="1.6574" y2="0.6668" layer="21"/>
<rectangle x1="3.6386" y1="0.6287" x2="7.2581" y2="0.6668" layer="21"/>
<rectangle x1="7.4486" y1="0.6287" x2="7.7534" y2="0.6668" layer="21"/>
<rectangle x1="7.9439" y1="0.6287" x2="8.3249" y2="0.6668" layer="21"/>
<rectangle x1="8.5154" y1="0.6287" x2="11.2586" y2="0.6668" layer="21"/>
<rectangle x1="11.5253" y1="0.6287" x2="11.6777" y2="0.6668" layer="21"/>
<rectangle x1="11.8682" y1="0.6287" x2="12.0587" y2="0.6668" layer="21"/>
<rectangle x1="12.2492" y1="0.6287" x2="15.3353" y2="0.6668" layer="21"/>
<rectangle x1="-0.0191" y1="0.6668" x2="1.5812" y2="0.7049" layer="21"/>
<rectangle x1="3.7148" y1="0.6668" x2="7.2581" y2="0.7049" layer="21"/>
<rectangle x1="7.4486" y1="0.6668" x2="7.6772" y2="0.7049" layer="21"/>
<rectangle x1="7.9439" y1="0.6668" x2="8.2868" y2="0.7049" layer="21"/>
<rectangle x1="8.5154" y1="0.6668" x2="11.1062" y2="0.7049" layer="21"/>
<rectangle x1="11.4872" y1="0.6668" x2="11.6777" y2="0.7049" layer="21"/>
<rectangle x1="11.8682" y1="0.6668" x2="12.0587" y2="0.7049" layer="21"/>
<rectangle x1="12.2492" y1="0.6668" x2="15.3353" y2="0.7049" layer="21"/>
<rectangle x1="-0.0191" y1="0.7049" x2="1.505" y2="0.743" layer="21"/>
<rectangle x1="3.791" y1="0.7049" x2="7.2581" y2="0.743" layer="21"/>
<rectangle x1="7.9058" y1="0.7049" x2="8.2487" y2="0.743" layer="21"/>
<rectangle x1="8.5535" y1="0.7049" x2="10.9919" y2="0.743" layer="21"/>
<rectangle x1="11.4872" y1="0.7049" x2="11.7158" y2="0.743" layer="21"/>
<rectangle x1="11.9063" y1="0.7049" x2="12.0587" y2="0.743" layer="21"/>
<rectangle x1="12.2492" y1="0.7049" x2="15.3353" y2="0.743" layer="21"/>
<rectangle x1="-0.0191" y1="0.743" x2="1.4669" y2="0.7811" layer="21"/>
<rectangle x1="3.8672" y1="0.743" x2="7.2581" y2="0.7811" layer="21"/>
<rectangle x1="7.8296" y1="0.743" x2="8.2487" y2="0.7811" layer="21"/>
<rectangle x1="8.5535" y1="0.743" x2="10.9157" y2="0.7811" layer="21"/>
<rectangle x1="11.411" y1="0.743" x2="11.7158" y2="0.7811" layer="21"/>
<rectangle x1="11.9063" y1="0.743" x2="12.0206" y2="0.7811" layer="21"/>
<rectangle x1="12.2111" y1="0.743" x2="15.3353" y2="0.7811" layer="21"/>
<rectangle x1="-0.0191" y1="0.7811" x2="1.3907" y2="0.8192" layer="21"/>
<rectangle x1="3.9053" y1="0.7811" x2="7.2581" y2="0.8192" layer="21"/>
<rectangle x1="7.8296" y1="0.7811" x2="8.2106" y2="0.8192" layer="21"/>
<rectangle x1="8.5916" y1="0.7811" x2="10.9157" y2="0.8192" layer="21"/>
<rectangle x1="11.3348" y1="0.7811" x2="11.7539" y2="0.8192" layer="21"/>
<rectangle x1="11.9063" y1="0.7811" x2="12.0206" y2="0.8192" layer="21"/>
<rectangle x1="12.2111" y1="0.7811" x2="15.3353" y2="0.8192" layer="21"/>
<rectangle x1="-0.0191" y1="0.8192" x2="1.3526" y2="0.8573" layer="21"/>
<rectangle x1="3.9815" y1="0.8192" x2="7.2581" y2="0.8573" layer="21"/>
<rectangle x1="7.4486" y1="0.8192" x2="7.6772" y2="0.8573" layer="21"/>
<rectangle x1="7.9058" y1="0.8192" x2="8.2106" y2="0.8573" layer="21"/>
<rectangle x1="8.6297" y1="0.8192" x2="10.8776" y2="0.8573" layer="21"/>
<rectangle x1="11.1824" y1="0.8192" x2="11.7539" y2="0.8573" layer="21"/>
<rectangle x1="11.9444" y1="0.8192" x2="12.0206" y2="0.8573" layer="21"/>
<rectangle x1="12.173" y1="0.8192" x2="15.3353" y2="0.8573" layer="21"/>
<rectangle x1="-0.0191" y1="0.8573" x2="1.2764" y2="0.8954" layer="21"/>
<rectangle x1="2.267" y1="0.8573" x2="3.029" y2="0.8954" layer="21"/>
<rectangle x1="4.0196" y1="0.8573" x2="7.2581" y2="0.8954" layer="21"/>
<rectangle x1="7.4486" y1="0.8573" x2="7.7534" y2="0.8954" layer="21"/>
<rectangle x1="7.9058" y1="0.8573" x2="8.1725" y2="0.8954" layer="21"/>
<rectangle x1="8.363" y1="0.8573" x2="8.4392" y2="0.8954" layer="21"/>
<rectangle x1="8.6297" y1="0.8573" x2="10.8776" y2="0.8954" layer="21"/>
<rectangle x1="11.0681" y1="0.8573" x2="11.7539" y2="0.8954" layer="21"/>
<rectangle x1="11.9444" y1="0.8573" x2="11.9825" y2="0.8954" layer="21"/>
<rectangle x1="12.173" y1="0.8573" x2="15.3353" y2="0.8954" layer="21"/>
<rectangle x1="-0.0191" y1="0.8954" x2="1.2383" y2="0.9335" layer="21"/>
<rectangle x1="2.1146" y1="0.8954" x2="3.2195" y2="0.9335" layer="21"/>
<rectangle x1="4.0577" y1="0.8954" x2="7.2581" y2="0.9335" layer="21"/>
<rectangle x1="7.4486" y1="0.8954" x2="7.7534" y2="0.9335" layer="21"/>
<rectangle x1="7.9058" y1="0.8954" x2="8.1344" y2="0.9335" layer="21"/>
<rectangle x1="8.363" y1="0.8954" x2="8.4773" y2="0.9335" layer="21"/>
<rectangle x1="8.6678" y1="0.8954" x2="10.8395" y2="0.9335" layer="21"/>
<rectangle x1="11.03" y1="0.8954" x2="11.3348" y2="0.9335" layer="21"/>
<rectangle x1="11.4872" y1="0.8954" x2="11.792" y2="0.9335" layer="21"/>
<rectangle x1="11.9444" y1="0.8954" x2="11.9825" y2="0.9335" layer="21"/>
<rectangle x1="12.173" y1="0.8954" x2="15.3353" y2="0.9335" layer="21"/>
<rectangle x1="-0.0191" y1="0.9335" x2="1.2002" y2="0.9716" layer="21"/>
<rectangle x1="2.0003" y1="0.9335" x2="3.3338" y2="0.9716" layer="21"/>
<rectangle x1="4.0958" y1="0.9335" x2="7.2581" y2="0.9716" layer="21"/>
<rectangle x1="7.4486" y1="0.9335" x2="7.7534" y2="0.9716" layer="21"/>
<rectangle x1="7.9439" y1="0.9335" x2="8.1344" y2="0.9716" layer="21"/>
<rectangle x1="8.3249" y1="0.9335" x2="8.4773" y2="0.9716" layer="21"/>
<rectangle x1="8.6678" y1="0.9335" x2="10.8395" y2="0.9716" layer="21"/>
<rectangle x1="11.03" y1="0.9335" x2="11.3348" y2="0.9716" layer="21"/>
<rectangle x1="11.4872" y1="0.9335" x2="11.792" y2="0.9716" layer="21"/>
<rectangle x1="12.1349" y1="0.9335" x2="15.3353" y2="0.9716" layer="21"/>
<rectangle x1="-0.0191" y1="0.9716" x2="1.1621" y2="1.0097" layer="21"/>
<rectangle x1="1.886" y1="0.9716" x2="3.41" y2="1.0097" layer="21"/>
<rectangle x1="4.172" y1="0.9716" x2="7.2581" y2="1.0097" layer="21"/>
<rectangle x1="7.4486" y1="0.9716" x2="7.7153" y2="1.0097" layer="21"/>
<rectangle x1="7.9058" y1="0.9716" x2="8.0963" y2="1.0097" layer="21"/>
<rectangle x1="8.3249" y1="0.9716" x2="8.5154" y2="1.0097" layer="21"/>
<rectangle x1="8.7059" y1="0.9716" x2="10.8776" y2="1.0097" layer="21"/>
<rectangle x1="11.03" y1="0.9716" x2="11.2967" y2="1.0097" layer="21"/>
<rectangle x1="11.4872" y1="0.9716" x2="11.8301" y2="1.0097" layer="21"/>
<rectangle x1="12.1349" y1="0.9716" x2="15.3353" y2="1.0097" layer="21"/>
<rectangle x1="-0.0191" y1="1.0097" x2="1.124" y2="1.0478" layer="21"/>
<rectangle x1="1.8098" y1="1.0097" x2="3.5243" y2="1.0478" layer="21"/>
<rectangle x1="4.2101" y1="1.0097" x2="7.2581" y2="1.0478" layer="21"/>
<rectangle x1="7.9058" y1="1.0097" x2="8.0963" y2="1.0478" layer="21"/>
<rectangle x1="8.2868" y1="1.0097" x2="8.5154" y2="1.0478" layer="21"/>
<rectangle x1="8.744" y1="1.0097" x2="10.8776" y2="1.0478" layer="21"/>
<rectangle x1="11.1062" y1="1.0097" x2="11.2205" y2="1.0478" layer="21"/>
<rectangle x1="11.4872" y1="1.0097" x2="11.8301" y2="1.0478" layer="21"/>
<rectangle x1="12.1349" y1="1.0097" x2="15.3353" y2="1.0478" layer="21"/>
<rectangle x1="-0.0191" y1="1.0478" x2="1.0478" y2="1.0859" layer="21"/>
<rectangle x1="1.7336" y1="1.0478" x2="3.6005" y2="1.0859" layer="21"/>
<rectangle x1="4.2482" y1="1.0478" x2="7.2581" y2="1.0859" layer="21"/>
<rectangle x1="7.9058" y1="1.0478" x2="8.0582" y2="1.0859" layer="21"/>
<rectangle x1="8.2868" y1="1.0478" x2="8.5535" y2="1.0859" layer="21"/>
<rectangle x1="8.744" y1="1.0478" x2="10.9157" y2="1.0859" layer="21"/>
<rectangle x1="11.4491" y1="1.0478" x2="11.8301" y2="1.0859" layer="21"/>
<rectangle x1="12.0968" y1="1.0478" x2="15.3353" y2="1.0859" layer="21"/>
<rectangle x1="-0.0191" y1="1.0859" x2="1.0097" y2="1.124" layer="21"/>
<rectangle x1="1.6574" y1="1.0859" x2="3.6386" y2="1.124" layer="21"/>
<rectangle x1="4.2863" y1="1.0859" x2="7.2581" y2="1.124" layer="21"/>
<rectangle x1="7.8677" y1="1.0859" x2="8.0201" y2="1.124" layer="21"/>
<rectangle x1="8.2487" y1="1.0859" x2="8.5535" y2="1.124" layer="21"/>
<rectangle x1="8.7821" y1="1.0859" x2="10.9538" y2="1.124" layer="21"/>
<rectangle x1="11.411" y1="1.0859" x2="11.8682" y2="1.124" layer="21"/>
<rectangle x1="12.0968" y1="1.0859" x2="15.3353" y2="1.124" layer="21"/>
<rectangle x1="-0.0191" y1="1.124" x2="1.0097" y2="1.1621" layer="21"/>
<rectangle x1="1.6193" y1="1.124" x2="3.7148" y2="1.1621" layer="21"/>
<rectangle x1="4.3244" y1="1.124" x2="7.2581" y2="1.1621" layer="21"/>
<rectangle x1="7.7915" y1="1.124" x2="8.0201" y2="1.1621" layer="21"/>
<rectangle x1="8.2106" y1="1.124" x2="8.5916" y2="1.1621" layer="21"/>
<rectangle x1="8.8202" y1="1.124" x2="10.9919" y2="1.1621" layer="21"/>
<rectangle x1="11.3729" y1="1.124" x2="11.8682" y2="1.1621" layer="21"/>
<rectangle x1="12.0587" y1="1.124" x2="15.3353" y2="1.1621" layer="21"/>
<rectangle x1="-0.0191" y1="1.1621" x2="0.9716" y2="1.2002" layer="21"/>
<rectangle x1="1.5431" y1="1.1621" x2="3.791" y2="1.2002" layer="21"/>
<rectangle x1="4.3625" y1="1.1621" x2="11.1443" y2="1.2002" layer="21"/>
<rectangle x1="11.2205" y1="1.1621" x2="15.3353" y2="1.2002" layer="21"/>
<rectangle x1="-0.0191" y1="1.2002" x2="0.9335" y2="1.2383" layer="21"/>
<rectangle x1="1.505" y1="1.2002" x2="2.6099" y2="1.2383" layer="21"/>
<rectangle x1="2.7242" y1="1.2002" x2="3.8291" y2="1.2383" layer="21"/>
<rectangle x1="4.3625" y1="1.2002" x2="15.3353" y2="1.2383" layer="21"/>
<rectangle x1="-0.0191" y1="1.2383" x2="0.8954" y2="1.2764" layer="21"/>
<rectangle x1="1.4669" y1="1.2383" x2="2.3051" y2="1.2764" layer="21"/>
<rectangle x1="3.029" y1="1.2383" x2="3.8672" y2="1.2764" layer="21"/>
<rectangle x1="4.4006" y1="1.2383" x2="15.3353" y2="1.2764" layer="21"/>
<rectangle x1="-0.0191" y1="1.2764" x2="0.8573" y2="1.3145" layer="21"/>
<rectangle x1="1.3907" y1="1.2764" x2="2.1527" y2="1.3145" layer="21"/>
<rectangle x1="3.1433" y1="1.2764" x2="3.9053" y2="1.3145" layer="21"/>
<rectangle x1="4.4387" y1="1.2764" x2="15.3353" y2="1.3145" layer="21"/>
<rectangle x1="-0.0191" y1="1.3145" x2="0.8192" y2="1.3526" layer="21"/>
<rectangle x1="1.3526" y1="1.3145" x2="2.0384" y2="1.3526" layer="21"/>
<rectangle x1="3.2576" y1="1.3145" x2="3.9434" y2="1.3526" layer="21"/>
<rectangle x1="4.4768" y1="1.3145" x2="15.3353" y2="1.3526" layer="21"/>
<rectangle x1="-0.0191" y1="1.3526" x2="0.8192" y2="1.3907" layer="21"/>
<rectangle x1="1.3145" y1="1.3526" x2="1.9622" y2="1.3907" layer="21"/>
<rectangle x1="3.3338" y1="1.3526" x2="4.0196" y2="1.3907" layer="21"/>
<rectangle x1="4.5149" y1="1.3526" x2="15.3353" y2="1.3907" layer="21"/>
<rectangle x1="-0.0191" y1="1.3907" x2="0.7811" y2="1.4288" layer="21"/>
<rectangle x1="1.2764" y1="1.3907" x2="1.886" y2="1.4288" layer="21"/>
<rectangle x1="3.41" y1="1.3907" x2="4.0577" y2="1.4288" layer="21"/>
<rectangle x1="4.5149" y1="1.3907" x2="15.3353" y2="1.4288" layer="21"/>
<rectangle x1="-0.0191" y1="1.4288" x2="0.743" y2="1.4669" layer="21"/>
<rectangle x1="1.2383" y1="1.4288" x2="1.8098" y2="1.4669" layer="21"/>
<rectangle x1="3.4862" y1="1.4288" x2="4.0958" y2="1.4669" layer="21"/>
<rectangle x1="4.553" y1="1.4288" x2="15.3353" y2="1.4669" layer="21"/>
<rectangle x1="-0.0191" y1="1.4669" x2="0.743" y2="1.505" layer="21"/>
<rectangle x1="1.2002" y1="1.4669" x2="1.7717" y2="1.505" layer="21"/>
<rectangle x1="3.5624" y1="1.4669" x2="4.1339" y2="1.505" layer="21"/>
<rectangle x1="4.553" y1="1.4669" x2="15.3353" y2="1.505" layer="21"/>
<rectangle x1="-0.0191" y1="1.505" x2="0.7049" y2="1.5431" layer="21"/>
<rectangle x1="1.1621" y1="1.505" x2="1.6955" y2="1.5431" layer="21"/>
<rectangle x1="3.6005" y1="1.505" x2="4.172" y2="1.5431" layer="21"/>
<rectangle x1="4.5911" y1="1.505" x2="15.3353" y2="1.5431" layer="21"/>
<rectangle x1="-0.0191" y1="1.5431" x2="0.6668" y2="1.5812" layer="21"/>
<rectangle x1="1.124" y1="1.5431" x2="1.6574" y2="1.5812" layer="21"/>
<rectangle x1="3.6386" y1="1.5431" x2="4.2101" y2="1.5812" layer="21"/>
<rectangle x1="4.6292" y1="1.5431" x2="15.3353" y2="1.5812" layer="21"/>
<rectangle x1="-0.0191" y1="1.5812" x2="0.1334" y2="1.6193" layer="21"/>
<rectangle x1="1.0859" y1="1.5812" x2="1.6193" y2="1.6193" layer="21"/>
<rectangle x1="3.7148" y1="1.5812" x2="4.2482" y2="1.6193" layer="21"/>
<rectangle x1="15.1829" y1="1.5812" x2="15.3353" y2="1.6193" layer="21"/>
<rectangle x1="-0.0191" y1="1.6193" x2="0.1334" y2="1.6574" layer="21"/>
<rectangle x1="1.0859" y1="1.6193" x2="1.5812" y2="1.6574" layer="21"/>
<rectangle x1="3.7529" y1="1.6193" x2="4.2482" y2="1.6574" layer="21"/>
<rectangle x1="15.1829" y1="1.6193" x2="15.3353" y2="1.6574" layer="21"/>
<rectangle x1="-0.0191" y1="1.6574" x2="0.1334" y2="1.6955" layer="21"/>
<rectangle x1="1.0478" y1="1.6574" x2="1.5431" y2="1.6955" layer="21"/>
<rectangle x1="3.791" y1="1.6574" x2="4.2863" y2="1.6955" layer="21"/>
<rectangle x1="15.1829" y1="1.6574" x2="15.3353" y2="1.6955" layer="21"/>
<rectangle x1="-0.0191" y1="1.6955" x2="0.1334" y2="1.7336" layer="21"/>
<rectangle x1="1.0097" y1="1.6955" x2="1.505" y2="1.7336" layer="21"/>
<rectangle x1="3.8291" y1="1.6955" x2="4.3244" y2="1.7336" layer="21"/>
<rectangle x1="15.1829" y1="1.6955" x2="15.3353" y2="1.7336" layer="21"/>
<rectangle x1="-0.0191" y1="1.7336" x2="0.1334" y2="1.7717" layer="21"/>
<rectangle x1="0.9716" y1="1.7336" x2="1.4669" y2="1.7717" layer="21"/>
<rectangle x1="3.8672" y1="1.7336" x2="4.3625" y2="1.7717" layer="21"/>
<rectangle x1="15.1829" y1="1.7336" x2="15.3353" y2="1.7717" layer="21"/>
<rectangle x1="-0.0191" y1="1.7717" x2="0.1334" y2="1.8098" layer="21"/>
<rectangle x1="0.9335" y1="1.7717" x2="1.4288" y2="1.8098" layer="21"/>
<rectangle x1="3.9053" y1="1.7717" x2="4.3625" y2="1.8098" layer="21"/>
<rectangle x1="15.1829" y1="1.7717" x2="15.3353" y2="1.8098" layer="21"/>
<rectangle x1="-0.0191" y1="1.8098" x2="0.1334" y2="1.8479" layer="21"/>
<rectangle x1="0.9335" y1="1.8098" x2="1.3907" y2="1.8479" layer="21"/>
<rectangle x1="3.9434" y1="1.8098" x2="4.4006" y2="1.8479" layer="21"/>
<rectangle x1="15.1829" y1="1.8098" x2="15.3353" y2="1.8479" layer="21"/>
<rectangle x1="-0.0191" y1="1.8479" x2="0.1334" y2="1.886" layer="21"/>
<rectangle x1="0.8954" y1="1.8479" x2="1.3526" y2="1.886" layer="21"/>
<rectangle x1="3.9815" y1="1.8479" x2="4.4006" y2="1.886" layer="21"/>
<rectangle x1="15.1829" y1="1.8479" x2="15.3353" y2="1.886" layer="21"/>
<rectangle x1="-0.0191" y1="1.886" x2="0.1334" y2="1.9241" layer="21"/>
<rectangle x1="0.8954" y1="1.886" x2="1.3145" y2="1.9241" layer="21"/>
<rectangle x1="3.9815" y1="1.886" x2="4.4387" y2="1.9241" layer="21"/>
<rectangle x1="15.1829" y1="1.886" x2="15.3353" y2="1.9241" layer="21"/>
<rectangle x1="-0.0191" y1="1.9241" x2="0.1334" y2="1.9622" layer="21"/>
<rectangle x1="0.8573" y1="1.9241" x2="1.3145" y2="1.9622" layer="21"/>
<rectangle x1="4.0196" y1="1.9241" x2="4.4387" y2="1.9622" layer="21"/>
<rectangle x1="15.1829" y1="1.9241" x2="15.3353" y2="1.9622" layer="21"/>
<rectangle x1="-0.0191" y1="1.9622" x2="0.1334" y2="2.0003" layer="21"/>
<rectangle x1="0.8573" y1="1.9622" x2="1.2764" y2="2.0003" layer="21"/>
<rectangle x1="4.0577" y1="1.9622" x2="4.4768" y2="2.0003" layer="21"/>
<rectangle x1="7.7534" y1="1.9622" x2="8.4011" y2="2.0003" layer="21"/>
<rectangle x1="11.411" y1="1.9622" x2="12.0587" y2="2.0003" layer="21"/>
<rectangle x1="15.1829" y1="1.9622" x2="15.3353" y2="2.0003" layer="21"/>
<rectangle x1="-0.0191" y1="2.0003" x2="0.1334" y2="2.0384" layer="21"/>
<rectangle x1="0.8192" y1="2.0003" x2="1.2383" y2="2.0384" layer="21"/>
<rectangle x1="4.0577" y1="2.0003" x2="4.4768" y2="2.0384" layer="21"/>
<rectangle x1="7.6391" y1="2.0003" x2="8.5535" y2="2.0384" layer="21"/>
<rectangle x1="11.2586" y1="2.0003" x2="12.173" y2="2.0384" layer="21"/>
<rectangle x1="15.1829" y1="2.0003" x2="15.3353" y2="2.0384" layer="21"/>
<rectangle x1="-0.0191" y1="2.0384" x2="0.1334" y2="2.0765" layer="21"/>
<rectangle x1="0.8192" y1="2.0384" x2="1.2383" y2="2.0765" layer="21"/>
<rectangle x1="4.0958" y1="2.0384" x2="4.5149" y2="2.0765" layer="21"/>
<rectangle x1="7.5248" y1="2.0384" x2="8.6678" y2="2.0765" layer="21"/>
<rectangle x1="11.1443" y1="2.0384" x2="12.2873" y2="2.0765" layer="21"/>
<rectangle x1="15.1829" y1="2.0384" x2="15.3353" y2="2.0765" layer="21"/>
<rectangle x1="-0.0191" y1="2.0765" x2="0.1334" y2="2.1146" layer="21"/>
<rectangle x1="0.7811" y1="2.0765" x2="1.2002" y2="2.1146" layer="21"/>
<rectangle x1="4.0958" y1="2.0765" x2="4.5149" y2="2.1146" layer="21"/>
<rectangle x1="7.4486" y1="2.0765" x2="8.744" y2="2.1146" layer="21"/>
<rectangle x1="11.0681" y1="2.0765" x2="12.3635" y2="2.1146" layer="21"/>
<rectangle x1="15.1829" y1="2.0765" x2="15.3353" y2="2.1146" layer="21"/>
<rectangle x1="-0.0191" y1="2.1146" x2="0.1334" y2="2.1527" layer="21"/>
<rectangle x1="0.7811" y1="2.1146" x2="1.2002" y2="2.1527" layer="21"/>
<rectangle x1="4.1339" y1="2.1146" x2="4.553" y2="2.1527" layer="21"/>
<rectangle x1="7.3724" y1="2.1146" x2="8.8202" y2="2.1527" layer="21"/>
<rectangle x1="11.03" y1="2.1146" x2="12.4397" y2="2.1527" layer="21"/>
<rectangle x1="15.1829" y1="2.1146" x2="15.3353" y2="2.1527" layer="21"/>
<rectangle x1="-0.0191" y1="2.1527" x2="0.1334" y2="2.1908" layer="21"/>
<rectangle x1="0.7811" y1="2.1527" x2="1.1621" y2="2.1908" layer="21"/>
<rectangle x1="4.1339" y1="2.1527" x2="4.553" y2="2.1908" layer="21"/>
<rectangle x1="7.2962" y1="2.1527" x2="8.8583" y2="2.1908" layer="21"/>
<rectangle x1="10.9538" y1="2.1527" x2="12.5159" y2="2.1908" layer="21"/>
<rectangle x1="15.1829" y1="2.1527" x2="15.3353" y2="2.1908" layer="21"/>
<rectangle x1="-0.0191" y1="2.1908" x2="0.1334" y2="2.2289" layer="21"/>
<rectangle x1="0.743" y1="2.1908" x2="1.1621" y2="2.2289" layer="21"/>
<rectangle x1="4.172" y1="2.1908" x2="4.553" y2="2.2289" layer="21"/>
<rectangle x1="7.2581" y1="2.1908" x2="8.9345" y2="2.2289" layer="21"/>
<rectangle x1="10.8776" y1="2.1908" x2="12.554" y2="2.2289" layer="21"/>
<rectangle x1="15.1829" y1="2.1908" x2="15.3353" y2="2.2289" layer="21"/>
<rectangle x1="-0.0191" y1="2.2289" x2="0.1334" y2="2.267" layer="21"/>
<rectangle x1="0.743" y1="2.2289" x2="1.124" y2="2.267" layer="21"/>
<rectangle x1="1.9622" y1="2.2289" x2="2.267" y2="2.267" layer="21"/>
<rectangle x1="3.1052" y1="2.2289" x2="3.41" y2="2.267" layer="21"/>
<rectangle x1="4.172" y1="2.2289" x2="4.5911" y2="2.267" layer="21"/>
<rectangle x1="7.22" y1="2.2289" x2="7.8296" y2="2.267" layer="21"/>
<rectangle x1="8.3249" y1="2.2289" x2="8.9726" y2="2.267" layer="21"/>
<rectangle x1="10.8395" y1="2.2289" x2="11.4872" y2="2.267" layer="21"/>
<rectangle x1="11.9825" y1="2.2289" x2="12.6302" y2="2.267" layer="21"/>
<rectangle x1="15.1829" y1="2.2289" x2="15.3353" y2="2.267" layer="21"/>
<rectangle x1="-0.0191" y1="2.267" x2="0.1334" y2="2.3051" layer="21"/>
<rectangle x1="0.743" y1="2.267" x2="1.124" y2="2.3051" layer="21"/>
<rectangle x1="1.8479" y1="2.267" x2="2.3813" y2="2.3051" layer="21"/>
<rectangle x1="2.9909" y1="2.267" x2="3.5243" y2="2.3051" layer="21"/>
<rectangle x1="4.2101" y1="2.267" x2="4.5911" y2="2.3051" layer="21"/>
<rectangle x1="7.1438" y1="2.267" x2="7.7153" y2="2.3051" layer="21"/>
<rectangle x1="8.4392" y1="2.267" x2="9.0107" y2="2.3051" layer="21"/>
<rectangle x1="10.8014" y1="2.267" x2="11.3729" y2="2.3051" layer="21"/>
<rectangle x1="12.0968" y1="2.267" x2="12.6683" y2="2.3051" layer="21"/>
<rectangle x1="15.1829" y1="2.267" x2="15.3353" y2="2.3051" layer="21"/>
<rectangle x1="-0.0191" y1="2.3051" x2="0.1334" y2="2.3432" layer="21"/>
<rectangle x1="0.7049" y1="2.3051" x2="1.124" y2="2.3432" layer="21"/>
<rectangle x1="1.7717" y1="2.3051" x2="2.4575" y2="2.3432" layer="21"/>
<rectangle x1="2.9147" y1="2.3051" x2="3.6005" y2="2.3432" layer="21"/>
<rectangle x1="4.2101" y1="2.3051" x2="4.5911" y2="2.3432" layer="21"/>
<rectangle x1="7.1057" y1="2.3051" x2="7.601" y2="2.3432" layer="21"/>
<rectangle x1="8.5535" y1="2.3051" x2="9.0869" y2="2.3432" layer="21"/>
<rectangle x1="10.7633" y1="2.3051" x2="11.2586" y2="2.3432" layer="21"/>
<rectangle x1="12.2111" y1="2.3051" x2="12.7064" y2="2.3432" layer="21"/>
<rectangle x1="15.1829" y1="2.3051" x2="15.3353" y2="2.3432" layer="21"/>
<rectangle x1="-0.0191" y1="2.3432" x2="0.1334" y2="2.3813" layer="21"/>
<rectangle x1="0.7049" y1="2.3432" x2="1.0859" y2="2.3813" layer="21"/>
<rectangle x1="1.7336" y1="2.3432" x2="2.4956" y2="2.3813" layer="21"/>
<rectangle x1="2.8766" y1="2.3432" x2="3.6386" y2="2.3813" layer="21"/>
<rectangle x1="4.2101" y1="2.3432" x2="4.5911" y2="2.3813" layer="21"/>
<rectangle x1="7.0676" y1="2.3432" x2="7.5248" y2="2.3813" layer="21"/>
<rectangle x1="8.6297" y1="2.3432" x2="9.125" y2="2.3813" layer="21"/>
<rectangle x1="10.6871" y1="2.3432" x2="11.1824" y2="2.3813" layer="21"/>
<rectangle x1="12.2873" y1="2.3432" x2="12.7445" y2="2.3813" layer="21"/>
<rectangle x1="15.1829" y1="2.3432" x2="15.3353" y2="2.3813" layer="21"/>
<rectangle x1="-0.0191" y1="2.3813" x2="0.1334" y2="2.4194" layer="21"/>
<rectangle x1="0.7049" y1="2.3813" x2="1.0859" y2="2.4194" layer="21"/>
<rectangle x1="1.6574" y1="2.3813" x2="2.5337" y2="2.4194" layer="21"/>
<rectangle x1="2.8385" y1="2.3813" x2="3.6767" y2="2.4194" layer="21"/>
<rectangle x1="4.2482" y1="2.3813" x2="4.6292" y2="2.4194" layer="21"/>
<rectangle x1="7.0295" y1="2.3813" x2="7.4486" y2="2.4194" layer="21"/>
<rectangle x1="8.7059" y1="2.3813" x2="9.1631" y2="2.4194" layer="21"/>
<rectangle x1="10.649" y1="2.3813" x2="11.1062" y2="2.4194" layer="21"/>
<rectangle x1="12.3254" y1="2.3813" x2="12.7826" y2="2.4194" layer="21"/>
<rectangle x1="15.1829" y1="2.3813" x2="15.3353" y2="2.4194" layer="21"/>
<rectangle x1="-0.0191" y1="2.4194" x2="0.1334" y2="2.4575" layer="21"/>
<rectangle x1="0.7049" y1="2.4194" x2="1.0859" y2="2.4575" layer="21"/>
<rectangle x1="1.6574" y1="2.4194" x2="2.5718" y2="2.4575" layer="21"/>
<rectangle x1="2.8004" y1="2.4194" x2="3.7148" y2="2.4575" layer="21"/>
<rectangle x1="4.2482" y1="2.4194" x2="4.6292" y2="2.4575" layer="21"/>
<rectangle x1="6.9914" y1="2.4194" x2="7.4105" y2="2.4575" layer="21"/>
<rectangle x1="8.7821" y1="2.4194" x2="9.2012" y2="2.4575" layer="21"/>
<rectangle x1="10.6109" y1="2.4194" x2="11.03" y2="2.4575" layer="21"/>
<rectangle x1="12.4016" y1="2.4194" x2="12.8207" y2="2.4575" layer="21"/>
<rectangle x1="15.1829" y1="2.4194" x2="15.3353" y2="2.4575" layer="21"/>
<rectangle x1="-0.0191" y1="2.4575" x2="0.1334" y2="2.4956" layer="21"/>
<rectangle x1="0.6668" y1="2.4575" x2="1.0478" y2="2.4956" layer="21"/>
<rectangle x1="1.6193" y1="2.4575" x2="2.6099" y2="2.4956" layer="21"/>
<rectangle x1="2.7623" y1="2.4575" x2="3.7529" y2="2.4956" layer="21"/>
<rectangle x1="4.2482" y1="2.4575" x2="4.6292" y2="2.4956" layer="21"/>
<rectangle x1="6.9533" y1="2.4575" x2="7.3724" y2="2.4956" layer="21"/>
<rectangle x1="8.8202" y1="2.4575" x2="9.2393" y2="2.4956" layer="21"/>
<rectangle x1="10.6109" y1="2.4575" x2="10.9919" y2="2.4956" layer="21"/>
<rectangle x1="12.4397" y1="2.4575" x2="12.8588" y2="2.4956" layer="21"/>
<rectangle x1="15.1829" y1="2.4575" x2="15.3353" y2="2.4956" layer="21"/>
<rectangle x1="-0.0191" y1="2.4956" x2="0.1334" y2="2.5337" layer="21"/>
<rectangle x1="0.6668" y1="2.4956" x2="1.0478" y2="2.5337" layer="21"/>
<rectangle x1="1.5812" y1="2.4956" x2="2.0384" y2="2.5337" layer="21"/>
<rectangle x1="2.2289" y1="2.4956" x2="2.6099" y2="2.5337" layer="21"/>
<rectangle x1="2.7623" y1="2.4956" x2="3.1814" y2="2.5337" layer="21"/>
<rectangle x1="3.41" y1="2.4956" x2="3.791" y2="2.5337" layer="21"/>
<rectangle x1="4.2482" y1="2.4956" x2="4.6292" y2="2.5337" layer="21"/>
<rectangle x1="6.9152" y1="2.4956" x2="7.2962" y2="2.5337" layer="21"/>
<rectangle x1="7.8677" y1="2.4956" x2="8.3249" y2="2.5337" layer="21"/>
<rectangle x1="8.8583" y1="2.4956" x2="9.2393" y2="2.5337" layer="21"/>
<rectangle x1="10.5728" y1="2.4956" x2="10.9538" y2="2.5337" layer="21"/>
<rectangle x1="12.5159" y1="2.4956" x2="12.8969" y2="2.5337" layer="21"/>
<rectangle x1="15.1829" y1="2.4956" x2="15.3353" y2="2.5337" layer="21"/>
<rectangle x1="-0.0191" y1="2.5337" x2="0.1334" y2="2.5718" layer="21"/>
<rectangle x1="0.6668" y1="2.5337" x2="1.0478" y2="2.5718" layer="21"/>
<rectangle x1="1.5812" y1="2.5337" x2="2.0003" y2="2.5718" layer="21"/>
<rectangle x1="2.3051" y1="2.5337" x2="2.6099" y2="2.5718" layer="21"/>
<rectangle x1="2.7242" y1="2.5337" x2="3.1433" y2="2.5718" layer="21"/>
<rectangle x1="3.4481" y1="2.5337" x2="3.7529" y2="2.5718" layer="21"/>
<rectangle x1="4.2863" y1="2.5337" x2="4.6292" y2="2.5718" layer="21"/>
<rectangle x1="6.9152" y1="2.5337" x2="7.2581" y2="2.5718" layer="21"/>
<rectangle x1="7.8677" y1="2.5337" x2="8.3249" y2="2.5718" layer="21"/>
<rectangle x1="8.8964" y1="2.5337" x2="9.2774" y2="2.5718" layer="21"/>
<rectangle x1="10.5347" y1="2.5337" x2="10.9157" y2="2.5718" layer="21"/>
<rectangle x1="12.554" y1="2.5337" x2="12.935" y2="2.5718" layer="21"/>
<rectangle x1="15.1829" y1="2.5337" x2="15.3353" y2="2.5718" layer="21"/>
<rectangle x1="-0.0191" y1="2.5718" x2="0.1334" y2="2.6099" layer="21"/>
<rectangle x1="0.6668" y1="2.5718" x2="1.0478" y2="2.6099" layer="21"/>
<rectangle x1="1.5431" y1="2.5718" x2="1.9241" y2="2.6099" layer="21"/>
<rectangle x1="2.3432" y1="2.5718" x2="2.5337" y2="2.6099" layer="21"/>
<rectangle x1="2.7242" y1="2.5718" x2="3.1052" y2="2.6099" layer="21"/>
<rectangle x1="3.4862" y1="2.5718" x2="3.6767" y2="2.6099" layer="21"/>
<rectangle x1="4.2863" y1="2.5718" x2="4.6292" y2="2.6099" layer="21"/>
<rectangle x1="6.8771" y1="2.5718" x2="7.22" y2="2.6099" layer="21"/>
<rectangle x1="7.8677" y1="2.5718" x2="8.3249" y2="2.6099" layer="21"/>
<rectangle x1="8.9726" y1="2.5718" x2="9.3155" y2="2.6099" layer="21"/>
<rectangle x1="10.4966" y1="2.5718" x2="10.8776" y2="2.6099" layer="21"/>
<rectangle x1="12.5921" y1="2.5718" x2="12.9731" y2="2.6099" layer="21"/>
<rectangle x1="15.1829" y1="2.5718" x2="15.3353" y2="2.6099" layer="21"/>
<rectangle x1="-0.0191" y1="2.6099" x2="0.1334" y2="2.648" layer="21"/>
<rectangle x1="0.6668" y1="2.6099" x2="1.0478" y2="2.648" layer="21"/>
<rectangle x1="1.5431" y1="2.6099" x2="1.9241" y2="2.648" layer="21"/>
<rectangle x1="2.3813" y1="2.6099" x2="2.4575" y2="2.648" layer="21"/>
<rectangle x1="2.6861" y1="2.6099" x2="3.0671" y2="2.648" layer="21"/>
<rectangle x1="3.5243" y1="2.6099" x2="3.6005" y2="2.648" layer="21"/>
<rectangle x1="4.2863" y1="2.6099" x2="4.6292" y2="2.648" layer="21"/>
<rectangle x1="6.839" y1="2.6099" x2="7.1819" y2="2.648" layer="21"/>
<rectangle x1="7.8677" y1="2.6099" x2="8.3249" y2="2.648" layer="21"/>
<rectangle x1="8.9726" y1="2.6099" x2="9.3536" y2="2.648" layer="21"/>
<rectangle x1="10.4585" y1="2.6099" x2="10.8395" y2="2.648" layer="21"/>
<rectangle x1="11.6777" y1="2.6099" x2="11.7539" y2="2.648" layer="21"/>
<rectangle x1="12.6302" y1="2.6099" x2="12.9731" y2="2.648" layer="21"/>
<rectangle x1="15.1829" y1="2.6099" x2="15.3353" y2="2.648" layer="21"/>
<rectangle x1="-0.0191" y1="2.648" x2="0.1334" y2="2.6861" layer="21"/>
<rectangle x1="0.6668" y1="2.648" x2="1.0478" y2="2.6861" layer="21"/>
<rectangle x1="1.5431" y1="2.648" x2="1.9241" y2="2.6861" layer="21"/>
<rectangle x1="2.6861" y1="2.648" x2="3.0671" y2="2.6861" layer="21"/>
<rectangle x1="4.2863" y1="2.648" x2="4.6292" y2="2.6861" layer="21"/>
<rectangle x1="6.8009" y1="2.648" x2="7.1438" y2="2.6861" layer="21"/>
<rectangle x1="7.8677" y1="2.648" x2="8.3249" y2="2.6861" layer="21"/>
<rectangle x1="9.0107" y1="2.648" x2="9.3536" y2="2.6861" layer="21"/>
<rectangle x1="10.4585" y1="2.648" x2="10.8014" y2="2.6861" layer="21"/>
<rectangle x1="11.4491" y1="2.648" x2="11.9825" y2="2.6861" layer="21"/>
<rectangle x1="12.6683" y1="2.648" x2="13.0112" y2="2.6861" layer="21"/>
<rectangle x1="15.1829" y1="2.648" x2="15.3353" y2="2.6861" layer="21"/>
<rectangle x1="-0.0191" y1="2.6861" x2="0.1334" y2="2.7242" layer="21"/>
<rectangle x1="0.6668" y1="2.6861" x2="1.0478" y2="2.7242" layer="21"/>
<rectangle x1="1.5431" y1="2.6861" x2="1.886" y2="2.7242" layer="21"/>
<rectangle x1="2.6861" y1="2.6861" x2="3.029" y2="2.7242" layer="21"/>
<rectangle x1="4.2863" y1="2.6861" x2="4.6292" y2="2.7242" layer="21"/>
<rectangle x1="6.8009" y1="2.6861" x2="7.1438" y2="2.7242" layer="21"/>
<rectangle x1="7.8677" y1="2.6861" x2="8.3249" y2="2.7242" layer="21"/>
<rectangle x1="9.0488" y1="2.6861" x2="9.3917" y2="2.7242" layer="21"/>
<rectangle x1="10.4204" y1="2.6861" x2="10.7633" y2="2.7242" layer="21"/>
<rectangle x1="11.3729" y1="2.6861" x2="12.0587" y2="2.7242" layer="21"/>
<rectangle x1="12.7064" y1="2.6861" x2="13.0112" y2="2.7242" layer="21"/>
<rectangle x1="15.1829" y1="2.6861" x2="15.3353" y2="2.7242" layer="21"/>
<rectangle x1="-0.0191" y1="2.7242" x2="0.1334" y2="2.7623" layer="21"/>
<rectangle x1="0.6668" y1="2.7242" x2="1.0097" y2="2.7623" layer="21"/>
<rectangle x1="1.5431" y1="2.7242" x2="1.886" y2="2.7623" layer="21"/>
<rectangle x1="2.6861" y1="2.7242" x2="3.029" y2="2.7623" layer="21"/>
<rectangle x1="4.2863" y1="2.7242" x2="4.6673" y2="2.7623" layer="21"/>
<rectangle x1="6.7628" y1="2.7242" x2="7.1057" y2="2.7623" layer="21"/>
<rectangle x1="7.8677" y1="2.7242" x2="8.3249" y2="2.7623" layer="21"/>
<rectangle x1="9.0869" y1="2.7242" x2="9.3917" y2="2.7623" layer="21"/>
<rectangle x1="10.4204" y1="2.7242" x2="10.7252" y2="2.7623" layer="21"/>
<rectangle x1="11.3348" y1="2.7242" x2="12.1349" y2="2.7623" layer="21"/>
<rectangle x1="12.7064" y1="2.7242" x2="13.0493" y2="2.7623" layer="21"/>
<rectangle x1="15.1829" y1="2.7242" x2="15.3353" y2="2.7623" layer="21"/>
<rectangle x1="-0.0191" y1="2.7623" x2="0.1334" y2="2.8004" layer="21"/>
<rectangle x1="0.6668" y1="2.7623" x2="1.0097" y2="2.8004" layer="21"/>
<rectangle x1="1.505" y1="2.7623" x2="1.886" y2="2.8004" layer="21"/>
<rectangle x1="2.6861" y1="2.7623" x2="3.029" y2="2.8004" layer="21"/>
<rectangle x1="4.2863" y1="2.7623" x2="4.6673" y2="2.8004" layer="21"/>
<rectangle x1="6.7628" y1="2.7623" x2="7.0676" y2="2.8004" layer="21"/>
<rectangle x1="7.8677" y1="2.7623" x2="8.3249" y2="2.8004" layer="21"/>
<rectangle x1="9.125" y1="2.7623" x2="9.4298" y2="2.8004" layer="21"/>
<rectangle x1="10.3823" y1="2.7623" x2="10.6871" y2="2.8004" layer="21"/>
<rectangle x1="11.2586" y1="2.7623" x2="12.173" y2="2.8004" layer="21"/>
<rectangle x1="12.7445" y1="2.7623" x2="13.0493" y2="2.8004" layer="21"/>
<rectangle x1="15.1829" y1="2.7623" x2="15.3353" y2="2.8004" layer="21"/>
<rectangle x1="-0.0191" y1="2.8004" x2="0.1334" y2="2.8385" layer="21"/>
<rectangle x1="0.6668" y1="2.8004" x2="1.0097" y2="2.8385" layer="21"/>
<rectangle x1="1.505" y1="2.8004" x2="1.886" y2="2.8385" layer="21"/>
<rectangle x1="2.6861" y1="2.8004" x2="3.029" y2="2.8385" layer="21"/>
<rectangle x1="4.2863" y1="2.8004" x2="4.6673" y2="2.8385" layer="21"/>
<rectangle x1="6.7247" y1="2.8004" x2="7.0295" y2="2.8385" layer="21"/>
<rectangle x1="7.8677" y1="2.8004" x2="8.3249" y2="2.8385" layer="21"/>
<rectangle x1="9.125" y1="2.8004" x2="9.4679" y2="2.8385" layer="21"/>
<rectangle x1="10.3823" y1="2.8004" x2="10.6871" y2="2.8385" layer="21"/>
<rectangle x1="11.2205" y1="2.8004" x2="12.2111" y2="2.8385" layer="21"/>
<rectangle x1="12.7826" y1="2.8004" x2="13.0874" y2="2.8385" layer="21"/>
<rectangle x1="15.1829" y1="2.8004" x2="15.3353" y2="2.8385" layer="21"/>
<rectangle x1="-0.0191" y1="2.8385" x2="0.1334" y2="2.8766" layer="21"/>
<rectangle x1="0.6287" y1="2.8385" x2="1.0097" y2="2.8766" layer="21"/>
<rectangle x1="1.505" y1="2.8385" x2="1.886" y2="2.8766" layer="21"/>
<rectangle x1="2.6861" y1="2.8385" x2="3.029" y2="2.8766" layer="21"/>
<rectangle x1="4.2863" y1="2.8385" x2="4.6673" y2="2.8766" layer="21"/>
<rectangle x1="6.7247" y1="2.8385" x2="7.0295" y2="2.8766" layer="21"/>
<rectangle x1="7.8677" y1="2.8385" x2="8.3249" y2="2.8766" layer="21"/>
<rectangle x1="9.1631" y1="2.8385" x2="9.4679" y2="2.8766" layer="21"/>
<rectangle x1="10.3442" y1="2.8385" x2="10.649" y2="2.8766" layer="21"/>
<rectangle x1="11.1824" y1="2.8385" x2="12.2492" y2="2.8766" layer="21"/>
<rectangle x1="12.7826" y1="2.8385" x2="13.0874" y2="2.8766" layer="21"/>
<rectangle x1="15.1829" y1="2.8385" x2="15.3353" y2="2.8766" layer="21"/>
<rectangle x1="-0.0191" y1="2.8766" x2="0.1334" y2="2.9147" layer="21"/>
<rectangle x1="0.6668" y1="2.8766" x2="1.0097" y2="2.9147" layer="21"/>
<rectangle x1="1.505" y1="2.8766" x2="1.886" y2="2.9147" layer="21"/>
<rectangle x1="2.6861" y1="2.8766" x2="3.029" y2="2.9147" layer="21"/>
<rectangle x1="4.2863" y1="2.8766" x2="4.6673" y2="2.9147" layer="21"/>
<rectangle x1="6.6866" y1="2.8766" x2="6.9914" y2="2.9147" layer="21"/>
<rectangle x1="7.8677" y1="2.8766" x2="8.3249" y2="2.9147" layer="21"/>
<rectangle x1="9.1631" y1="2.8766" x2="9.4679" y2="2.9147" layer="21"/>
<rectangle x1="10.3442" y1="2.8766" x2="10.649" y2="2.9147" layer="21"/>
<rectangle x1="11.1824" y1="2.8766" x2="12.2873" y2="2.9147" layer="21"/>
<rectangle x1="12.8207" y1="2.8766" x2="13.1255" y2="2.9147" layer="21"/>
<rectangle x1="15.1829" y1="2.8766" x2="15.3353" y2="2.9147" layer="21"/>
<rectangle x1="-0.0191" y1="2.9147" x2="0.1334" y2="2.9528" layer="21"/>
<rectangle x1="0.6668" y1="2.9147" x2="1.0097" y2="2.9528" layer="21"/>
<rectangle x1="1.505" y1="2.9147" x2="1.886" y2="2.9528" layer="21"/>
<rectangle x1="2.6861" y1="2.9147" x2="3.029" y2="2.9528" layer="21"/>
<rectangle x1="4.2863" y1="2.9147" x2="4.6673" y2="2.9528" layer="21"/>
<rectangle x1="6.6866" y1="2.9147" x2="6.9914" y2="2.9528" layer="21"/>
<rectangle x1="7.8677" y1="2.9147" x2="8.3249" y2="2.9528" layer="21"/>
<rectangle x1="9.2012" y1="2.9147" x2="9.506" y2="2.9528" layer="21"/>
<rectangle x1="10.3061" y1="2.9147" x2="10.6109" y2="2.9528" layer="21"/>
<rectangle x1="11.1443" y1="2.9147" x2="12.3254" y2="2.9528" layer="21"/>
<rectangle x1="12.8207" y1="2.9147" x2="13.1255" y2="2.9528" layer="21"/>
<rectangle x1="15.1829" y1="2.9147" x2="15.3353" y2="2.9528" layer="21"/>
<rectangle x1="-0.0191" y1="2.9528" x2="0.1334" y2="2.9909" layer="21"/>
<rectangle x1="0.6668" y1="2.9528" x2="1.0097" y2="2.9909" layer="21"/>
<rectangle x1="1.5431" y1="2.9528" x2="1.886" y2="2.9909" layer="21"/>
<rectangle x1="2.6861" y1="2.9528" x2="3.029" y2="2.9909" layer="21"/>
<rectangle x1="4.2863" y1="2.9528" x2="4.6673" y2="2.9909" layer="21"/>
<rectangle x1="6.6866" y1="2.9528" x2="6.9533" y2="2.9909" layer="21"/>
<rectangle x1="7.8677" y1="2.9528" x2="8.3249" y2="2.9909" layer="21"/>
<rectangle x1="9.2012" y1="2.9528" x2="9.506" y2="2.9909" layer="21"/>
<rectangle x1="10.3061" y1="2.9528" x2="10.6109" y2="2.9909" layer="21"/>
<rectangle x1="11.1062" y1="2.9528" x2="11.5634" y2="2.9909" layer="21"/>
<rectangle x1="11.9063" y1="2.9528" x2="12.3635" y2="2.9909" layer="21"/>
<rectangle x1="12.8588" y1="2.9528" x2="13.1255" y2="2.9909" layer="21"/>
<rectangle x1="15.1829" y1="2.9528" x2="15.3353" y2="2.9909" layer="21"/>
<rectangle x1="-0.0191" y1="2.9909" x2="0.1334" y2="3.029" layer="21"/>
<rectangle x1="0.6668" y1="2.9909" x2="1.0478" y2="3.029" layer="21"/>
<rectangle x1="1.5431" y1="2.9909" x2="1.886" y2="3.029" layer="21"/>
<rectangle x1="2.6861" y1="2.9909" x2="3.029" y2="3.029" layer="21"/>
<rectangle x1="4.2863" y1="2.9909" x2="4.6292" y2="3.029" layer="21"/>
<rectangle x1="6.6485" y1="2.9909" x2="6.9533" y2="3.029" layer="21"/>
<rectangle x1="7.8677" y1="2.9909" x2="8.3249" y2="3.029" layer="21"/>
<rectangle x1="9.2393" y1="2.9909" x2="9.506" y2="3.029" layer="21"/>
<rectangle x1="10.3061" y1="2.9909" x2="10.5728" y2="3.029" layer="21"/>
<rectangle x1="11.1062" y1="2.9909" x2="11.5253" y2="3.029" layer="21"/>
<rectangle x1="11.9444" y1="2.9909" x2="12.3635" y2="3.029" layer="21"/>
<rectangle x1="12.8588" y1="2.9909" x2="13.1636" y2="3.029" layer="21"/>
<rectangle x1="15.1829" y1="2.9909" x2="15.3353" y2="3.029" layer="21"/>
<rectangle x1="-0.0191" y1="3.029" x2="0.1334" y2="3.0671" layer="21"/>
<rectangle x1="0.6668" y1="3.029" x2="1.0478" y2="3.0671" layer="21"/>
<rectangle x1="1.5431" y1="3.029" x2="1.9241" y2="3.0671" layer="21"/>
<rectangle x1="2.6861" y1="3.029" x2="3.0671" y2="3.0671" layer="21"/>
<rectangle x1="4.2863" y1="3.029" x2="4.6292" y2="3.0671" layer="21"/>
<rectangle x1="6.6485" y1="3.029" x2="6.9533" y2="3.0671" layer="21"/>
<rectangle x1="7.8677" y1="3.029" x2="8.3249" y2="3.0671" layer="21"/>
<rectangle x1="9.2393" y1="3.029" x2="9.5441" y2="3.0671" layer="21"/>
<rectangle x1="10.268" y1="3.029" x2="10.5728" y2="3.0671" layer="21"/>
<rectangle x1="11.1062" y1="3.029" x2="11.4872" y2="3.0671" layer="21"/>
<rectangle x1="11.9825" y1="3.029" x2="12.4016" y2="3.0671" layer="21"/>
<rectangle x1="12.8588" y1="3.029" x2="13.1636" y2="3.0671" layer="21"/>
<rectangle x1="15.1829" y1="3.029" x2="15.3353" y2="3.0671" layer="21"/>
<rectangle x1="-0.0191" y1="3.0671" x2="0.1334" y2="3.1052" layer="21"/>
<rectangle x1="0.6668" y1="3.0671" x2="1.0478" y2="3.1052" layer="21"/>
<rectangle x1="1.5431" y1="3.0671" x2="1.9241" y2="3.1052" layer="21"/>
<rectangle x1="2.3432" y1="3.0671" x2="2.4575" y2="3.1052" layer="21"/>
<rectangle x1="2.7242" y1="3.0671" x2="3.0671" y2="3.1052" layer="21"/>
<rectangle x1="3.4862" y1="3.0671" x2="3.6005" y2="3.1052" layer="21"/>
<rectangle x1="4.2863" y1="3.0671" x2="4.6292" y2="3.1052" layer="21"/>
<rectangle x1="6.6485" y1="3.0671" x2="6.9152" y2="3.1052" layer="21"/>
<rectangle x1="7.8677" y1="3.0671" x2="8.3249" y2="3.1052" layer="21"/>
<rectangle x1="9.2393" y1="3.0671" x2="9.5441" y2="3.1052" layer="21"/>
<rectangle x1="10.268" y1="3.0671" x2="10.5728" y2="3.1052" layer="21"/>
<rectangle x1="11.0681" y1="3.0671" x2="11.4491" y2="3.1052" layer="21"/>
<rectangle x1="12.0206" y1="3.0671" x2="12.4016" y2="3.1052" layer="21"/>
<rectangle x1="12.8969" y1="3.0671" x2="13.1636" y2="3.1052" layer="21"/>
<rectangle x1="15.1829" y1="3.0671" x2="15.3353" y2="3.1052" layer="21"/>
<rectangle x1="-0.0191" y1="3.1052" x2="0.1334" y2="3.1433" layer="21"/>
<rectangle x1="0.6668" y1="3.1052" x2="1.0478" y2="3.1433" layer="21"/>
<rectangle x1="1.5812" y1="3.1052" x2="1.9622" y2="3.1433" layer="21"/>
<rectangle x1="2.3051" y1="3.1052" x2="2.5337" y2="3.1433" layer="21"/>
<rectangle x1="2.7242" y1="3.1052" x2="3.1052" y2="3.1433" layer="21"/>
<rectangle x1="3.4481" y1="3.1052" x2="3.6767" y2="3.1433" layer="21"/>
<rectangle x1="4.2863" y1="3.1052" x2="4.6292" y2="3.1433" layer="21"/>
<rectangle x1="6.6104" y1="3.1052" x2="6.9152" y2="3.1433" layer="21"/>
<rectangle x1="7.8677" y1="3.1052" x2="8.3249" y2="3.1433" layer="21"/>
<rectangle x1="9.2774" y1="3.1052" x2="9.5441" y2="3.1433" layer="21"/>
<rectangle x1="10.268" y1="3.1052" x2="10.5347" y2="3.1433" layer="21"/>
<rectangle x1="11.0681" y1="3.1052" x2="11.4491" y2="3.1433" layer="21"/>
<rectangle x1="12.0206" y1="3.1052" x2="12.4397" y2="3.1433" layer="21"/>
<rectangle x1="12.8969" y1="3.1052" x2="13.2017" y2="3.1433" layer="21"/>
<rectangle x1="15.1829" y1="3.1052" x2="15.3353" y2="3.1433" layer="21"/>
<rectangle x1="-0.0191" y1="3.1433" x2="0.1334" y2="3.1814" layer="21"/>
<rectangle x1="0.6668" y1="3.1433" x2="1.0478" y2="3.1814" layer="21"/>
<rectangle x1="1.5812" y1="3.1433" x2="2.0003" y2="3.1814" layer="21"/>
<rectangle x1="2.267" y1="3.1433" x2="2.6099" y2="3.1814" layer="21"/>
<rectangle x1="2.7623" y1="3.1433" x2="3.1433" y2="3.1814" layer="21"/>
<rectangle x1="3.41" y1="3.1433" x2="3.7529" y2="3.1814" layer="21"/>
<rectangle x1="4.2482" y1="3.1433" x2="4.6292" y2="3.1814" layer="21"/>
<rectangle x1="6.6104" y1="3.1433" x2="6.9152" y2="3.1814" layer="21"/>
<rectangle x1="7.8677" y1="3.1433" x2="8.3249" y2="3.1814" layer="21"/>
<rectangle x1="9.2774" y1="3.1433" x2="9.5441" y2="3.1814" layer="21"/>
<rectangle x1="10.268" y1="3.1433" x2="10.5347" y2="3.1814" layer="21"/>
<rectangle x1="11.0681" y1="3.1433" x2="11.4491" y2="3.1814" layer="21"/>
<rectangle x1="12.0587" y1="3.1433" x2="12.4397" y2="3.1814" layer="21"/>
<rectangle x1="12.8969" y1="3.1433" x2="13.2017" y2="3.1814" layer="21"/>
<rectangle x1="15.1829" y1="3.1433" x2="15.3353" y2="3.1814" layer="21"/>
<rectangle x1="-0.0191" y1="3.1814" x2="0.1334" y2="3.2195" layer="21"/>
<rectangle x1="0.6668" y1="3.1814" x2="1.0478" y2="3.2195" layer="21"/>
<rectangle x1="1.6193" y1="3.1814" x2="2.1146" y2="3.2195" layer="21"/>
<rectangle x1="2.1908" y1="3.1814" x2="2.6099" y2="3.2195" layer="21"/>
<rectangle x1="2.7623" y1="3.1814" x2="3.2576" y2="3.2195" layer="21"/>
<rectangle x1="3.3338" y1="3.1814" x2="3.7529" y2="3.2195" layer="21"/>
<rectangle x1="4.2482" y1="3.1814" x2="4.6292" y2="3.2195" layer="21"/>
<rectangle x1="6.6104" y1="3.1814" x2="6.8771" y2="3.2195" layer="21"/>
<rectangle x1="7.7153" y1="3.1814" x2="8.4773" y2="3.2195" layer="21"/>
<rectangle x1="9.2774" y1="3.1814" x2="9.5441" y2="3.2195" layer="21"/>
<rectangle x1="10.268" y1="3.1814" x2="10.5347" y2="3.2195" layer="21"/>
<rectangle x1="11.0681" y1="3.1814" x2="11.411" y2="3.2195" layer="21"/>
<rectangle x1="12.0587" y1="3.1814" x2="12.4397" y2="3.2195" layer="21"/>
<rectangle x1="12.935" y1="3.1814" x2="13.2017" y2="3.2195" layer="21"/>
<rectangle x1="15.1829" y1="3.1814" x2="15.3353" y2="3.2195" layer="21"/>
<rectangle x1="-0.0191" y1="3.2195" x2="0.1334" y2="3.2576" layer="21"/>
<rectangle x1="0.6668" y1="3.2195" x2="1.0478" y2="3.2576" layer="21"/>
<rectangle x1="1.6193" y1="3.2195" x2="2.5718" y2="3.2576" layer="21"/>
<rectangle x1="2.8004" y1="3.2195" x2="3.7529" y2="3.2576" layer="21"/>
<rectangle x1="4.2482" y1="3.2195" x2="4.6292" y2="3.2576" layer="21"/>
<rectangle x1="6.6104" y1="3.2195" x2="6.8771" y2="3.2576" layer="21"/>
<rectangle x1="7.6772" y1="3.2195" x2="8.4773" y2="3.2576" layer="21"/>
<rectangle x1="9.2774" y1="3.2195" x2="9.5441" y2="3.2576" layer="21"/>
<rectangle x1="10.2299" y1="3.2195" x2="10.5347" y2="3.2576" layer="21"/>
<rectangle x1="12.0587" y1="3.2195" x2="12.4397" y2="3.2576" layer="21"/>
<rectangle x1="12.935" y1="3.2195" x2="13.2017" y2="3.2576" layer="21"/>
<rectangle x1="15.1829" y1="3.2195" x2="15.3353" y2="3.2576" layer="21"/>
<rectangle x1="-0.0191" y1="3.2576" x2="0.1334" y2="3.2957" layer="21"/>
<rectangle x1="0.7049" y1="3.2576" x2="1.0859" y2="3.2957" layer="21"/>
<rectangle x1="1.6574" y1="3.2576" x2="2.5718" y2="3.2957" layer="21"/>
<rectangle x1="2.8004" y1="3.2576" x2="3.7148" y2="3.2957" layer="21"/>
<rectangle x1="4.2482" y1="3.2576" x2="4.6292" y2="3.2957" layer="21"/>
<rectangle x1="6.6104" y1="3.2576" x2="6.8771" y2="3.2957" layer="21"/>
<rectangle x1="7.6772" y1="3.2576" x2="8.4773" y2="3.2957" layer="21"/>
<rectangle x1="9.2774" y1="3.2576" x2="9.5822" y2="3.2957" layer="21"/>
<rectangle x1="10.2299" y1="3.2576" x2="10.5347" y2="3.2957" layer="21"/>
<rectangle x1="12.0968" y1="3.2576" x2="12.4778" y2="3.2957" layer="21"/>
<rectangle x1="12.935" y1="3.2576" x2="13.2017" y2="3.2957" layer="21"/>
<rectangle x1="15.1829" y1="3.2576" x2="15.3353" y2="3.2957" layer="21"/>
<rectangle x1="-0.0191" y1="3.2957" x2="0.1334" y2="3.3338" layer="21"/>
<rectangle x1="0.7049" y1="3.2957" x2="1.0859" y2="3.3338" layer="21"/>
<rectangle x1="1.6955" y1="3.2957" x2="2.5337" y2="3.3338" layer="21"/>
<rectangle x1="2.8385" y1="3.2957" x2="3.6767" y2="3.3338" layer="21"/>
<rectangle x1="4.2101" y1="3.2957" x2="4.6292" y2="3.3338" layer="21"/>
<rectangle x1="6.6104" y1="3.2957" x2="6.8771" y2="3.3338" layer="21"/>
<rectangle x1="7.6772" y1="3.2957" x2="8.4773" y2="3.3338" layer="21"/>
<rectangle x1="9.2774" y1="3.2957" x2="9.5822" y2="3.3338" layer="21"/>
<rectangle x1="10.2299" y1="3.2957" x2="10.5347" y2="3.3338" layer="21"/>
<rectangle x1="12.0968" y1="3.2957" x2="12.4778" y2="3.3338" layer="21"/>
<rectangle x1="12.935" y1="3.2957" x2="13.2017" y2="3.3338" layer="21"/>
<rectangle x1="15.1829" y1="3.2957" x2="15.3353" y2="3.3338" layer="21"/>
<rectangle x1="-0.0191" y1="3.3338" x2="0.1334" y2="3.3719" layer="21"/>
<rectangle x1="0.7049" y1="3.3338" x2="1.0859" y2="3.3719" layer="21"/>
<rectangle x1="1.7336" y1="3.3338" x2="2.4956" y2="3.3719" layer="21"/>
<rectangle x1="2.9147" y1="3.3338" x2="3.6386" y2="3.3719" layer="21"/>
<rectangle x1="4.2101" y1="3.3338" x2="4.5911" y2="3.3719" layer="21"/>
<rectangle x1="6.6104" y1="3.3338" x2="6.8771" y2="3.3719" layer="21"/>
<rectangle x1="7.6772" y1="3.3338" x2="8.4773" y2="3.3719" layer="21"/>
<rectangle x1="9.2774" y1="3.3338" x2="9.5822" y2="3.3719" layer="21"/>
<rectangle x1="10.2299" y1="3.3338" x2="10.4966" y2="3.3719" layer="21"/>
<rectangle x1="12.0968" y1="3.3338" x2="12.4778" y2="3.3719" layer="21"/>
<rectangle x1="12.935" y1="3.3338" x2="13.2017" y2="3.3719" layer="21"/>
<rectangle x1="15.1829" y1="3.3338" x2="15.3353" y2="3.3719" layer="21"/>
<rectangle x1="-0.0191" y1="3.3719" x2="0.1334" y2="3.41" layer="21"/>
<rectangle x1="0.7049" y1="3.3719" x2="1.124" y2="3.41" layer="21"/>
<rectangle x1="1.8098" y1="3.3719" x2="2.4194" y2="3.41" layer="21"/>
<rectangle x1="2.9528" y1="3.3719" x2="3.6005" y2="3.41" layer="21"/>
<rectangle x1="4.2101" y1="3.3719" x2="4.5911" y2="3.41" layer="21"/>
<rectangle x1="6.6104" y1="3.3719" x2="6.8771" y2="3.41" layer="21"/>
<rectangle x1="7.6772" y1="3.3719" x2="8.4773" y2="3.41" layer="21"/>
<rectangle x1="9.3155" y1="3.3719" x2="9.5822" y2="3.41" layer="21"/>
<rectangle x1="10.2299" y1="3.3719" x2="10.4966" y2="3.41" layer="21"/>
<rectangle x1="11.1824" y1="3.3719" x2="11.2967" y2="3.41" layer="21"/>
<rectangle x1="12.0968" y1="3.3719" x2="12.4778" y2="3.41" layer="21"/>
<rectangle x1="12.935" y1="3.3719" x2="13.2017" y2="3.41" layer="21"/>
<rectangle x1="15.1829" y1="3.3719" x2="15.3353" y2="3.41" layer="21"/>
<rectangle x1="-0.0191" y1="3.41" x2="0.1334" y2="3.4481" layer="21"/>
<rectangle x1="0.743" y1="3.41" x2="1.124" y2="3.4481" layer="21"/>
<rectangle x1="1.886" y1="3.41" x2="2.3432" y2="3.4481" layer="21"/>
<rectangle x1="3.029" y1="3.41" x2="3.4862" y2="3.4481" layer="21"/>
<rectangle x1="4.172" y1="3.41" x2="4.5911" y2="3.4481" layer="21"/>
<rectangle x1="6.6104" y1="3.41" x2="6.8771" y2="3.4481" layer="21"/>
<rectangle x1="7.6772" y1="3.41" x2="8.4773" y2="3.4481" layer="21"/>
<rectangle x1="9.3155" y1="3.41" x2="9.5822" y2="3.4481" layer="21"/>
<rectangle x1="10.2299" y1="3.41" x2="10.4966" y2="3.4481" layer="21"/>
<rectangle x1="11.1443" y1="3.41" x2="11.3348" y2="3.4481" layer="21"/>
<rectangle x1="12.0968" y1="3.41" x2="12.4778" y2="3.4481" layer="21"/>
<rectangle x1="12.935" y1="3.41" x2="13.2017" y2="3.4481" layer="21"/>
<rectangle x1="15.1829" y1="3.41" x2="15.3353" y2="3.4481" layer="21"/>
<rectangle x1="-0.0191" y1="3.4481" x2="0.1334" y2="3.4862" layer="21"/>
<rectangle x1="0.743" y1="3.4481" x2="1.124" y2="3.4862" layer="21"/>
<rectangle x1="2.0765" y1="3.4481" x2="2.1527" y2="3.4862" layer="21"/>
<rectangle x1="3.2195" y1="3.4481" x2="3.2957" y2="3.4862" layer="21"/>
<rectangle x1="4.172" y1="3.4481" x2="4.553" y2="3.4862" layer="21"/>
<rectangle x1="6.6104" y1="3.4481" x2="6.8771" y2="3.4862" layer="21"/>
<rectangle x1="7.6772" y1="3.4481" x2="8.4773" y2="3.4862" layer="21"/>
<rectangle x1="9.3155" y1="3.4481" x2="9.5822" y2="3.4862" layer="21"/>
<rectangle x1="10.2299" y1="3.4481" x2="10.4966" y2="3.4862" layer="21"/>
<rectangle x1="11.1062" y1="3.4481" x2="11.3729" y2="3.4862" layer="21"/>
<rectangle x1="12.0968" y1="3.4481" x2="12.4778" y2="3.4862" layer="21"/>
<rectangle x1="12.935" y1="3.4481" x2="13.2017" y2="3.4862" layer="21"/>
<rectangle x1="15.1829" y1="3.4481" x2="15.3353" y2="3.4862" layer="21"/>
<rectangle x1="-0.0191" y1="3.4862" x2="0.1334" y2="3.5243" layer="21"/>
<rectangle x1="0.743" y1="3.4862" x2="1.1621" y2="3.5243" layer="21"/>
<rectangle x1="4.172" y1="3.4862" x2="4.553" y2="3.5243" layer="21"/>
<rectangle x1="6.6104" y1="3.4862" x2="6.8771" y2="3.5243" layer="21"/>
<rectangle x1="7.6772" y1="3.4862" x2="8.4773" y2="3.5243" layer="21"/>
<rectangle x1="9.2774" y1="3.4862" x2="9.5822" y2="3.5243" layer="21"/>
<rectangle x1="10.2299" y1="3.4862" x2="10.4966" y2="3.5243" layer="21"/>
<rectangle x1="11.0681" y1="3.4862" x2="11.411" y2="3.5243" layer="21"/>
<rectangle x1="12.0968" y1="3.4862" x2="12.4778" y2="3.5243" layer="21"/>
<rectangle x1="12.935" y1="3.4862" x2="13.2017" y2="3.5243" layer="21"/>
<rectangle x1="15.1829" y1="3.4862" x2="15.3353" y2="3.5243" layer="21"/>
<rectangle x1="-0.0191" y1="3.5243" x2="0.1334" y2="3.5624" layer="21"/>
<rectangle x1="0.7811" y1="3.5243" x2="1.1621" y2="3.5624" layer="21"/>
<rectangle x1="4.1339" y1="3.5243" x2="4.553" y2="3.5624" layer="21"/>
<rectangle x1="6.6104" y1="3.5243" x2="6.8771" y2="3.5624" layer="21"/>
<rectangle x1="7.6772" y1="3.5243" x2="8.4773" y2="3.5624" layer="21"/>
<rectangle x1="9.2774" y1="3.5243" x2="9.5822" y2="3.5624" layer="21"/>
<rectangle x1="10.2299" y1="3.5243" x2="10.4966" y2="3.5624" layer="21"/>
<rectangle x1="11.03" y1="3.5243" x2="11.4491" y2="3.5624" layer="21"/>
<rectangle x1="12.0968" y1="3.5243" x2="12.4778" y2="3.5624" layer="21"/>
<rectangle x1="12.935" y1="3.5243" x2="13.2017" y2="3.5624" layer="21"/>
<rectangle x1="15.1829" y1="3.5243" x2="15.3353" y2="3.5624" layer="21"/>
<rectangle x1="-0.0191" y1="3.5624" x2="0.1334" y2="3.6005" layer="21"/>
<rectangle x1="0.7811" y1="3.5624" x2="1.2002" y2="3.6005" layer="21"/>
<rectangle x1="4.1339" y1="3.5624" x2="4.5149" y2="3.6005" layer="21"/>
<rectangle x1="6.6104" y1="3.5624" x2="6.8771" y2="3.6005" layer="21"/>
<rectangle x1="7.6772" y1="3.5624" x2="8.4773" y2="3.6005" layer="21"/>
<rectangle x1="9.2774" y1="3.5624" x2="9.5822" y2="3.6005" layer="21"/>
<rectangle x1="10.2299" y1="3.5624" x2="10.5347" y2="3.6005" layer="21"/>
<rectangle x1="10.9919" y1="3.5624" x2="11.4872" y2="3.6005" layer="21"/>
<rectangle x1="12.0968" y1="3.5624" x2="12.4778" y2="3.6005" layer="21"/>
<rectangle x1="12.935" y1="3.5624" x2="13.2017" y2="3.6005" layer="21"/>
<rectangle x1="15.1829" y1="3.5624" x2="15.3353" y2="3.6005" layer="21"/>
<rectangle x1="-0.0191" y1="3.6005" x2="0.1334" y2="3.6386" layer="21"/>
<rectangle x1="0.7811" y1="3.6005" x2="1.2002" y2="3.6386" layer="21"/>
<rectangle x1="4.0958" y1="3.6005" x2="4.5149" y2="3.6386" layer="21"/>
<rectangle x1="6.6104" y1="3.6005" x2="6.8771" y2="3.6386" layer="21"/>
<rectangle x1="7.6772" y1="3.6005" x2="8.4773" y2="3.6386" layer="21"/>
<rectangle x1="9.2774" y1="3.6005" x2="9.5441" y2="3.6386" layer="21"/>
<rectangle x1="10.2299" y1="3.6005" x2="10.5347" y2="3.6386" layer="21"/>
<rectangle x1="10.9538" y1="3.6005" x2="11.5253" y2="3.6386" layer="21"/>
<rectangle x1="12.0968" y1="3.6005" x2="12.4397" y2="3.6386" layer="21"/>
<rectangle x1="12.935" y1="3.6005" x2="13.2017" y2="3.6386" layer="21"/>
<rectangle x1="15.1829" y1="3.6005" x2="15.3353" y2="3.6386" layer="21"/>
<rectangle x1="-0.0191" y1="3.6386" x2="0.1334" y2="3.6767" layer="21"/>
<rectangle x1="0.8192" y1="3.6386" x2="1.2383" y2="3.6767" layer="21"/>
<rectangle x1="4.0958" y1="3.6386" x2="4.5149" y2="3.6767" layer="21"/>
<rectangle x1="6.6104" y1="3.6386" x2="6.8771" y2="3.6767" layer="21"/>
<rectangle x1="7.6772" y1="3.6386" x2="8.4773" y2="3.6767" layer="21"/>
<rectangle x1="9.2774" y1="3.6386" x2="9.5441" y2="3.6767" layer="21"/>
<rectangle x1="10.268" y1="3.6386" x2="10.5347" y2="3.6767" layer="21"/>
<rectangle x1="11.0681" y1="3.6386" x2="11.4491" y2="3.6767" layer="21"/>
<rectangle x1="12.0587" y1="3.6386" x2="12.4397" y2="3.6767" layer="21"/>
<rectangle x1="12.935" y1="3.6386" x2="13.2017" y2="3.6767" layer="21"/>
<rectangle x1="15.1829" y1="3.6386" x2="15.3353" y2="3.6767" layer="21"/>
<rectangle x1="-0.0191" y1="3.6767" x2="0.1334" y2="3.7148" layer="21"/>
<rectangle x1="0.8192" y1="3.6767" x2="1.2764" y2="3.7148" layer="21"/>
<rectangle x1="4.0577" y1="3.6767" x2="4.4768" y2="3.7148" layer="21"/>
<rectangle x1="6.6104" y1="3.6767" x2="6.9152" y2="3.7148" layer="21"/>
<rectangle x1="7.6772" y1="3.6767" x2="8.4773" y2="3.7148" layer="21"/>
<rectangle x1="9.2774" y1="3.6767" x2="9.5441" y2="3.7148" layer="21"/>
<rectangle x1="10.268" y1="3.6767" x2="10.5347" y2="3.7148" layer="21"/>
<rectangle x1="11.0681" y1="3.6767" x2="11.4491" y2="3.7148" layer="21"/>
<rectangle x1="12.0587" y1="3.6767" x2="12.4397" y2="3.7148" layer="21"/>
<rectangle x1="12.8969" y1="3.6767" x2="13.2017" y2="3.7148" layer="21"/>
<rectangle x1="15.1829" y1="3.6767" x2="15.3353" y2="3.7148" layer="21"/>
<rectangle x1="-0.0191" y1="3.7148" x2="0.1334" y2="3.7529" layer="21"/>
<rectangle x1="0.8573" y1="3.7148" x2="1.2764" y2="3.7529" layer="21"/>
<rectangle x1="4.0196" y1="3.7148" x2="4.4768" y2="3.7529" layer="21"/>
<rectangle x1="6.6104" y1="3.7148" x2="6.9152" y2="3.7529" layer="21"/>
<rectangle x1="7.6772" y1="3.7148" x2="8.4773" y2="3.7529" layer="21"/>
<rectangle x1="9.2774" y1="3.7148" x2="9.5441" y2="3.7529" layer="21"/>
<rectangle x1="10.268" y1="3.7148" x2="10.5347" y2="3.7529" layer="21"/>
<rectangle x1="11.0681" y1="3.7148" x2="11.4491" y2="3.7529" layer="21"/>
<rectangle x1="12.0206" y1="3.7148" x2="12.4397" y2="3.7529" layer="21"/>
<rectangle x1="12.8969" y1="3.7148" x2="13.2017" y2="3.7529" layer="21"/>
<rectangle x1="15.1829" y1="3.7148" x2="15.3353" y2="3.7529" layer="21"/>
<rectangle x1="-0.0191" y1="3.7529" x2="0.1334" y2="3.791" layer="21"/>
<rectangle x1="0.8573" y1="3.7529" x2="1.3145" y2="3.791" layer="21"/>
<rectangle x1="4.0196" y1="3.7529" x2="4.4387" y2="3.791" layer="21"/>
<rectangle x1="6.6485" y1="3.7529" x2="6.9152" y2="3.791" layer="21"/>
<rectangle x1="7.6772" y1="3.7529" x2="8.4773" y2="3.791" layer="21"/>
<rectangle x1="9.2393" y1="3.7529" x2="9.5441" y2="3.791" layer="21"/>
<rectangle x1="10.268" y1="3.7529" x2="10.5728" y2="3.791" layer="21"/>
<rectangle x1="11.1062" y1="3.7529" x2="11.4491" y2="3.791" layer="21"/>
<rectangle x1="12.0206" y1="3.7529" x2="12.4016" y2="3.791" layer="21"/>
<rectangle x1="12.8969" y1="3.7529" x2="13.1636" y2="3.791" layer="21"/>
<rectangle x1="15.1829" y1="3.7529" x2="15.3353" y2="3.791" layer="21"/>
<rectangle x1="-0.0191" y1="3.791" x2="0.1334" y2="3.8291" layer="21"/>
<rectangle x1="0.8954" y1="3.791" x2="1.3526" y2="3.8291" layer="21"/>
<rectangle x1="3.9815" y1="3.791" x2="4.4387" y2="3.8291" layer="21"/>
<rectangle x1="6.6485" y1="3.791" x2="6.9533" y2="3.8291" layer="21"/>
<rectangle x1="7.6772" y1="3.791" x2="8.4773" y2="3.8291" layer="21"/>
<rectangle x1="9.2393" y1="3.791" x2="9.5441" y2="3.8291" layer="21"/>
<rectangle x1="10.268" y1="3.791" x2="10.5728" y2="3.8291" layer="21"/>
<rectangle x1="11.1062" y1="3.791" x2="11.4872" y2="3.8291" layer="21"/>
<rectangle x1="11.9825" y1="3.791" x2="12.4016" y2="3.8291" layer="21"/>
<rectangle x1="12.8588" y1="3.791" x2="13.1636" y2="3.8291" layer="21"/>
<rectangle x1="15.1829" y1="3.791" x2="15.3353" y2="3.8291" layer="21"/>
<rectangle x1="-0.0191" y1="3.8291" x2="0.1334" y2="3.8672" layer="21"/>
<rectangle x1="0.8954" y1="3.8291" x2="1.3526" y2="3.8672" layer="21"/>
<rectangle x1="3.9434" y1="3.8291" x2="4.4006" y2="3.8672" layer="21"/>
<rectangle x1="6.6485" y1="3.8291" x2="6.9533" y2="3.8672" layer="21"/>
<rectangle x1="7.7153" y1="3.8291" x2="8.4773" y2="3.8672" layer="21"/>
<rectangle x1="9.2393" y1="3.8291" x2="9.506" y2="3.8672" layer="21"/>
<rectangle x1="10.3061" y1="3.8291" x2="10.5728" y2="3.8672" layer="21"/>
<rectangle x1="11.1062" y1="3.8291" x2="11.5253" y2="3.8672" layer="21"/>
<rectangle x1="11.9444" y1="3.8291" x2="12.3635" y2="3.8672" layer="21"/>
<rectangle x1="12.8588" y1="3.8291" x2="13.1636" y2="3.8672" layer="21"/>
<rectangle x1="15.1829" y1="3.8291" x2="15.3353" y2="3.8672" layer="21"/>
<rectangle x1="-0.0191" y1="3.8672" x2="0.1334" y2="3.9053" layer="21"/>
<rectangle x1="0.9335" y1="3.8672" x2="1.3907" y2="3.9053" layer="21"/>
<rectangle x1="3.9053" y1="3.8672" x2="4.3625" y2="3.9053" layer="21"/>
<rectangle x1="6.6485" y1="3.8672" x2="6.9533" y2="3.9053" layer="21"/>
<rectangle x1="7.7534" y1="3.8672" x2="8.4392" y2="3.9053" layer="21"/>
<rectangle x1="9.2012" y1="3.8672" x2="9.506" y2="3.9053" layer="21"/>
<rectangle x1="10.3061" y1="3.8672" x2="10.6109" y2="3.9053" layer="21"/>
<rectangle x1="11.1443" y1="3.8672" x2="11.6015" y2="3.9053" layer="21"/>
<rectangle x1="11.8682" y1="3.8672" x2="12.3635" y2="3.9053" layer="21"/>
<rectangle x1="12.8588" y1="3.8672" x2="13.1255" y2="3.9053" layer="21"/>
<rectangle x1="15.1829" y1="3.8672" x2="15.3353" y2="3.9053" layer="21"/>
<rectangle x1="-0.0191" y1="3.9053" x2="0.1334" y2="3.9434" layer="21"/>
<rectangle x1="0.9716" y1="3.9053" x2="1.4288" y2="3.9434" layer="21"/>
<rectangle x1="3.9053" y1="3.9053" x2="4.3625" y2="3.9434" layer="21"/>
<rectangle x1="6.6866" y1="3.9053" x2="6.9914" y2="3.9434" layer="21"/>
<rectangle x1="9.2012" y1="3.9053" x2="9.506" y2="3.9434" layer="21"/>
<rectangle x1="10.3061" y1="3.9053" x2="10.6109" y2="3.9434" layer="21"/>
<rectangle x1="11.1443" y1="3.9053" x2="12.3254" y2="3.9434" layer="21"/>
<rectangle x1="12.8207" y1="3.9053" x2="13.1255" y2="3.9434" layer="21"/>
<rectangle x1="15.1829" y1="3.9053" x2="15.3353" y2="3.9434" layer="21"/>
<rectangle x1="-0.0191" y1="3.9434" x2="0.1334" y2="3.9815" layer="21"/>
<rectangle x1="0.9716" y1="3.9434" x2="1.4669" y2="3.9815" layer="21"/>
<rectangle x1="3.8672" y1="3.9434" x2="4.3244" y2="3.9815" layer="21"/>
<rectangle x1="6.6866" y1="3.9434" x2="6.9914" y2="3.9815" layer="21"/>
<rectangle x1="9.2012" y1="3.9434" x2="9.4679" y2="3.9815" layer="21"/>
<rectangle x1="10.3442" y1="3.9434" x2="10.649" y2="3.9815" layer="21"/>
<rectangle x1="11.1824" y1="3.9434" x2="12.2873" y2="3.9815" layer="21"/>
<rectangle x1="12.8207" y1="3.9434" x2="13.1255" y2="3.9815" layer="21"/>
<rectangle x1="15.1829" y1="3.9434" x2="15.3353" y2="3.9815" layer="21"/>
<rectangle x1="-0.0191" y1="3.9815" x2="0.1334" y2="4.0196" layer="21"/>
<rectangle x1="1.0097" y1="3.9815" x2="1.505" y2="4.0196" layer="21"/>
<rectangle x1="3.8291" y1="3.9815" x2="4.3244" y2="4.0196" layer="21"/>
<rectangle x1="6.6866" y1="3.9815" x2="7.0295" y2="4.0196" layer="21"/>
<rectangle x1="7.982" y1="3.9815" x2="8.1725" y2="4.0196" layer="21"/>
<rectangle x1="9.1631" y1="3.9815" x2="9.4679" y2="4.0196" layer="21"/>
<rectangle x1="10.3442" y1="3.9815" x2="10.649" y2="4.0196" layer="21"/>
<rectangle x1="11.2205" y1="3.9815" x2="12.2492" y2="4.0196" layer="21"/>
<rectangle x1="12.7826" y1="3.9815" x2="13.1255" y2="4.0196" layer="21"/>
<rectangle x1="15.1829" y1="3.9815" x2="15.3353" y2="4.0196" layer="21"/>
<rectangle x1="-0.0191" y1="4.0196" x2="0.1334" y2="4.0577" layer="21"/>
<rectangle x1="1.0478" y1="4.0196" x2="1.5431" y2="4.0577" layer="21"/>
<rectangle x1="3.791" y1="4.0196" x2="4.2863" y2="4.0577" layer="21"/>
<rectangle x1="6.7247" y1="4.0196" x2="7.0295" y2="4.0577" layer="21"/>
<rectangle x1="7.9439" y1="4.0196" x2="8.2106" y2="4.0577" layer="21"/>
<rectangle x1="9.125" y1="4.0196" x2="9.4679" y2="4.0577" layer="21"/>
<rectangle x1="10.3442" y1="4.0196" x2="10.6871" y2="4.0577" layer="21"/>
<rectangle x1="11.2586" y1="4.0196" x2="12.2111" y2="4.0577" layer="21"/>
<rectangle x1="12.7826" y1="4.0196" x2="13.0874" y2="4.0577" layer="21"/>
<rectangle x1="15.1829" y1="4.0196" x2="15.3353" y2="4.0577" layer="21"/>
<rectangle x1="-0.0191" y1="4.0577" x2="0.1334" y2="4.0958" layer="21"/>
<rectangle x1="1.0859" y1="4.0577" x2="1.5812" y2="4.0958" layer="21"/>
<rectangle x1="3.7529" y1="4.0577" x2="4.2482" y2="4.0958" layer="21"/>
<rectangle x1="6.7247" y1="4.0577" x2="7.0676" y2="4.0958" layer="21"/>
<rectangle x1="7.9058" y1="4.0577" x2="8.2487" y2="4.0958" layer="21"/>
<rectangle x1="9.125" y1="4.0577" x2="9.4298" y2="4.0958" layer="21"/>
<rectangle x1="10.3823" y1="4.0577" x2="10.6871" y2="4.0958" layer="21"/>
<rectangle x1="11.2967" y1="4.0577" x2="12.173" y2="4.0958" layer="21"/>
<rectangle x1="12.7445" y1="4.0577" x2="13.0874" y2="4.0958" layer="21"/>
<rectangle x1="15.1829" y1="4.0577" x2="15.3353" y2="4.0958" layer="21"/>
<rectangle x1="-0.0191" y1="4.0958" x2="0.1334" y2="4.1339" layer="21"/>
<rectangle x1="1.124" y1="4.0958" x2="1.6193" y2="4.1339" layer="21"/>
<rectangle x1="3.6767" y1="4.0958" x2="4.2101" y2="4.1339" layer="21"/>
<rectangle x1="6.7628" y1="4.0958" x2="7.0676" y2="4.1339" layer="21"/>
<rectangle x1="7.9058" y1="4.0958" x2="8.2868" y2="4.1339" layer="21"/>
<rectangle x1="9.0869" y1="4.0958" x2="9.4298" y2="4.1339" layer="21"/>
<rectangle x1="10.3823" y1="4.0958" x2="10.7252" y2="4.1339" layer="21"/>
<rectangle x1="11.3348" y1="4.0958" x2="12.0968" y2="4.1339" layer="21"/>
<rectangle x1="12.7445" y1="4.0958" x2="13.0493" y2="4.1339" layer="21"/>
<rectangle x1="15.1829" y1="4.0958" x2="15.3353" y2="4.1339" layer="21"/>
<rectangle x1="-0.0191" y1="4.1339" x2="0.1334" y2="4.172" layer="21"/>
<rectangle x1="1.124" y1="4.1339" x2="1.6574" y2="4.172" layer="21"/>
<rectangle x1="3.6386" y1="4.1339" x2="4.172" y2="4.172" layer="21"/>
<rectangle x1="6.8009" y1="4.1339" x2="7.1057" y2="4.172" layer="21"/>
<rectangle x1="7.8677" y1="4.1339" x2="8.2868" y2="4.172" layer="21"/>
<rectangle x1="9.0488" y1="4.1339" x2="9.3917" y2="4.172" layer="21"/>
<rectangle x1="10.4204" y1="4.1339" x2="10.7633" y2="4.172" layer="21"/>
<rectangle x1="11.411" y1="4.1339" x2="12.0587" y2="4.172" layer="21"/>
<rectangle x1="12.7064" y1="4.1339" x2="13.0493" y2="4.172" layer="21"/>
<rectangle x1="15.1829" y1="4.1339" x2="15.3353" y2="4.172" layer="21"/>
<rectangle x1="-0.0191" y1="4.172" x2="0.1334" y2="4.2101" layer="21"/>
<rectangle x1="1.1621" y1="4.172" x2="1.7336" y2="4.2101" layer="21"/>
<rectangle x1="3.6005" y1="4.172" x2="4.172" y2="4.2101" layer="21"/>
<rectangle x1="6.8009" y1="4.172" x2="7.1438" y2="4.2101" layer="21"/>
<rectangle x1="7.8677" y1="4.172" x2="8.2868" y2="4.2101" layer="21"/>
<rectangle x1="9.0488" y1="4.172" x2="9.3917" y2="4.2101" layer="21"/>
<rectangle x1="10.4585" y1="4.172" x2="10.7633" y2="4.2101" layer="21"/>
<rectangle x1="11.5253" y1="4.172" x2="11.9063" y2="4.2101" layer="21"/>
<rectangle x1="12.6683" y1="4.172" x2="13.0112" y2="4.2101" layer="21"/>
<rectangle x1="15.1829" y1="4.172" x2="15.3353" y2="4.2101" layer="21"/>
<rectangle x1="-0.0191" y1="4.2101" x2="0.1334" y2="4.2482" layer="21"/>
<rectangle x1="1.2002" y1="4.2101" x2="1.7717" y2="4.2482" layer="21"/>
<rectangle x1="3.5624" y1="4.2101" x2="4.1339" y2="4.2482" layer="21"/>
<rectangle x1="6.839" y1="4.2101" x2="7.1819" y2="4.2482" layer="21"/>
<rectangle x1="7.9058" y1="4.2101" x2="8.2868" y2="4.2482" layer="21"/>
<rectangle x1="9.0107" y1="4.2101" x2="9.3536" y2="4.2482" layer="21"/>
<rectangle x1="10.4585" y1="4.2101" x2="10.8014" y2="4.2482" layer="21"/>
<rectangle x1="12.6302" y1="4.2101" x2="12.9731" y2="4.2482" layer="21"/>
<rectangle x1="15.1829" y1="4.2101" x2="15.3353" y2="4.2482" layer="21"/>
<rectangle x1="-0.0191" y1="4.2482" x2="0.1334" y2="4.2863" layer="21"/>
<rectangle x1="1.2383" y1="4.2482" x2="1.8479" y2="4.2863" layer="21"/>
<rectangle x1="3.4862" y1="4.2482" x2="4.0958" y2="4.2863" layer="21"/>
<rectangle x1="6.839" y1="4.2482" x2="7.22" y2="4.2863" layer="21"/>
<rectangle x1="7.9058" y1="4.2482" x2="8.2868" y2="4.2863" layer="21"/>
<rectangle x1="8.9726" y1="4.2482" x2="9.3155" y2="4.2863" layer="21"/>
<rectangle x1="10.4966" y1="4.2482" x2="10.8395" y2="4.2863" layer="21"/>
<rectangle x1="12.5921" y1="4.2482" x2="12.9731" y2="4.2863" layer="21"/>
<rectangle x1="15.1829" y1="4.2482" x2="15.3353" y2="4.2863" layer="21"/>
<rectangle x1="-0.0191" y1="4.2863" x2="0.1334" y2="4.3244" layer="21"/>
<rectangle x1="1.2764" y1="4.2863" x2="1.9241" y2="4.3244" layer="21"/>
<rectangle x1="3.41" y1="4.2863" x2="4.0577" y2="4.3244" layer="21"/>
<rectangle x1="6.8771" y1="4.2863" x2="7.2581" y2="4.3244" layer="21"/>
<rectangle x1="7.9058" y1="4.2863" x2="8.2487" y2="4.3244" layer="21"/>
<rectangle x1="8.9345" y1="4.2863" x2="9.3155" y2="4.3244" layer="21"/>
<rectangle x1="10.4966" y1="4.2863" x2="10.8776" y2="4.3244" layer="21"/>
<rectangle x1="12.554" y1="4.2863" x2="12.935" y2="4.3244" layer="21"/>
<rectangle x1="15.1829" y1="4.2863" x2="15.3353" y2="4.3244" layer="21"/>
<rectangle x1="-0.0191" y1="4.3244" x2="0.1334" y2="4.3625" layer="21"/>
<rectangle x1="1.3145" y1="4.3244" x2="1.9622" y2="4.3625" layer="21"/>
<rectangle x1="3.3338" y1="4.3244" x2="4.0196" y2="4.3625" layer="21"/>
<rectangle x1="6.9152" y1="4.3244" x2="7.2962" y2="4.3625" layer="21"/>
<rectangle x1="7.9439" y1="4.3244" x2="8.2106" y2="4.3625" layer="21"/>
<rectangle x1="8.8964" y1="4.3244" x2="9.2774" y2="4.3625" layer="21"/>
<rectangle x1="10.5347" y1="4.3244" x2="10.9157" y2="4.3625" layer="21"/>
<rectangle x1="12.5159" y1="4.3244" x2="12.8969" y2="4.3625" layer="21"/>
<rectangle x1="15.1829" y1="4.3244" x2="15.3353" y2="4.3625" layer="21"/>
<rectangle x1="-0.0191" y1="4.3625" x2="0.1334" y2="4.4006" layer="21"/>
<rectangle x1="1.3526" y1="4.3625" x2="2.0765" y2="4.4006" layer="21"/>
<rectangle x1="3.2576" y1="4.3625" x2="3.9434" y2="4.4006" layer="21"/>
<rectangle x1="6.9533" y1="4.3625" x2="7.3343" y2="4.4006" layer="21"/>
<rectangle x1="8.0201" y1="4.3625" x2="8.1344" y2="4.4006" layer="21"/>
<rectangle x1="8.8583" y1="4.3625" x2="9.2393" y2="4.4006" layer="21"/>
<rectangle x1="10.5728" y1="4.3625" x2="10.9538" y2="4.4006" layer="21"/>
<rectangle x1="12.4778" y1="4.3625" x2="12.8588" y2="4.4006" layer="21"/>
<rectangle x1="15.1829" y1="4.3625" x2="15.3353" y2="4.4006" layer="21"/>
<rectangle x1="-0.0191" y1="4.4006" x2="0.1334" y2="4.4387" layer="21"/>
<rectangle x1="1.4288" y1="4.4006" x2="2.1908" y2="4.4387" layer="21"/>
<rectangle x1="3.1052" y1="4.4006" x2="3.9053" y2="4.4387" layer="21"/>
<rectangle x1="6.9914" y1="4.4006" x2="7.3724" y2="4.4387" layer="21"/>
<rectangle x1="8.7821" y1="4.4006" x2="9.2012" y2="4.4387" layer="21"/>
<rectangle x1="10.6109" y1="4.4006" x2="11.03" y2="4.4387" layer="21"/>
<rectangle x1="12.4397" y1="4.4006" x2="12.8588" y2="4.4387" layer="21"/>
<rectangle x1="15.1829" y1="4.4006" x2="15.3353" y2="4.4387" layer="21"/>
<rectangle x1="-0.0191" y1="4.4387" x2="0.1334" y2="4.4768" layer="21"/>
<rectangle x1="1.4669" y1="4.4387" x2="2.3051" y2="4.4768" layer="21"/>
<rectangle x1="2.9909" y1="4.4387" x2="3.8672" y2="4.4768" layer="21"/>
<rectangle x1="6.9914" y1="4.4387" x2="7.4105" y2="4.4768" layer="21"/>
<rectangle x1="8.744" y1="4.4387" x2="9.1631" y2="4.4768" layer="21"/>
<rectangle x1="10.649" y1="4.4387" x2="11.0681" y2="4.4768" layer="21"/>
<rectangle x1="12.4016" y1="4.4387" x2="12.8207" y2="4.4768" layer="21"/>
<rectangle x1="15.1829" y1="4.4387" x2="15.3353" y2="4.4768" layer="21"/>
<rectangle x1="-0.0191" y1="4.4768" x2="0.1334" y2="4.5149" layer="21"/>
<rectangle x1="1.505" y1="4.4768" x2="3.8291" y2="4.5149" layer="21"/>
<rectangle x1="7.0295" y1="4.4768" x2="7.4867" y2="4.5149" layer="21"/>
<rectangle x1="8.6678" y1="4.4768" x2="9.125" y2="4.5149" layer="21"/>
<rectangle x1="10.6871" y1="4.4768" x2="11.1443" y2="4.5149" layer="21"/>
<rectangle x1="12.3254" y1="4.4768" x2="12.7826" y2="4.5149" layer="21"/>
<rectangle x1="15.1829" y1="4.4768" x2="15.3353" y2="4.5149" layer="21"/>
<rectangle x1="-0.0191" y1="4.5149" x2="0.1334" y2="4.553" layer="21"/>
<rectangle x1="1.5431" y1="4.5149" x2="3.7529" y2="4.553" layer="21"/>
<rectangle x1="7.0676" y1="4.5149" x2="7.5629" y2="4.553" layer="21"/>
<rectangle x1="8.6297" y1="4.5149" x2="9.0869" y2="4.553" layer="21"/>
<rectangle x1="10.7252" y1="4.5149" x2="11.2205" y2="4.553" layer="21"/>
<rectangle x1="12.2492" y1="4.5149" x2="12.7445" y2="4.553" layer="21"/>
<rectangle x1="15.1829" y1="4.5149" x2="15.3353" y2="4.553" layer="21"/>
<rectangle x1="-0.0191" y1="4.553" x2="0.1334" y2="4.5911" layer="21"/>
<rectangle x1="1.6193" y1="4.553" x2="3.7148" y2="4.5911" layer="21"/>
<rectangle x1="7.1438" y1="4.553" x2="7.6391" y2="4.5911" layer="21"/>
<rectangle x1="8.5154" y1="4.553" x2="9.0488" y2="4.5911" layer="21"/>
<rectangle x1="10.7633" y1="4.553" x2="11.2967" y2="4.5911" layer="21"/>
<rectangle x1="12.173" y1="4.553" x2="12.6683" y2="4.5911" layer="21"/>
<rectangle x1="15.1829" y1="4.553" x2="15.3353" y2="4.5911" layer="21"/>
<rectangle x1="-0.0191" y1="4.5911" x2="0.1334" y2="4.6292" layer="21"/>
<rectangle x1="1.6574" y1="4.5911" x2="3.6386" y2="4.6292" layer="21"/>
<rectangle x1="7.1819" y1="4.5911" x2="7.7915" y2="4.6292" layer="21"/>
<rectangle x1="8.4011" y1="4.5911" x2="9.0107" y2="4.6292" layer="21"/>
<rectangle x1="10.8014" y1="4.5911" x2="11.411" y2="4.6292" layer="21"/>
<rectangle x1="12.0206" y1="4.5911" x2="12.6302" y2="4.6292" layer="21"/>
<rectangle x1="15.1829" y1="4.5911" x2="15.3353" y2="4.6292" layer="21"/>
<rectangle x1="-0.0191" y1="4.6292" x2="0.1334" y2="4.6673" layer="21"/>
<rectangle x1="1.7336" y1="4.6292" x2="3.5624" y2="4.6673" layer="21"/>
<rectangle x1="7.22" y1="4.6292" x2="8.0201" y2="4.6673" layer="21"/>
<rectangle x1="8.1344" y1="4.6292" x2="8.9726" y2="4.6673" layer="21"/>
<rectangle x1="10.8395" y1="4.6292" x2="11.6777" y2="4.6673" layer="21"/>
<rectangle x1="11.792" y1="4.6292" x2="12.5921" y2="4.6673" layer="21"/>
<rectangle x1="15.1829" y1="4.6292" x2="15.3353" y2="4.6673" layer="21"/>
<rectangle x1="-0.0191" y1="4.6673" x2="0.1334" y2="4.7054" layer="21"/>
<rectangle x1="1.8098" y1="4.6673" x2="3.4862" y2="4.7054" layer="21"/>
<rectangle x1="7.2581" y1="4.6673" x2="8.8964" y2="4.7054" layer="21"/>
<rectangle x1="10.9157" y1="4.6673" x2="12.554" y2="4.7054" layer="21"/>
<rectangle x1="15.1829" y1="4.6673" x2="15.3353" y2="4.7054" layer="21"/>
<rectangle x1="-0.0191" y1="4.7054" x2="0.1334" y2="4.7435" layer="21"/>
<rectangle x1="1.9241" y1="4.7054" x2="3.41" y2="4.7435" layer="21"/>
<rectangle x1="7.3343" y1="4.7054" x2="8.8583" y2="4.7435" layer="21"/>
<rectangle x1="10.9538" y1="4.7054" x2="12.4778" y2="4.7435" layer="21"/>
<rectangle x1="15.1829" y1="4.7054" x2="15.3353" y2="4.7435" layer="21"/>
<rectangle x1="-0.0191" y1="4.7435" x2="0.1334" y2="4.7816" layer="21"/>
<rectangle x1="2.0384" y1="4.7435" x2="3.2957" y2="4.7816" layer="21"/>
<rectangle x1="7.4105" y1="4.7435" x2="8.7821" y2="4.7816" layer="21"/>
<rectangle x1="11.03" y1="4.7435" x2="12.4016" y2="4.7816" layer="21"/>
<rectangle x1="15.1829" y1="4.7435" x2="15.3353" y2="4.7816" layer="21"/>
<rectangle x1="-0.0191" y1="4.7816" x2="0.1334" y2="4.8197" layer="21"/>
<rectangle x1="2.1527" y1="4.7816" x2="3.1433" y2="4.8197" layer="21"/>
<rectangle x1="7.4867" y1="4.7816" x2="8.7059" y2="4.8197" layer="21"/>
<rectangle x1="11.1062" y1="4.7816" x2="12.3254" y2="4.8197" layer="21"/>
<rectangle x1="15.1829" y1="4.7816" x2="15.3353" y2="4.8197" layer="21"/>
<rectangle x1="-0.0191" y1="4.8197" x2="0.1334" y2="4.8578" layer="21"/>
<rectangle x1="2.4194" y1="4.8197" x2="2.8766" y2="4.8578" layer="21"/>
<rectangle x1="7.5629" y1="4.8197" x2="8.5916" y2="4.8578" layer="21"/>
<rectangle x1="11.2205" y1="4.8197" x2="12.2492" y2="4.8578" layer="21"/>
<rectangle x1="15.1829" y1="4.8197" x2="15.3353" y2="4.8578" layer="21"/>
<rectangle x1="-0.0191" y1="4.8578" x2="0.1334" y2="4.8959" layer="21"/>
<rectangle x1="7.7153" y1="4.8578" x2="8.4773" y2="4.8959" layer="21"/>
<rectangle x1="11.3348" y1="4.8578" x2="12.0968" y2="4.8959" layer="21"/>
<rectangle x1="15.1829" y1="4.8578" x2="15.3353" y2="4.8959" layer="21"/>
<rectangle x1="-0.0191" y1="4.8959" x2="0.1334" y2="4.934" layer="21"/>
<rectangle x1="7.9439" y1="4.8959" x2="8.2487" y2="4.934" layer="21"/>
<rectangle x1="11.5634" y1="4.8959" x2="11.8682" y2="4.934" layer="21"/>
<rectangle x1="15.1829" y1="4.8959" x2="15.3353" y2="4.934" layer="21"/>
<rectangle x1="-0.0191" y1="4.934" x2="0.1334" y2="4.9721" layer="21"/>
<rectangle x1="15.1829" y1="4.934" x2="15.3353" y2="4.9721" layer="21"/>
<rectangle x1="-0.0191" y1="4.9721" x2="0.1334" y2="5.0102" layer="21"/>
<rectangle x1="15.1829" y1="4.9721" x2="15.3353" y2="5.0102" layer="21"/>
<rectangle x1="-0.0191" y1="5.0102" x2="0.1334" y2="5.0483" layer="21"/>
<rectangle x1="15.1829" y1="5.0102" x2="15.3353" y2="5.0483" layer="21"/>
<rectangle x1="-0.0191" y1="5.0483" x2="0.1334" y2="5.0864" layer="21"/>
<rectangle x1="15.1829" y1="5.0483" x2="15.3353" y2="5.0864" layer="21"/>
<rectangle x1="-0.0191" y1="5.0864" x2="0.1334" y2="5.1245" layer="21"/>
<rectangle x1="15.1829" y1="5.0864" x2="15.3353" y2="5.1245" layer="21"/>
<rectangle x1="-0.0191" y1="5.1245" x2="0.1334" y2="5.1626" layer="21"/>
<rectangle x1="15.1829" y1="5.1245" x2="15.3353" y2="5.1626" layer="21"/>
<rectangle x1="0.0191" y1="5.1626" x2="0.1715" y2="5.2007" layer="21"/>
<rectangle x1="15.1448" y1="5.1626" x2="15.2972" y2="5.2007" layer="21"/>
<rectangle x1="0.0191" y1="5.2007" x2="15.2972" y2="5.2388" layer="21"/>
<rectangle x1="0.0572" y1="5.2388" x2="15.2591" y2="5.2769" layer="21"/>
<rectangle x1="0.0953" y1="5.2769" x2="15.221" y2="5.315" layer="21"/>
<rectangle x1="0.1715" y1="5.315" x2="15.1448" y2="5.3531" layer="21"/>
</package>
</packages>
<symbols>
<symbol name="LOGO_CC_BY_SA">
<wire x1="-10.16" y1="3.81" x2="-11.43" y2="2.54" width="0.254" layer="94" curve="90"/>
<wire x1="-11.43" y1="2.54" x2="-11.43" y2="-2.54" width="0.254" layer="94"/>
<wire x1="-11.43" y1="-2.54" x2="-10.16" y2="-3.81" width="0.254" layer="94" curve="90"/>
<wire x1="-10.16" y1="-3.81" x2="10.16" y2="-3.81" width="0.254" layer="94"/>
<wire x1="10.16" y1="-3.81" x2="11.43" y2="-2.54" width="0.254" layer="94" curve="90"/>
<wire x1="11.43" y1="-2.54" x2="11.43" y2="2.54" width="0.254" layer="94"/>
<wire x1="11.43" y1="2.54" x2="10.16" y2="3.81" width="0.254" layer="94" curve="90"/>
<wire x1="10.16" y1="3.81" x2="-10.16" y2="3.81" width="0.254" layer="94"/>
<circle x="-10.16" y="2.54" radius="0.449" width="0.1524" layer="94"/>
<circle x="-10.16" y="-2.54" radius="0.449" width="0.1524" layer="94"/>
<circle x="10.16" y="-2.54" radius="0.449" width="0.1524" layer="94"/>
<circle x="10.16" y="2.54" radius="0.449" width="0.1524" layer="94"/>
<text x="-9.017" y="-1.016" size="2.54" layer="94">CC-BY-SA</text>
</symbol>
</symbols>
<devicesets>
<deviceset name="LOGO_CC-BY-SA" prefix="LOGO">
<gates>
<gate name="LOGO" symbol="LOGO_CC_BY_SA" x="0" y="0"/>
</gates>
<devices>
<device name="" package="LOGO_CC-BY-SA">
<technologies>
<technology name=""/>
</technologies>
</device>
</devices>
</deviceset>
</devicesets>
</library>
</libraries>
<attributes>
</attributes>
<variantdefs>
</variantdefs>
<classes>
<class number="0" name="default" width="0" drill="0">
<clearance class="0" value="0.205"/>
</class>
</classes>
<parts>
<part name="IC1" library="AD7173" deviceset="AD7173" device=""/>
<part name="C1" library="rcl" deviceset="C-EU" device="C0402" value="0.1uF"/>
<part name="R1" library="rcl" deviceset="R-EU_" device="R0402" value="10k"/>
<part name="+3V1" library="supply1" deviceset="+3V3" device="" value="+5DVDD"/>
<part name="C2" library="rcl" deviceset="C-EU" device="C0402" value="0.1uF"/>
<part name="P+3" library="supply1" deviceset="+5V" device="" value="+5AVDD"/>
<part name="+3V2" library="supply1" deviceset="+3V3" device="" value="+5DVDD"/>
<part name="C3" library="rcl" deviceset="C-EU" device="C0402" value="2.2uF"/>
<part name="GND5" library="supply1" deviceset="GND" device=""/>
<part name="C5" library="rcl" deviceset="C-EU" device="C0402" value="1uF"/>
<part name="C6" library="rcl" deviceset="C-EU" device="C0402" value="0.1uF"/>
<part name="C7" library="rcl" deviceset="C-EU" device="C0402" value="1uF"/>
<part name="C8" library="rcl" deviceset="C-EU" device="C0402" value="0.1uF"/>
<part name="GND8" library="supply1" deviceset="GND" device=""/>
<part name="R2" library="rcl" deviceset="R-EU_" device="R0402" value="10k"/>
<part name="IC2" library="AD7173" deviceset="POWER" device="" value="ADP1720ARMZ-3.3"/>
<part name="C4" library="rcl" deviceset="C-EU" device="C0402" value="2.2uF"/>
<part name="IC3" library="AD7173" deviceset="POWER" device="" value="ADP1720ARMZ-5"/>
<part name="C9" library="rcl" deviceset="C-EU" device="C0402" value="8pF"/>
<part name="C10" library="rcl" deviceset="C-EU" device="C0402" value="8pF"/>
<part name="GND6" library="supply1" deviceset="GND" device=""/>
<part name="Q1" library="crystal" deviceset="FA-" device="20H"/>
<part name="C11" library="rcl" deviceset="C-EU" device="C0402" value="0.1uF"/>
<part name="C12" library="rcl" deviceset="C-EU" device="C0402" value="0.1uF"/>
<part name="C13" library="rcl" deviceset="C-EU" device="C0402" value="2.2uF"/>
<part name="C14" library="rcl" deviceset="C-EU" device="C0402" value="2.2uF"/>
<part name="P+2" library="supply1" deviceset="VCC" device="" value="+5REFV"/>
<part name="P+1" library="supply1" deviceset="VCC" device="" value="+5REFV"/>
<part name="L1" library="inductors" deviceset="BLM15H" device="" technology="B121SN1"/>
<part name="C15" library="rcl" deviceset="C-EU" device="C0402" value="2.2uF"/>
<part name="P+4" library="supply1" deviceset="+5V" device="" value="+5AVDD"/>
<part name="LED1" library="led" deviceset="LED" device="CHIP-LED0603"/>
<part name="R3" library="rcl" deviceset="R-EU_" device="R0402" value="20k"/>
<part name="LOGO1" library="SparkFun-Aesthetics" deviceset="OSHW-LOGO" device="S"/>
<part name="JP1" library="SparkFun-Connectors" deviceset="M05" device="PTH"/>
<part name="JP2" library="SparkFun-Connectors" deviceset="M12" device="PTH"/>
<part name="JP3" library="SparkFun-Connectors" deviceset="M04" device="PTH"/>
<part name="JP4" library="SparkFun-Connectors" deviceset="M03" device="PTH"/>
<part name="REF1" library="kblom" deviceset="ADR44" device="R" technology="5B"/>
<part name="FRAME1" library="SparkFun-Aesthetics" deviceset="FRAME-LETTER" device="" value="FRAME-LETTER"/>
<part name="LOGO2" library="dp_devices" deviceset="LOGO_CC-BY-SA" device=""/>
</parts>
<sheets>
<sheet>
<plain>
<wire x1="2.54" y1="137.16" x2="134.62" y2="137.16" width="0.1524" layer="97" style="dashdot"/>
<wire x1="134.62" y1="137.16" x2="134.62" y2="38.1" width="0.1524" layer="97" style="dashdot"/>
<wire x1="134.62" y1="38.1" x2="2.54" y2="38.1" width="0.1524" layer="97" style="dashdot"/>
<wire x1="2.54" y1="38.1" x2="2.54" y2="137.16" width="0.1524" layer="97" style="dashdot"/>
<wire x1="137.16" y1="137.16" x2="254" y2="137.16" width="0.1524" layer="97" style="dashdot"/>
<wire x1="254" y1="137.16" x2="254" y2="38.1" width="0.1524" layer="97" style="dashdot"/>
<wire x1="254" y1="38.1" x2="137.16" y2="38.1" width="0.1524" layer="97" style="dashdot"/>
<wire x1="137.16" y1="38.1" x2="137.16" y2="137.16" width="0.1524" layer="97" style="dashdot"/>
<text x="139.7" y="132.08" size="2.54" layer="97">Power Regulators</text>
<text x="5.08" y="132.08" size="2.54" layer="97">Analog Digital Converter</text>
<text x="160.02" y="116.84" size="1.778" layer="97">VCC = 3.3V Output</text>
<text x="160.02" y="111.76" size="1.778" layer="97">Max Current Output: 50mA</text>
<text x="160.02" y="114.3" size="1.778" layer="97">Max Voltage Input: 28VDC</text>
<text x="213.36" y="116.84" size="1.778" layer="97">VCC = 5V Output</text>
<text x="213.36" y="111.76" size="1.778" layer="97">Max Current Output: 50mA</text>
<text x="213.36" y="114.3" size="1.778" layer="97">Max Voltage Input: 28VDC</text>
<text x="160.02" y="73.66" size="1.778" layer="97">VCC = 5V Output</text>
<text x="160.02" y="71.12" size="1.778" layer="97">Max Voltage Input: 18VDC</text>
<text x="160.02" y="68.58" size="1.778" layer="97">Max Current Output: 10mA</text>
<text x="185.42" y="7.62" size="5.08" layer="94">Silver Kuusik</text>
<text x="187.96" y="17.78" size="2.667" layer="94" font="vector" ratio="9">breakout</text>
<text x="246.38" y="7.62" size="2.667" layer="94">0.9</text>
<wire x1="0" y1="0" x2="0" y2="139.7" width="0.8128" layer="94"/>
<wire x1="0" y1="139.7" x2="256.54" y2="139.7" width="0.8128" layer="94"/>
<wire x1="256.54" y1="139.7" x2="256.54" y2="0" width="0.8128" layer="94"/>
<wire x1="256.54" y1="0" x2="0" y2="0" width="0.8128" layer="94"/>
</plain>
<instances>
<instance part="IC1" gate="G$1" x="83.82" y="86.36"/>
<instance part="C1" gate="G$1" x="203.2" y="111.76" rot="MR0"/>
<instance part="R1" gate="G$1" x="45.72" y="55.88" rot="R270"/>
<instance part="+3V1" gate="G$1" x="40.64" y="124.46"/>
<instance part="C2" gate="G$1" x="25.4" y="106.68" rot="R90"/>
<instance part="P+3" gate="1" x="208.28" y="121.92"/>
<instance part="+3V2" gate="G$1" x="154.94" y="121.92"/>
<instance part="C3" gate="G$1" x="142.24" y="96.52" rot="MR180"/>
<instance part="GND5" gate="1" x="208.28" y="43.18"/>
<instance part="C5" gate="G$1" x="25.4" y="96.52" rot="R90"/>
<instance part="C6" gate="G$1" x="124.46" y="63.5" rot="MR270"/>
<instance part="C7" gate="G$1" x="124.46" y="55.88" rot="MR270"/>
<instance part="C8" gate="G$1" x="149.86" y="111.76" rot="MR0"/>
<instance part="GND8" gate="1" x="83.82" y="43.18"/>
<instance part="R2" gate="G$1" x="35.56" y="55.88" rot="R270"/>
<instance part="IC2" gate="G$1" x="167.64" y="93.98"/>
<instance part="C4" gate="G$1" x="195.58" y="96.52" rot="MR180"/>
<instance part="IC3" gate="G$1" x="220.98" y="93.98"/>
<instance part="C9" gate="G$1" x="5.08" y="58.42"/>
<instance part="C10" gate="G$1" x="17.78" y="58.42"/>
<instance part="GND6" gate="1" x="17.78" y="43.18"/>
<instance part="Q1" gate="G$1" x="10.16" y="68.58"/>
<instance part="C11" gate="G$1" x="152.4" y="55.88"/>
<instance part="C12" gate="G$1" x="198.12" y="55.88" rot="MR0"/>
<instance part="C13" gate="G$1" x="208.28" y="55.88" rot="MR0"/>
<instance part="C14" gate="G$1" x="142.24" y="55.88"/>
<instance part="P+2" gate="VCC" x="116.84" y="121.92" rot="MR0"/>
<instance part="P+1" gate="VCC" x="142.24" y="71.12" rot="MR0"/>
<instance part="L1" gate="G$1" x="248.92" y="93.98" rot="R270"/>
<instance part="C15" gate="G$1" x="233.68" y="60.96" rot="MR0"/>
<instance part="P+4" gate="1" x="17.78" y="124.46" rot="MR0"/>
<instance part="LED1" gate="G$1" x="218.44" y="55.88" rot="MR0"/>
<instance part="R3" gate="G$1" x="218.44" y="66.04" rot="R90"/>
<instance part="LOGO1" gate="G$1" x="43.18" y="20.32"/>
<instance part="JP1" gate="G$1" x="43.18" y="104.14"/>
<instance part="JP2" gate="G$1" x="129.54" y="86.36" rot="R180"/>
<instance part="JP3" gate="G$1" x="27.94" y="73.66" rot="MR180"/>
<instance part="JP4" gate="G$1" x="248.92" y="60.96" rot="R180"/>
<instance part="REF1" gate="G$1" x="172.72" y="55.88" rot="MR0"/>
<instance part="FRAME1" gate="V" x="154.94" y="0" smashed="yes">
<attribute name="LAST_DATE_TIME" x="167.64" y="1.27" size="2.54" layer="94" font="vector"/>
<attribute name="SHEET" x="241.3" y="1.27" size="2.54" layer="94" font="vector"/>
<attribute name="DRAWING_NAME" x="170.434" y="17.78" size="2.7432" layer="94" font="vector"/>
</instance>
<instance part="LOGO2" gate="LOGO" x="101.6" y="20.32"/>
</instances>
<busses>
</busses>
<nets>
<net name="GND" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AVSS"/>
<wire x1="20.32" y1="48.26" x2="20.32" y2="91.44" width="0.1524" layer="91"/>
<wire x1="20.32" y1="106.68" x2="20.32" y2="96.52" width="0.1524" layer="91"/>
<wire x1="22.86" y1="96.52" x2="20.32" y2="96.52" width="0.1524" layer="91"/>
<wire x1="20.32" y1="96.52" x2="20.32" y2="91.44" width="0.1524" layer="91"/>
<wire x1="20.32" y1="91.44" x2="53.34" y2="91.44" width="0.1524" layer="91"/>
<pinref part="C2" gate="G$1" pin="1"/>
<pinref part="C5" gate="G$1" pin="1"/>
<junction x="20.32" y="96.52"/>
<wire x1="20.32" y1="106.68" x2="22.86" y2="106.68" width="0.1524" layer="91"/>
<pinref part="C10" gate="G$1" pin="2"/>
<pinref part="GND6" gate="1" pin="GND"/>
<pinref part="C9" gate="G$1" pin="2"/>
<wire x1="17.78" y1="48.26" x2="17.78" y2="53.34" width="0.1524" layer="91"/>
<wire x1="5.08" y1="53.34" x2="5.08" y2="48.26" width="0.1524" layer="91"/>
<wire x1="5.08" y1="48.26" x2="10.16" y2="48.26" width="0.1524" layer="91"/>
<junction x="17.78" y="48.26"/>
<pinref part="Q1" gate="G$1" pin="2"/>
<wire x1="10.16" y1="63.5" x2="10.16" y2="48.26" width="0.1524" layer="91"/>
<wire x1="10.16" y1="48.26" x2="12.7" y2="48.26" width="0.1524" layer="91"/>
<pinref part="Q1" gate="G$1" pin="4"/>
<wire x1="12.7" y1="63.5" x2="12.7" y2="48.26" width="0.1524" layer="91"/>
<wire x1="12.7" y1="48.26" x2="17.78" y2="48.26" width="0.1524" layer="91"/>
<junction x="10.16" y="48.26"/>
<junction x="12.7" y="48.26"/>
<wire x1="20.32" y1="48.26" x2="17.78" y2="48.26" width="0.1524" layer="91"/>
<wire x1="17.78" y1="48.26" x2="17.78" y2="45.72" width="0.1524" layer="91"/>
<junction x="20.32" y="91.44"/>
</segment>
<segment>
<pinref part="IC1" gate="G$1" pin="REF-"/>
<wire x1="132.08" y1="63.5" x2="132.08" y2="106.68" width="0.1524" layer="91"/>
<wire x1="132.08" y1="106.68" x2="114.3" y2="106.68" width="0.1524" layer="91"/>
<pinref part="C7" gate="G$1" pin="2"/>
<wire x1="132.08" y1="48.26" x2="132.08" y2="55.88" width="0.1524" layer="91"/>
<wire x1="129.54" y1="55.88" x2="132.08" y2="55.88" width="0.1524" layer="91"/>
<wire x1="132.08" y1="55.88" x2="132.08" y2="63.5" width="0.1524" layer="91"/>
<pinref part="C6" gate="G$1" pin="2"/>
<wire x1="129.54" y1="63.5" x2="132.08" y2="63.5" width="0.1524" layer="91"/>
<pinref part="IC1" gate="G$1" pin="DGND"/>
<wire x1="114.3" y1="60.96" x2="116.84" y2="60.96" width="0.1524" layer="91"/>
<wire x1="116.84" y1="48.26" x2="132.08" y2="48.26" width="0.1524" layer="91"/>
<junction x="132.08" y="55.88"/>
<junction x="132.08" y="63.5"/>
<pinref part="GND8" gate="1" pin="GND"/>
<pinref part="IC1" gate="G$1" pin="EXP"/>
<wire x1="83.82" y1="53.34" x2="83.82" y2="48.26" width="0.1524" layer="91"/>
<junction x="83.82" y="48.26"/>
<wire x1="116.84" y1="48.26" x2="83.82" y2="48.26" width="0.1524" layer="91"/>
<wire x1="83.82" y1="48.26" x2="83.82" y2="45.72" width="0.1524" layer="91"/>
<junction x="116.84" y="48.26"/>
<wire x1="116.84" y1="101.6" x2="116.84" y2="60.96" width="0.1524" layer="91"/>
<wire x1="116.84" y1="60.96" x2="116.84" y2="48.26" width="0.1524" layer="91"/>
<junction x="116.84" y="60.96"/>
<pinref part="JP2" gate="G$1" pin="1"/>
<wire x1="116.84" y1="101.6" x2="119.38" y2="101.6" width="0.1524" layer="91"/>
</segment>
<segment>
<wire x1="233.68" y1="99.06" x2="236.22" y2="99.06" width="0.1524" layer="91"/>
<pinref part="IC3" gate="G$1" pin="GND2"/>
<wire x1="236.22" y1="99.06" x2="236.22" y2="96.52" width="0.1524" layer="91"/>
<pinref part="IC3" gate="G$1" pin="GND1"/>
<wire x1="236.22" y1="91.44" x2="236.22" y2="83.82" width="0.1524" layer="91"/>
<wire x1="236.22" y1="83.82" x2="223.52" y2="83.82" width="0.1524" layer="91"/>
<wire x1="203.2" y1="83.82" x2="223.52" y2="83.82" width="0.1524" layer="91"/>
<pinref part="C4" gate="G$1" pin="1"/>
<wire x1="195.58" y1="83.82" x2="203.2" y2="83.82" width="0.1524" layer="91"/>
<junction x="203.2" y="83.82"/>
<wire x1="195.58" y1="93.98" x2="195.58" y2="83.82" width="0.1524" layer="91"/>
<wire x1="180.34" y1="99.06" x2="182.88" y2="99.06" width="0.1524" layer="91"/>
<pinref part="IC2" gate="G$1" pin="GND2"/>
<wire x1="182.88" y1="99.06" x2="182.88" y2="96.52" width="0.1524" layer="91"/>
<pinref part="IC2" gate="G$1" pin="GND5"/>
<wire x1="182.88" y1="96.52" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
<wire x1="182.88" y1="93.98" x2="182.88" y2="91.44" width="0.1524" layer="91"/>
<wire x1="182.88" y1="91.44" x2="180.34" y2="91.44" width="0.1524" layer="91"/>
<pinref part="IC2" gate="G$1" pin="GND1"/>
<wire x1="157.48" y1="99.06" x2="149.86" y2="99.06" width="0.1524" layer="91"/>
<wire x1="149.86" y1="83.82" x2="182.88" y2="83.82" width="0.1524" layer="91"/>
<pinref part="C3" gate="G$1" pin="1"/>
<wire x1="142.24" y1="93.98" x2="142.24" y2="83.82" width="0.1524" layer="91"/>
<wire x1="142.24" y1="83.82" x2="149.86" y2="83.82" width="0.1524" layer="91"/>
<junction x="149.86" y="83.82"/>
<wire x1="195.58" y1="83.82" x2="182.88" y2="83.82" width="0.1524" layer="91"/>
<wire x1="182.88" y1="91.44" x2="182.88" y2="83.82" width="0.1524" layer="91"/>
<junction x="182.88" y="83.82"/>
<junction x="195.58" y="83.82"/>
<junction x="182.88" y="91.44"/>
<wire x1="180.34" y1="93.98" x2="182.88" y2="93.98" width="0.1524" layer="91"/>
<pinref part="IC2" gate="G$1" pin="GND4"/>
<junction x="182.88" y="93.98"/>
<pinref part="IC2" gate="G$1" pin="GND3"/>
<wire x1="180.34" y1="96.52" x2="182.88" y2="96.52" width="0.1524" layer="91"/>
<junction x="182.88" y="96.52"/>
<pinref part="IC3" gate="G$1" pin="GND5"/>
<pinref part="IC3" gate="G$1" pin="GND3"/>
<wire x1="233.68" y1="96.52" x2="236.22" y2="96.52" width="0.1524" layer="91"/>
<wire x1="236.22" y1="96.52" x2="236.22" y2="93.98" width="0.1524" layer="91"/>
<wire x1="236.22" y1="93.98" x2="236.22" y2="91.44" width="0.1524" layer="91"/>
<wire x1="236.22" y1="91.44" x2="233.68" y2="91.44" width="0.1524" layer="91"/>
<junction x="236.22" y="91.44"/>
<pinref part="IC3" gate="G$1" pin="GND4"/>
<wire x1="233.68" y1="93.98" x2="236.22" y2="93.98" width="0.1524" layer="91"/>
<junction x="236.22" y="93.98"/>
<junction x="236.22" y="96.52"/>
<pinref part="GND5" gate="1" pin="GND"/>
<pinref part="C11" gate="G$1" pin="2"/>
<junction x="187.96" y="48.26"/>
<junction x="208.28" y="48.26"/>
<wire x1="185.42" y1="53.34" x2="187.96" y2="53.34" width="0.1524" layer="91"/>
<wire x1="187.96" y1="53.34" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
<pinref part="C12" gate="G$1" pin="2"/>
<wire x1="198.12" y1="50.8" x2="198.12" y2="48.26" width="0.1524" layer="91"/>
<wire x1="208.28" y1="50.8" x2="208.28" y2="48.26" width="0.1524" layer="91"/>
<pinref part="C13" gate="G$1" pin="2"/>
<junction x="198.12" y="48.26"/>
<junction x="208.28" y="48.26"/>
<pinref part="C14" gate="G$1" pin="2"/>
<wire x1="152.4" y1="48.26" x2="152.4" y2="50.8" width="0.1524" layer="91"/>
<junction x="233.68" y="48.26"/>
<pinref part="C15" gate="G$1" pin="2"/>
<wire x1="233.68" y1="48.26" x2="233.68" y2="55.88" width="0.1524" layer="91"/>
<junction x="152.4" y="48.26"/>
<pinref part="LED1" gate="G$1" pin="C"/>
<wire x1="218.44" y1="50.8" x2="218.44" y2="48.26" width="0.1524" layer="91"/>
<wire x1="218.44" y1="48.26" x2="223.52" y2="48.26" width="0.1524" layer="91"/>
<wire x1="223.52" y1="48.26" x2="233.68" y2="48.26" width="0.1524" layer="91"/>
<wire x1="233.68" y1="48.26" x2="238.76" y2="48.26" width="0.1524" layer="91"/>
<wire x1="238.76" y1="48.26" x2="238.76" y2="58.42" width="0.1524" layer="91"/>
<wire x1="238.76" y1="58.42" x2="241.3" y2="58.42" width="0.1524" layer="91"/>
<pinref part="JP4" gate="G$1" pin="3"/>
<pinref part="REF1" gate="G$1" pin="GND"/>
<wire x1="152.4" y1="48.26" x2="142.24" y2="48.26" width="0.1524" layer="91"/>
<wire x1="142.24" y1="50.8" x2="142.24" y2="48.26" width="0.1524" layer="91"/>
<wire x1="152.4" y1="48.26" x2="187.96" y2="48.26" width="0.1524" layer="91"/>
<wire x1="187.96" y1="48.26" x2="198.12" y2="48.26" width="0.1524" layer="91"/>
<wire x1="198.12" y1="48.26" x2="208.28" y2="48.26" width="0.1524" layer="91"/>
<junction x="218.44" y="48.26"/>
<wire x1="223.52" y1="83.82" x2="223.52" y2="48.26" width="0.1524" layer="91"/>
<wire x1="218.44" y1="48.26" x2="208.28" y2="48.26" width="0.1524" layer="91"/>
<wire x1="208.28" y1="48.26" x2="208.28" y2="45.72" width="0.1524" layer="91"/>
<junction x="223.52" y="48.26"/>
<junction x="223.52" y="83.82"/>
<pinref part="C8" gate="G$1" pin="2"/>
<wire x1="149.86" y1="106.68" x2="149.86" y2="99.06" width="0.1524" layer="91"/>
<wire x1="149.86" y1="99.06" x2="149.86" y2="83.82" width="0.1524" layer="91"/>
<junction x="149.86" y="99.06"/>
<pinref part="C1" gate="G$1" pin="2"/>
<wire x1="203.2" y1="106.68" x2="203.2" y2="99.06" width="0.1524" layer="91"/>
<wire x1="210.82" y1="99.06" x2="203.2" y2="99.06" width="0.1524" layer="91"/>
<wire x1="203.2" y1="99.06" x2="203.2" y2="83.82" width="0.1524" layer="91"/>
<junction x="203.2" y="99.06"/>
</segment>
</net>
<net name="+5V" class="0">
<segment>
<pinref part="IC3" gate="G$1" pin="VOUT"/>
<wire x1="210.82" y1="93.98" x2="208.28" y2="93.98" width="0.1524" layer="91"/>
<wire x1="208.28" y1="93.98" x2="208.28" y2="116.84" width="0.1524" layer="91"/>
<pinref part="P+3" gate="1" pin="+5V"/>
<pinref part="C1" gate="G$1" pin="1"/>
<wire x1="203.2" y1="114.3" x2="203.2" y2="116.84" width="0.1524" layer="91"/>
<wire x1="203.2" y1="116.84" x2="208.28" y2="116.84" width="0.1524" layer="91"/>
<wire x1="208.28" y1="116.84" x2="208.28" y2="119.38" width="0.1524" layer="91"/>
<junction x="208.28" y="116.84"/>
</segment>
<segment>
<pinref part="IC1" gate="G$1" pin="AVDD2"/>
<wire x1="17.78" y1="86.36" x2="53.34" y2="86.36" width="0.1524" layer="91"/>
<wire x1="17.78" y1="88.9" x2="17.78" y2="86.36" width="0.1524" layer="91"/>
<pinref part="IC1" gate="G$1" pin="AVDD1"/>
<wire x1="53.34" y1="88.9" x2="17.78" y2="88.9" width="0.1524" layer="91"/>
<junction x="17.78" y="88.9"/>
<wire x1="17.78" y1="88.9" x2="17.78" y2="121.92" width="0.1524" layer="91"/>
<pinref part="P+4" gate="1" pin="+5V"/>
</segment>
</net>
<net name="N$3" class="0">
<segment>
<pinref part="R2" gate="G$1" pin="1"/>
<wire x1="35.56" y1="68.58" x2="35.56" y2="60.96" width="0.1524" layer="91"/>
<pinref part="JP3" gate="G$1" pin="4"/>
<wire x1="33.02" y1="68.58" x2="35.56" y2="68.58" width="0.1524" layer="91"/>
<pinref part="IC1" gate="G$1" pin="CS"/>
<wire x1="35.56" y1="68.58" x2="53.34" y2="68.58" width="0.1524" layer="91"/>
<junction x="35.56" y="68.58"/>
</segment>
</net>
<net name="+3V3" class="0">
<segment>
<pinref part="R1" gate="G$1" pin="2"/>
<pinref part="+3V1" gate="G$1" pin="+3V3"/>
<wire x1="45.72" y1="50.8" x2="45.72" y2="48.26" width="0.1524" layer="91"/>
<pinref part="IC1" gate="G$1" pin="IOVDD"/>
<wire x1="53.34" y1="60.96" x2="50.8" y2="60.96" width="0.1524" layer="91"/>
<wire x1="50.8" y1="60.96" x2="50.8" y2="48.26" width="0.1524" layer="91"/>
<junction x="40.64" y="48.26"/>
<junction x="45.72" y="48.26"/>
<wire x1="50.8" y1="48.26" x2="45.72" y2="48.26" width="0.1524" layer="91"/>
<wire x1="45.72" y1="48.26" x2="40.64" y2="48.26" width="0.1524" layer="91"/>
<pinref part="R2" gate="G$1" pin="2"/>
<wire x1="35.56" y1="50.8" x2="35.56" y2="48.26" width="0.1524" layer="91"/>
<wire x1="35.56" y1="48.26" x2="40.64" y2="48.26" width="0.1524" layer="91"/>
<wire x1="40.64" y1="48.26" x2="40.64" y2="121.92" width="0.1524" layer="91"/>
</segment>
<segment>
<pinref part="IC2" gate="G$1" pin="VOUT"/>
<wire x1="157.48" y1="93.98" x2="154.94" y2="93.98" width="0.1524" layer="91"/>
<wire x1="154.94" y1="93.98" x2="154.94" y2="116.84" width="0.1524" layer="91"/>
<pinref part="+3V2" gate="G$1" pin="+3V3"/>
<pinref part="C8" gate="G$1" pin="1"/>
<wire x1="149.86" y1="114.3" x2="149.86" y2="116.84" width="0.1524" layer="91"/>
<wire x1="149.86" y1="116.84" x2="154.94" y2="116.84" width="0.1524" layer="91"/>
<wire x1="154.94" y1="116.84" x2="154.94" y2="119.38" width="0.1524" layer="91"/>
<junction x="154.94" y="116.84"/>
</segment>
</net>
<net name="N$10" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN11"/>
<pinref part="JP2" gate="G$1" pin="5"/>
<wire x1="119.38" y1="91.44" x2="114.3" y2="91.44" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$11" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN10"/>
<pinref part="JP2" gate="G$1" pin="6"/>
<wire x1="119.38" y1="88.9" x2="114.3" y2="88.9" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$12" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN9"/>
<pinref part="JP2" gate="G$1" pin="7"/>
<wire x1="119.38" y1="86.36" x2="114.3" y2="86.36" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$13" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN8"/>
<pinref part="JP2" gate="G$1" pin="8"/>
<wire x1="119.38" y1="83.82" x2="114.3" y2="83.82" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$14" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN7"/>
<pinref part="JP2" gate="G$1" pin="9"/>
<wire x1="119.38" y1="81.28" x2="114.3" y2="81.28" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$16" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN5"/>
<pinref part="JP2" gate="G$1" pin="11"/>
<wire x1="119.38" y1="76.2" x2="114.3" y2="76.2" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$17" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN4"/>
<pinref part="JP2" gate="G$1" pin="12"/>
<wire x1="119.38" y1="73.66" x2="114.3" y2="73.66" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$6" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="REGCAPA"/>
<pinref part="C2" gate="G$1" pin="2"/>
<wire x1="53.34" y1="93.98" x2="33.02" y2="93.98" width="0.1524" layer="91"/>
<wire x1="33.02" y1="93.98" x2="33.02" y2="96.52" width="0.1524" layer="91"/>
<pinref part="C5" gate="G$1" pin="2"/>
<wire x1="30.48" y1="96.52" x2="33.02" y2="96.52" width="0.1524" layer="91"/>
<wire x1="33.02" y1="96.52" x2="33.02" y2="106.68" width="0.1524" layer="91"/>
<wire x1="33.02" y1="106.68" x2="30.48" y2="106.68" width="0.1524" layer="91"/>
<junction x="33.02" y="96.52"/>
</segment>
</net>
<net name="N$39" class="0">
<segment>
<pinref part="R1" gate="G$1" pin="1"/>
<pinref part="IC1" gate="G$1" pin="SYNC"/>
<wire x1="53.34" y1="63.5" x2="45.72" y2="63.5" width="0.1524" layer="91"/>
<wire x1="45.72" y1="63.5" x2="45.72" y2="60.96" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$22" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="XTAL2/CLKIO"/>
<wire x1="53.34" y1="78.74" x2="17.78" y2="78.74" width="0.1524" layer="91"/>
<wire x1="17.78" y1="78.74" x2="17.78" y2="68.58" width="0.1524" layer="91"/>
<pinref part="C10" gate="G$1" pin="1"/>
<pinref part="Q1" gate="G$1" pin="3"/>
<wire x1="15.24" y1="68.58" x2="17.78" y2="68.58" width="0.1524" layer="91"/>
<wire x1="17.78" y1="68.58" x2="17.78" y2="60.96" width="0.1524" layer="91"/>
<junction x="17.78" y="68.58"/>
</segment>
</net>
<net name="N$27" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="XTAL1"/>
<wire x1="53.34" y1="81.28" x2="5.08" y2="81.28" width="0.1524" layer="91"/>
<wire x1="5.08" y1="81.28" x2="5.08" y2="68.58" width="0.1524" layer="91"/>
<pinref part="C9" gate="G$1" pin="1"/>
<pinref part="Q1" gate="G$1" pin="1"/>
<wire x1="7.62" y1="68.58" x2="5.08" y2="68.58" width="0.1524" layer="91"/>
<wire x1="5.08" y1="68.58" x2="5.08" y2="60.96" width="0.1524" layer="91"/>
<junction x="5.08" y="68.58"/>
</segment>
</net>
<net name="VCC" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="REF+"/>
<wire x1="114.3" y1="109.22" x2="116.84" y2="109.22" width="0.1524" layer="91"/>
<wire x1="116.84" y1="109.22" x2="116.84" y2="119.38" width="0.1524" layer="91"/>
<pinref part="P+2" gate="VCC" pin="VCC"/>
</segment>
<segment>
<pinref part="C14" gate="G$1" pin="1"/>
<wire x1="142.24" y1="60.96" x2="152.4" y2="60.96" width="0.1524" layer="91"/>
<pinref part="P+1" gate="VCC" pin="VCC"/>
<wire x1="152.4" y1="60.96" x2="160.02" y2="60.96" width="0.1524" layer="91"/>
<wire x1="142.24" y1="58.42" x2="142.24" y2="60.96" width="0.1524" layer="91"/>
<junction x="142.24" y="60.96"/>
<wire x1="142.24" y1="60.96" x2="142.24" y2="68.58" width="0.1524" layer="91"/>
<pinref part="C11" gate="G$1" pin="1"/>
<wire x1="152.4" y1="58.42" x2="152.4" y2="60.96" width="0.1524" layer="91"/>
<junction x="152.4" y="60.96"/>
<pinref part="REF1" gate="G$1" pin="VOUT"/>
</segment>
</net>
<net name="N$31" class="0">
<segment>
<pinref part="LED1" gate="G$1" pin="A"/>
<pinref part="R3" gate="G$1" pin="1"/>
<wire x1="218.44" y1="60.96" x2="218.44" y2="58.42" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$23" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN6"/>
<pinref part="JP2" gate="G$1" pin="10"/>
<wire x1="119.38" y1="78.74" x2="114.3" y2="78.74" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$1" class="0">
<segment>
<pinref part="JP3" gate="G$1" pin="3"/>
<pinref part="IC1" gate="G$1" pin="SCLK"/>
<wire x1="33.02" y1="71.12" x2="53.34" y2="71.12" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$15" class="0">
<segment>
<pinref part="JP3" gate="G$1" pin="2"/>
<pinref part="IC1" gate="G$1" pin="DIN"/>
<wire x1="33.02" y1="73.66" x2="53.34" y2="73.66" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$24" class="0">
<segment>
<pinref part="JP3" gate="G$1" pin="1"/>
<pinref part="IC1" gate="G$1" pin="DOUT/RDY"/>
<wire x1="33.02" y1="76.2" x2="53.34" y2="76.2" width="0.1524" layer="91"/>
</segment>
</net>
<net name="VIN" class="0">
<segment>
<pinref part="C12" gate="G$1" pin="1"/>
<wire x1="185.42" y1="60.96" x2="198.12" y2="60.96" width="0.1524" layer="91"/>
<wire x1="198.12" y1="58.42" x2="198.12" y2="60.96" width="0.1524" layer="91"/>
<wire x1="198.12" y1="60.96" x2="208.28" y2="60.96" width="0.1524" layer="91"/>
<pinref part="C4" gate="G$1" pin="2"/>
<wire x1="195.58" y1="101.6" x2="195.58" y2="104.14" width="0.1524" layer="91"/>
<pinref part="IC3" gate="G$1" pin="VIN1"/>
<wire x1="205.74" y1="96.52" x2="210.82" y2="96.52" width="0.1524" layer="91"/>
<pinref part="IC3" gate="G$1" pin="VIN2"/>
<pinref part="C3" gate="G$1" pin="2"/>
<wire x1="142.24" y1="101.6" x2="142.24" y2="104.14" width="0.1524" layer="91"/>
<wire x1="243.84" y1="104.14" x2="205.74" y2="104.14" width="0.1524" layer="91"/>
<wire x1="205.74" y1="104.14" x2="195.58" y2="104.14" width="0.1524" layer="91"/>
<wire x1="195.58" y1="104.14" x2="152.4" y2="104.14" width="0.1524" layer="91"/>
<wire x1="142.24" y1="104.14" x2="152.4" y2="104.14" width="0.1524" layer="91"/>
<pinref part="IC2" gate="G$1" pin="VIN1"/>
<wire x1="152.4" y1="96.52" x2="157.48" y2="96.52" width="0.1524" layer="91"/>
<pinref part="IC2" gate="G$1" pin="VIN2"/>
<wire x1="157.48" y1="91.44" x2="152.4" y2="91.44" width="0.1524" layer="91"/>
<wire x1="152.4" y1="91.44" x2="152.4" y2="96.52" width="0.1524" layer="91"/>
<wire x1="152.4" y1="96.52" x2="152.4" y2="104.14" width="0.1524" layer="91"/>
<wire x1="210.82" y1="91.44" x2="205.74" y2="91.44" width="0.1524" layer="91"/>
<wire x1="205.74" y1="91.44" x2="205.74" y2="96.52" width="0.1524" layer="91"/>
<junction x="195.58" y="104.14"/>
<junction x="205.74" y="104.14"/>
<junction x="152.4" y="104.14"/>
<junction x="195.58" y="104.14"/>
<wire x1="205.74" y1="96.52" x2="205.74" y2="104.14" width="0.1524" layer="91"/>
<wire x1="208.28" y1="60.96" x2="208.28" y2="78.74" width="0.1524" layer="91"/>
<wire x1="208.28" y1="78.74" x2="243.84" y2="78.74" width="0.1524" layer="91"/>
<wire x1="243.84" y1="78.74" x2="243.84" y2="104.14" width="0.1524" layer="91"/>
<pinref part="C13" gate="G$1" pin="1"/>
<junction x="208.28" y="60.96"/>
<junction x="198.12" y="60.96"/>
<pinref part="L1" gate="G$1" pin="1"/>
<wire x1="208.28" y1="60.96" x2="208.28" y2="58.42" width="0.1524" layer="91"/>
<wire x1="248.92" y1="99.06" x2="248.92" y2="104.14" width="0.1524" layer="91"/>
<wire x1="248.92" y1="104.14" x2="243.84" y2="104.14" width="0.1524" layer="91"/>
<junction x="243.84" y="104.14"/>
<pinref part="REF1" gate="G$1" pin="VIN"/>
<junction x="152.4" y="96.52"/>
<junction x="205.74" y="96.52"/>
</segment>
</net>
<net name="PWR" class="0">
<segment>
<pinref part="L1" gate="G$1" pin="2"/>
<wire x1="238.76" y1="73.66" x2="248.92" y2="73.66" width="0.1524" layer="91"/>
<wire x1="248.92" y1="73.66" x2="248.92" y2="88.9" width="0.1524" layer="91"/>
<pinref part="R3" gate="G$1" pin="2"/>
<wire x1="233.68" y1="73.66" x2="218.44" y2="73.66" width="0.1524" layer="91"/>
<wire x1="218.44" y1="73.66" x2="218.44" y2="71.12" width="0.1524" layer="91"/>
<junction x="233.68" y="73.66"/>
<pinref part="C15" gate="G$1" pin="1"/>
<wire x1="233.68" y1="63.5" x2="233.68" y2="73.66" width="0.1524" layer="91"/>
<wire x1="233.68" y1="73.66" x2="238.76" y2="73.66" width="0.1524" layer="91"/>
<wire x1="238.76" y1="73.66" x2="238.76" y2="63.5" width="0.1524" layer="91"/>
<wire x1="238.76" y1="63.5" x2="241.3" y2="63.5" width="0.1524" layer="91"/>
<pinref part="JP4" gate="G$1" pin="1"/>
<junction x="238.76" y="73.66"/>
<label x="238.76" y="63.5" size="1.778" layer="95" rot="R90"/>
</segment>
<segment>
<pinref part="JP2" gate="G$1" pin="2"/>
<wire x1="119.38" y1="99.06" x2="121.92" y2="99.06" width="0.1524" layer="91"/>
<label x="121.92" y="99.06" size="1.778" layer="95"/>
</segment>
</net>
<net name="N$4" class="0">
<segment>
<pinref part="C7" gate="G$1" pin="1"/>
<pinref part="IC1" gate="G$1" pin="REGCAPD"/>
<wire x1="114.3" y1="63.5" x2="119.38" y2="63.5" width="0.1524" layer="91"/>
<pinref part="C6" gate="G$1" pin="1"/>
<wire x1="121.92" y1="63.5" x2="119.38" y2="63.5" width="0.1524" layer="91"/>
<junction x="119.38" y="63.5"/>
<wire x1="119.38" y1="63.5" x2="119.38" y2="55.88" width="0.1524" layer="91"/>
<wire x1="119.38" y1="55.88" x2="121.92" y2="55.88" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$5" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN12"/>
<pinref part="JP2" gate="G$1" pin="4"/>
<wire x1="114.3" y1="93.98" x2="119.38" y2="93.98" width="0.1524" layer="91"/>
</segment>
</net>
<net name="N$7" class="0">
<segment>
<pinref part="IC1" gate="G$1" pin="AIN13"/>
<pinref part="JP2" gate="G$1" pin="3"/>
<wire x1="114.3" y1="96.52" x2="119.38" y2="96.52" width="0.1524" layer="91"/>
</segment>
</net>
</nets>
</sheet>
</sheets>
<errors>
<approved hash="202,1,53.34,109.22,IC1,AIN16,,,,"/>
<approved hash="202,1,53.34,106.68,IC1,AIN0/REF2-,,,,"/>
<approved hash="202,1,53.34,104.14,IC1,AIN1/REF2+,,,,"/>
<approved hash="202,1,53.34,101.6,IC1,AIN2,,,,"/>
<approved hash="202,1,53.34,99.06,IC1,AIN3,,,,"/>
<approved hash="202,1,53.34,83.82,IC1,PDSW,,,,"/>
<approved hash="202,1,53.34,66.04,IC1,ERROR,,,,"/>
<approved hash="202,1,114.3,99.06,IC1,AIN14,,,,"/>
<approved hash="202,1,114.3,101.6,IC1,AIN15,,,,"/>
<approved hash="104,1,157.48,99.06,IC2,GND1,GND,,,"/>
<approved hash="104,1,180.34,99.06,IC2,GND2,GND,,,"/>
<approved hash="104,1,180.34,96.52,IC2,GND3,GND,,,"/>
<approved hash="104,1,180.34,93.98,IC2,GND4,GND,,,"/>
<approved hash="104,1,180.34,91.44,IC2,GND5,GND,,,"/>
<approved hash="104,1,210.82,99.06,IC3,GND1,GND,,,"/>
<approved hash="104,1,233.68,99.06,IC3,GND2,GND,,,"/>
<approved hash="104,1,233.68,96.52,IC3,GND3,GND,,,"/>
<approved hash="104,1,233.68,93.98,IC3,GND4,GND,,,"/>
<approved hash="104,1,233.68,91.44,IC3,GND5,GND,,,"/>
<approved hash="208,1,40.64,121.92,+3V3,sup,,,,"/>
<approved hash="208,1,157.48,93.98,+3V3,out,,,,"/>
<approved hash="208,1,154.94,119.38,+3V3,sup,,,,"/>
<approved hash="208,1,210.82,93.98,+5V,out,,,,"/>
<approved hash="208,1,208.28,119.38,+5V,sup,,,,"/>
<approved hash="208,1,17.78,121.92,+5V,sup,,,,"/>
<approved hash="208,1,17.78,45.72,GND,sup,,,,"/>
<approved hash="208,1,83.82,45.72,GND,sup,,,,"/>
<approved hash="208,1,83.82,53.34,GND,out,,,,"/>
<approved hash="208,1,208.28,45.72,GND,sup,,,,"/>
<approved hash="208,1,185.42,53.34,GND,sup,,,,"/>
<approved hash="113,1,218.118,54.61,LED1,,,,,"/>
<approved hash="113,1,47.5827,105.605,JP1,,,,,"/>
<approved hash="113,1,122.597,86.1653,JP2,,,,,"/>
<approved hash="113,1,29.8027,70.9253,JP3,,,,,"/>
<approved hash="113,1,244.517,59.4953,JP4,,,,,"/>
</errors>
</schematic>
</drawing>
</eagle>
``` |
The University of British Columbia (UBC) is a public research university with campuses near Vancouver and in Kelowna. Established in 1908, it is the oldest university in British Columbia. With an annual research budget of $759million, UBC funds over 8,000 projects a year.
The Vancouver campus is situated adjacent to the University Endowment Lands located about west of downtown Vancouver. UBC is home to TRIUMF, Canada's national laboratory for particle and nuclear physics, which houses the world's largest cyclotron. In addition to the Peter Wall Institute for Advanced Studies and Stuart Blusson Quantum Matter Institute, UBC and the Max Planck Society collectively established the first Max Planck Institute in North America, specializing in quantum materials. One of the largest research libraries in Canada, the UBC Library system has over 10million volumes among its 21 branches. The Okanagan campus, acquired in 2005, is located in Kelowna, British Columbia.
Eight Nobel laureates, 74 Rhodes scholars, 65 Olympians garnering medals, ten fellows in both American Academy of Arts & Sciences and the Royal Society, and 273 fellows to the Royal Society of Canada have been affiliated with UBC. Three Canadian prime ministers, including Canada's first female prime minister, Kim Campbell, and current prime minister, Justin Trudeau, have been educated at UBC.
History
Foundation and early years
In 1877, six years after British Columbia joined Canada, the Superintendent of Education, John Jessop, submitted a proposal for the formation of a provincial University. The provincial legislature passed An Act Respecting the University of British Columbia in 1890, but disagreements arose over whether to build the university on Vancouver Island or the mainland.
The British Columbia University Act of 1908 formally called a provincial University into being, although its location was not specified. The governance was modelled on the provincial University of Toronto Act of 1906 which created a bicameral system of university government consisting of a senate (faculty), responsible for academic policy, and a board of governors (citizens) exercising exclusive control over financial policy and having formal authority in all other matters. The president, appointed by the board, was to provide a link between the two bodies and to perform institutional leadership. The Act constituted a twenty-one member senate with Francis Carter-Cotton of Vancouver as chancellor.
Before the University Act, there had been several attempts at creating a degree-granting university with help from the universities of Toronto and McGill. Columbian College in New Westminster, through its affiliation with Victoria College of the University of Toronto, began to offer university-level credit at the turn-of-the-century, but McGill came to dominate higher education in the early 1900s.
Building on a successful affiliation between Vancouver and Victoria high schools with McGill University, Henry Marshall Tory helped establish the McGill University College of British Columbia. From 1906 to 1915, McGill BC (as it was called) operated as a private institution providing the first few years toward a degree at McGill University or elsewhere. The Henry Marshall Tory Medal was established in 1941 by Tory, founding president of the University of Alberta and of the National Research Council of Canada, and a co-founder of Carleton University.
In the meantime, appeals were made to the government to revive the earlier legislation for a provincial institution, leading to the University Endowment Act in 1907, and the University Act in 1908. In 1910 the Point Grey site was chosen, and the government appointed Dr. Frank Fairchild Wesbrook as president in 1913, and Leonard Klinck as dean of Agriculture in 1914. A declining economy and the outbreak of war in August 1914 compelled the university to postpone plans for building at Point Grey, and instead the former McGill University College site at Fairview became home to the university until 1925. On the first day of lectures, September 30, 1915, the new independent university absorbed McGill University College. The University of British Columbia awarded its first degrees in 1916, and Klinck became the second president in 1919, serving until 1944.
In 1917 Evlyn Fenwick Farris became the first woman in Canada to be appointed to the board of governors of a university — a founding governor of UBC. She was also the first woman to be appointed to the UBC Senate. Active in its formation, the University Women's Club of Vancouver considered UBC as its "godchild".
Move to Point Grey
World War I dominated campus life and the student body was "decimated" by enlistments for active service, with three hundred male UBC students in Company "D" alone. By the war's end 697 male members of the university had enlisted. 109 students graduated in the three war-time congregations, all but one in the Faculty of Arts and Science.
By 1920, the university had only three faculties: Arts, Applied Science, and Agriculture (with Departments of Agronomy, Animal Husbandry, Dairying, Horticulture and Poultry). It only awarded the degrees of Bachelor of Arts (BA), Bachelor of Applied Science (BASc), and Bachelor of Science in agriculture (BSA). There were 576 male students and 386 female students in the 1920–21 winter session, but only 64 academic staff, including 6 women.
In the early part of the 20th century, professional education expanded beyond the traditional fields of theology, law and medicine. Although UBC did not offer degrees in these fields, it began to offer degrees in new professional areas such as engineering, agriculture, nursing and school teaching. It also introduced graduate training based on the German-inspired American model of specialized course work and the completion of a research thesis, with students completing M.A. degrees in natural sciences, social sciences, and humanities.
In 1922, the twelve-hundred-strong student body embarked on a "Build the University" campaign. Students marched through the streets of Vancouver to draw attention to their plight, enlist popular support, and embarrass the government. Fifty-six thousand signatures were presented at legislature in support of the campaign, which was ultimately successful. On September 22, 1925, lectures began at the new Point Grey campus. Except for the library, Science and Power House buildings, all the campus buildings were temporary constructions. Students built two playing fields, but the university had no dormitories and no social centre. Still, the university continued to grow steadily.
Soon, however, the effects of the depression began to be felt. The provincial government, upon which the university depended heavily, cut the annual grant severely. In 1932–33, salaries were cut by up to 23%. Posts remained vacant, and a few faculty lost their jobs. Most graduate courses were dropped. In 1935, the university established the Department of Extension. Just as things began to improve, World War II began and Canada declared war on September 10, 1939. Soon afterwards, University President Klinck wrote:
From the day of the declaration of war, the University has been prepared to put at the disposal of the Government all possible assistance by way of laboratories, equipment and trained personnel, insofar as such action is consistent with the maintenance of reasonably efficient instructional standards. To do less would be unthinkable.
Heavy rains and melting snowfall eroded a deep ravine across the north end of the campus, in the Grand Campus Washout of 1935. The campus did not have storm drains, and surface runoff went down a ravine to the beach. When the university carved a ditch to drain flooding on University Avenue, the rush of water steepened the ravine and eroded it back as fast as per hour. The resulting gully eventually consumed , two bridges, and buildings near Graham House. The university was closed for 4 and a half days. Afterwards, the gully was filled with debris from a nearby landslide, and only traces are visible today.
Military training on the campus became popular, then mandatory. WWII marked the first provision of money from the federal government to the university for research purposes. This laid a foundation for future research grants from the federal government of Canada.
Postwar years
By the end of World War II, Point Grey's facilities could not meet the influx of veterans returning to their studies. The university needed new staff, courses, faculties, and buildings for teaching and accommodation. The student population rose from 2,974 in 1944–45 to 9,374 in 1947–48. Surplus Army and Air Force camps were used for both classrooms and accommodation. The university took over fifteen complete camps during the 1945–46 session, with a sixteenth camp on Little Mountain, in Vancouver, converted into suites for married students. Most of the camps were dismantled and carried by barge or truck to the university where the huts were scattered across the campus.
Student numbers hit 9,374 in 1948; more than 53% of the students were war veterans in 1947–67. Between 1947 and 1951, the university built twenty new permanent buildings, including the War Memorial Gym, built with money raised primarily by the students, was dedicated on October 26, 1951.
In the 1961–62 academic year, the university had an enrolment of 12,602 students, including 798 graduate students. The next year, the single-University policy in the West was changed as existing colleges of the provincial Universities gained autonomy as Universities – the University of Victoria was established in 1963.
Recent history
Prime Minister Pierre Trudeau announced the creation of the Museum of Anthropology at UBC on July 1, 1971. At a construction cost of $2.5million the museum building, designed by Arthur Erickson, opened in 1976. That same year, the university launched a normal school program under the direction of Sally Rogow to train educators methods to teach students with multiple disabilities or were visually impaired.
In 1993 UBC concluded its "World of Opportunity" capital campaign that started in 1988. In total the university raised $262 million for the campaign. An additional $72 million in "non-campaign fundraising" was also raised. During the administration of President Strangway, UBC abandoned its previous design and planning process and private donors started to have more influence on building design.
In 2015 UBC concluded its "Start an Evolution" capital campaign. The campaign's quiet phase started in April 2008 and it launched publicly in September 2011. The initial goal was to raise $1.5 billion. The campaign surpassed that goal and raised 1.624 billion.
UBC's 15th president was Professor Santa J. Ono. He assumed the presidency on August 15, 2016. He served previously as the 28th president of the University of Cincinnati. Dr. Martha Piper – who served as the 11th president of the university – served as interim president from September 1, 2015, to June 30, 2016, following the resignation of Dr. Arvind Gupta.
In early May 2020, UBC announced it would be holding a virtual graduation for the class of 2020 amid concerns over the COVID-19 pandemic. The university received $419,248 from the Government of Canada to promote uptake of COVID-19 vaccines among public health leaders, community figures, Indigenous peoples, and leadership in municipal government.
On October 3, 2022, Dr. Deborah Buszard was appointed interim President and Vice-Chancellor of UBC.
In July 2023, UBC announced that Carleton University President Benoit-Antoine Bacon would be UBC's new President as of November 1, 2023.
Campuses
Vancouver
The main campus is located at Point Grey, approximately from downtown Vancouver. It lies on unceded territory of the Musqueam people. It is near several beaches and has views of the North Shore mountains. The Pacific Spirit Regional Park serves as a green-belt between the campus and the city. Buildings on the Vancouver campus occupy gross on of maintained land. The campus street plan is mostly in a grid of malls (some of which are pedestrian-only). Lower Mall and West Mall are in the southwestern part of the peninsula, with Main, East, and Wesbrook Malls northeast of them.
The campus is not within Vancouver's city limits, and therefore UBC is policed by the RCMP rather than the Vancouver Police Department. However, the Vancouver Fire Department provides service to UBC under a contract. In addition to UBC RCMP, there is also the UBC Campus Security that patrols the campus. Postage sent to any building on campus includes Vancouver in the address.
UBC Vancouver also has two satellite campuses within the City of Vancouver: at Vancouver General Hospital, for the medical sciences, and at Robson Square in downtown Vancouver, for part-time credit and non-credit programmes. UBC is also a partner in the consortium backing Great Northern Way Campus Ltd, and is affiliated with a group of adjacent theological colleges, which include the Vancouver School of Theology, Regent College, Carey Theological College and Corpus Christi College.
The campus is home to numerous gardens. The UBC Botanical Garden and Centre for Plant Research, the first UBC department, holds a collection of over 8000 different kinds of plants used for research, conservation and education. The UBC botanical garden's original site was at the "Old Arboretum". All that remains of it today are trees planted in 1916 by John Davidson. The old arboretum is now home to many buildings including the First Nations House of Learning. The Nitobe Memorial Garden, built to honour Japanese scholar Inazo Nitobe, the garden has been the subject of more than fifteen years' study by a UBC professor, who believes its construction hides a number of impressive features, including references to Japanese philosophy and mythology, shadow bridges visible only at certain times of year, and positioning of a lantern filled with light at the exact date and time of Nitobe's death each year. The garden is behind the university's Asian Centre, which was built using steel girders from Japan's exhibit at Osaka Expo.
The campus also features the Chan Centre for the Performing Arts: a performing arts centre containing the Chan Shun Concert Hall, Telus Studio Theatre and the Royal Bank Cinema. It is often the site of convocation ceremonies and the filming location for the 4400 Center on the television show The 4400, as well as the Madacorp entrance set on Kyle XY. It has also been featured as the Cloud 9 Ballroom in the re-imagined Battlestar Galactica (Season 1, Episode 11: Colonial Day).
Since the mid-1980s UBC has worked with property developers to build several large residential developments throughout UBC's campus. Such developments include: Chancellor Place, Hampton Place, Hawthorn Place and Wesbrook Village.
Okanagan
The Okanagan Campus was established in 2005 on what was previously the North Kelowna Campus of Okanagan University College, next to Kelowna International Airport. It was founded in partnership with the Syilx Okanagan Nation and it lies on their ancestral and unceded territory.
The campus had a 2019 enrolment of 10,708 undergraduate and graduate students, and has its own academic Senate. UBC Okanagan offers 62 undergraduate and 19 graduate programs in a diversity of disciplines including Arts, Science, Fine Arts, Engineering, Nursing, Human Kinetics, Education, Management, Social Work and Interdisciplinary Graduate Studies. UBC's Faculty of Medicine delivers medical doctor training through the Southern Medical Program with facilities at UBC Okanagan and a clinical academic campus at Kelowna General Hospital.
From 2005 through 2012, the Okanagan campus completed a $450million expansion with construction of several residential, teaching and research buildings. The expansion included the Charles E. Fipke Centre for Innovative Research, University Centre, the Engineering Management and Education building, the Arts and Sciences Centre, Reichwald Health Sciences Centre, and several new student residence buildings. The Commons building was opened in 2019 as an expansion to the Library building. Two additional student housing facilities, Skeena and Nechako, opened in 2020 and 2021 respectively.
In 2010, UBC Okanagan campus grew from 105 ha. to 208.6 ha. Like the Point Grey campus, the Okanagan campus attracts Canadian and international students.
UBC Okanagan is currently expanding its campus to downtown Kelowna. Construction on the 43 storey downtown campus building was approved in August 2023 and is expected to be completed by 2027. Eight storeys will be used as academic space for health programs, as the campus will be in close proximity to Interior Health offices and Kelowna General Hospital. The building will also include public engagement spaces, an art gallery, cafes, retailers, and 473 rental housing units.
Libraries, archives and galleries
The UBC Library, which has 7.8million volumes, 2.1million e-books, more than 370,000 e-journals, and more than 700,000 items in locally produced digital collections, is Canada's second-largest academic library. From 2014 to 2015, there were more than 3.8million on-campus visits and over 9.5million visits to its website.
The library has fifteen branches and divisions across the UBC Vancouver and UBC Okanagan campuses.
The former Main Library underwent construction and was renamed the Irving K. Barber Learning Centre. Opened in April 2008, the Learning Centre incorporates the centre heritage block of the old Main Library with two new expansion wings and features an automated storage and retrieval system (ASRS), the first of its kind in Canada.
UBC has a number of different collections that have been donated and acquired. Major General Victor Odlum CB, CMG, DSO, VD donated his library of 10,000 books, which has been housed in "the Rockwoods Centre Library" of the UBC Library since 1963. After Videomatica's 2011 closure, UBC and SFU acquired their $1.7-million collection. UBC received about 28,000 movie DVDs, 4,000 VHS titles and 900 Blu-ray discs which are housed at UBC Library's Koerner branch on the Vancouver campus. In 2014, renowned art collector and antiques specialist, Uno Langmann, donated the Uno Langmann Family Collection of B.C. Photographs, which consists of more than 18,000 rare and unique early photographs from the 1850s to the 1970s. It is considered the premiere private collection of early provincial photos, and an important illustrated history of early photographic methods. In 2016, the library acquired one of the world's most rare and extraordinary books, the Kelmscott Chaucer from 1896. The book was printed in a limited edition of only 438 copies, but there are only 48 copies in the world with its particular type of binding.
The Morris and Helen Belkin Art Gallery at UBC is mandated to research, exhibit, collect, publish, educate and develop programs in the field of contemporary art and in contemporary approaches to the practice of art history and criticism. The Belkin maintains and manages the university's art collection of over 5,000 objects, including the Outdoor Art Collection, and an archive of over 30,000 items. Works from the permanent collection and archives, with an emphasis on recent acquisitions, are exhibited on an annual basis and are also used by other institutions for research and loans. The Belkin has an active publication program and participates in programming that includes lectures, tours, concerts and symposia related to art history, criticism and curating.
Sustainability
UBC has been ranked in the Corporate Knights school rankings, which ranks universities based on how well they integrate sustainability into the learning experience. The rankings adopt a broad definition of sustainability which encompasses both environmental and social concerns. In the 2011 rankings, UBC was ranked second in the category: top 5 teaching programs. UBC's law school ranked fifth among Canadian law schools. The Sauder School of Business' MBA programs were ranked fourth in Canada. The same rankings placed the business school 11th in Canada for its undergraduate business program.
The Centre for Interactive Research on Sustainability (CIRS) building has been called North America's most sustainable, innovative, and high performance building.
The CIRS building was first proposed in 2000 and was the brainchild of John Robinson, a sustainable development research initiative professor. Robinson worked with faculty members from Emily Carr, Simon Fraser University, and British Columbia Institute of Technology as well as head architect Peter Busby to design the building. It cost 23million dollars to complete the 65,000 square foot building.
The CIRS building exhibits regenerative sustainability, which means the building improves the surrounding environment. For example, it uses energy it obtains from the neighbouring Earth and Ocean Sciences (EOSC) Building to heat itself. The EOSC building uses roughly 1600 megawatts of heat and goes through ten air changes every hour, which wastes around 900 megawatts. The engineers who built the CIRS building saw this as an opportunity; the building takes the heat the EOSC building expels and uses 300 megawatts to heat itself before returning 600 megawatts to the EOSC building. In this way, the CIRS building restores its surrounding environment.
The CIRS building is designed to be net positive in four ways environmentally, meaning the processes or products that leave the building are more environmentally friendly than those that go into it. The best example of the building's net positivity is the building's wood holds nearly 600 tons of carbon – more carbon than the building's construction and maintenance created.
Other sustainable features of the CIRS building include:
A water supply obtained entirely from rainwater
An on-site sewage treatment facility that converts all waste created in the building to reusable water and compost
The building's wood comes from trees killed by the pine beetle, thus, little logging was needed for construction
Relies on mainly solar energy for electricity
All areas of the building use natural lighting during the day.
The building integrates 'green' sustainable and humane features, i.e. not only does it have a small ecological footprint, it also serves as an environment for occupants to be happy, healthy, and productive. This is the direction the University of British Columbia is moving towards to continue their ideas of sustainable development.
Following the success of the CIRS, UBC's new Student Union Building, which opened in summer 2015, was also designed to adhere to the most stringent sustainability requirements. It achieves the LEED Platinum standard – with features that include triple glazing, solar-powered cooling, solar water heaters, radiant heating and cooling in floors, green roof technology, water-efficient landscaping that uses greywater, natural air ventilation, and a composting facility that processes up to 30 tonnes of organic waste each year.
Water Action Plan
As of 2019, UBC consumed about four billion litres of water a year, which could fill 1,600 Olympic-sized swimming pools.
To reduce this consumption, the UBC sustainability team created an initiative to conserve called the Water Action Plan in 2011 to reduce and recycle water on campus. Two landmarks for creating water sustainability are the CIRS and the C. K. Choi Building. The Centre for Interactive Sustainability (CIRS) building features a closed-loop water system where water is recycled and reused. On the other hand, the C. K. Choi Building for the Institute of Asian Research, consists of composting toilets, which reduce domestic water consumption. These toilets use an alternative other than using water for flushing and produce fertilizer that can be used for growing plants. Conclusively, these toilets allow for the conservation of water, landfill space, energy, and also the production of quality fertilizer.
Water conservation initiatives
For over 20 years, UBC has been implementing change and water consumption policies through two initiatives, ECOTrek and UBC Renew:
ECOTrek
ECOTrek is Canada's largest sustainability project which undertook an enormous water and energy saving initiative. This project included rebuilding almost 300 academic buildings in UBC. This project achieved a World Clean Energy nomination, which are honourable awards for successful projects in energy efficiency and renewable energy realm. The water management involved conducting changes to toilets, urinals, basins and water-cooled equipment to reduce the amount of water on campus. In addition, steam and water meters were installed on campus to quantify the water consumption to provide a clear depiction of the water use in each building.
UBC Renew
UBC Renew project involves renovating aging institutional buildings, instead of demolishing and building new buildings which can have negative impacts on the environment. Demolition can have major environmental impacts as it can pollute the soil, increase air pollutants, and increase water consumption. Renovating old buildings can save large volumes of water and save energy costs.
Community efforts
Beyond the UBC sustainability team, a student-driven initiative is taking place in making a bottled-water free campus in hopes of reducing bottled water on campus and to encourage students to engage in environmentally friendly behaviours. Production of bottled water puts strain on the environment and increases landfill space. According to the World Wide Fund for Nature 2001 report, about 1.5million tons of plastic is used for bottling 89billion litres of water each year.
Governance and academics
UBC's administration, as mandated by the University Act, is composed of a chancellor, convocation, board, senate, and faculties of the university. The board of governors manages property and revenue, while the senate manages the university's academic operation. Both are composed of faculty and students who are elected to the position. Degrees and diplomas are conferred by the convocation, which is composed of alumni, administrators, and faculty, with a quorum of twenty members. UBC also has a president, who is the university's chief executive officer and a member of the senate, board of governors, convocation, and also serves as vice chancellor. The president of the university is responsible for managing the academic operation of the university, including recommending appointments, calling meetings of faculties, and establishing committees.
Faculties and schools
UBC's academic activity is organized into "faculties" and "schools". UBC has twelve faculties at its Vancouver campus and seven at its Okanagan campus. UBC Vancouver has two academic colleges: Interdisciplinary Studies and Health Disciplines, while UBC Okanagan has a College of Graduate Studies. At the Vancouver campus, the Faculty of Arts, which dates back to the 1915 Fairview Campus, is the largest faculty with twenty departments and schools. With the split of the Faculty of Arts and Science in 1964, the Faculty of Science is the second largest faculty with nine departments. The Sauder School of Business is UBC's Faculty of Commerce and Business Administration. The School of Architecture offers a program accredited by the Canadian Architectural Certification Board at the bachelor level (B.Arch.) and the master's level (M.Arch.). , a new school was created: UBC Vancouver School of Economics in conjunction with the Sauder School of Business. The university's first inter-faculty school, the School of Biomedical Engineering, was established in 2017 as a partnership between the Faculties of Applied Science and Medicine.
In 2014, UBC created a new "International Programs" designation separate from the traditional definition of a faculty. To accompany this designation, the university created Vantage College to allow international students who do not meet the English language requirements for general admission to enter the university's transition program.
Dual undergraduate degree with Sciences Po
The dual degree program is a highly selective program in which undergraduate students earn two Bachelor of Arts degrees from both Sciences Po in France and UBC in four years. Previously, students could earn one Bachelor of Arts and one Bachelor of Commerce (Sauder School of Business); however, this program was discontinued with the last student intake occurring in September 2017. Currently, students in the dual degree program can only earn a Bachelor of Arts degree from UBC, along with a Bachelor of Arts degree from Sciences Po, which can both be in different majors pertaining to the social sciences. Students spend two years at one of three Sciences Po regional campuses in France (Le Havre, Menton, or Reims), each of which is devoted to a particular region of the world. After two years, students matriculate at UBC. Graduates are guaranteed admission to a Sciences Po graduate program within one-year of graduation.
Reputation
The University of British Columbia has ranked in a number of post-secondary rankings. In the 2022 Academic Ranking of World Universities rankings, the university ranked 44th in the world and second in Canada. The 2024 QS World University Rankings ranked the University 34th in the world, and third in Canada. The 2024 Times Higher Education World University Rankings ranked the University 41st in the world, and second in Canada. In the 2022–23 U.S. News & World Report Best Global University Ranking, the university ranked 35th in the world and second in Canada. The Canadian-based Maclean's magazine ranked the University of British Columbia third in their 2023 Canadian Medical Doctoral University category, and in their 2023 reputation survey. The university was ranked in spite of having opted out – along with several other universities in Canada – of participating in Maclean's graduate survey since 2006. In Newsweeks 2011 global university rankings, the university was ranked eighth among institutions outside the United States and second in Canada (after the University of Toronto).
Along with academic and research-based rankings, the university has also been ranked by publications that evaluate the employment prospects of its graduates. In the Times Higher Education's 2022 global employability ranking, the university ranked 36th in the world and third in Canada .
International partnerships
UBC students can study abroad for a semester or a year at over 200 partner institutions such as ETH Zürich, University of Tokyo, UC Berkeley, Imperial College London, HEC Paris, Tsinghua University, University of Washington, Seoul National University, University of Sydney, IIT Delhi, National Taiwan University and many others.
Enrolment
The mean admission average during the 2022-23 school year for domestic first-year students was 89–91 per cent. The acceptance rate for domestic applications in 2013 was 50.4 per cent, of which 57.1 per cent enrolled. In 2014/15, UBC employed 3,270 full-time Faculty members, 10,942 non-faculty members, and 8,031 students. It reported 871 unpaid employees.
Vancouver enrolment
University of British Columbia has a total of 72,585 students across both campuses. International students, amounting to 20,237, make up 28% of the university's student population. There are 2,303 indigenous students, making up 3.2% of the student population.
Research
The University of British Columbia is a member of Universitas 21, an international association of research-led institutions and the only Canadian member of the Association of Pacific Rim Universities, a consortium of 42 leading research universities in the Pacific Rim. In 2017, the University of British Columbia had the second-largest sponsored research income (external sources of funding) out of any Canadian university, totalling C$577 million. In the same year, the university's faculty averaged a sponsored research income of $249,900, the eighth highest in the country, while graduate students averaged a sponsored research income of $55,200.
The university has been ranked on several bibliometric university rankings, which uses citation analysis to evaluate the impact a university has on academic publications. In 2019, the Performance Ranking of Scientific Papers for World Universities ranked UBC 27th in the world and second in Canada. The University Ranking by Academic Performance 2018–19 rankings placed the university 27th in the world and second in Canada.
The university operates and manages a number of research centres:
In 1972, a consortium of the University of British Columbia and four other universities from Alberta and British Columbia established the Bamfield Marine Sciences Centre. Located on Vancouver Island, the centre provides year-round research facilities and technical assistance for biologists, ecologists and oceanographers.
The Peter Wall Institute for Advanced Studies is an interdisciplinary research institute for fundamental research in the Sciences, Social Sciences, and Humanities.
The UBC Farm is a learning and research farm in UBC's South Campus area. It features Saturday Farm Markets from early June until early October, selling organic produce and eggs to the community.
TRIUMF, a laboratory specializing in particle and nuclear physics, is also situated at the university. The name was formerly an acronym for Tri-University Meson Facility, but TRIUMF is now owned and operated by a consortium of eleven Canadian universities. The consortium runs TRIUMF through a contribution of funds from the National Research Council of Canada and makes TRIUMF's facilities available to Canadian scientists and to scientists from around the world.
BC Centre on Substance Use (BCCSU) and UBC have established Professorships in Cannabis Science in 2018 following Canada's legalization of cannabis.
The Centre for the Study of Democratic Institutions is a research institute for the teaching and study of innovation in democratic practice and institutions. Established in 2002, the centre conducts research and teaching in cooperation with scholars, public officials, NGOs and students. The centre is formally housed in the UBC School of Public Policy and Global Affairs (SPPGA), and operates in association with faculty in the UBC Department of Political Science. It was initially funded from the Merilees Chair through a donation by Gail and Stephen Jarislowsky.
The Stewart Blusson Quantum Matter Institute, one of three Canadian research institutes focused on quantum materials and technology research, was established in 2015 with the support of the Canada First Excellence Research Fund and a donation from Stewart Blusson.
In 2017, UBC inked a $3 million research agreement with Huawei for big data and fuel cell technology. The university refused to release the agreement without an access to information request.
Indigenous
UBC's Longhouse is the university's centre for Indigenous activities. The university has an associate dean of Indigenous Education, and has developed a governing board and senate policies as well as Aboriginal governed councils within the university structure. UBC offers degrees in First Nations and Indigenous Studies through a program in the Arts Faculty, and a Chinook Diploma Program in the Sauder School of Business; it also runs the Chinook Summer Biz Camp, to foster entrepreneurship among First Nations and Métis high school students. It hosts a Bridge Through Sport Program, Summer Science Program, Native Youth Program, and Cedar Day Camp and Afterschool Program. Its First Nations Forestry Initiatives were developed in partnership with specific Aboriginal communities to meet their needs in their more remote areas.
Finances
In 2012–13, UBC's budget exceeded $2billion, and the university posted balanced financial results for the fourth consecutive year through strategic revenue diversification, careful management of assets, and a continued focus on fundraising for projects across the university. Government grants account for approximately 45% of total revenues. Annual fundraising has nearly doubled in 5 years to reach $213million.
Tuition
Tuition fees vary significantly between Canadian citizens (and permanent residents) and international students. In addition, for both undergraduate and graduate programs, tuition rates vary among the university's faculties. Students must also pay for various living expenses such as housing, food and health care. , these expenses were estimated at around $13,000 CAD per academic year.
Undergraduate tuition
UBC tuition for 2012 was $4,700 before adding other mandatory administrative fees for a Canadian student in a basic 30-unit program, though various programs cost from $3,406 to $9,640. Tuition for international students is significantly higher (2.3–4.6 times higher than domestic students). In 2012, tuition for international students ranged from $16,245 CAD to $25,721 CAD.
In 2001–02, UBC had one of the lowest undergraduate tuition rates in Canada, at an average of $2,181 CAD per year for a full-time programme due to a government-instituted tuition freeze.
In 2001, the BC Liberal party defeated the NDP in British Columbia and lifted the tuition freeze. In 2002–03 undergraduate and graduate tuition rose by an average of 30%, and up to 40% in some faculties. This has led to better facilities, but also to student unrest and contributed to a teaching assistant union strike.
UBC again increased tuition by 30% in the 2003–04 year, again by approximately 15% in the 2004–05 season, and 2% in the 2005–06 and 2006–07 years. Increases were lower than expected because, in the 2005 Speech from the Throne, the government announced tuition increases would be capped to inflation. In 2006–07, the Canadian average undergraduate tuition fee was $4,347 and the BC average was $4,960. In 2014, the board of governors passed a one-time 10% tuition increase for all new incoming international students. In December 2015, UBC's board of governors passed a motion increasing international tuition by more than 46.8% for the academic years 2016–17, 2017–18, 2018–2019. This announcement was met with indignation by many of the university's students as this was the second major increase in international tuition in less than a year, taking total international student tuition fee increases to above 60% within 4 years (minimum international tuition will be benchmarked at $35,071 CAD in the year 2018–19).
Graduate tuition
In the academic year 2019/2020, graduate programs assess tuition fees that vary significantly, depending on the program and the student's citizenship. International students without external funding that meet the general eligibility criteria will be supported with guaranteed funding of up to $3,200 per year. Tuition for professional Master's programs varies.
Student life
Student representation
The Alma Mater Society of the University of British Columbia, or AMS, represents UBC undergraduate students within the Vancouver campus. The society's mandate is to improve the quality of educational, social, and personal lives of UBC students. The AMS lobbies the UBC administration on behalf of the student body, provides services such as the AMS/GSS Health and Dental Plan, supports and administers student clubs, and maintains the Student Union Building (aka SUB) and the services it houses. A constituency (undergraduate society) exists within each school and faculty of the university and acts as the subsidiary of the AMS within those schools and faculties.
The Graduate Student Society (GSS), which operates as an independent entity, represents graduate students. A council representing each graduate program and an executive elected by graduate students as a whole governs the GSS.
The university also has elected student representatives sitting on, as voting members, the board of governors (three student representatives) and the academic senate (18 student representatives), as laid out in the British Columbia University Act. Although the university is the official body that elects the students, the university delegates these representative elections to the AMS.
On the Okanagan Campus, the Students' Union Okanagan, or UBCSUO, is the elected representation of the student body. Composed of a board of directors and executive team, the UBCSUO lobbies the administration and provincial government on behalf of the student body, manages the student health and dental plan, as well as hosts social programming throughout the year. The Student Union Offices are located within the University Centre Building. In the wake of the COVID-19 Pandemic, the SUO initiated the Emergency Bursary Program which supported UBC students with nearly $1,000,000 in emergency funding.
Student demographics
In the 2020–21 academic year, females made up 57 per cent of UBC Vancouver's student body, and 53 per cent of UBC Okanagan's student body.
Student facilities
The heart of student activity at UBC Vancouver is the centrally located Student Union Building (SUB), which houses offices of many AMS student clubs, over a dozen restaurants and cafés, a pub ("The Gallery"), a nightclub ("The Pit"), the 425-seat Norman Bouchard Memorial Theatre ("The Norm Theatre"), several shops, and a post office. The AMS runs the majority of the SUB's outlets and shops; however, UBC Food Services' recent addition of major corporate outlets has generated controversy. The SUB Art Gallery contains mostly students' works. An underground bus loop to replace the "Grassy Knoll" beside the SUB did not receive funding by Translink.
As a result, the administration has cancelled the bus loop project, although the rest of the renovations of the University Boulevard Neighbourhood are still under consideration.
On June 1, 2015, the new Student Union Building—called the AMS Student Nest, or simply "the Nest"—opened to students, largely replacing and extending the old SUB in functionality. The Nest, built for $107million, is much larger than its predecessor, and has numerous amenities including a performance centre, an art exhibition space, a large ballroom, a three-storey climbing wall, radio broadcast facilities, a daycare, and a 10,740 square foot rooftop garden and public space with a water feature and outdoor seating. Many of the restaurants as well as the Pit Pub have moved to the Nest under their original name or with new names. AMS Student Nest was designed by B+H Architects in collaboration with DIALOG, opened on June 1, 2015, on UBC's Vancouver campus. The building has an area of 23 700m² with a capacity of 300 people. The structure of the building was worked on by RJC Engineers using primarily wood and steel construction.
Other student facilities on campus include the Ladha Science Student Centre (funded through a donation from Abdul Ladha, a levy on Science undergraduate students, the VP Students, and the dean of Science) and the Meekison Arts Student Space in the Faculty of Art's Buchanan D building. The UBC Bookstore's locations on the Vancouver campus: the main store at 6200 University Boulevard and a store at Sauder School of Business join the stores at the Okanagan and Robson Square Campuses in offering a variety of products and services. The bookstores return a dividend to UBC each year, which is re-invested in the campus or in student and community organizations.
Greek organizations
While UBC's Greek system is somewhat smaller than its counterparts in the United States, UBC's 19 Greek organizations make up Canada's largest and most active Greek system. The Alma Mater Society recognizes an InterFraternal Council (IFC) as a club, and weekly meetings of the fraternities under IFC take place at their respective fraternity houses. Greek life has its own division within UBC REC and intense competition between the nine Fraternities for the title of top Athletic Fraternity occur.
There are eleven international fraternities on campus, the first of which was Zeta Psi, in January 1926. Although its disputed, Alpha Delta Phi soon came to campus and chartered 3 months later. However, Zeta Psi and Alpha Delta Phi were preceded by several local fraternities on campus. Other fraternities include Alpha Epsilon Pi, Delta Kappa Epsilon, Psi Upsilon, Sigma Chi, Beta Theta Pi, Phi Delta Theta, Phi Gamma Delta, Kappa Sigma, Zeta Psi, and the newly added Phi Kappa Sigma.
The National Panhellenic Conference (NPC) member organizations (sororities) on campus are overseen by the Panhellenic Council. All sororities have a chapter room in the Panhellenic House on Wesbrook Mall; the building also offers housing for 72 college women, with preference given to sorority members.
The eight sororities on the Vancouver campus include Alpha Delta Pi, Alpha Gamma Delta, Alpha Omicron Pi, Alpha Phi, Delta Gamma, Gamma Phi Beta, Kappa Alpha Theta, and Kappa Kappa Gamma. The current Panhellenic total is 104. Chapter meetings are held in the chapter's respective rooms each week or in classrooms and Greek-wide or campus-wide events are attended by members of all the sororities and fraternities. Formal recruitment for the sororities begins during the third week of September and is a five-day process consisting of: tours (first two days), invitationals (third and fourth days) and preference. The formal recruitment process ends with Bid Day, where membership bids from each sorority are distributed to prospective members.
Phrateres has traditionally been affiliated with the Greek system since its installation at UBC in 1935. Historical records indicate that for many years, members identified themselves, and were recognized as Greek. Members interacted with fraternities on a similar basis as the sororities, and participated in many Greek events, such as Songfest and exchanges. However, they presently operate as a self-governing organization under the Alma Mater Society with the closure of their international headquarters in 2001.
Both campuses also have chapters of Sigma Phi Delta and Alpha Omega Epsilon, a professional engineering fraternity and sorority respectively. None of the four chapters are affiliated with the other Greek organizations on campus.
Alpha Kappa Psi (professional business fraternity) too has an active chapter at UBC since 2009. It consists of students from all faculty. They do not have a house and are not affiliated with any other Greek organization on campus.
Alpha Phi Omega (Community service fraternity) founded its first chapter in Canada at UBC in 2015.
Moreover, UBC was ranked among Canada's top party schools by the website Ask Men. UBC was ranked eighth.
Residences
The UBC Point Grey campus has a resident population of about 10,041 students who live in an unincorporated area, outside the City of Vancouver known as Electoral Area A within and partly administered by Metro Vancouver. Neighbouring the University Endowment Lands, on-campus residential services are provided by the Province of BC and by UBC. Emergency Planning is administered by Metro Vancouver. Because UBC is not in a municipality, there is no mayor, council, or other democratic municipal representation for on-campus residents, although residents can vote for the director of Electoral Area A. British Columbia's Residential Tenancy Act does not protect UBC residents because university accommodations for students and employees are exempt.
UBC has forecast the need for 6,400 new on-campus beds between 2008 and 2028 "to maintain the current availability of student housing choices in the face of on-going pressures in the Vancouver rental market". From 2009 to 2014, UBC added 1,471 beds for student residents. In 2015, UBC plans to increase the cost of on-campus student housing by 20%, with the exception of year-round residences.
, there are three dormitory style residences on campus, primarily for first and second-year students: Totem Park, Place Vanier, and Orchard Commons.
Totem Park, housing about 2,129 students, consists of nine dormitory buildings (Nootka, Dene, Haida, Salish, Kwakiutl, Shuswap, həm̓ləsəm̓, q̓ələχən, c̓əsnaʔəm), and a Commons Block (Coquihalla). All houses, except Shuswap and c̓əsnaʔəm, are co-ed, with alternating men's and women's floors; Shuswap and c̓əsnaʔəm have co-ed floors. The həm̓ləsəm̓ and q̓ələχən houses were opened to Totem Park residents in September 2011 and have single rooms with semi-private or private washrooms in contrast to the other houses' communal floor washrooms. c̓əsnaʔəm was opened to Totem Park residents in September 2017 and has single rooms with communal bathrooms.
Place Vanier, housing 1,370 people, consists of 12 blocks constructed in 1959 (Robson House), 1960 (Okanagan, Sherwood Lett, Mackenzie, Ross, Hamber, and Mawdsley Houses), 1961 (Kootenay House), 1968 (Cariboo and Tweedsmuir Houses), 2002 (Korea-UBC House) and 2003 (Tec de Monterrey-UBC House). The buildings vary from male and female only, to alternating gender floors, as well as fully mixed floors. The residences have single and double rooms, and each floor has a lounge and communal bathrooms.
Orchard Commons consists of two apartment style buildings, Braeburn house and Bartlett house, with the latter containing a common dining hall and reception area. Orchard Commons houses 1,047 students, with the majority staying in connected single rooms on mixed gender floors, where two same-gender residents share a washroom connecting their adjacent rooms.
Students nineteen and older have suite-style residence options on the Point Grey campus. The Gage Towers consist of three 17-floor towers (North, South and East) primarily for second, third, and fourth-year undergraduate students. It consists of three interconnected towers (North, South, and East) as well as single student housing (both studio, and apartment) in a building. The towers are composed of "quads": four separate pods, each consisting of six individual bedrooms, a bathroom and a kitchen-dining area.
Acadia Park and University Apartments are for student families and couples (where one is a UBC student) and are administered on a year-round basis.
Next to the Acadia Park residence area on the east part of campus is Fairview Crescent, a residence primarily for second- and third-year undergraduate students and many graduate students. The residence consists of an L-shaped pedestrian-only street lined with 4, 5 and six-student (a mix of single-sex and co-ed) townhouses. The Beanery coffee shop is in the middle of the residence. Within a 5-minute walk from Fairview Crescent is the Fraser Hall residence which houses approximately 200 students. Fairview Crescent and Fraser Hall are both governed by the Fairview and Fraser Residence Association.
The Thunderbird residences are primarily for graduate students and fourth-year undergraduate students; they are at the academic core campus' southern edge. The Ritsumeikan-UBC House is a residence with a Japanese cultural setting, named for Ritsumeikan University. It houses Japanese exchange students and Canadian students, who participate in unique inter-cultural programmes. UBC's Urasenke Japanese tea ceremony club uses the residence's tatami room for practice sessions. Two Canadian students are typically paired with two Japanese exchange students.
Marine Drive Residence is on the west side of campus, slightly south of Place Vanier. The first phase, consisting of Building 1 (an 18-floor tower) and Building 2 (a five-floor building commonly called the "Podium") opened in fall 2005. In February 2006, the board of governors approved plans for Marine Drive's second phase, putting an end to the debacle caused by concerns over the view of Wreck Beach (Phase I's Building 1 was reduced from 20 floors to 18). Additionally, building 1 contains the Simon K.Y. Lee Global Lounge and Resource Centre. Phase II consists of Buildings 4 through 6 (two towers and another "Podium", respectively), and also the Commonsblock. Buildings 4 through 6 were all open to students . A separate Commonsblock was completed in summer 2009, and has similar services to the Commonsblock of other residences, such as exercise, game, and study rooms. Construction at Marine Drive was completed in February 2010, with the opening of The Point Grill restaurant in Building 4.
The Ponderosa Commons and Orchard Commons residences, completed in 2016, and Brock Commons, opened in the Summer of 2017. The Ponderosa Commons is a multi-purpose building designed for student housing but is also a place for students to gather, study, or eat. The Ponderosa Commons house a Mercante, a popular pizzeria, and Harvest, a popular small-sized grocery shop.
The university has two colleges to accommodate graduate students, postdoctoral fellows and visiting scholars: St. John's College and Green College.
Brock Commons Tallwood House opened in 2017, becoming the tallest mass timber building in the world.
Athletics
The University of British Columbia's sports teams are called the Thunderbirds. The Thunderbirds participate in the U Sports Canada West Universities Athletic Association for most varsity sports. However, several varsity teams at UBC compete in the National Association of Intercollegiate Athletics. , UBC considered joining the NCAA Division II. With a long history of competing in sports, the Thunderbirds have garnered a number of championships. In particular, the women swimmers who had represented UBC had brought back 22 conference championships and 16 national championships.
The University of British Columbia has a number of athletic facilities open to both their varsity teams as well as to their students. The stadium with the largest seating capacity at UBC is the Doug Mitchell Thunderbird Sports Centre. The Doug Mitchell Thunderbird Sports Centre is home to the varsity ice hockey teams and was also used as a venue for the 2010 Winter Olympics. Other facilities at UBC include Thunderbird Stadium, home to the university's football and soccer varsity teams, UBC Aquatic Centre, home to the university's swimming teams, the War Memorial Gymnasium, home to the university's basketball and volleyball varsity teams and Thunderbird Park, home to the university's many other outdoor varsity teams.
The university has also had a long history of sending a number of students to represent their countries at the Olympics. Since having its first athlete sent to the Olympics in 1928, a total of 231 individuals from UBC have represented their respective countries at the Olympics. The total number of individual medals athletes from UBC had won was 61, with 19 gold, 21 silver and 24 bronze. The majority of these medals won had come from the sport of rowing.
Marching band
UBC's marching band, the Thunderbird Marching Band, was founded in September 2012 and is entirely student-run. The band performs at various Thunderbirds football, basketball, rugby, and hockey games, as well as other campus events. It is the only university-level marching band in Western Canada.
Fight songs
Notable among a number of songs commonly played and sung at various events such as commencement and convocation, and athletic games are: "Hail, U.B.C" with words and music by Harold King, "High on Olympus" with words by D. C. Morton and music by J. C. F. Haeffner. and "Hail, UBC!" (2009) with words and music by Steve Chatman.
Campus events
A small number of large-scale, campus-wide events occur annually at UBC which are organized by university institutions, the AMS, and student constituencies of various faculties and departments. Additionally, a number of unofficial traditions exist at UBC: jumping from the Aquatic Centre's 10-metre diving board late at night and repainting the Engineering cairn so as to advertise other clubs.
Several group athletic events take place at UBC every year. Storm the Wall is an intramural relay race put on by UBC Recreation in April, culminating in the climbing of a wall. Day of the Longboat is an intramural event put on at the end of September/early October by UBC Recreation. It is a major voyageur canoe race with teams competing in a 2 km paddle around the waters of Jericho Sailing Centre. The program is operated by over 120 volunteer students and staff who are responsible for operating every aspect of this program. UBC Recreation's student administrators fill various roles including event planning, sport officiating, public relations and building supervision.
Faculty constituencies, such as the Arts Undergraduate Society (AUS) and Science Undergraduate Society (SUS), hold events annually. Many of the major constituencies, such as for Arts, Science, and Engineering, hold their own faculty weeks to celebrate their faculties. The events may include keynote speeches, merchandise sales, and dances. Arts County Fair was an annual concert and party on the last day of classes in April, put on by the AUS and occurring at Thunderbird Stadium. Past headliners have included Sam Roberts, The New Pornographers, and Metric. Due to increasing financial difficulties (mostly resulting from mounting security and related costs) the AUS announced they would not continue the event in 2008. In its place, the Alma Mater Society of UBC hosted the AMS Block Party to celebrate the end of classes.
During the Spring exam season, the Ski & Board Club organizes the Undie Run, a charity event that encourages people to donate their clothes to the Big Brothers & Sisters organization in Vancouver. Students meet at the Student Union Building, remove the clothes they are going to donate, and then run around campus in their underwear. Students run through places like the Irvin K. Barber Centre and Place Vanier Residence before ending at the Martha Piper Plaza fountain.
To celebrate the beginning of classes, UBC Orientations organizes several events for first-year students, such as Imagine UBC, GALA, and UBC Jump Start. Imagine UBC is an orientation day and pep rally for first-year undergraduate students that replaces the first day of class after Labour Day at UBC Vancouver.
Model United Nations
In March 2012, UBC was the partner Host University of the Harvard World Model United Nations Conference (WorldMUN 2012 Vancouver). As the world's largest student-organized Model UN conference, this was also the largest student conference to have ever been organized by UBC and the largest student conference on Canadian soil. There were 2,200 student delegates and nearly 200 faculty advisors from 270 universities from over 60 countries. The organizing committee amassed over 500 student volunteers from across the UBC campus and the local student community to execute the week-long event.
Engineering student pranks
UBC engineering students have a history of performing pranks which attract national and international attention. UBC does not condone student pranks, nor publicize them (unlike the California Institute of Technology or Massachusetts Institute of Technology; see hacks at the Massachusetts Institute of Technology). Notable incidents include the hanging of the shell of a VW Bug from the underside of the Golden Gate Bridge. Those responsible for the Golden Gate prank have never been caught, nor has it been discovered how the prank was performed.
Notable people
Throughout UBC's history, faculty, alumni, and former students have played prominent roles in many different fields. Many UBC alumni and faculty have gone on to win awards including eight Nobel Prizes and 74 Rhodes Scholarships.
Former alumni have won Nobel Prizes: Robert Mundell (Economic Sciences) who graduated from the UBC Department of Economics and Bertram Brockhouse (Physics). Five former faculty members of the UBC have also received a Nobel Prize: Michael Smith (Chemistry), Har Gobind Khorana (Physiology or Medicine), Daniel Kahneman (Economics), Hans G. Dehmelt (Physics), and Carl Wieman (Physics).
Many former students have gained local and national prominence in government. The university has produced three Canadian Prime Ministers: John Turner, Kim Campbell, and Justin Trudeau. The leader of the Liberal Party of Canada, Member of Parliament and the 23rd Prime Minister of Canada Justin Trudeau completed his BEd. at UBC in 1998. Canadian Prime Minister Joe Clark briefly attended UBC law. George Stanley, the Lieutenant Governor of New Brunswick and creator of the Canadian flag had also served as faculty. Alumni Mike Harcourt, Glen Clark and Ujjal Dosanjh have been premiers of British Columbia:, People of UBC Law have also served on the Supreme Court of Canada: former faculty member Beverley McLachlin and alumnus Frank Iacobucci.
Other examples include:
Canadian academic, science broadcaster and environmental activist David Suzuki was a professor in UBC's genetics department from 1963 until his retirement in 2001.
Joel Bakan, author of The Corporation: The Pathological Pursuit of Profit and Power, is a professor at the Faculty of Law.
Psychologist Albert Bandura is an alumnus of UBC.
Actress Evangeline Lilly attended UBC and earned her degree in international relations.
Singer/songwriter Dan Mangan attended UBC, earning a BA in English Literature.
Author and historian Pierre Berton majored in history at UBC.
James Giles (philosopher), philosopher of mind and human relationships, received his BA (Hons) and MA at UBC.
Man-in-Motion Rick Hansen was the first student with a physical disability to graduate in physical education from UBC.
Director of Artificial Intelligence at Tesla Andrej Karpathy graduated from UBC in 2011 with a MSc in computer science.
Opera singers Judith Forst, Ben Heppner and Lance Ryan studied music at UBC.
David Cheriton, who graduated from UBC in 1973, is a Google founding investor and computer science professor at Stanford University.
Science fiction writer William Gibson, who coined the term "cyberspace", earned his bachelor's degree in English at UBC.
Actor Manny Jacinto graduated with a degree in civil engineering.
Clint Hocking, creative director of Far Cry 2 and Watch Dogs: Legion, graduated received a Master of Fine Arts in creative writing at UBC.
Gabor Maté, an expert in childhood development and trauma, earned his BA at UBC.
Kiril Petkov, 17th Prime Minister of Bulgaria, and the first alumnus to become a head of government outside of Canada
UBC alumni have also held important positions in the academia. Notable examples are:
Indira Samarasekera, twelfth president of the University of Alberta;
Amit Chakma, president of the University of Western Ontario;
Muriel Kennett Wales, believed to have been the first Irish-born woman to earn a PhD in pure mathematics.
John H. McArthur, dean emeritus of the Harvard Business School;
Thomas Franck (lawyer), who was the Murry and Ida Becker Professor of Law at New York University and former editor-in-chief of the American Journal of International Law;
David H. Turpin, sixth president of the University of Victoria and thirteenth president of the University of Alberta;
Nemkumar Banthia, a fellow of the Royal Society of Canada and CEO of IC-IMPACTS.
Michiel Horn, member of the Royal Society of Canada and professor emeritus of history at York University;
Monica Lam, a computer science professor at Stanford University and founder of Moka5;
Frank Iacobucci, a Puisne Justice on the Supreme Court of Canada.
Alison Mountz, Canada Research Chair in Global Migration at Wilfrid Laurier University and member of the Royal Society of Canada's College of New Scholars, Artists, and Scientists.
Amalendu Chandra, Indian theoretical physical chemist, professor of chemistry at Indian Institute of Technology, Kanpur, fellow of the IAS, and INSA, Shanti Swarup Bhatnagar Prize for Science and Technology award.
Arms
See also
CITR-FM
UBC Botanical Garden and Centre for Plant Research
UBC Library
UBC Okanagan
List of Canadian universities by endowment
Sexual Violence and Misconduct Policy Act (British Columbia)
Notes
References
Further reading
William A. Bruneau, A Matter of Identities: A History of the UBC Faculty Association, 1920–1990. Vancouver: University of British Columbia Faculty Association, 1990.
Eric Damer and Herbert Rosengarten. UBC: The First 100 Years. Vancouver: Friesens, 2009.
Michiel Horn."Under the Gaze of George Vancouver: The University of British Columbia and the Provincial Government, 1913–1939." BC Studies 83 (Autumn 1989).
William C. Gibson Wesbrook & His University (Vancouver: University of British Columbia Press)
Sheldon Goldfarb The Hundred-Year Trek: A History of Student Life at UBC. Victoria: Heritage House, 2017.
H.T. Logan, Tuum Est: A History of the University of British Columbia. Vancouver: University of British Columbia, 1958.
Wayne Skene. "UBC: a Portrait." Vancouver: Tribute Books, 2003.
Lee Stewart. "It's Up to You": Women at UBC in the Early Years. Vancouver: University of British Columbia Press, 1990.
George Woodcock & Tim Fitzharris. The University of British Columbia – A Souvenir. (Toronto: Oxford University Press, 1986).
External links
Official website
UBC Photograph Collection – A visual record of UBC's growth and development, from UBC Library Digital Collections
1890 establishments in British Columbia
Educational institutions established in 1890
Universities and colleges established in 1915
Gothic Revival architecture in Vancouver
Universities in British Columbia
British Columbia |
Masako Tachibana (born 23 November 1983) is a Japanese synchronized swimmer who competed in the 2008 Summer Olympics.
References
1983 births
Living people
Japanese synchronized swimmers
Olympic synchronized swimmers for Japan
Synchronized swimmers at the 2008 Summer Olympics
Asian Games medalists in artistic swimming
Artistic swimmers at the 2006 Asian Games
Asian Games silver medalists for Japan
Medalists at the 2006 Asian Games
21st-century Japanese women |
The 2019 season was the 12th season for the IPL cricket franchise Royal Challengers Bangalore. They were one of the eight teams that competed in the tournament. RCB continued under Kohli's captaincy and finished the season with five wins from 14 matches and 11 points.
Background
Player retention, transfers and auction
In November 2018, the Royal Challengers announced their list of retained players for the 2019 season. The list included Virat Kohli, AB de Villiers, Parthiv Patel, Yuzvendra Chahal, Washington Sundar, Pawan Negi, Nathan Coulter-Nile, Moeen Ali, Mohammed Siraj, Colin de Grandhomme, Tim Southee, Umesh Yadav, Navdeep Saini, Kulwant Khejroliya and Marcus Stoinis.
On 18 December 2018, the IPL player auction was held in which the Royal Challengers signed up nine more players viz., Shivam Dube, Shimron Hetmyer, Akshdeep Nath, Prayas Barman, Himmat Singh, Gurkeerat Singh Mann, Heinrich Klaasen, Devdutt Padikkal and Milind Kumar. Their squad strength was 24 with 16 Indian and 8 overseas players.
Transfers Quinton de Kock to Mumbai Indians; Mandeep Singh to Kings XI Punjab in return for Marcus Stoinis.
Team analysis
ESPNcricinfo editor Varun Shetty wrote in his team preview that the Royal Challengers "might struggle once more with their balance" despite the presence of several all-rounders in the squad and predicted that the team would make it to the playoffs if Kohli has "another season of big runs". According to the Indian Express, the team's strength is its batting lineup while the unavailability of overseas all-rounders for the entire season could be the weakness. The preview also stated that Kohli, whose captaincy was recently criticized by former cricketers, "will be eager to prove them wrong". The Times of India remarked that "Bowling, especially in the death overs, continues to be a cause for worry for RCB." News18 tipped Shimron Hetmyer as one of the five first-time overseas players to watch out for in the season, while the Hindu named Shivam Dube among the uncapped Indian players "who could create ripples" at the tournament.
Squad
Players with international caps are listed in bold.
Coaching and support staff
Team and cricket operations manager - Avinash Vaidya
Head coach - Gary Kirsten
Assistant coaches - Mithun Manhas, NS Negi, Vikram Solanki, Kabir Ali
Bowling coach - Ashish Nehra
Physiotherapist - Evan Speechly
Ref
Season
League table
Results by match
Results
The Royal Challengers made 143 runs in the last 10 overs while batting, the most by any team in an IPL match.
Statistics
Most runs
Source:Cricinfo
Most wickets
Source:Cricinfo
References
2019 Indian Premier League
Royal Challengers Bangalore seasons
2010s in Bangalore |
David Foster is a Canadian musician, record producer, composer, songwriter, and arranger.
Grammy Awards
The Grammy Awards are awarded annually by the National Academy of Recording Arts and Sciences in the United States for outstanding achievements in the record industry. Foster has won 16 awards from 47 nominations.
Academy Award
Academy Awards, also known as the Oscars, are awarded annually by the Academy of Motion Picture Arts and Sciences (AMPAS) to recognize excellence of professionals in the film industry, including directors, actors, and writers.
Golden Globe Award
Golden Globe Awards are awarded annually by the Hollywood Foreign Press Association (HFPA) to recognize excellence in film and television, both domestic and foreign.
References
Foster, David |
Cinnaminson station is a station on the River Line light rail system, located on Broad Street in Cinnaminson, New Jersey.
The station opened on March 15, 2004. Southbound service from the station is available to Camden, New Jersey. Northbound service is available to the Trenton Rail Station with connections to New Jersey Transit trains to New York City, SEPTA trains to Philadelphia, Pennsylvania, and Amtrak trains. Transfer to the PATCO Speedline is available at the Walter Rand Transportation Center.
The station is located across from the Cinnaminson Harbour condominium community. A pedestrian crosswalk provides access to the development, as well as to Bannard Street across the tracks.
References
External links
Cinnaminson Station – NJ Transit
Station from Google Maps Street View
River Line stations
Railway stations in the United States opened in 2004
2004 establishments in New Jersey
Railway stations in Burlington County, New Jersey |
```objective-c
// This is a part of the Active Template Library.
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Active Template Library Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Active Template Library product.
#ifndef __ATLCOLL_H__
#define __ATLCOLL_H__
#pragma once
#include <atldef.h>
#include <atlbase.h>
#include <new.h>
#pragma warning(push)
#pragma warning(disable: 4702) // Unreachable code. This file will have lots of it, especially without EH enabled.
#pragma warning(disable: 4512) // assignment operator could not be generated
#pragma warning(disable: 4290) // C++ Exception Specification ignored
#pragma warning(disable: 4127) // conditional expression constant
#pragma warning(disable: 4571) //catch(...) blocks compiled with /EHs do NOT catch or re-throw Structured Exceptions
// abstract iteration position
#ifndef _AFX
struct __POSITION
{
};
#endif
typedef __POSITION* POSITION;
#pragma pack(push,_ATL_PACKING)
namespace ATL {
#pragma warning(push)
#pragma warning(disable:4324)
__declspec(align(8)) struct CAtlPlex
{
CAtlPlex* pNext;
void* data()
{
return this+1;
}
static CAtlPlex* Create(
_Inout_ CAtlPlex*& head,
_In_ size_t nMax,
_In_ size_t cbElement);
// like 'calloc' but no zero fill
// may throw memory exceptions
void FreeDataChain(); // free this one and links
};
#pragma warning(pop)
inline CAtlPlex* CAtlPlex::Create(
_Inout_ CAtlPlex*& pHead,
_In_ size_t nMax,
_In_ size_t nElementSize)
{
CAtlPlex* pPlex;
ATLASSERT( nMax > 0 );
ATLASSERT( nElementSize > 0 );
size_t nBytes=0;
if( FAILED(::ATL::AtlMultiply(&nBytes, nMax, nElementSize)) ||
FAILED(::ATL::AtlAdd(&nBytes, nBytes, sizeof(CAtlPlex))) )
{
return NULL;
}
pPlex = static_cast< CAtlPlex* >( malloc( nBytes ) );
if( pPlex == NULL )
{
return( NULL );
}
pPlex->pNext = pHead;
pHead = pPlex;
return( pPlex );
}
inline void CAtlPlex::FreeDataChain()
{
CAtlPlex* pPlex;
pPlex = this;
while( pPlex != NULL )
{
CAtlPlex* pNextPlex;
pNextPlex = pPlex->pNext;
free( pPlex );
pPlex = pNextPlex;
}
}
template< typename T >
class CElementTraitsBase
{
public:
typedef const T& INARGTYPE;
typedef T& OUTARGTYPE;
static void CopyElements(
_Out_writes_all_(nElements) T* pDest,
_In_reads_(nElements) const T* pSrc,
_In_ size_t nElements)
{
for( size_t iElement = 0; iElement < nElements; iElement++ )
{
pDest[iElement] = pSrc[iElement];
}
}
static void RelocateElements(
_Out_writes_all_(nElements) T* pDest,
_In_reads_(nElements) T* pSrc,
_In_ size_t nElements)
{
// A simple memmove works for nearly all types.
// You'll have to override this for types that have pointers to their
// own members.
Checked::memmove_s( pDest, nElements*sizeof( T ), pSrc, nElements*sizeof( T ));
}
};
template< typename T >
class CDefaultHashTraits
{
public:
static ULONG Hash(_In_ const T& element) throw()
{
return( ULONG( ULONG_PTR( element ) ) );
}
};
template< typename T >
class CDefaultCompareTraits
{
public:
static bool CompareElements(
_In_ const T& element1,
_In_ const T& element2)
{
return( (element1 == element2) != 0 ); // != 0 to handle overloads of operator== that return BOOL instead of bool
}
static int CompareElementsOrdered(
_In_ const T& element1,
_In_ const T& element2)
{
if( element1 < element2 )
{
return( -1 );
}
else if( element1 == element2 )
{
return( 0 );
}
else
{
ATLASSERT( element1 > element2 );
return( 1 );
}
}
};
template< typename T >
class CDefaultElementTraits :
public CElementTraitsBase< T >,
public CDefaultHashTraits< T >,
public CDefaultCompareTraits< T >
{
};
template< typename T >
class CElementTraits :
public CDefaultElementTraits< T >
{
};
template<>
class CElementTraits< GUID > :
public CElementTraitsBase< GUID >
{
public:
static ULONG Hash(_In_ INARGTYPE guid)
{
const DWORD* pdwData = reinterpret_cast< const DWORD* >( &guid );
return( pdwData[0]^pdwData[1]^pdwData[2]^pdwData[3] );
}
static bool CompareElements(
_In_ INARGTYPE element1,
_In_ INARGTYPE element2)
{
return( (element1 == element2) != 0 ); // != 0 to handle overloads of operator== that return BOOL instead of bool
}
static int CompareElementsOrdered(
_In_ INARGTYPE element1,
_In_ INARGTYPE element2)
{
const DWORD* pdwData1 = reinterpret_cast< const DWORD* >( &element1 );
const DWORD* pdwData2 = reinterpret_cast< const DWORD* >( &element2 );
for( int iDWORD = 3; iDWORD >= 0; iDWORD-- )
{
if( pdwData1[iDWORD] > pdwData2[iDWORD] )
{
return( 1 );
}
else if( pdwData1[iDWORD] < pdwData2[iDWORD] )
{
return( -1 );
}
}
return( 0 );
}
};
template<>
class CElementTraits< CComVariant > :
public CElementTraitsBase< CComVariant >
{
public:
typedef const VARIANT& INARGTYPE;
// static ULONG Hash( INARGTYPE t ); // variant hashing is problematic
static bool CompareElements(
_In_ INARGTYPE element1,
_In_ INARGTYPE element2)
{
return VarCmp(const_cast<VARIANT*>(&element1), const_cast<VARIANT*>(&element2), LOCALE_USER_DEFAULT, 0)==static_cast<HRESULT>(VARCMP_EQ);
}
static int CompareElementsOrdered(
_In_ INARGTYPE element1,
_In_ INARGTYPE element2)
{
HRESULT hr = VarCmp(const_cast<VARIANT*>(&element1), const_cast<VARIANT*>(&element2), LOCALE_USER_DEFAULT, 0);
if( hr == static_cast<HRESULT>(VARCMP_LT) )
{
return( -1 );
}
else if( hr == static_cast<HRESULT>(VARCMP_GT) )
{
return( 1 );
}
else
{
ATLASSERT( hr == static_cast<HRESULT>(VARCMP_EQ) || hr == static_cast<HRESULT>(VARCMP_NULL) );
return( 0 );
}
}
};
template<>
class CElementTraits< CComBSTR > :
public CElementTraitsBase< CComBSTR >
{
public:
static ULONG Hash(_In_ INARGTYPE bstr) throw()
{
ULONG nHash = 0;
const OLECHAR* pch = bstr;
ULONG nLength = bstr.Length();
for( ULONG iChar = 0; iChar < nLength; iChar++ )
{
nHash = (nHash<<5)+nHash+pch[iChar];
}
return( nHash );
}
static bool CompareElements(
_In_ INARGTYPE bstr1,
_In_ INARGTYPE bstr2) throw()
{
return( bstr1 == bstr2 );
}
static int CompareElementsOrdered(
_In_ INARGTYPE bstr1,
_In_ INARGTYPE bstr2) throw()
{
HRESULT hr = VarBstrCmp( bstr1, bstr2, LOCALE_SYSTEM_DEFAULT, 0 );
switch( hr )
{
case static_cast<HRESULT>(VARCMP_LT):
return( -1 );
break;
case static_cast<HRESULT>(VARCMP_GT):
return( 1 );
break;
case static_cast<HRESULT>(VARCMP_EQ):
return( 0 );
break;
default:
ATLASSERT( false );
return( 0 );
break;
}
}
};
template< typename I, const IID* piid = &__uuidof( I ) >
class CComQIPtrElementTraits :
public CDefaultElementTraits< ATL::CComQIPtr< I, piid > >
{
public:
typedef I* INARGTYPE;
};
template< typename T >
class CAutoPtrElementTraits :
public CDefaultElementTraits< ATL::CAutoPtr< T > >
{
public:
typedef ATL::CAutoPtr< T >& INARGTYPE;
typedef T*& OUTARGTYPE;
// Specialize copy elements to allow non-const since we transfer ownership on assignment
static void CopyElements(
_Out_writes_(nElements) ::ATL::CAutoPtr< T >* pDest,
_In_reads_(nElements) ::ATL::CAutoPtr< T >* pSrc,
_In_ size_t nElements)
{
for( size_t iElement = 0; iElement < nElements; iElement++ )
{
pDest[iElement] = pSrc[iElement];
}
}
};
template< typename T >
class CAutoVectorPtrElementTraits :
public CDefaultElementTraits< ATL::CAutoVectorPtr< T > >
{
public:
typedef ATL::CAutoVectorPtr< T >& INARGTYPE;
typedef T*& OUTARGTYPE;
// Specialize copy elements to allow non-const since we transfer ownership on assignment
static void CopyElements(
_Out_writes_(nElements) ::ATL::CAutoVectorPtr< T >* pDest,
_In_reads_(nElements) ::ATL::CAutoVectorPtr< T >* pSrc,
_In_ size_t nElements)
{
for( size_t iElement = 0; iElement < nElements; iElement++ )
{
pDest[iElement] = pSrc[iElement];
}
}
};
template< typename T, class Allocator = ATL::CCRTAllocator >
class CHeapPtrElementTraits :
public CDefaultElementTraits< ATL::CHeapPtr< T, Allocator > >
{
public:
typedef ATL::CHeapPtr< T, Allocator >& INARGTYPE;
typedef T*& OUTARGTYPE;
};
template < typename T >
class CDefaultCharTraits
{
};
template <>
class CDefaultCharTraits<char>
{
public:
static char CharToUpper(_In_ char x)
{
return (char)toupper(x);
}
static char CharToLower(_In_ char x)
{
return (char)tolower(x);
}
};
template <>
class CDefaultCharTraits<wchar_t>
{
public:
static wchar_t CharToUpper(_In_ wchar_t x)
{
return (wchar_t)towupper(x);
}
static wchar_t CharToLower(_In_ wchar_t x)
{
return (wchar_t)towlower(x);
}
};
template< typename T, class CharTraits = CDefaultCharTraits<typename T::XCHAR> >
class CStringElementTraitsI :
public CElementTraitsBase< T >
{
public:
typedef typename T::PCXSTR INARGTYPE;
typedef T& OUTARGTYPE;
static ULONG Hash(_In_ INARGTYPE str)
{
ULONG nHash = 0;
const typename T::XCHAR* pch = str;
ATLENSURE( pch != NULL );
while( *pch != 0 )
{
nHash = (nHash<<5)+nHash+CharTraits::CharToUpper(*pch);
pch++;
}
return( nHash );
}
static bool CompareElements(
_In_ INARGTYPE str1,
_In_ INARGTYPE str2) throw()
{
return( T::StrTraits::StringCompareIgnore( str1, str2 ) == 0 );
}
static int CompareElementsOrdered(
_In_ INARGTYPE str1,
_In_ INARGTYPE str2) throw()
{
return( T::StrTraits::StringCompareIgnore( str1, str2 ) );
}
};
template< typename T >
class CStringRefElementTraits :
public CElementTraitsBase< T >
{
public:
using typename CElementTraitsBase<T>::INARGTYPE;
static ULONG Hash(_In_ INARGTYPE str)
{
ULONG nHash = 0;
const typename T::XCHAR* pch = str;
ATLENSURE( pch != NULL );
while( *pch != 0 )
{
nHash = (nHash<<5)+nHash+(*pch);
pch++;
}
return( nHash );
}
static bool CompareElements(
_In_ INARGTYPE element1,
_In_ INARGTYPE element2) throw()
{
return( element1 == element2 );
}
static int CompareElementsOrdered(
_In_ INARGTYPE str1,
_In_ INARGTYPE str2) throw()
{
return( str1.Compare( str2 ) );
}
};
template< typename T >
class CPrimitiveElementTraits :
public CDefaultElementTraits< T >
{
public:
typedef T INARGTYPE;
typedef T& OUTARGTYPE;
};
#define _DECLARE_PRIMITIVE_TRAITS( T ) \
template<> \
class CElementTraits< T > : \
public CPrimitiveElementTraits< T > \
{ \
};
_DECLARE_PRIMITIVE_TRAITS( unsigned char )
_DECLARE_PRIMITIVE_TRAITS( unsigned short )
_DECLARE_PRIMITIVE_TRAITS( unsigned int )
_DECLARE_PRIMITIVE_TRAITS( unsigned long )
_DECLARE_PRIMITIVE_TRAITS( unsigned __int64 )
_DECLARE_PRIMITIVE_TRAITS( signed char )
_DECLARE_PRIMITIVE_TRAITS( char )
_DECLARE_PRIMITIVE_TRAITS( short )
_DECLARE_PRIMITIVE_TRAITS( int )
_DECLARE_PRIMITIVE_TRAITS( long )
_DECLARE_PRIMITIVE_TRAITS( __int64 )
_DECLARE_PRIMITIVE_TRAITS( float )
_DECLARE_PRIMITIVE_TRAITS( double )
_DECLARE_PRIMITIVE_TRAITS( bool )
#ifdef _NATIVE_WCHAR_T_DEFINED
_DECLARE_PRIMITIVE_TRAITS( wchar_t )
#endif
_DECLARE_PRIMITIVE_TRAITS( void* )
template< typename E, class ETraits = CElementTraits< E > >
class CAtlArray
{
public:
typedef typename ETraits::INARGTYPE INARGTYPE;
typedef typename ETraits::OUTARGTYPE OUTARGTYPE;
public:
CAtlArray() throw();
size_t GetCount() const throw();
bool IsEmpty() const throw();
bool SetCount(_In_ size_t nNewSize, _In_ int nGrowBy = -1);
void FreeExtra() throw();
void RemoveAll() throw();
const E& GetAt(_In_ size_t iElement) const;
void SetAt(
_In_ size_t iElement,
/* _In_ */ INARGTYPE element);
E& GetAt(_In_ size_t iElement);
const E* GetData() const throw();
E* GetData() throw();
void SetAtGrow(
_In_ size_t iElement,
/* _In_ */ INARGTYPE element);
// Add an empty element to the end of the array
size_t Add();
// Add an element to the end of the array
size_t Add(/* _In_ */ INARGTYPE element);
size_t Append(_In_ const CAtlArray< E, ETraits >& aSrc);
void Copy(_In_ const CAtlArray< E, ETraits >& aSrc);
const E& operator[](_In_ size_t iElement) const;
E& operator[](_In_ size_t iElement);
void InsertAt(
_In_ size_t iElement,
/* _In_ */ INARGTYPE element,
_In_ size_t nCount = 1);
void InsertArrayAt(
_In_ size_t iStart,
_In_ const CAtlArray< E, ETraits >* paNew);
void RemoveAt(
_In_ size_t iElement,
_In_ size_t nCount = 1);
#ifdef _DEBUG
void AssertValid() const;
#endif // _DEBUG
private:
bool GrowBuffer(_In_ size_t nNewSize);
// Implementation
private:
E* m_pData;
size_t m_nSize;
size_t m_nMaxSize;
int m_nGrowBy;
private:
static void CallConstructors(
_Inout_updates_(nElements) E* pElements,
_In_ size_t nElements);
static void CallDestructors(
_Inout_updates_to_(nElements, 0) E* pElements,
_In_ size_t nElements) throw();
public:
~CAtlArray() throw();
private:
// Private to prevent use
CAtlArray(_In_ const CAtlArray&) throw();
CAtlArray& operator=(_In_ const CAtlArray&) throw();
};
template< class I, const IID* piid = &__uuidof( I ) >
class CInterfaceArray :
public CAtlArray< ATL::CComQIPtr< I, piid >, CComQIPtrElementTraits< I, piid > >
{
public:
CInterfaceArray() throw()
{
}
private:
// Private to prevent use
CInterfaceArray(_In_ const CInterfaceArray&) throw();
CInterfaceArray& operator=(_In_ const CInterfaceArray&) throw();
};
template< typename E >
class CAutoPtrArray :
public CAtlArray< ATL::CAutoPtr< E >, CAutoPtrElementTraits< E > >
{
public:
CAutoPtrArray() throw()
{
}
private:
// Private to prevent use
CAutoPtrArray(_In_ const CAutoPtrArray&) throw();
CAutoPtrArray& operator=(_In_ const CAutoPtrArray&) throw();
};
template< typename E, class Allocator = ATL::CCRTAllocator >
class CHeapPtrArray :
public CAtlArray< ATL::CHeapPtr< E, Allocator >, CHeapPtrElementTraits< E, Allocator > >
{
public:
CHeapPtrArray() throw()
{
}
private:
// Private to prevent use
CHeapPtrArray(_In_ const CHeapPtrArray&) throw();
CHeapPtrArray& operator=(_In_ const CHeapPtrArray&) throw();
};
template< typename E, class ETraits >
inline size_t CAtlArray< E, ETraits >::GetCount() const throw()
{
return( m_nSize );
}
template< typename E, class ETraits >
inline bool CAtlArray< E, ETraits >::IsEmpty() const throw()
{
return( m_nSize == 0 );
}
template< typename E, class ETraits >
inline void CAtlArray< E, ETraits >::RemoveAll() throw()
{
SetCount( 0, -1 );
}
template< typename E, class ETraits >
inline const E& CAtlArray< E, ETraits >::GetAt(_In_ size_t iElement) const
{
ATLASSERT( iElement < m_nSize );
if(iElement >= m_nSize)
AtlThrow(E_INVALIDARG);
return( m_pData[iElement] );
}
template< typename E, class ETraits >
inline void CAtlArray< E, ETraits >::SetAt(
_In_ size_t iElement,
/* _In_ */ INARGTYPE element)
{
ATLASSERT( iElement < m_nSize );
if(iElement >= m_nSize)
AtlThrow(E_INVALIDARG);
m_pData[iElement] = element;
}
template< typename E, class ETraits >
inline E& CAtlArray< E, ETraits >::GetAt(_In_ size_t iElement)
{
ATLASSERT( iElement < m_nSize );
if(iElement >= m_nSize)
AtlThrow(E_INVALIDARG);
return( m_pData[iElement] );
}
template< typename E, class ETraits >
inline const E* CAtlArray< E, ETraits >::GetData() const throw()
{
return( m_pData );
}
template< typename E, class ETraits >
inline E* CAtlArray< E, ETraits >::GetData() throw()
{
return( m_pData );
}
template< typename E, class ETraits >
inline size_t CAtlArray< E, ETraits >::Add()
{
size_t iElement;
iElement = m_nSize;
bool bSuccess = SetCount(AtlAddThrow<size_t>(m_nSize, 1));
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
return( iElement );
}
#pragma push_macro("new")
#undef new
template< typename E, class ETraits >
inline size_t CAtlArray< E, ETraits >::Add(/* _In_ */ INARGTYPE element)
{
size_t iElement;
iElement = m_nSize;
if( iElement >= m_nMaxSize )
{
bool bSuccess = GrowBuffer( iElement+1 );
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
}
::new( m_pData+iElement ) E( element );
m_nSize++;
return( iElement );
}
#pragma pop_macro("new")
template< typename E, class ETraits >
inline const E& CAtlArray< E, ETraits >::operator[](_In_ size_t iElement) const
{
ATLASSERT( iElement < m_nSize );
if(iElement >= m_nSize)
AtlThrow(E_INVALIDARG);
return( m_pData[iElement] );
}
template< typename E, class ETraits >
inline E& CAtlArray< E, ETraits >::operator[](_In_ size_t iElement)
{
ATLASSERT( iElement < m_nSize );
if(iElement >= m_nSize)
AtlThrow(E_INVALIDARG);
return( m_pData[iElement] );
}
template< typename E, class ETraits >
CAtlArray< E, ETraits >::CAtlArray() throw():
m_pData( NULL ),
m_nSize( 0 ),
m_nMaxSize( 0 ),
m_nGrowBy( 0 )
{
}
template< typename E, class ETraits >
CAtlArray< E, ETraits >::~CAtlArray() throw()
{
if( m_pData != NULL )
{
CallDestructors( m_pData, m_nSize );
free( m_pData );
}
}
template< typename E, class ETraits >
bool CAtlArray< E, ETraits >::GrowBuffer(_In_ size_t nNewSize)
{
if( nNewSize > m_nMaxSize )
{
if( m_pData == NULL )
{
size_t nAllocSize = size_t( m_nGrowBy ) > nNewSize ? size_t( m_nGrowBy ) : nNewSize ;
m_pData = static_cast< E* >( calloc( nAllocSize,sizeof( E ) ) );
if( m_pData == NULL )
{
return( false );
}
m_nMaxSize = nAllocSize;
}
else
{
// otherwise, grow array
size_t nGrowBy = m_nGrowBy;
if( nGrowBy == 0 )
{
// use 1.5 ratio for growing buffers
nGrowBy = m_nMaxSize / 2;
if ((nNewSize - m_nMaxSize) > nGrowBy)
{
nGrowBy = nNewSize - m_nMaxSize;
}
}
size_t nNewMax;
if( nNewSize < (m_nMaxSize+nGrowBy) )
nNewMax = m_nMaxSize+nGrowBy; // granularity
else
nNewMax = nNewSize; // no slush
ATLASSERT( nNewMax >= m_nMaxSize ); // no wrap around
#ifdef SIZE_T_MAX
ATLASSERT( nNewMax <= SIZE_T_MAX/sizeof( E ) ); // no overflow
#endif
E* pNewData = static_cast< E* >( calloc( nNewMax,sizeof( E ) ) );
if( pNewData == NULL )
{
return false;
}
// copy new data from old
ETraits::RelocateElements( pNewData, m_pData, m_nSize );
// get rid of old stuff (note: no destructors called)
free( m_pData );
m_pData = pNewData;
m_nMaxSize = nNewMax;
}
}
return true;
}
template< typename E, class ETraits >
bool CAtlArray< E, ETraits >::SetCount(
_In_ size_t nNewSize,
_In_ int nGrowBy)
{
ATLASSERT_VALID(this);
if( nGrowBy != -1 )
{
m_nGrowBy = nGrowBy; // set new size
}
if( nNewSize == 0 )
{
// shrink to nothing
if( m_pData != NULL )
{
CallDestructors( m_pData, m_nSize );
free( m_pData );
m_pData = NULL;
}
m_nSize = 0;
m_nMaxSize = 0;
}
else if( nNewSize <= m_nMaxSize )
{
// it fits
if( nNewSize > m_nSize )
{
// initialize the new elements
CallConstructors( m_pData+m_nSize, nNewSize-m_nSize );
}
else if( m_nSize > nNewSize )
{
// destroy the old elements
CallDestructors( m_pData+nNewSize, m_nSize-nNewSize );
}
m_nSize = nNewSize;
}
else
{
bool bSuccess;
bSuccess = GrowBuffer( nNewSize );
if( !bSuccess )
{
return( false );
}
// construct new elements
ATLASSERT( nNewSize > m_nSize );
CallConstructors( m_pData+m_nSize, nNewSize-m_nSize );
m_nSize = nNewSize;
}
return true;
}
template< typename E, class ETraits >
size_t CAtlArray< E, ETraits >::Append(_In_ const CAtlArray< E, ETraits >& aSrc)
{
ATLASSERT_VALID(this);
ATLASSERT( this != &aSrc ); // cannot append to itself
size_t nOldSize = m_nSize;
bool bSuccess = SetCount(AtlAddThrow<size_t>(m_nSize, aSrc.m_nSize));
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
ETraits::CopyElements( m_pData+nOldSize, aSrc.m_pData, aSrc.m_nSize );
return( nOldSize );
}
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::Copy(_In_ const CAtlArray< E, ETraits >& aSrc)
{
ATLASSERT_VALID(this);
ATLASSERT( this != &aSrc ); // cannot append to itself
bool bSuccess=SetCount( aSrc.m_nSize );
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
ETraits::CopyElements( m_pData, aSrc.m_pData, aSrc.m_nSize );
}
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::FreeExtra() throw()
{
ATLASSERT_VALID(this);
if( m_nSize != m_nMaxSize )
{
// shrink to desired size
#ifdef SIZE_T_MAX
ATLASSUME( m_nSize <= (SIZE_T_MAX/sizeof( E )) ); // no overflow
#endif
E* pNewData = NULL;
if( m_nSize != 0 )
{
pNewData = (E*)calloc( m_nSize,sizeof( E ) );
if( pNewData == NULL )
{
return;
}
// copy new data from old
ETraits::RelocateElements( pNewData, m_pData, m_nSize );
}
// get rid of old stuff (note: no destructors called)
free( m_pData );
m_pData = pNewData;
m_nMaxSize = m_nSize;
}
}
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::SetAtGrow(
_In_ size_t iElement,
/* _In_ */ INARGTYPE element)
{
ATLASSERT_VALID(this);
size_t nOldSize;
nOldSize = m_nSize;
if( iElement >= m_nSize )
{
bool bSuccess = SetCount(AtlAddThrow<size_t>(iElement, 1), -1 );
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
}
_ATLTRY
{
m_pData[iElement] = element;
}
_ATLCATCHALL()
{
if( m_nSize != nOldSize )
{
SetCount( nOldSize, -1 );
}
_ATLRETHROW;
}
}
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::InsertAt(
_In_ size_t iElement,
/* _In_ */ INARGTYPE element,
_In_ size_t nElements /*=1*/)
{
ATLASSERT_VALID(this);
ATLASSERT( nElements > 0 ); // zero size not allowed
if( iElement >= m_nSize )
{
// adding after the end of the array
bool bSuccess = SetCount(AtlAddThrow<size_t>(iElement, nElements), -1 ); // grow so nIndex is valid
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
}
else
{
// inserting in the middle of the array
size_t nOldSize = m_nSize;
bool bSuccess = SetCount(AtlAddThrow<size_t>(m_nSize, nElements), -1 ); // grow it to new size
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
// destroy initial data before copying over it
CallDestructors( m_pData+nOldSize, nElements );
// shift old data up to fill gap
ETraits::RelocateElements( m_pData+(iElement+nElements), m_pData+iElement,
nOldSize-iElement );
_ATLTRY
{
// re-init slots we copied from
CallConstructors( m_pData+iElement, nElements );
}
_ATLCATCHALL()
{
ETraits::RelocateElements( m_pData+iElement, m_pData+(iElement+nElements),
nOldSize-iElement );
SetCount( nOldSize, -1 );
_ATLRETHROW;
}
}
// insert new value in the gap
ATLASSERT( (iElement+nElements) <= m_nSize );
for( size_t iNewElement = iElement; iNewElement < (iElement+nElements); iNewElement++ )
{
m_pData[iNewElement] = element;
}
}
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::RemoveAt(
_In_ size_t iElement,
_In_ size_t nElements)
{
ATLASSERT_VALID(this);
ATLASSERT( (iElement+nElements) <= m_nSize );
size_t newCount = iElement+nElements;
if ((newCount < iElement) || (newCount < nElements) || (newCount > m_nSize))
AtlThrow(E_INVALIDARG);
// just remove a range
size_t nMoveCount = m_nSize-(newCount);
CallDestructors( m_pData+iElement, nElements );
if( nMoveCount > 0 )
{
ETraits::RelocateElements( m_pData+iElement, m_pData+(newCount),
nMoveCount );
}
m_nSize -= nElements;
}
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::InsertArrayAt(
_In_ size_t iStartElement,
_In_ const CAtlArray< E, ETraits >* paNew)
{
ATLASSERT_VALID( this );
ATLENSURE( paNew != NULL );
ATLASSERT_VALID( paNew );
if( paNew->GetCount() > 0 )
{
InsertAt( iStartElement, paNew->GetAt( 0 ), paNew->GetCount() );
for( size_t iElement = 0; iElement < paNew->GetCount(); iElement++ )
{
SetAt( iStartElement+iElement, paNew->GetAt( iElement ) );
}
}
}
#ifdef _DEBUG
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::AssertValid() const
{
if( m_pData == NULL )
{
ATLASSUME( m_nSize == 0 );
ATLASSUME( m_nMaxSize == 0 );
}
else
{
ATLASSUME( m_nSize <= m_nMaxSize );
ATLASSERT( AtlIsValidAddress( m_pData, m_nMaxSize * sizeof( E ) ) );
}
}
#endif
#pragma push_macro("new")
#undef new
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::CallConstructors(
_Inout_updates_(nElements) E* pElements,
_In_ size_t nElements)
{
size_t iElement = 0;
_ATLTRY
{
for( iElement = 0; iElement < nElements; iElement++ )
{
::new( pElements+iElement ) E;
}
}
_ATLCATCHALL()
{
while( iElement > 0 )
{
iElement--;
pElements[iElement].~E();
}
_ATLRETHROW;
}
}
#pragma pop_macro("new")
ATLPREFAST_SUPPRESS(6385)
template< typename E, class ETraits >
void CAtlArray< E, ETraits >::CallDestructors(
_Inout_updates_to_(nElements, 0) E* pElements,
_In_ size_t nElements) throw()
{
(pElements);
for( size_t iElement = 0; iElement < nElements; iElement++ )
{
pElements[iElement].~E();
}
}
ATLPREFAST_UNSUPPRESS()
template< typename E, class ETraits = CElementTraits< E > >
class CAtlList
{
public:
typedef typename ETraits::INARGTYPE INARGTYPE;
private:
class CNode :
public __POSITION
{
public:
CNode()
{
}
CNode(/* _In_ */ INARGTYPE element) :
m_element( element )
{
}
~CNode() throw()
{
}
public:
CNode* m_pNext;
CNode* m_pPrev;
E m_element;
private:
CNode(_In_ const CNode&) throw();
};
public:
CAtlList(_In_ UINT nBlockSize = 10) throw();
size_t GetCount() const throw();
bool IsEmpty() const throw();
E& GetHead();
const E& GetHead() const;
E& GetTail();
const E& GetTail() const;
E RemoveHead();
E RemoveTail();
void RemoveHeadNoReturn() throw();
void RemoveTailNoReturn() throw();
POSITION AddHead();
POSITION AddHead(/* _In_ */ INARGTYPE element);
void AddHeadList(_In_ const CAtlList< E, ETraits >* plNew);
POSITION AddTail();
POSITION AddTail(/* _In_ */ INARGTYPE element);
void AddTailList(_In_ const CAtlList< E, ETraits >* plNew);
void RemoveAll() throw();
POSITION GetHeadPosition() const throw();
POSITION GetTailPosition() const throw();
E& GetNext(_Inout_ POSITION& pos);
const E& GetNext(_Inout_ POSITION& pos) const;
E& GetPrev(_Inout_ POSITION& pos);
const E& GetPrev(_Inout_ POSITION& pos) const throw();
E& GetAt(_In_ POSITION pos);
const E& GetAt(_In_ POSITION pos) const;
void SetAt(
_In_ POSITION pos,
/* _In_ */ INARGTYPE element);
void RemoveAt(_In_ POSITION pos) throw();
POSITION InsertBefore(
_In_ POSITION pos,
/* _In_ */ INARGTYPE element);
POSITION InsertAfter(
_In_ POSITION pos,
/* _In_ */ INARGTYPE element);
POSITION Find(
/* _In_ */ INARGTYPE element,
_In_opt_ POSITION posStartAfter = NULL) const throw();
POSITION FindIndex(_In_ size_t iElement) const throw();
void MoveToHead(_In_ POSITION pos);
void MoveToTail(_In_ POSITION pos);
void SwapElements(
_In_ POSITION pos1,
_In_ POSITION pos2) throw();
#ifdef _DEBUG
void AssertValid() const;
#endif // _DEBUG
// Implementation
private:
CNode* m_pHead;
CNode* m_pTail;
size_t m_nElements;
CAtlPlex* m_pBlocks;
CNode* m_pFree;
UINT m_nBlockSize;
private:
void GetFreeNode();
CNode* NewNode(
_In_opt_ CNode* pPrev,
_In_opt_ CNode* pNext);
CNode* NewNode(
/* _In_ */ INARGTYPE element,
_In_opt_ CNode* pPrev,
_In_opt_ CNode* pNext);
void FreeNode(_Inout_ CNode* pNode) throw();
public:
~CAtlList() throw();
private:
// Private to prevent use
CAtlList(_In_ const CAtlList&) throw();
CAtlList& operator=(_In_ const CAtlList&) throw();
};
template< class I, const IID* piid = &__uuidof( I ) >
class CInterfaceList :
public CAtlList< ATL::CComQIPtr< I, piid >, CComQIPtrElementTraits< I, piid > >
{
public:
CInterfaceList(_In_ UINT nBlockSize = 10) throw() :
CAtlList< ATL::CComQIPtr< I, piid >, CComQIPtrElementTraits< I, piid > >( nBlockSize )
{
}
private:
// Private to prevent use
CInterfaceList(_In_ const CInterfaceList&) throw();
CInterfaceList& operator=(_In_ const CInterfaceList&) throw();
};
template< typename E >
class CAutoPtrList :
public CAtlList< ATL::CAutoPtr< E >, CAutoPtrElementTraits< E > >
{
public:
CAutoPtrList(_In_ UINT nBlockSize = 10) throw() :
CAtlList< ATL::CAutoPtr< E >, CAutoPtrElementTraits< E > >( nBlockSize )
{
}
private:
// Private to prevent use
CAutoPtrList(_In_ const CAutoPtrList&) throw();
CAutoPtrList& operator=(_In_ const CAutoPtrList&) throw();
};
template< typename E, class Allocator = ATL::CCRTAllocator >
class CHeapPtrList :
public CAtlList< ATL::CHeapPtr< E, Allocator >, CHeapPtrElementTraits< E, Allocator > >
{
public:
CHeapPtrList(_In_ UINT nBlockSize = 10) throw() :
CAtlList< ATL::CHeapPtr< E, Allocator >, CHeapPtrElementTraits< E, Allocator > >( nBlockSize )
{
}
private:
// Private to prevent use
CHeapPtrList(_In_ const CHeapPtrList&) throw();
CHeapPtrList& operator=(_In_ const CHeapPtrList&) throw();
};
template< typename E, class ETraits >
inline size_t CAtlList< E, ETraits >::GetCount() const throw()
{
return( m_nElements );
}
template< typename E, class ETraits >
inline bool CAtlList< E, ETraits >::IsEmpty() const throw()
{
return( m_nElements == 0 );
}
template< typename E, class ETraits >
inline E& CAtlList< E, ETraits >::GetHead()
{
ATLENSURE( m_pHead != NULL );
return( m_pHead->m_element );
}
template< typename E, class ETraits >
inline const E& CAtlList< E, ETraits >::GetHead() const
{
ATLENSURE( m_pHead != NULL );
return( m_pHead->m_element );
}
template< typename E, class ETraits >
inline E& CAtlList< E, ETraits >::GetTail()
{
ATLENSURE( m_pTail != NULL );
return( m_pTail->m_element );
}
template< typename E, class ETraits >
inline const E& CAtlList< E, ETraits >::GetTail() const
{
ATLENSURE( m_pTail != NULL );
return( m_pTail->m_element );
}
template< typename E, class ETraits >
inline POSITION CAtlList< E, ETraits >::GetHeadPosition() const throw()
{
return( POSITION( m_pHead ) );
}
template< typename E, class ETraits >
inline POSITION CAtlList< E, ETraits >::GetTailPosition() const throw()
{
return( POSITION( m_pTail ) );
}
template< typename E, class ETraits >
inline E& CAtlList< E, ETraits >::GetNext(_Inout_ POSITION& pos)
{
CNode* pNode;
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pos = POSITION( pNode->m_pNext );
return( pNode->m_element );
}
template< typename E, class ETraits >
inline const E& CAtlList< E, ETraits >::GetNext(_Inout_ POSITION& pos) const
{
CNode* pNode;
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pos = POSITION( pNode->m_pNext );
return( pNode->m_element );
}
template< typename E, class ETraits >
inline E& CAtlList< E, ETraits >::GetPrev(_Inout_ POSITION& pos)
{
CNode* pNode;
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pos = POSITION( pNode->m_pPrev );
return( pNode->m_element );
}
template< typename E, class ETraits >
inline const E& CAtlList< E, ETraits >::GetPrev(_Inout_ POSITION& pos) const throw()
{
CNode* pNode;
ATLASSUME( pos != NULL );
pNode = (CNode*)pos;
pos = POSITION( pNode->m_pPrev );
return( pNode->m_element );
}
template< typename E, class ETraits >
inline E& CAtlList< E, ETraits >::GetAt(_In_ POSITION pos)
{
ATLENSURE( pos != NULL );
CNode* pNode = (CNode*)pos;
return( pNode->m_element );
}
template< typename E, class ETraits >
inline const E& CAtlList< E, ETraits >::GetAt(_In_ POSITION pos) const
{
ATLENSURE( pos != NULL );
CNode* pNode = (CNode*)pos;
return( pNode->m_element );
}
template< typename E, class ETraits >
inline void CAtlList< E, ETraits >::SetAt(
_In_ POSITION pos,
/* _In_ */ INARGTYPE element)
{
ATLENSURE( pos != NULL );
CNode* pNode = (CNode*)pos;
pNode->m_element = element;
}
template< typename E, class ETraits >
CAtlList< E, ETraits >::CAtlList(_In_ UINT nBlockSize) throw() :
m_nElements( 0 ),
m_pHead( NULL ),
m_pTail( NULL ),
m_nBlockSize( nBlockSize ),
m_pBlocks( NULL ),
m_pFree( NULL )
{
ATLASSERT( nBlockSize > 0 );
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::RemoveAll() throw()
{
while( m_nElements > 0 )
{
CNode* pKill = m_pHead;
ATLENSURE( pKill != NULL );
m_pHead = m_pHead->m_pNext;
FreeNode( pKill );
}
ATLASSUME( m_nElements == 0 );
m_pHead = NULL;
m_pTail = NULL;
m_pFree = NULL;
if( m_pBlocks != NULL )
{
m_pBlocks->FreeDataChain();
m_pBlocks = NULL;
}
}
template< typename E, class ETraits >
CAtlList< E, ETraits >::~CAtlList() throw()
{
RemoveAll();
ATLASSUME( m_nElements == 0 );
}
#pragma push_macro("new")
#undef new
template< typename E, class ETraits >
void CAtlList< E, ETraits >::GetFreeNode()
{
if( m_pFree == NULL )
{
CAtlPlex* pPlex;
CNode* pNode;
pPlex = CAtlPlex::Create( m_pBlocks, m_nBlockSize, sizeof( CNode ) );
if( pPlex == NULL )
{
AtlThrow( E_OUTOFMEMORY );
}
pNode = (CNode*)pPlex->data();
pNode += m_nBlockSize-1;
for( int iBlock = m_nBlockSize-1; iBlock >= 0; iBlock-- )
{
pNode->m_pNext = m_pFree;
m_pFree = pNode;
pNode--;
}
}
ATLASSUME( m_pFree != NULL );
}
template< typename E, class ETraits >
typename CAtlList< E, ETraits >::CNode* CAtlList< E, ETraits >::NewNode(
_In_opt_ CNode* pPrev,
_In_opt_ CNode* pNext )
{
GetFreeNode();
CNode* pNewNode = m_pFree;
CNode* pNextFree = m_pFree->m_pNext;
::new( pNewNode ) CNode;
m_pFree = pNextFree;
pNewNode->m_pPrev = pPrev;
pNewNode->m_pNext = pNext;
m_nElements++;
ATLASSUME( m_nElements > 0 );
return( pNewNode );
}
template< typename E, class ETraits >
typename CAtlList< E, ETraits >::CNode* CAtlList< E, ETraits >::NewNode(
/* _In_ */ INARGTYPE element,
_In_opt_ CNode* pPrev,
_In_opt_ CNode* pNext)
{
GetFreeNode();
CNode* pNewNode = m_pFree;
CNode* pNextFree = m_pFree->m_pNext;
::new( pNewNode ) CNode( element );
m_pFree = pNextFree;
pNewNode->m_pPrev = pPrev;
pNewNode->m_pNext = pNext;
m_nElements++;
ATLASSUME( m_nElements > 0 );
return( pNewNode );
}
#pragma pop_macro("new")
template< typename E, class ETraits >
void CAtlList< E, ETraits >::FreeNode(_Inout_ CNode* pNode) throw()
{
pNode->~CNode();
pNode->m_pNext = m_pFree;
m_pFree = pNode;
ATLASSUME( m_nElements > 0 );
m_nElements--;
if( m_nElements == 0 )
{
RemoveAll();
}
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::AddHead()
{
CNode* pNode = NewNode( NULL, m_pHead );
if( m_pHead != NULL )
{
m_pHead->m_pPrev = pNode;
}
else
{
m_pTail = pNode;
}
m_pHead = pNode;
return( POSITION( pNode ) );
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::AddHead(/* _In_ */ INARGTYPE element)
{
CNode* pNode;
pNode = NewNode( element, NULL, m_pHead );
if( m_pHead != NULL )
{
m_pHead->m_pPrev = pNode;
}
else
{
m_pTail = pNode;
}
m_pHead = pNode;
return( POSITION( pNode ) );
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::AddTail()
{
CNode* pNode = NewNode( m_pTail, NULL );
if( m_pTail != NULL )
{
m_pTail->m_pNext = pNode;
}
else
{
m_pHead = pNode;
}
m_pTail = pNode;
return( POSITION( pNode ) );
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::AddTail(/* _In_ */ INARGTYPE element)
{
CNode* pNode;
pNode = NewNode( element, m_pTail, NULL );
if( m_pTail != NULL )
{
m_pTail->m_pNext = pNode;
}
else
{
m_pHead = pNode;
}
m_pTail = pNode;
return( POSITION( pNode ) );
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::AddHeadList(_In_ const CAtlList< E, ETraits >* plNew)
{
ATLENSURE( plNew != NULL );
POSITION pos = plNew->GetTailPosition();
while( pos != NULL )
{
INARGTYPE element = plNew->GetPrev( pos );
AddHead( element );
}
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::AddTailList(_In_ const CAtlList< E, ETraits >* plNew)
{
ATLENSURE( plNew != NULL );
POSITION pos = plNew->GetHeadPosition();
while( pos != NULL )
{
INARGTYPE element = plNew->GetNext( pos );
AddTail( element );
}
}
template< typename E, class ETraits >
E CAtlList< E, ETraits >::RemoveHead()
{
ATLENSURE( m_pHead != NULL );
CNode* pNode = m_pHead;
E element( pNode->m_element );
m_pHead = pNode->m_pNext;
if( m_pHead != NULL )
{
m_pHead->m_pPrev = NULL;
}
else
{
m_pTail = NULL;
}
FreeNode( pNode );
return( element );
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::RemoveHeadNoReturn() throw()
{
ATLENSURE( m_pHead != NULL );
CNode* pNode = m_pHead;
m_pHead = pNode->m_pNext;
if( m_pHead != NULL )
{
m_pHead->m_pPrev = NULL;
}
else
{
m_pTail = NULL;
}
FreeNode( pNode );
}
template< typename E, class ETraits >
E CAtlList< E, ETraits >::RemoveTail()
{
ATLENSURE( m_pTail != NULL );
CNode* pNode = m_pTail;
E element( pNode->m_element );
m_pTail = pNode->m_pPrev;
if( m_pTail != NULL )
{
m_pTail->m_pNext = NULL;
}
else
{
m_pHead = NULL;
}
FreeNode( pNode );
return( element );
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::RemoveTailNoReturn() throw()
{
ATLENSURE( m_pTail != NULL );
CNode* pNode = m_pTail;
m_pTail = pNode->m_pPrev;
if( m_pTail != NULL )
{
m_pTail->m_pNext = NULL;
}
else
{
m_pHead = NULL;
}
FreeNode( pNode );
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::InsertBefore(
_In_ POSITION pos,
/* _In_ */ INARGTYPE element)
{
ATLASSERT_VALID(this);
if( pos == NULL )
return AddHead( element ); // insert before nothing -> head of the list
// Insert it before position
CNode* pOldNode = (CNode*)pos;
CNode* pNewNode = NewNode( element, pOldNode->m_pPrev, pOldNode );
if( pOldNode->m_pPrev != NULL )
{
ATLASSERT(AtlIsValidAddress(pOldNode->m_pPrev, sizeof(CNode)));
pOldNode->m_pPrev->m_pNext = pNewNode;
}
else
{
ATLASSERT( pOldNode == m_pHead );
m_pHead = pNewNode;
}
pOldNode->m_pPrev = pNewNode;
return( POSITION( pNewNode ) );
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::InsertAfter(
_In_ POSITION pos,
/* _In_ */ INARGTYPE element)
{
ATLASSERT_VALID(this);
if( pos == NULL )
return AddTail( element ); // insert after nothing -> tail of the list
// Insert it after position
CNode* pOldNode = (CNode*)pos;
CNode* pNewNode = NewNode( element, pOldNode, pOldNode->m_pNext );
if( pOldNode->m_pNext != NULL )
{
ATLASSERT(AtlIsValidAddress(pOldNode->m_pNext, sizeof(CNode)));
pOldNode->m_pNext->m_pPrev = pNewNode;
}
else
{
ATLASSERT( pOldNode == m_pTail );
m_pTail = pNewNode;
}
pOldNode->m_pNext = pNewNode;
return( POSITION( pNewNode ) );
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::RemoveAt(_In_ POSITION pos) throw()
{
ATLASSERT_VALID(this);
ATLENSURE( pos != NULL );
CNode* pOldNode = (CNode*)pos;
// remove pOldNode from list
if( pOldNode == m_pHead )
{
m_pHead = pOldNode->m_pNext;
}
else
{
ATLASSERT( AtlIsValidAddress( pOldNode->m_pPrev, sizeof(CNode) ));
pOldNode->m_pPrev->m_pNext = pOldNode->m_pNext;
}
if( pOldNode == m_pTail )
{
m_pTail = pOldNode->m_pPrev;
}
else
{
ATLASSERT( AtlIsValidAddress( pOldNode->m_pNext, sizeof(CNode) ));
pOldNode->m_pNext->m_pPrev = pOldNode->m_pPrev;
}
FreeNode( pOldNode );
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::FindIndex(_In_ size_t iElement) const throw()
{
ATLASSERT_VALID(this);
if( iElement >= m_nElements )
return NULL; // went too far
if(m_pHead == NULL)
return NULL;
CNode* pNode = m_pHead;
for( size_t iSearch = 0; iSearch < iElement; iSearch++ )
{
pNode = pNode->m_pNext;
}
return( POSITION( pNode ) );
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::MoveToHead(_In_ POSITION pos)
{
ATLENSURE( pos != NULL );
CNode* pNode = static_cast< CNode* >( pos );
if( pNode == m_pHead )
{
// Already at the head
return;
}
if( pNode->m_pNext == NULL )
{
ATLASSERT( pNode == m_pTail );
m_pTail = pNode->m_pPrev;
}
else
{
pNode->m_pNext->m_pPrev = pNode->m_pPrev;
}
ATLASSUME( pNode->m_pPrev != NULL ); // This node can't be the head, since we already checked that case
pNode->m_pPrev->m_pNext = pNode->m_pNext;
m_pHead->m_pPrev = pNode;
pNode->m_pNext = m_pHead;
pNode->m_pPrev = NULL;
m_pHead = pNode;
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::MoveToTail(_In_ POSITION pos)
{
ATLENSURE( pos != NULL );
CNode* pNode = static_cast< CNode* >( pos );
if( pNode == m_pTail )
{
// Already at the tail
return;
}
if( pNode->m_pPrev == NULL )
{
ATLENSURE( pNode == m_pHead );
m_pHead = pNode->m_pNext;
}
else
{
pNode->m_pPrev->m_pNext = pNode->m_pNext;
}
pNode->m_pNext->m_pPrev = pNode->m_pPrev;
m_pTail->m_pNext = pNode;
pNode->m_pPrev = m_pTail;
pNode->m_pNext = NULL;
m_pTail = pNode;
}
template< typename E, class ETraits >
void CAtlList< E, ETraits >::SwapElements(
_In_ POSITION pos1,
_In_ POSITION pos2) throw()
{
ATLASSUME( pos1 != NULL );
ATLASSUME( pos2 != NULL );
if( pos1 == pos2 )
{
// Nothing to do
return;
}
CNode* pNode1 = static_cast< CNode* >( pos1 );
CNode* pNode2 = static_cast< CNode* >( pos2 );
if( pNode2->m_pNext == pNode1 )
{
// Swap pNode2 and pNode1 so that the next case works
CNode* pNodeTemp = pNode1;
pNode1 = pNode2;
pNode2 = pNodeTemp;
}
if( pNode1->m_pNext == pNode2 )
{
// Node1 and Node2 are adjacent
pNode2->m_pPrev = pNode1->m_pPrev;
if( pNode1->m_pPrev != NULL )
{
pNode1->m_pPrev->m_pNext = pNode2;
}
else
{
ATLASSUME( m_pHead == pNode1 );
m_pHead = pNode2;
}
pNode1->m_pNext = pNode2->m_pNext;
if( pNode2->m_pNext != NULL )
{
pNode2->m_pNext->m_pPrev = pNode1;
}
else
{
ATLASSUME( m_pTail == pNode2 );
m_pTail = pNode1;
}
pNode2->m_pNext = pNode1;
pNode1->m_pPrev = pNode2;
}
else
{
// The two nodes are not adjacent
CNode* pNodeTemp;
pNodeTemp = pNode1->m_pPrev;
pNode1->m_pPrev = pNode2->m_pPrev;
pNode2->m_pPrev = pNodeTemp;
pNodeTemp = pNode1->m_pNext;
pNode1->m_pNext = pNode2->m_pNext;
pNode2->m_pNext = pNodeTemp;
if( pNode1->m_pNext != NULL )
{
pNode1->m_pNext->m_pPrev = pNode1;
}
else
{
ATLASSUME( m_pTail == pNode2 );
m_pTail = pNode1;
}
if( pNode1->m_pPrev != NULL )
{
pNode1->m_pPrev->m_pNext = pNode1;
}
else
{
ATLASSUME( m_pHead == pNode2 );
m_pHead = pNode1;
}
if( pNode2->m_pNext != NULL )
{
pNode2->m_pNext->m_pPrev = pNode2;
}
else
{
ATLASSUME( m_pTail == pNode1 );
m_pTail = pNode2;
}
if( pNode2->m_pPrev != NULL )
{
pNode2->m_pPrev->m_pNext = pNode2;
}
else
{
ATLASSUME( m_pHead == pNode1 );
m_pHead = pNode2;
}
}
}
template< typename E, class ETraits >
POSITION CAtlList< E, ETraits >::Find(
/* _In_ */ INARGTYPE element,
_In_opt_ POSITION posStartAfter) const throw()
{
ATLASSERT_VALID(this);
CNode* pNode = (CNode*)posStartAfter;
if( pNode == NULL )
{
pNode = m_pHead; // start at head
}
else
{
pNode = SAL_Assume_bytecap_for_opt_(pNode, sizeof(CNode));
ATLASSERT(AtlIsValidAddress(pNode, sizeof(CNode)));
ATLASSUME(pNode != NULL);
pNode = pNode->m_pNext; // start after the one specified
}
for( ; pNode != NULL; pNode = pNode->m_pNext )
{
if( ETraits::CompareElements( pNode->m_element, element ) )
return( POSITION( pNode ) );
}
return( NULL );
}
#ifdef _DEBUG
template< typename E, class ETraits >
void CAtlList< E, ETraits >::AssertValid() const
{
if( IsEmpty() )
{
// empty list
ATLASSUME(m_pHead == NULL);
ATLASSUME(m_pTail == NULL);
}
else
{
// non-empty list
ATLASSERT(AtlIsValidAddress(m_pHead, sizeof(CNode)));
ATLASSERT(AtlIsValidAddress(m_pTail, sizeof(CNode)));
}
}
#endif
template< typename K, typename V, class KTraits = CElementTraits< K >, class VTraits = CElementTraits< V > >
class CAtlMap
{
public:
typedef typename KTraits::INARGTYPE KINARGTYPE;
typedef typename KTraits::OUTARGTYPE KOUTARGTYPE;
typedef typename VTraits::INARGTYPE VINARGTYPE;
typedef typename VTraits::OUTARGTYPE VOUTARGTYPE;
class CPair :
public __POSITION
{
protected:
CPair(/* _In_ */ KINARGTYPE key) :
m_key( key )
{
}
public:
const K m_key;
V m_value;
};
private:
class CNode :
public CPair
{
public:
CNode(
/* _In_ */ KINARGTYPE key,
_In_ UINT nHash) :
CPair( key ),
m_nHash( nHash )
{
}
public:
UINT GetHash() const throw()
{
return( m_nHash );
}
public:
CNode* m_pNext;
UINT m_nHash;
};
public:
CAtlMap(
_In_ UINT nBins = 17,
_In_ float fOptimalLoad = 0.75f,
_In_ float fLoThreshold = 0.25f,
_In_ float fHiThreshold = 2.25f,
_In_ UINT nBlockSize = 10) throw();
size_t GetCount() const throw();
bool IsEmpty() const throw();
_Success_(return != false) bool Lookup(
/* _In_ */ KINARGTYPE key,
_Out_ VOUTARGTYPE value) const;
const CPair* Lookup(/* _In_ */ KINARGTYPE key) const throw();
CPair* Lookup(/* _In_ */ KINARGTYPE key) throw();
V& operator[](/* _In_ */ KINARGTYPE key);
POSITION SetAt(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value);
void SetValueAt(
_In_ POSITION pos,
/* _In_ */ VINARGTYPE value);
bool RemoveKey(/* _In_ */ KINARGTYPE key) throw();
void RemoveAll();
void RemoveAtPos(_In_ POSITION pos) throw();
POSITION GetStartPosition() const throw();
void GetNextAssoc(
_Inout_ POSITION& pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const;
const CPair* GetNext(_Inout_ POSITION& pos) const throw();
CPair* GetNext(_Inout_ POSITION& pos) throw();
const K& GetNextKey(_Inout_ POSITION& pos) const;
const V& GetNextValue(_Inout_ POSITION& pos) const;
V& GetNextValue(_Inout_ POSITION& pos);
void GetAt(
_In_ POSITION pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const;
CPair* GetAt(_In_ POSITION pos) throw();
const CPair* GetAt(_In_ POSITION pos) const throw();
const K& GetKeyAt(_In_ POSITION pos) const;
const V& GetValueAt(_In_ POSITION pos) const;
V& GetValueAt(_In_ POSITION pos);
UINT GetHashTableSize() const throw();
bool InitHashTable(
_In_ UINT nBins,
_In_ bool bAllocNow = true);
void EnableAutoRehash() throw();
void DisableAutoRehash() throw();
void Rehash(_In_ UINT nBins = 0);
void SetOptimalLoad(
_In_ float fOptimalLoad,
_In_ float fLoThreshold,
_In_ float fHiThreshold,
_In_ bool bRehashNow = false);
#ifdef _DEBUG
void AssertValid() const;
#endif // _DEBUG
// Implementation
private:
CNode** m_ppBins;
size_t m_nElements;
UINT m_nBins;
float m_fOptimalLoad;
float m_fLoThreshold;
float m_fHiThreshold;
size_t m_nHiRehashThreshold;
size_t m_nLoRehashThreshold;
ULONG m_nLockCount;
UINT m_nBlockSize;
CAtlPlex* m_pBlocks;
CNode* m_pFree;
private:
bool IsLocked() const throw();
UINT PickSize(_In_ size_t nElements) const throw();
CNode* NewNode(
/* _In_ */ KINARGTYPE key,
_In_ UINT iBin,
_In_ UINT nHash);
void FreeNode(_Inout_ CNode* pNode);
void FreePlexes() throw();
_Ret_maybenull_ CNode* GetNode(
/* _In_ */ KINARGTYPE key,
_Out_ UINT& iBin,
_Out_ UINT& nHash,
_Outref_result_maybenull_ CNode*& pPrev) const throw();
CNode* CreateNode(
/* _In_ */ KINARGTYPE key,
_In_ UINT iBin,
_In_ UINT nHash);
void RemoveNode(
_In_ CNode* pNode,
_In_opt_ CNode* pPrev) throw();
CNode* FindNextNode(_In_ CNode* pNode) const throw();
void UpdateRehashThresholds() throw();
public:
~CAtlMap() throw();
private:
// Private to prevent use
CAtlMap(_In_ const CAtlMap&) throw();
CAtlMap& operator=(_In_ const CAtlMap&) throw();
};
template< typename K, typename I, class KTraits = CElementTraits< K > >
class CMapToInterface :
public CAtlMap< K, ATL::CComQIPtr< I >, KTraits, CComQIPtrElementTraits< I > >
{
public:
CMapToInterface(_In_ UINT nBins = 17) throw();
private:
// Private to prevent use
CMapToInterface(_In_ const CMapToInterface&) throw();
CMapToInterface& operator=(_In_ const CMapToInterface&) throw();
};
template< typename K, typename I, class KTraits >
inline CMapToInterface< K, I, KTraits >::CMapToInterface(_In_ UINT nBins) throw() :
CAtlMap< K, ATL::CComQIPtr< I >, KTraits, CComQIPtrElementTraits< I > >( nBins )
{
}
template< typename K, typename V, class KTraits = CElementTraits< K > >
class CMapToAutoPtr :
public CAtlMap< K, ATL::CAutoPtr< V >, KTraits, CAutoPtrElementTraits< V > >
{
public:
CMapToAutoPtr(_In_ UINT nBins = 17) throw();
private:
// Private to prevent use
CMapToAutoPtr(_In_ const CMapToAutoPtr&) throw();
CMapToAutoPtr& operator=(_In_ const CMapToAutoPtr&) throw();
};
template< typename K, typename V, class KTraits >
inline CMapToAutoPtr< K, V, KTraits >::CMapToAutoPtr(_In_ UINT nBins) throw() :
CAtlMap< K, ATL::CAutoPtr< V >, KTraits, CAutoPtrElementTraits< V > >( nBins )
{
}
template< typename K, typename V, class KTraits, class VTraits >
inline size_t CAtlMap< K, V, KTraits, VTraits >::GetCount() const throw()
{
return( m_nElements );
}
template< typename K, typename V, class KTraits, class VTraits >
inline bool CAtlMap< K, V, KTraits, VTraits >::IsEmpty() const throw()
{
return( m_nElements == 0 );
}
template< typename K, typename V, class KTraits, class VTraits >
inline V& CAtlMap< K, V, KTraits, VTraits >::operator[](/* _In_ */ KINARGTYPE key)
{
CNode* pNode;
UINT iBin;
UINT nHash;
CNode* pPrev;
pNode = GetNode( key, iBin, nHash, pPrev );
if( pNode == NULL )
{
pNode = CreateNode( key, iBin, nHash );
}
return( pNode->m_value );
}
template< typename K, typename V, class KTraits, class VTraits >
inline UINT CAtlMap< K, V, KTraits, VTraits >::GetHashTableSize() const throw()
{
return( m_nBins );
}
template< typename K, typename V, class KTraits, class VTraits >
inline void CAtlMap< K, V, KTraits, VTraits >::GetAt(
_In_ POSITION pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const
{
ATLENSURE( pos != NULL );
CNode* pNode = static_cast< CNode* >( pos );
key = pNode->m_key;
value = pNode->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
inline typename CAtlMap< K, V, KTraits, VTraits >::CPair* CAtlMap< K, V, KTraits, VTraits >::GetAt(
_In_ POSITION pos) throw()
{
ATLASSERT( pos != NULL );
return( static_cast< CPair* >( pos ) );
}
template< typename K, typename V, class KTraits, class VTraits >
inline const typename CAtlMap< K, V, KTraits, VTraits >::CPair* CAtlMap< K, V, KTraits, VTraits >::GetAt(
_In_ POSITION pos) const throw()
{
ATLASSERT( pos != NULL );
return( static_cast< const CPair* >( pos ) );
}
template< typename K, typename V, class KTraits, class VTraits >
inline const K& CAtlMap< K, V, KTraits, VTraits >::GetKeyAt(_In_ POSITION pos) const
{
ATLENSURE( pos != NULL );
CNode* pNode = (CNode*)pos;
return( pNode->m_key );
}
template< typename K, typename V, class KTraits, class VTraits >
inline const V& CAtlMap< K, V, KTraits, VTraits >::GetValueAt(_In_ POSITION pos) const
{
ATLENSURE( pos != NULL );
CNode* pNode = (CNode*)pos;
return( pNode->m_value );
}
template< typename K, typename V, class KTraits, class VTraits >
inline V& CAtlMap< K, V, KTraits, VTraits >::GetValueAt(_In_ POSITION pos)
{
ATLENSURE( pos != NULL );
CNode* pNode = (CNode*)pos;
return( pNode->m_value );
}
template< typename K, typename V, class KTraits, class VTraits >
inline void CAtlMap< K, V, KTraits, VTraits >::DisableAutoRehash() throw()
{
m_nLockCount++;
}
template< typename K, typename V, class KTraits, class VTraits >
inline void CAtlMap< K, V, KTraits, VTraits >::EnableAutoRehash() throw()
{
ATLASSUME( m_nLockCount > 0 );
m_nLockCount--;
}
template< typename K, typename V, class KTraits, class VTraits >
inline bool CAtlMap< K, V, KTraits, VTraits >::IsLocked() const throw()
{
return( m_nLockCount != 0 );
}
// List of primes such that s_anPrimes[i] is the smallest prime greater than 2^(5+i/3)
extern __declspec(selectany) const UINT s_anPrimes[] =
{
17, 23, 29, 37, 41, 53, 67, 83, 103, 131, 163, 211, 257, 331, 409, 521, 647, 821,
1031, 1291, 1627, 2053, 2591, 3251, 4099, 5167, 6521, 8209, 10331,
13007, 16411, 20663, 26017, 32771, 41299, 52021, 65537, 82571, 104033,
131101, 165161, 208067, 262147, 330287, 416147, 524309, 660563,
832291, 1048583, 1321139, 1664543, 2097169, 2642257, 3329023, 4194319,
5284493, 6658049, 8388617, 10568993, 13316089, UINT_MAX
};
template< typename K, typename V, class KTraits, class VTraits >
UINT CAtlMap< K, V, KTraits, VTraits >::PickSize(_In_ size_t nElements) const throw()
{
size_t nBins = (size_t)(nElements/m_fOptimalLoad);
UINT nBinsEstimate = UINT( UINT_MAX < nBins ? UINT_MAX : nBins );
// Find the smallest prime greater than our estimate
int iPrime = 0;
while( nBinsEstimate > s_anPrimes[iPrime] )
{
iPrime++;
}
if( s_anPrimes[iPrime] == UINT_MAX )
{
return( nBinsEstimate );
}
else
{
return( s_anPrimes[iPrime] );
}
}
template< typename K, typename V, class KTraits, class VTraits >
typename CAtlMap< K, V, KTraits, VTraits >::CNode* CAtlMap< K, V, KTraits, VTraits >::CreateNode(
/* _In_ */ KINARGTYPE key,
_In_ UINT iBin,
_In_ UINT nHash)
{
CNode* pNode;
if( m_ppBins == NULL )
{
bool bSuccess;
bSuccess = InitHashTable( m_nBins );
if( !bSuccess )
{
AtlThrow( E_OUTOFMEMORY );
}
}
pNode = NewNode( key, iBin, nHash );
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CAtlMap< K, V, KTraits, VTraits >::GetStartPosition() const throw()
{
if( IsEmpty() )
{
return( NULL );
}
for( UINT iBin = 0; iBin < m_nBins; iBin++ )
{
if( m_ppBins[iBin] != NULL )
{
return( POSITION( m_ppBins[iBin] ) );
}
}
ATLASSERT( false );
return( NULL );
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CAtlMap< K, V, KTraits, VTraits >::SetAt(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value)
{
CNode* pNode;
UINT iBin;
UINT nHash;
CNode* pPrev;
pNode = GetNode( key, iBin, nHash, pPrev );
if( pNode == NULL )
{
pNode = CreateNode( key, iBin, nHash );
_ATLTRY
{
pNode->m_value = value;
}
_ATLCATCHALL()
{
RemoveAtPos( POSITION( pNode ) );
_ATLRETHROW;
}
}
else
{
pNode->m_value = value;
}
return( POSITION( pNode ) );
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::SetValueAt(
_In_ POSITION pos,
/* _In_ */ VINARGTYPE value)
{
ATLASSUME( pos != NULL );
CNode* pNode = static_cast< CNode* >( pos );
pNode->m_value = value;
}
template< typename K, typename V, class KTraits, class VTraits >
CAtlMap< K, V, KTraits, VTraits >::CAtlMap(
_In_ UINT nBins,
_In_ float fOptimalLoad,
_In_ float fLoThreshold,
_In_ float fHiThreshold,
_In_ UINT nBlockSize) throw() :
m_ppBins( NULL ),
m_nElements( 0 ),
m_nBins( nBins ),
m_fOptimalLoad( fOptimalLoad ),
m_fLoThreshold( fLoThreshold ),
m_fHiThreshold( fHiThreshold ),
m_nHiRehashThreshold( UINT_MAX ),
m_nLoRehashThreshold( 0 ),
m_nLockCount( 0 ), // Start unlocked
m_nBlockSize( nBlockSize ),
m_pBlocks( NULL ),
m_pFree( NULL )
{
ATLASSERT( nBins > 0 );
ATLASSERT( nBlockSize > 0 );
SetOptimalLoad( fOptimalLoad, fLoThreshold, fHiThreshold, false );
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::SetOptimalLoad(
_In_ float fOptimalLoad,
_In_ float fLoThreshold,
_In_ float fHiThreshold,
_In_ bool bRehashNow)
{
ATLASSERT( fOptimalLoad > 0 );
ATLASSERT( (fLoThreshold >= 0) && (fLoThreshold < fOptimalLoad) );
ATLASSERT( fHiThreshold > fOptimalLoad );
m_fOptimalLoad = fOptimalLoad;
m_fLoThreshold = fLoThreshold;
m_fHiThreshold = fHiThreshold;
UpdateRehashThresholds();
if( bRehashNow && ((m_nElements > m_nHiRehashThreshold) ||
(m_nElements < m_nLoRehashThreshold)) )
{
Rehash( PickSize( m_nElements ) );
}
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::UpdateRehashThresholds() throw()
{
m_nHiRehashThreshold = size_t( m_fHiThreshold*m_nBins );
m_nLoRehashThreshold = size_t( m_fLoThreshold*m_nBins );
if( m_nLoRehashThreshold < 17 )
{
m_nLoRehashThreshold = 0;
}
}
template< typename K, typename V, class KTraits, class VTraits >
bool CAtlMap< K, V, KTraits, VTraits >::InitHashTable(_In_ UINT nBins, _In_ bool bAllocNow)
{
ATLASSUME( m_nElements == 0 );
ATLASSERT( nBins > 0 );
if( m_ppBins != NULL )
{
delete[] m_ppBins;
m_ppBins = NULL;
}
if( bAllocNow )
{
m_ppBins = _ATL_NEW CNode*[nBins];
if( m_ppBins == NULL )
{
return false;
}
ATLENSURE( UINT_MAX / sizeof( CNode* ) >= nBins );
memset( m_ppBins, 0, sizeof( CNode* )*nBins );
}
m_nBins = nBins;
UpdateRehashThresholds();
return true;
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::RemoveAll()
{
DisableAutoRehash();
if( m_ppBins != NULL )
{
for( UINT iBin = 0; iBin < m_nBins; iBin++ )
{
CNode* pNext;
pNext = m_ppBins[iBin];
while( pNext != NULL )
{
CNode* pKill;
pKill = pNext;
pNext = pNext->m_pNext;
FreeNode( pKill );
}
}
}
delete[] m_ppBins;
m_ppBins = NULL;
m_nElements = 0;
if( !IsLocked() )
{
InitHashTable( PickSize( m_nElements ), false );
}
FreePlexes();
EnableAutoRehash();
}
template< typename K, typename V, class KTraits, class VTraits >
CAtlMap< K, V, KTraits, VTraits >::~CAtlMap() throw()
{
_ATLTRY
{
RemoveAll();
}
_ATLCATCHALL()
{
ATLASSERT(false);
}
}
#pragma push_macro("new")
#undef new
template< typename K, typename V, class KTraits, class VTraits >
typename CAtlMap< K, V, KTraits, VTraits >::CNode* CAtlMap< K, V, KTraits, VTraits >::NewNode(
/* _In_ */ KINARGTYPE key,
_In_ UINT iBin,
_In_ UINT nHash)
{
CNode* pNewNode;
if( m_pFree == NULL )
{
CAtlPlex* pPlex;
CNode* pNode;
pPlex = CAtlPlex::Create( m_pBlocks, m_nBlockSize, sizeof( CNode ) );
if( pPlex == NULL )
{
AtlThrow( E_OUTOFMEMORY );
}
pNode = (CNode*)pPlex->data();
pNode += m_nBlockSize-1;
for( int iBlock = m_nBlockSize-1; iBlock >= 0; iBlock-- )
{
pNode->m_pNext = m_pFree;
m_pFree = pNode;
pNode--;
}
}
ATLENSURE(m_pFree != NULL );
pNewNode = m_pFree;
m_pFree = pNewNode->m_pNext;
_ATLTRY
{
::new( pNewNode ) CNode( key, nHash );
}
_ATLCATCHALL()
{
ATLPREFAST_SUPPRESS(6001)
pNewNode->m_pNext = m_pFree;
m_pFree = pNewNode;
ATLPREFAST_UNSUPPRESS()
_ATLRETHROW;
}
m_nElements++;
pNewNode->m_pNext = m_ppBins[iBin];
m_ppBins[iBin] = pNewNode;
if( (m_nElements > m_nHiRehashThreshold) && !IsLocked() )
{
Rehash( PickSize( m_nElements ) );
}
return( pNewNode );
}
#pragma pop_macro("new")
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::FreeNode(_Inout_ CNode* pNode)
{
ATLENSURE( pNode != NULL );
pNode->~CNode();
pNode->m_pNext = m_pFree;
m_pFree = pNode;
ATLASSUME( m_nElements > 0 );
m_nElements--;
if( (m_nElements < m_nLoRehashThreshold) && !IsLocked() )
{
Rehash( PickSize( m_nElements ) );
}
if( m_nElements == 0 )
{
FreePlexes();
}
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::FreePlexes() throw()
{
m_pFree = NULL;
if( m_pBlocks != NULL )
{
m_pBlocks->FreeDataChain();
m_pBlocks = NULL;
}
}
template< typename K, typename V, class KTraits, class VTraits >
_Ret_maybenull_ typename CAtlMap< K, V, KTraits, VTraits >::CNode* CAtlMap< K, V, KTraits, VTraits >::GetNode(
/* _In_ */ KINARGTYPE key,
_Out_ UINT& iBin,
_Out_ UINT& nHash,
_Outref_result_maybenull_ CNode*& pPrev) const throw()
{
CNode* pFollow;
nHash = KTraits::Hash( key );
iBin = nHash%m_nBins;
pPrev = NULL;
if( m_ppBins == NULL )
{
return( NULL );
}
pFollow = NULL;
for( CNode* pNode = m_ppBins[iBin]; pNode != NULL; pNode = pNode->m_pNext )
{
if( (pNode->GetHash() == nHash) && KTraits::CompareElements( pNode->m_key, key ) )
{
pPrev = pFollow;
return( pNode );
}
pFollow = pNode;
}
return( NULL );
}
template< typename K, typename V, class KTraits, class VTraits >
_Success_(return != false) bool CAtlMap< K, V, KTraits, VTraits >::Lookup(
/* _In_ */ KINARGTYPE key,
_Out_ VOUTARGTYPE value) const
{
UINT iBin;
UINT nHash;
CNode* pNode;
CNode* pPrev;
pNode = GetNode( key, iBin, nHash, pPrev );
if( pNode == NULL )
{
return( false );
}
value = pNode->m_value;
return( true );
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CAtlMap< K, V, KTraits, VTraits >::CPair* CAtlMap< K, V, KTraits, VTraits >::Lookup(
/* _In_ */ KINARGTYPE key) const throw()
{
UINT iBin;
UINT nHash;
CNode* pNode;
CNode* pPrev;
pNode = GetNode( key, iBin, nHash, pPrev );
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
typename CAtlMap< K, V, KTraits, VTraits >::CPair* CAtlMap< K, V, KTraits, VTraits >::Lookup(
/* _In_ */ KINARGTYPE key) throw()
{
UINT iBin;
UINT nHash;
CNode* pNode;
CNode* pPrev;
pNode = GetNode( key, iBin, nHash, pPrev );
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
bool CAtlMap< K, V, KTraits, VTraits >::RemoveKey(/* _In_ */ KINARGTYPE key) throw()
{
CNode* pNode;
UINT iBin;
UINT nHash;
CNode* pPrev;
pPrev = NULL;
pNode = GetNode( key, iBin, nHash, pPrev );
if( pNode == NULL )
{
return( false );
}
RemoveNode( pNode, pPrev );
return( true );
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::RemoveNode(
_In_ CNode* pNode,
_In_opt_ CNode* pPrev) throw()
{
ATLENSURE( pNode != NULL );
UINT iBin = pNode->GetHash() % m_nBins;
if( pPrev == NULL )
{
ATLASSUME( m_ppBins[iBin] == pNode );
m_ppBins[iBin] = pNode->m_pNext;
}
else
{
ATLASSERT( pPrev->m_pNext == pNode );
pPrev->m_pNext = pNode->m_pNext;
}
FreeNode( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::RemoveAtPos(_In_ POSITION pos) throw()
{
ATLENSURE( pos != NULL );
CNode* pNode = static_cast< CNode* >( pos );
CNode* pPrev = NULL;
UINT iBin = pNode->GetHash() % m_nBins;
ATLASSUME( m_ppBins[iBin] != NULL );
if( pNode == m_ppBins[iBin] )
{
pPrev = NULL;
}
else
{
pPrev = m_ppBins[iBin];
while( pPrev->m_pNext != pNode )
{
pPrev = pPrev->m_pNext;
ATLASSERT( pPrev != NULL );
}
}
RemoveNode( pNode, pPrev );
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::Rehash(_In_ UINT nBins)
{
if( nBins == 0 )
{
nBins = PickSize( m_nElements );
}
if( nBins == m_nBins )
{
return;
}
ATLTRACE(atlTraceMap, 2, _T("Rehash: %u bins\n"), nBins );
if( m_ppBins == NULL )
{
// Just set the new number of bins
InitHashTable( nBins, false );
return;
}
CNode** ppBins = _ATL_NEW CNode*[nBins];
if (ppBins == NULL)
{
AtlThrow( E_OUTOFMEMORY );
}
ATLENSURE( UINT_MAX / sizeof( CNode* ) >= nBins );
memset( ppBins, 0, nBins*sizeof( CNode* ) );
// Nothing gets copied. We just rewire the old nodes
// into the new bins.
for( UINT iSrcBin = 0; iSrcBin < m_nBins; iSrcBin++ )
{
CNode* pNode;
pNode = m_ppBins[iSrcBin];
while( pNode != NULL )
{
CNode* pNext;
UINT iDestBin;
pNext = pNode->m_pNext; // Save so we don't trash it
iDestBin = pNode->GetHash()%nBins;
pNode->m_pNext = ppBins[iDestBin];
ppBins[iDestBin] = pNode;
pNode = pNext;
}
}
delete[] m_ppBins;
m_ppBins = ppBins;
m_nBins = nBins;
UpdateRehashThresholds();
}
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::GetNextAssoc(
_Inout_ POSITION& pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const
{
CNode* pNode;
CNode* pNext;
ATLASSUME( m_ppBins != NULL );
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pNext = FindNextNode( pNode );
pos = POSITION( pNext );
key = pNode->m_key;
value = pNode->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CAtlMap< K, V, KTraits, VTraits >::CPair* CAtlMap< K, V, KTraits, VTraits >::GetNext(
_Inout_ POSITION& pos) const throw()
{
CNode* pNode;
CNode* pNext;
ATLASSUME( m_ppBins != NULL );
ATLASSERT( pos != NULL );
pNode = (CNode*)pos;
pNext = FindNextNode( pNode );
pos = POSITION( pNext );
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
typename CAtlMap< K, V, KTraits, VTraits >::CPair* CAtlMap< K, V, KTraits, VTraits >::GetNext(
_Inout_ POSITION& pos) throw()
{
ATLASSUME( m_ppBins != NULL );
ATLASSERT( pos != NULL );
CNode* pNode = static_cast< CNode* >( pos );
CNode* pNext = FindNextNode( pNode );
pos = POSITION( pNext );
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
const K& CAtlMap< K, V, KTraits, VTraits >::GetNextKey(
_Inout_ POSITION& pos) const
{
CNode* pNode;
CNode* pNext;
ATLASSUME( m_ppBins != NULL );
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pNext = FindNextNode( pNode );
pos = POSITION( pNext );
return( pNode->m_key );
}
template< typename K, typename V, class KTraits, class VTraits >
const V& CAtlMap< K, V, KTraits, VTraits >::GetNextValue(
_Inout_ POSITION& pos) const
{
CNode* pNode;
CNode* pNext;
ATLASSUME( m_ppBins != NULL );
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pNext = FindNextNode( pNode );
pos = POSITION( pNext );
return( pNode->m_value );
}
template< typename K, typename V, class KTraits, class VTraits >
V& CAtlMap< K, V, KTraits, VTraits >::GetNextValue(
_Inout_ POSITION& pos)
{
CNode* pNode;
CNode* pNext;
ATLASSUME( m_ppBins != NULL );
ATLENSURE( pos != NULL );
pNode = (CNode*)pos;
pNext = FindNextNode( pNode );
pos = POSITION( pNext );
return( pNode->m_value );
}
template< typename K, typename V, class KTraits, class VTraits >
typename CAtlMap< K, V, KTraits, VTraits >::CNode* CAtlMap< K, V, KTraits, VTraits >::FindNextNode(
_In_ CNode* pNode) const throw()
{
CNode* pNext;
if(pNode == NULL)
{
ATLASSERT(FALSE);
return NULL;
}
if( pNode->m_pNext != NULL )
{
pNext = pNode->m_pNext;
}
else
{
UINT iBin;
pNext = NULL;
iBin = (pNode->GetHash()%m_nBins)+1;
while( (pNext == NULL) && (iBin < m_nBins) )
{
if( m_ppBins[iBin] != NULL )
{
pNext = m_ppBins[iBin];
}
iBin++;
}
}
return( pNext );
}
#ifdef _DEBUG
template< typename K, typename V, class KTraits, class VTraits >
void CAtlMap< K, V, KTraits, VTraits >::AssertValid() const
{
ATLASSUME( m_nBins > 0 );
// non-empty map should have hash table
ATLASSERT( IsEmpty() || (m_ppBins != NULL) );
}
#endif
#pragma push_macro("new")
#undef new
//
// The red-black tree code is based on the descriptions in
// "Introduction to Algorithms", by Cormen, Leiserson, and Rivest
//
template< typename K, typename V, class KTraits = CElementTraits< K >, class VTraits = CElementTraits< V > >
class CRBTree
{
public:
typedef typename KTraits::INARGTYPE KINARGTYPE;
typedef typename KTraits::OUTARGTYPE KOUTARGTYPE;
typedef typename VTraits::INARGTYPE VINARGTYPE;
typedef typename VTraits::OUTARGTYPE VOUTARGTYPE;
public:
class CPair :
public __POSITION
{
protected:
CPair(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value) :
m_key( key ),
m_value( value )
{
}
~CPair() throw()
{
}
public:
const K m_key;
V m_value;
};
private:
class CNode :
public CPair
{
public:
enum RB_COLOR
{
RB_RED,
RB_BLACK
};
public:
RB_COLOR m_eColor;
CNode* m_pLeft;
CNode* m_pRight;
CNode* m_pParent;
CNode(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value) :
CPair( key, value ),
m_pParent( NULL ),
m_eColor( RB_BLACK )
{
}
~CNode() throw()
{
}
};
private:
CNode* m_pRoot;
size_t m_nCount;
CNode* m_pFree;
CAtlPlex* m_pBlocks;
size_t m_nBlockSize;
// sentinel node
CNode *m_pNil;
// methods
bool IsNil(_In_ CNode *p) const throw();
void SetNil(_Outptr_ CNode **p) throw();
CNode* NewNode(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value);
void FreeNode(_Inout_ CNode* pNode) throw();
void RemovePostOrder(_In_ CNode* pNode) throw();
CNode* LeftRotate(_In_ CNode* pNode) throw();
CNode* RightRotate(_In_ CNode* pNode) throw();
void SwapNode(
_Out_ CNode* pDest,
_Inout_ CNode* pSrc) throw();
CNode* InsertImpl(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value);
void RBDeleteFixup(_In_ CNode* pNode) throw();
bool RBDelete(_In_opt_ CNode* pZ) throw();
#ifdef _DEBUG
// internal debugging code to verify red-black properties of tree:
// 1) Every node is either red or black
// 2) Every leaf (NIL) is black
// 3) If a node is red, both its children are black
// 4) Every simple path from a node to a descendant leaf node contains
// the same number of black nodes
private:
void VerifyIntegrity(
_In_ const CNode *pNode,
_In_ int nCurrBlackDepth,
_Out_ int &nBlackDepth) const throw();
public:
void VerifyIntegrity() const throw();
#endif // _DEBUG
protected:
CNode* Minimum(_In_opt_ CNode* pNode) const throw();
CNode* Maximum(_In_opt_ CNode* pNode) const throw();
CNode* Predecessor(_In_opt_ CNode* pNode) const throw();
CNode* Successor(_In_opt_ CNode* pNode) const throw();
CNode* RBInsert(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value);
CNode* Find(/* _In_ */ KINARGTYPE key) const throw();
CNode* FindPrefix(/* _In_ */ KINARGTYPE key) const throw();
protected:
explicit CRBTree(_In_ size_t nBlockSize = 10) throw(); // protected to prevent instantiation
public:
~CRBTree() throw();
void RemoveAll() throw();
void RemoveAt(_In_ POSITION pos) throw();
size_t GetCount() const throw();
bool IsEmpty() const throw();
POSITION FindFirstKeyAfter(/* _In_ */ KINARGTYPE key) const throw();
POSITION GetHeadPosition() const throw();
POSITION GetTailPosition() const throw();
void GetNextAssoc(
_Inout_ POSITION& pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const;
const CPair* GetNext(_Inout_ POSITION& pos) const throw();
CPair* GetNext(_Inout_ POSITION& pos) throw();
const CPair* GetPrev(_Inout_ POSITION& pos) const throw();
CPair* GetPrev(_Inout_ POSITION& pos) throw();
const K& GetNextKey(_Inout_ POSITION& pos) const throw();
const V& GetNextValue(_Inout_ POSITION& pos) const throw();
V& GetNextValue(_Inout_ POSITION& pos) throw();
CPair* GetAt(_In_ POSITION pos) throw();
const CPair* GetAt(_In_ POSITION pos) const throw();
void GetAt(
_In_ POSITION pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const;
const K& GetKeyAt(_In_ POSITION pos) const;
const V& GetValueAt(_In_ POSITION pos) const;
V& GetValueAt(_In_ POSITION pos);
void SetValueAt(
_In_ POSITION pos,
/* _In_ */ VINARGTYPE value);
private:
// Private to prevent use
CRBTree(_In_ const CRBTree&) throw();
CRBTree& operator=(_In_ const CRBTree&) throw();
};
template< typename K, typename V, class KTraits, class VTraits >
inline bool CRBTree< K, V, KTraits, VTraits >::IsNil(_In_ CNode *p) const throw()
{
return ( p == m_pNil );
}
template< typename K, typename V, class KTraits, class VTraits >
inline void CRBTree< K, V, KTraits, VTraits >::SetNil(_Outptr_ CNode **p) throw()
{
ATLENSURE( p != NULL );
*p = m_pNil;
}
template< typename K, typename V, class KTraits, class VTraits >
CRBTree< K, V, KTraits, VTraits >::CRBTree(_In_ size_t nBlockSize) throw() :
m_pRoot( NULL ),
m_nCount( 0 ),
m_nBlockSize( nBlockSize ),
m_pFree( NULL ),
m_pBlocks( NULL ),
m_pNil( NULL )
{
ATLASSERT( nBlockSize > 0 );
}
template< typename K, typename V, class KTraits, class VTraits >
CRBTree< K, V, KTraits, VTraits >::~CRBTree() throw()
{
RemoveAll();
if (m_pNil != NULL)
{
free(m_pNil);
}
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::RemoveAll() throw()
{
if (!IsNil(m_pRoot))
RemovePostOrder(m_pRoot);
m_nCount = 0;
m_pBlocks->FreeDataChain();
m_pBlocks = NULL;
m_pFree = NULL;
m_pRoot = m_pNil;
}
template< typename K, typename V, class KTraits, class VTraits >
size_t CRBTree< K, V, KTraits, VTraits >::GetCount() const throw()
{
return m_nCount;
}
template< typename K, typename V, class KTraits, class VTraits >
bool CRBTree< K, V, KTraits, VTraits >::IsEmpty() const throw()
{
return( m_nCount == 0 );
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CRBTree< K, V, KTraits, VTraits >::FindFirstKeyAfter(/* _In_ */ KINARGTYPE key) const throw()
{
return( FindPrefix( key ) );
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::RemoveAt(_In_ POSITION pos) throw()
{
ATLASSERT(pos != NULL);
RBDelete(static_cast<CNode*>(pos));
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CRBTree< K, V, KTraits, VTraits >::GetHeadPosition() const throw()
{
return( Minimum( m_pRoot ) );
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CRBTree< K, V, KTraits, VTraits >::GetTailPosition() const throw()
{
return( Maximum( m_pRoot ) );
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::GetNextAssoc(
_Inout_ POSITION& pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast< CNode* >(pos);
key = pNode->m_key;
value = pNode->m_value;
pos = Successor(pNode);
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CRBTree< K, V, KTraits, VTraits >::CPair* CRBTree< K, V, KTraits, VTraits >::GetNext(
_Inout_ POSITION& pos) const throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast< CNode* >(pos);
pos = Successor(pNode);
return pNode;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CPair* CRBTree< K, V, KTraits, VTraits >::GetNext(
_Inout_ POSITION& pos) throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast< CNode* >(pos);
pos = Successor(pNode);
return pNode;
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CRBTree< K, V, KTraits, VTraits >::CPair* CRBTree< K, V, KTraits, VTraits >::GetPrev(
_Inout_ POSITION& pos) const throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast< CNode* >(pos);
pos = Predecessor(pNode);
return pNode;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CPair* CRBTree< K, V, KTraits, VTraits >::GetPrev(
_Inout_ POSITION& pos) throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast< CNode* >(pos);
pos = Predecessor(pNode);
return pNode;
}
template< typename K, typename V, class KTraits, class VTraits >
const K& CRBTree< K, V, KTraits, VTraits >::GetNextKey(
_Inout_ POSITION& pos) const throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast<CNode*>(pos);
pos = Successor(pNode);
return pNode->m_key;
}
template< typename K, typename V, class KTraits, class VTraits >
const V& CRBTree< K, V, KTraits, VTraits >::GetNextValue(
_Inout_ POSITION& pos) const throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast<CNode*>(pos);
pos = Successor(pNode);
return pNode->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
V& CRBTree< K, V, KTraits, VTraits >::GetNextValue(
_Inout_ POSITION& pos) throw()
{
ATLASSERT(pos != NULL);
CNode* pNode = static_cast<CNode*>(pos);
pos = Successor(pNode);
return pNode->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CPair* CRBTree< K, V, KTraits, VTraits >::GetAt(
_In_ POSITION pos) throw()
{
ATLASSERT( pos != NULL );
return( static_cast< CPair* >( pos ) );
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CRBTree< K, V, KTraits, VTraits >::CPair* CRBTree< K, V, KTraits, VTraits >::GetAt(
_In_ POSITION pos) const throw()
{
ATLASSERT( pos != NULL );
return( static_cast< const CPair* >( pos ) );
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::GetAt(
_In_ POSITION pos,
_Out_ KOUTARGTYPE key,
_Out_ VOUTARGTYPE value) const
{
ATLENSURE( pos != NULL );
key = static_cast<CNode*>(pos)->m_key;
value = static_cast<CNode*>(pos)->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
const K& CRBTree< K, V, KTraits, VTraits >::GetKeyAt(_In_ POSITION pos) const
{
ATLENSURE( pos != NULL );
return static_cast<CNode*>(pos)->m_key;
}
template< typename K, typename V, class KTraits, class VTraits >
const V& CRBTree< K, V, KTraits, VTraits >::GetValueAt(_In_ POSITION pos) const
{
ATLENSURE( pos != NULL );
return static_cast<CNode*>(pos)->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
V& CRBTree< K, V, KTraits, VTraits >::GetValueAt(_In_ POSITION pos)
{
ATLENSURE( pos != NULL );
return static_cast<CNode*>(pos)->m_value;
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::SetValueAt(
_In_ POSITION pos,
/* _In_ */ VINARGTYPE value)
{
ATLENSURE( pos != NULL );
static_cast<CNode*>(pos)->m_value = value;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::NewNode(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value)
{
if( m_pFree == NULL )
{
if (m_pNil == NULL)
{
m_pNil = reinterpret_cast<CNode *>(malloc(sizeof( CNode )));
if (m_pNil == NULL)
{
AtlThrow( E_OUTOFMEMORY );
}
memset(m_pNil, 0x00, sizeof(CNode));
m_pNil->m_eColor = CNode::RB_BLACK;
m_pNil->m_pParent = m_pNil->m_pLeft = m_pNil->m_pRight = m_pNil;
m_pRoot = m_pNil;
}
CAtlPlex* pPlex = CAtlPlex::Create( m_pBlocks, m_nBlockSize, sizeof( CNode ) );
if( pPlex == NULL )
{
AtlThrow( E_OUTOFMEMORY );
}
CNode* pNode = static_cast< CNode* >( pPlex->data() );
pNode += m_nBlockSize-1;
for( INT_PTR iBlock = m_nBlockSize-1; iBlock >= 0; iBlock-- )
{
pNode->m_pLeft = m_pFree;
m_pFree = pNode;
pNode--;
}
}
ATLASSUME( m_pFree != NULL );
CNode* pNewNode = m_pFree;
::new( pNewNode ) CNode( key, value );
m_pFree = m_pFree->m_pLeft;
pNewNode->m_eColor = CNode::RB_RED;
SetNil(&pNewNode->m_pLeft);
SetNil(&pNewNode->m_pRight);
SetNil(&pNewNode->m_pParent);
m_nCount++;
ATLASSUME( m_nCount > 0 );
return( pNewNode );
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::FreeNode(_Inout_ CNode* pNode) throw()
{
ATLENSURE( pNode != NULL );
pNode->~CNode();
pNode->m_pLeft = m_pFree;
m_pFree = pNode;
ATLASSUME( m_nCount > 0 );
m_nCount--;
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::RemovePostOrder(_In_ CNode* pNode) throw()
{
if (IsNil(pNode))
return;
RemovePostOrder(pNode->m_pLeft);
RemovePostOrder(pNode->m_pRight);
FreeNode( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::LeftRotate(
_In_ CNode* pNode) throw()
{
ATLASSERT(pNode != NULL);
if(pNode == NULL)
return NULL;
CNode* pRight = pNode->m_pRight;
pNode->m_pRight = pRight->m_pLeft;
if (!IsNil(pRight->m_pLeft))
pRight->m_pLeft->m_pParent = pNode;
pRight->m_pParent = pNode->m_pParent;
if (IsNil(pNode->m_pParent))
m_pRoot = pRight;
else if (pNode == pNode->m_pParent->m_pLeft)
pNode->m_pParent->m_pLeft = pRight;
else
pNode->m_pParent->m_pRight = pRight;
pRight->m_pLeft = pNode;
pNode->m_pParent = pRight;
return pNode;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::RightRotate(
_In_ CNode* pNode) throw()
{
ATLASSERT(pNode != NULL);
if(pNode == NULL)
return NULL;
CNode* pLeft = pNode->m_pLeft;
pNode->m_pLeft = pLeft->m_pRight;
if (!IsNil(pLeft->m_pRight))
pLeft->m_pRight->m_pParent = pNode;
pLeft->m_pParent = pNode->m_pParent;
if (IsNil(pNode->m_pParent))
m_pRoot = pLeft;
else if (pNode == pNode->m_pParent->m_pRight)
pNode->m_pParent->m_pRight = pLeft;
else
pNode->m_pParent->m_pLeft = pLeft;
pLeft->m_pRight = pNode;
pNode->m_pParent = pLeft;
return pNode;
}
#pragma warning(push)
#pragma warning(disable:28182 28183)
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::Find(
/* _In_ */ KINARGTYPE key) const throw()
{
CNode* pKey = NULL;
CNode* pNode = m_pRoot;
while( !IsNil(pNode) && (pKey == NULL) )
{
int nCompare = KTraits::CompareElementsOrdered( key, pNode->m_key );
if( nCompare == 0 )
{
pKey = pNode;
}
else
{
if( nCompare < 0 )
{
pNode = pNode->m_pLeft;
}
else
{
pNode = pNode->m_pRight;
}
}
}
if( pKey == NULL )
{
return( NULL );
}
#pragma warning(push)
#pragma warning(disable:4127)
while( true )
{
CNode* pPrev = Predecessor( pKey );
if( (pPrev != NULL) && KTraits::CompareElements( key, pPrev->m_key ) )
{
pKey = pPrev;
}
else
{
return( pKey );
}
}
#pragma warning(pop)
}
#pragma warning(pop)
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::FindPrefix(
/* _In_ */ KINARGTYPE key) const throw()
{
// First, attempt to find a node that matches the key exactly
CNode* pParent = NULL;
CNode* pKey = NULL;
CNode* pNode = m_pRoot;
while( !IsNil(pNode) && (pKey == NULL) )
{
pParent = pNode;
int nCompare = KTraits::CompareElementsOrdered( key, pNode->m_key );
if( nCompare == 0 )
{
pKey = pNode;
}
else if( nCompare < 0 )
{
pNode = pNode->m_pLeft;
}
else
{
pNode = pNode->m_pRight;
}
}
if( pKey != NULL )
{
// We found a node with the exact key, so find the first node after
// this one with a different key
while( true )
{
CNode* pNext = Successor( pKey );
if ((pNext != NULL) && KTraits::CompareElements( key, pNext->m_key ))
{
pKey = pNext;
}
else
{
return pNext;
}
}
}
else if (pParent != NULL)
{
// No node matched the key exactly, so pick the first node with
// a key greater than the given key
int nCompare = KTraits::CompareElementsOrdered( key, pParent->m_key );
if( nCompare < 0 )
{
pKey = pParent;
}
else
{
ATLASSERT( nCompare > 0 );
pKey = Successor( pParent );
}
}
return( pKey );
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::SwapNode(_Out_ CNode* pDest, _Inout_ CNode* pSrc) throw()
{
ATLENSURE( pDest != NULL );
ATLENSURE( pSrc != NULL );
pDest->m_pParent = pSrc->m_pParent;
if (pSrc->m_pParent->m_pLeft == pSrc)
{
pSrc->m_pParent->m_pLeft = pDest;
}
else
{
pSrc->m_pParent->m_pRight = pDest;
}
pDest->m_pRight = pSrc->m_pRight;
pDest->m_pLeft = pSrc->m_pLeft;
pDest->m_eColor = pSrc->m_eColor;
pDest->m_pRight->m_pParent = pDest;
pDest->m_pLeft->m_pParent = pDest;
if (m_pRoot == pSrc)
{
m_pRoot = pDest;
}
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::InsertImpl(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value)
{
CNode* pNew = NewNode( key, value );
CNode* pY = NULL;
CNode* pX = m_pRoot;
while (!IsNil(pX))
{
pY = pX;
if( KTraits::CompareElementsOrdered( key, pX->m_key ) <= 0 )
pX = pX->m_pLeft;
else
pX = pX->m_pRight;
}
pNew->m_pParent = pY;
if (pY == NULL)
{
m_pRoot = pNew;
}
else if( KTraits::CompareElementsOrdered( key, pY->m_key ) <= 0 )
pY->m_pLeft = pNew;
else
pY->m_pRight = pNew;
return pNew;
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::RBDeleteFixup(_In_ CNode* pNode) throw()
{
ATLENSURE( pNode != NULL );
CNode* pX = pNode;
CNode* pW = NULL;
while (( pX != m_pRoot ) && ( pX->m_eColor == CNode::RB_BLACK ))
{
if (pX == pX->m_pParent->m_pLeft)
{
pW = pX->m_pParent->m_pRight;
if (pW->m_eColor == CNode::RB_RED)
{
pW->m_eColor = CNode::RB_BLACK;
pW->m_pParent->m_eColor = CNode::RB_RED;
LeftRotate(pX->m_pParent);
pW = pX->m_pParent->m_pRight;
}
if (pW->m_pLeft->m_eColor == CNode::RB_BLACK && pW->m_pRight->m_eColor == CNode::RB_BLACK)
{
pW->m_eColor = CNode::RB_RED;
pX = pX->m_pParent;
}
else
{
if (pW->m_pRight->m_eColor == CNode::RB_BLACK)
{
pW->m_pLeft->m_eColor = CNode::RB_BLACK;
pW->m_eColor = CNode::RB_RED;
RightRotate(pW);
pW = pX->m_pParent->m_pRight;
}
pW->m_eColor = pX->m_pParent->m_eColor;
pX->m_pParent->m_eColor = CNode::RB_BLACK;
pW->m_pRight->m_eColor = CNode::RB_BLACK;
LeftRotate(pX->m_pParent);
pX = m_pRoot;
}
}
else
{
pW = pX->m_pParent->m_pLeft;
if (pW->m_eColor == CNode::RB_RED)
{
pW->m_eColor = CNode::RB_BLACK;
pW->m_pParent->m_eColor = CNode::RB_RED;
RightRotate(pX->m_pParent);
pW = pX->m_pParent->m_pLeft;
}
if (pW->m_pRight->m_eColor == CNode::RB_BLACK && pW->m_pLeft->m_eColor == CNode::RB_BLACK)
{
pW->m_eColor = CNode::RB_RED;
pX = pX->m_pParent;
}
else
{
if (pW->m_pLeft->m_eColor == CNode::RB_BLACK)
{
pW->m_pRight->m_eColor = CNode::RB_BLACK;
pW->m_eColor = CNode::RB_RED;
LeftRotate(pW);
pW = pX->m_pParent->m_pLeft;
}
pW->m_eColor = pX->m_pParent->m_eColor;
pX->m_pParent->m_eColor = CNode::RB_BLACK;
pW->m_pLeft->m_eColor = CNode::RB_BLACK;
RightRotate(pX->m_pParent);
pX = m_pRoot;
}
}
}
pX->m_eColor = CNode::RB_BLACK;
}
template< typename K, typename V, class KTraits, class VTraits >
bool CRBTree< K, V, KTraits, VTraits >::RBDelete(_In_opt_ CNode* pZ) throw()
{
if (pZ == NULL)
return false;
CNode* pY = NULL;
CNode* pX = NULL;
if (IsNil(pZ->m_pLeft) || IsNil(pZ->m_pRight))
pY = pZ;
else
pY = Successor(pZ);
if (!IsNil(pY->m_pLeft))
pX = pY->m_pLeft;
else
pX = pY->m_pRight;
pX->m_pParent = pY->m_pParent;
if (IsNil(pY->m_pParent))
m_pRoot = pX;
else if (pY == pY->m_pParent->m_pLeft)
pY->m_pParent->m_pLeft = pX;
else
pY->m_pParent->m_pRight = pX;
if (pY->m_eColor == CNode::RB_BLACK)
RBDeleteFixup(pX);
if (pY != pZ)
SwapNode(pY, pZ);
if (m_pRoot != NULL)
SetNil(&m_pRoot->m_pParent);
FreeNode( pZ );
return true;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::Minimum(
_In_opt_ CNode* pNode) const throw()
{
if (pNode == NULL || IsNil(pNode))
{
return NULL;
}
CNode* pMin = pNode;
while (!IsNil(pMin->m_pLeft))
{
pMin = pMin->m_pLeft;
}
return pMin;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::Maximum(
_In_opt_ CNode* pNode) const throw()
{
if (pNode == NULL || IsNil(pNode))
{
return NULL;
}
CNode* pMax = pNode;
while (!IsNil(pMax->m_pRight))
{
pMax = pMax->m_pRight;
}
return pMax;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::Predecessor(
_In_opt_ CNode* pNode ) const throw()
{
if( pNode == NULL )
{
return( NULL );
}
if( !IsNil(pNode->m_pLeft) )
{
return( Maximum( pNode->m_pLeft ) );
}
CNode* pParent = pNode->m_pParent;
CNode* pLeft = pNode;
while( !IsNil(pParent) && (pLeft == pParent->m_pLeft) )
{
pLeft = pParent;
pParent = pParent->m_pParent;
}
if (IsNil(pParent))
{
pParent = NULL;
}
return( pParent );
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::Successor(
_In_opt_ CNode* pNode) const throw()
{
if ( pNode == NULL )
{
return NULL;
}
if ( !IsNil(pNode->m_pRight) )
{
return Minimum(pNode->m_pRight);
}
CNode* pParent = pNode->m_pParent;
CNode* pRight = pNode;
while ( !IsNil(pParent) && (pRight == pParent->m_pRight) )
{
pRight = pParent;
pParent = pParent->m_pParent;
}
if (IsNil(pParent))
{
pParent = NULL;
}
return pParent;
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBTree< K, V, KTraits, VTraits >::CNode* CRBTree< K, V, KTraits, VTraits >::RBInsert(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value)
{
CNode* pNewNode = InsertImpl( key, value );
CNode* pX = pNewNode;
pX->m_eColor = CNode::RB_RED;
CNode* pY = NULL;
while (pX != m_pRoot && pX->m_pParent->m_eColor == CNode::RB_RED)
{
if (pX->m_pParent == pX->m_pParent->m_pParent->m_pLeft)
{
pY = pX->m_pParent->m_pParent->m_pRight;
if (pY != NULL && pY->m_eColor == CNode::RB_RED)
{
pX->m_pParent->m_eColor = CNode::RB_BLACK;
pY->m_eColor = CNode::RB_BLACK;
pX->m_pParent->m_pParent->m_eColor = CNode::RB_RED;
pX = pX->m_pParent->m_pParent;
}
else
{
if (pX == pX->m_pParent->m_pRight)
{
pX = pX->m_pParent;
LeftRotate(pX);
}
pX->m_pParent->m_eColor = CNode::RB_BLACK;
pX->m_pParent->m_pParent->m_eColor = CNode::RB_RED;
RightRotate(pX->m_pParent->m_pParent);
}
}
else
{
pY = pX->m_pParent->m_pParent->m_pLeft;
if (pY != NULL && pY->m_eColor == CNode::RB_RED)
{
pX->m_pParent->m_eColor = CNode::RB_BLACK;
pY->m_eColor = CNode::RB_BLACK;
pX->m_pParent->m_pParent->m_eColor = CNode::RB_RED;
pX = pX->m_pParent->m_pParent;
}
else
{
if (pX == pX->m_pParent->m_pLeft)
{
pX = pX->m_pParent;
RightRotate(pX);
}
pX->m_pParent->m_eColor = CNode::RB_BLACK;
pX->m_pParent->m_pParent->m_eColor = CNode::RB_RED;
LeftRotate(pX->m_pParent->m_pParent);
}
}
}
m_pRoot->m_eColor = CNode::RB_BLACK;
SetNil(&m_pRoot->m_pParent);
return( pNewNode );
}
#ifdef _DEBUG
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::VerifyIntegrity(
_In_ const CNode *pNode,
_In_ int nCurrBlackDepth,
_Out_ int &nBlackDepth) const throw()
{
bool bCheckForBlack = false;
bool bLeaf = true;
if (pNode->m_eColor == CNode::RB_RED)
bCheckForBlack = true;
else
nCurrBlackDepth++;
ATLASSERT(pNode->m_pLeft != NULL);
if (!IsNil(pNode->m_pLeft))
{
bLeaf = false;
if (bCheckForBlack)
{
ATLASSERT(pNode->m_pLeft->m_eColor == CNode::RB_BLACK);
}
VerifyIntegrity(pNode->m_pLeft, nCurrBlackDepth, nBlackDepth);
}
ATLASSERT(pNode->m_pRight != NULL);
if (!IsNil(pNode->m_pRight))
{
bLeaf = false;
if (bCheckForBlack)
{
ATLASSERT(pNode->m_pRight->m_eColor == CNode::RB_BLACK);
}
VerifyIntegrity(pNode->m_pRight, nCurrBlackDepth, nBlackDepth);
}
ATLASSERT( pNode->m_pParent != NULL );
ATLASSERT( ( IsNil(pNode->m_pParent) ) ||
( pNode->m_pParent->m_pLeft == pNode ) ||
( pNode->m_pParent->m_pRight == pNode ) );
if (bLeaf)
{
if (nBlackDepth == 0)
{
nBlackDepth = nCurrBlackDepth;
}
else
{
ATLASSERT(nBlackDepth == nCurrBlackDepth);
}
}
}
template< typename K, typename V, class KTraits, class VTraits >
void CRBTree< K, V, KTraits, VTraits >::VerifyIntegrity() const throw()
{
if ((m_pRoot == NULL) || (IsNil(m_pRoot)))
return;
ATLASSUME(m_pRoot->m_eColor == CNode::RB_BLACK);
int nBlackDepth = 0;
VerifyIntegrity(m_pRoot, 0, nBlackDepth);
}
#endif // _DEBUG
template< typename K, typename V, class KTraits = CElementTraits< K >, class VTraits = CElementTraits< V > >
class CRBMap :
public CRBTree< K, V, KTraits, VTraits >
{
public:
using typename CRBTree<K, V, KTraits, VTraits>::KINARGTYPE;
using typename CRBTree<K, V, KTraits, VTraits>::VINARGTYPE;
using typename CRBTree<K, V, KTraits, VTraits>::VOUTARGTYPE;
typedef typename CRBTree<K, V, KTraits, VTraits>::CPair CPair;
explicit CRBMap(_In_ size_t nBlockSize = 10) throw();
~CRBMap() throw();
_Success_(return == true) bool Lookup(
/* _In_ */ KINARGTYPE key,
_Out_ VOUTARGTYPE value) const;
const CPair* Lookup(/* _In_ */ KINARGTYPE key) const throw();
CPair* Lookup(/* _In_ */ KINARGTYPE key) throw();
POSITION SetAt(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value);
bool RemoveKey(/* _In_ */ KINARGTYPE key) throw();
};
template< typename K, typename V, class KTraits, class VTraits >
CRBMap< K, V, KTraits, VTraits >::CRBMap(_In_ size_t nBlockSize) throw() :
CRBTree< K, V, KTraits, VTraits >( nBlockSize )
{
}
template< typename K, typename V, class KTraits, class VTraits >
CRBMap< K, V, KTraits, VTraits >::~CRBMap() throw()
{
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CRBMap< K, V, KTraits, VTraits >::CPair* CRBMap< K, V, KTraits, VTraits >::Lookup(
/* _In_ */ KINARGTYPE key) const throw()
{
return this->Find(key);
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBMap< K, V, KTraits, VTraits >::CPair* CRBMap< K, V, KTraits, VTraits >::Lookup(
/* _In_ */ KINARGTYPE key) throw()
{
return this->Find(key);
}
template< typename K, typename V, class KTraits, class VTraits >
_Success_(return == true) bool CRBMap< K, V, KTraits, VTraits >::Lookup(
/* _In_ */ KINARGTYPE key,
_Out_ VOUTARGTYPE value) const
{
const CPair* pLookup = this->Find( key );
if( pLookup == NULL )
return false;
value = pLookup->m_value;
return true;
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CRBMap< K, V, KTraits, VTraits >::SetAt(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value)
{
CPair* pNode = this->Find( key );
if( pNode == NULL )
{
return(this->RBInsert( key, value ) );
}
else
{
pNode->m_value = value;
return( pNode );
}
}
template< typename K, typename V, class KTraits, class VTraits >
bool CRBMap< K, V, KTraits, VTraits >::RemoveKey(/* _In_ */ KINARGTYPE key) throw()
{
POSITION pos = Lookup( key );
if( pos != NULL )
{
this->RemoveAt( pos );
return( true );
}
else
{
return( false );
}
}
template< typename K, typename V, class KTraits = CElementTraits< K >, class VTraits = CElementTraits< V > >
class CRBMultiMap :
public CRBTree< K, V, KTraits, VTraits >
{
public:
using typename CRBTree<K, V, KTraits, VTraits>::KINARGTYPE;
using typename CRBTree<K, V, KTraits, VTraits>::VINARGTYPE;
typedef typename CRBTree<K, V, KTraits, VTraits>::CPair CPair;
explicit CRBMultiMap(_In_ size_t nBlockSize = 10) throw();
~CRBMultiMap() throw();
POSITION Insert(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value);
size_t RemoveKey(/* _In_ */ KINARGTYPE key) throw();
POSITION FindFirstWithKey(/* _In_ */ KINARGTYPE key) const throw();
const CPair* GetNextWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) const throw();
CPair* GetNextWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) throw();
const V& GetNextValueWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) const throw();
V& GetNextValueWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) throw();
};
template< typename K, typename V, class KTraits, class VTraits >
CRBMultiMap< K, V, KTraits, VTraits >::CRBMultiMap(_In_ size_t nBlockSize) throw() :
CRBTree< K, V, KTraits, VTraits >( nBlockSize )
{
}
template< typename K, typename V, class KTraits, class VTraits >
CRBMultiMap< K, V, KTraits, VTraits >::~CRBMultiMap() throw()
{
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CRBMultiMap< K, V, KTraits, VTraits >::Insert(
/* _In_ */ KINARGTYPE key,
/* _In_ */ VINARGTYPE value)
{
return( this->RBInsert( key, value ) );
}
template< typename K, typename V, class KTraits, class VTraits >
size_t CRBMultiMap< K, V, KTraits, VTraits >::RemoveKey(
/* _In_ */ KINARGTYPE key) throw()
{
size_t nElementsDeleted = 0;
POSITION pos = FindFirstWithKey( key );
while( pos != NULL )
{
POSITION posDelete = pos;
GetNextWithKey( pos, key );
this->RemoveAt( posDelete );
nElementsDeleted++;
}
return( nElementsDeleted );
}
template< typename K, typename V, class KTraits, class VTraits >
POSITION CRBMultiMap< K, V, KTraits, VTraits >::FindFirstWithKey(
/* _In_ */ KINARGTYPE key) const throw()
{
return( this->Find( key ) );
}
template< typename K, typename V, class KTraits, class VTraits >
const typename CRBMultiMap< K, V, KTraits, VTraits >::CPair* CRBMultiMap< K, V, KTraits, VTraits >::GetNextWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) const throw()
{
ATLASSERT( pos != NULL );
const CPair* pNode = this->GetNext( pos );
if( (pos == NULL) || !KTraits::CompareElements( static_cast< CPair* >( pos )->m_key, key ) )
{
pos = NULL;
}
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
typename CRBMultiMap< K, V, KTraits, VTraits >::CPair* CRBMultiMap< K, V, KTraits, VTraits >::GetNextWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) throw()
{
ATLASSERT( pos != NULL );
CPair* pNode = this->GetNext( pos );
if( (pos == NULL) || !KTraits::CompareElements( static_cast< CPair* >( pos )->m_key, key ) )
{
pos = NULL;
}
return( pNode );
}
template< typename K, typename V, class KTraits, class VTraits >
const V& CRBMultiMap< K, V, KTraits, VTraits >::GetNextValueWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) const throw()
{
const CPair* pPair = GetNextWithKey( pos, key );
return( pPair->m_value );
}
template< typename K, typename V, class KTraits, class VTraits >
V& CRBMultiMap< K, V, KTraits, VTraits >::GetNextValueWithKey(
_Inout_ POSITION& pos,
/* _In_ */ KINARGTYPE key) throw()
{
CPair* pPair = GetNextWithKey( pos, key );
return( pPair->m_value );
}
#pragma pop_macro("new")
}; // namespace ATL
#pragma pack(pop)
#pragma warning(pop)
#endif // __ATLCOLL_H__
``` |
Gedikyolu is a village in the Elazığ District of Elazığ Province in Turkey. Its population is 140 (2021). The village is populated by Turks.
References
Villages in Elazığ District |
Ping Shan North () is one of the 39 constituencies in the Yuen Long District of Hong Kong.
The constituency returns one district councillor to the Yuen Long District Council, with an election every four years. Ping Shan North constituency is loosely based on northern part of Ping Shan with estimated population of 14,237.
Councillors represented
Election results
2010s
References
Ping Shan
Constituencies of Hong Kong
Constituencies of Yuen Long District Council
1991 establishments in Hong Kong
Constituencies established in 1991 |
In Greek mythology, the name Maeon or Maion () may refer to:
Maeon of Thebes, son of Haemon, endowed with prophetic abilities. He was one of the fifty men that laid an ambush against Tydeus when he came to Thebes as the messenger of the Seven against Thebes. Defending himself, Tydeus killed all these men except Maeon, who was to be spared in accordance with the gods' will. Later, when Tydeus fell in the war of the Seven, Maeon gave burial to him, a local Theban version of the myth asserts.
Maeon, son of Haemon and Antigone, appears in a version of the myth according to which Haemon disobeyed Creon's orders to kill Antigone and hid her in a village, where she gave birth to a son. When the boy grew up, he came to Thebes to participate in ritual games and was identified by Creon, as all the descendants of the Spartoi had a special mark on their bodies. Despite the objections of Heracles, Creon killed the young man; Haemon then took both Antigone's and his own lives.
Maeon of Troy, father of Agelaus; his son was killed by Ajax.
Maeon, an ally of Turnus, brother of Numitor and Alcanor. Was killed by Aeneas.
Maeon or Meion (), king of Lydia and Phrygia. He and his wife Dindyme are the possible parents of Cybele. He had his daughter exposed at Mount Cybelus, but she was suckled by leopards and survived.
Notes
References
Apollodorus, The Library with an English Translation by Sir James George Frazer, F.B.A., F.R.S. in 2 Volumes, Cambridge, MA, Harvard University Press; London, William Heinemann Ltd. 1921. . Online version at the Perseus Digital Library. Greek text available from the same website.
Diodorus Siculus, The Library of History translated by Charles Henry Oldfather. Twelve volumes. Loeb Classical Library. Cambridge, Massachusetts: Harvard University Press; London: William Heinemann, Ltd. 1989. Vol. 3. Books 4.59–8. Online version at Bill Thayer's Web Site
Diodorus Siculus, Bibliotheca Historica. Vol 1-2. Immanel Bekker. Ludwig Dindorf. Friedrich Vogel. in aedibus B. G. Teubneri. Leipzig. 1888-1890. Greek text available at the Perseus Digital Library.
Gaius Julius Hyginus, Fabulae from The Myths of Hyginus translated and edited by Mary Grant. University of Kansas Publications in Humanistic Studies. Online version at the Topos Text Project.
Homer, The Iliad with an English Translation by A.T. Murray, Ph.D. in two volumes. Cambridge, MA., Harvard University Press; London, William Heinemann, Ltd. 1924. . Online version at the Perseus Digital Library.
Homer, Homeri Opera in five volumes. Oxford, Oxford University Press. 1920. . Greek text available at the Perseus Digital Library.
Pausanias, Description of Greece with an English Translation by W.H.S. Jones, Litt.D., and H.A. Ormerod, M.A., in 4 Volumes. Cambridge, MA, Harvard University Press; London, William Heinemann Ltd. 1918. . Online version at the Perseus Digital Library
Pausanias, Graeciae Descriptio. 3 vols. Leipzig, Teubner. 1903. Greek text available at the Perseus Digital Library.
Publius Papinius Statius, The Thebaid translated by John Henry Mozley. Loeb Classical Library Volumes. Cambridge, MA, Harvard University Press; London, William Heinemann Ltd. 1928. Online version at the Topos Text Project.
Publius Papinius Statius, The Thebaid. Vol I-II. John Henry Mozley. London: William Heinemann; New York: G.P. Putnam's Sons. 1928. Latin text available at the Perseus Digital Library.
Publius Vergilius Maro, Aeneid. Theodore C. Williams. trans. Boston. Houghton Mifflin Co. 1910. Online version at the Perseus Digital Library.
Publius Vergilius Maro, Bucolics, Aeneid, and Georgics. J. B. Greenough. Boston. Ginn & Co. 1900. Latin text available at the Perseus Digital Library.
Quintus Smyrnaeus, The Fall of Troy translated by Way. A. S. Loeb Classical Library Volume 19. London: William Heinemann, 1913. Online version at theio.com
Quintus Smyrnaeus, The Fall of Troy. Arthur S. Way. London: William Heinemann; New York: G.P. Putnam's Sons. 1913. Greek text available at the Perseus Digital Library.
Kings in Greek mythology
Theban characters in Greek mythology |
Ellis Island Sound are an instrumental band from London, England, consisting of multi-instrumentalists Peter Astor (formerly of The Loft, The Weather Prophets) and David Sheppard (of State River Widening).
Background
The band formed in 1996, and their music varies from electronic-tinged soundscapes to neo-Krautrock and folk and African-tinged reveries.
Astor and Sheppard have also recorded and toured together with Matador recording artists The Wisdom Of Harry, while Sheppard makes records with State River Widening and in partnership with SRW's Keiron Phelan (for The Leaf Label) and for Anglo-Spanish group, Continental Film Night (Tinhorn/Dock) amongst others.
As a duo, EIS recorded for labels including All City Chicago, Faux-Lux, Static Caravan, Warp and Island and EMI, as well as remixing for other bands, including the Manic Street Preachers single "Ocean Spray". The band released their debut album, in 2002, which was compiled from these recordings and released by Heavenly/EMI.
This was followed by a limited edition, vinyl-only mini album (Home Service released by Static Caravan in 2003). EIS regrouped to record a self-styled 'agrarian' album, The Good Seed, in 2005. Released in February 2007 on the Peacefrog Records label, it was recorded in a tiny, deconsecrated chapel in the Waveney Valley on the Suffolk/Norfolk border. The Good Seed features twenty rustic-yet-sophisticated new recordings concocted from acoustic instruments that range from parlour guitars and ukuleles to pump harmoniums, dulcimers, goat skin drums and washboards. Recorded on an arcane 8-track tape recorder, it presented a stripped down EIS, though still finds room for such instruments as stylophones, a mini-sampler, a Bentley Rhythm Ace drum machine and miscellaneous noise making devices. Josh Hillman (of the Willard Grant Conspiracy) contributed violin, viola and pedal steel.
On completing the record, Astor and Sheppard expanded the band into a 12-piece 'The Ellis Island Sound Orchestra' for their 2007 tour of UK festivals.
Apart from some low-key appearances on beneath-the-radar compilations, EIS fell largely silent while Astor and Sheppard attended to their other projects. Astor released his Songbox solo album on Second Language in 2010 while Sheppard released an album, under the name Snow Palms, in conjunction with producer Chris Leary, in 2012.
EIS broke cover again in March 2014 with a 12" single, "Intro, Airborne, Travelling", on the Village Green label. A new album, Regions, which fuses Krauftrock, African highlife and dub techniques and featured vocals from Radiohead associate John Matthias, was released on 7 April 2014.
Discography
Albums
Ellis Island Sound (2002), Heavenly/EMI
Home Service (2003), Static Caravan
The Good Seed (2007), Peacefrog
Regions (2014), Village Green
Singles and EPs
All City EP
"Data Centre" (1999), Faux-Lux
"#7 Goes East" (2000), Static Caravan
"Gene Pool" (2006), Static Caravan
"Intro, Airborne, Travelling" (2014), Village Green
References
British instrumental musical groups
English musical duos
Musical groups from London
Heavenly Recordings artists
Peacefrog Records artists |
JSC "Donavia" (), also known as Aeroflot-Don () between 2000–2009, was an Aeroflot subsidiary airline based in Rostov-on-Don, Russia. Its main bases were Rostov-on-Don Airport and Mineralnye Vody Airport after the Kavminvodyavia bankruptcy. In the spring of 2016, its operations were merged into sister company Rossiya.
History
The airline was established on 15 June 1925 as a squadron under the Soviet airline Aeroflot, following the dissolution of the Soviet Union in 1991, it was rebranded as Don Airlines ("Donavia") in 1993. It absorbed the Rostov assets of Aeroflot, and was one of many such "Babyflots" to emerge in the early 1990s. However, the airline was purchased by Aeroflot in 2000 and began to operate as Aeroflot-Don on 13 April 2000. It operated scheduled domestic and international passenger flights as well as passenger and cargo charters, mostly to the Middle East and within Russia. On 25 September 2009, the airline reverted to the Donavia brand name.
Destinations
Donavia served the following destinations before its merger with Rossiya:
Asia
Central Asia
Dushanbe – Dushanbe International Airport
Khujand – Khujand Airport
Tashkent – Tashkent International Airport
Western Asia
Yerevan – Zvartnots International Airport
Tel Aviv – Ben Gurion International Airport
Antalya – Antalya Airport
Istanbul – Istanbul Atatürk Airport
Europe
Krasnodar – Krasnodar International Airport
Mineralnye Vody – Mineralnye Vody Airport Focus City
Moscow Focus City
Moscow Domodedovo Airport
Vnukovo International Airport
Novosibirsk – Tolmachevo Airport
Rostov-on-Don – Rostov-on-Don Airport Hub
Saint Petersburg – Pulkovo Airport
Sochi – Sochi International Airport Focus City
Stavropol – Stavropol Shpakovskoye Airport
Volgograd – Volgograd International Airport
Yekaterinburg – Koltsovo Airport
/
Simferopol – Simferopol International Airport
The political status of Crimea is the subject of a political and territorial dispute between Russia and Ukraine.
Fleet
In April 2016, the entire Donavia fleet was reassigned to Rossiya.
References
External links
Defunct airlines of Russia
Russian companies established in 1992
2016 disestablishments in Russia
Airlines established in 1992
Airlines disestablished in 2016
Former Aeroflot divisions
Former SkyTeam affiliate members
Companies based in Rostov-on-Don |
Arlington Heights is one of two commuter railroad stations along Metra's Union Pacific Northwest Line in the village of Arlington Heights, Illinois. The station is located at 45 West Northwest Highway (US 14), between Vail and Dunton Avenues, and lies from Ogilvie Transportation Center in Chicago and from Harvard. In Metra's zone-based fare system, Arlington Heights is in zone E. , Arlington Heights is the fifth busiest of the 236 non-downtown stations in the Metra system, with an average of 2,506 weekday boardings.
As of May 30, 2023, Arlington Heights is served by 62 trains (31 in each direction) on weekdays, by all 34 trains (17 in each direction) on Saturdays, and by all 21 trains (10 inbound, 11 outbound) on Sundays. One inbound train originates from Arlington Heights on weekends and holidays.
Parking is available along Northwest Highway and the north side of the tracks from east of Walnut Avenue to Dunton Avenue. It is also available on the south side of the tracks between Vail and Dunton Avenues leading into Payton Run. A much larger parking lot exists on the south side of the track between Evergreen Avenue and Arlington Heights Road north of Sigwalt Street. A fourth parking lot is available north of US 14 along Vail Avenue between St. James and Fremont Streets. Three others are not available to commuters.
There is a newsstand, restroom and staffed (weekday mornings) ticket agent inside the station building.
Pace Bus Connections
696 Harper College/Woodfield/Arlington Heights/Randhurst
References
External links
Station from Dunton Avenue from Google Maps Street View
Metra stations in Illinois
Station
Former Chicago and North Western Railway stations
Railway stations in Cook County, Illinois
Railway stations in the United States opened in 2000 |
```objective-c
//
// corecrt_wstdlib.h
//
//
// This file declares the wide character (wchar_t) C Standard Library functions
// that are declared by both <stdlib.h> and <wchar.h>.
//
#pragma once
#include <corecrt.h>
#pragma warning(push)
#pragma warning(disable: _UCRT_DISABLED_WARNINGS)
_UCRT_DISABLE_CLANG_WARNINGS
_CRT_BEGIN_C_HEADER
// Maximum number of elements, including null terminator (and negative sign
// where appropriate), needed for integer-to-string conversions for several
// bases and integer types.
#define _MAX_ITOSTR_BASE16_COUNT (8 + 1)
#define _MAX_ITOSTR_BASE10_COUNT (1 + 10 + 1)
#define _MAX_ITOSTR_BASE8_COUNT (11 + 1)
#define _MAX_ITOSTR_BASE2_COUNT (32 + 1)
#define _MAX_LTOSTR_BASE16_COUNT (8 + 1)
#define _MAX_LTOSTR_BASE10_COUNT (1 + 10 + 1)
#define _MAX_LTOSTR_BASE8_COUNT (11 + 1)
#define _MAX_LTOSTR_BASE2_COUNT (32 + 1)
#define _MAX_ULTOSTR_BASE16_COUNT (8 + 1)
#define _MAX_ULTOSTR_BASE10_COUNT (10 + 1)
#define _MAX_ULTOSTR_BASE8_COUNT (11 + 1)
#define _MAX_ULTOSTR_BASE2_COUNT (32 + 1)
#define _MAX_I64TOSTR_BASE16_COUNT (16 + 1)
#define _MAX_I64TOSTR_BASE10_COUNT (1 + 19 + 1)
#define _MAX_I64TOSTR_BASE8_COUNT (22 + 1)
#define _MAX_I64TOSTR_BASE2_COUNT (64 + 1)
#define _MAX_U64TOSTR_BASE16_COUNT (16 + 1)
#define _MAX_U64TOSTR_BASE10_COUNT (20 + 1)
#define _MAX_U64TOSTR_BASE8_COUNT (22 + 1)
#define _MAX_U64TOSTR_BASE2_COUNT (64 + 1)
#if _CRT_FUNCTIONS_REQUIRED
_Success_(return == 0)
_Check_return_wat_
_ACRTIMP errno_t __cdecl _itow_s(
_In_ int _Value,
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_ int _Radix
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_1(
errno_t, _itow_s,
_In_ int, _Value,
wchar_t, _Buffer,
_In_ int, _Radix
)
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(
wchar_t*, __RETURN_POLICY_DST, _ACRTIMP, _itow,
_In_ int, _Value,
_Pre_notnull_ _Post_z_, wchar_t, _Buffer,
_In_ int, _Radix
)
_Success_(return == 0)
_Check_return_wat_
_ACRTIMP errno_t __cdecl _ltow_s(
_In_ long _Value,
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_ int _Radix
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_1(
errno_t, _ltow_s,
_In_ long, _Value,
wchar_t, _Buffer,
_In_ int, _Radix
)
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(
wchar_t*, __RETURN_POLICY_DST, _ACRTIMP, _ltow,
_In_ long, _Value,
_Pre_notnull_ _Post_z_, wchar_t, _Buffer,
_In_ int, _Radix
)
_Check_return_wat_
_ACRTIMP errno_t __cdecl _ultow_s(
_In_ unsigned long _Value,
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_ int _Radix
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_1(
errno_t, _ultow_s,
_In_ unsigned long, _Value,
wchar_t, _Buffer,
_In_ int, _Radix
)
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_1_1(
wchar_t*, __RETURN_POLICY_DST, _ACRTIMP, _ultow,
_In_ unsigned long, _Value,
_Pre_notnull_ _Post_z_, wchar_t, _Buffer,
_In_ int, _Radix
)
_Check_return_
_ACRTIMP double __cdecl wcstod(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr
);
_Check_return_
_ACRTIMP double __cdecl _wcstod_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP long __cdecl wcstol(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix
);
_Check_return_
_ACRTIMP long __cdecl _wcstol_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP long long __cdecl wcstoll(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix
);
_Check_return_
_ACRTIMP long long __cdecl _wcstoll_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP unsigned long __cdecl wcstoul(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix
);
_Check_return_
_ACRTIMP unsigned long __cdecl _wcstoul_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP unsigned long long __cdecl wcstoull(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix
);
_Check_return_
_ACRTIMP unsigned long long __cdecl _wcstoull_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP long double __cdecl wcstold(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr
);
_Check_return_
_ACRTIMP long double __cdecl _wcstold_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP float __cdecl wcstof(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr
);
_Check_return_
_ACRTIMP float __cdecl _wcstof_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP double __cdecl _wtof(
_In_z_ wchar_t const* _String
);
_Check_return_
_ACRTIMP double __cdecl _wtof_l(
_In_z_ wchar_t const* _String,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP int __cdecl _wtoi(
_In_z_ wchar_t const* _String
);
_Check_return_
_ACRTIMP int __cdecl _wtoi_l(
_In_z_ wchar_t const* _String,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP long __cdecl _wtol(
_In_z_ wchar_t const* _String
);
_Check_return_
_ACRTIMP long __cdecl _wtol_l(
_In_z_ wchar_t const* _String,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP long long __cdecl _wtoll(
_In_z_ wchar_t const* _String
);
_Check_return_
_ACRTIMP long long __cdecl _wtoll_l(
_In_z_ wchar_t const* _String,
_In_opt_ _locale_t _Locale
);
_Check_return_wat_
_ACRTIMP errno_t __cdecl _i64tow_s(
_In_ __int64 _Value,
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_ int _Radix
);
_CRT_INSECURE_DEPRECATE(_i64tow_s)
_ACRTIMP wchar_t* __cdecl _i64tow(
_In_ __int64 _Value,
_Pre_notnull_ _Post_z_ wchar_t* _Buffer,
_In_ int _Radix
);
_Check_return_wat_
_ACRTIMP errno_t __cdecl _ui64tow_s(
_In_ unsigned __int64 _Value,
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_ int _Radix
);
_CRT_INSECURE_DEPRECATE(_ui64tow_s)
_ACRTIMP wchar_t* __cdecl _ui64tow(
_In_ unsigned __int64 _Value,
_Pre_notnull_ _Post_z_ wchar_t* _Buffer,
_In_ int _Radix
);
_Check_return_
_ACRTIMP __int64 __cdecl _wtoi64(
_In_z_ wchar_t const* _String
);
_Check_return_
_ACRTIMP __int64 __cdecl _wtoi64_l(
_In_z_ wchar_t const* _String,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP __int64 __cdecl _wcstoi64(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix
);
_Check_return_
_ACRTIMP __int64 __cdecl _wcstoi64_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix,
_In_opt_ _locale_t _Locale
);
_Check_return_
_ACRTIMP unsigned __int64 __cdecl _wcstoui64(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix
);
_Check_return_
_ACRTIMP unsigned __int64 __cdecl _wcstoui64_l(
_In_z_ wchar_t const* _String,
_Out_opt_ _Deref_post_z_ wchar_t** _EndPtr,
_In_ int _Radix,
_In_opt_ _locale_t _Locale
);
#pragma push_macro("_wfullpath")
#undef _wfullpath
_Success_(return != 0)
_Check_return_
_ACRTIMP _CRTALLOCATOR wchar_t* __cdecl _wfullpath(
_Out_writes_opt_z_(_BufferCount) wchar_t* _Buffer,
_In_z_ wchar_t const* _Path,
_In_ size_t _BufferCount
);
#pragma pop_macro("_wfullpath")
_Check_return_wat_
_ACRTIMP errno_t __cdecl _wmakepath_s(
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_opt_z_ wchar_t const* _Drive,
_In_opt_z_ wchar_t const* _Dir,
_In_opt_z_ wchar_t const* _Filename,
_In_opt_z_ wchar_t const* _Ext
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_0_4(
errno_t, _wmakepath_s,
wchar_t, _Buffer,
_In_opt_z_ wchar_t const*, _Drive,
_In_opt_z_ wchar_t const*, _Dir,
_In_opt_z_ wchar_t const*, _Filename,
_In_opt_z_ wchar_t const*, _Ext
)
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_0_4(
void, __RETURN_POLICY_VOID, _ACRTIMP, _wmakepath,
_Pre_notnull_ _Post_z_, wchar_t, _Buffer,
_In_opt_z_ wchar_t const*, _Drive,
_In_opt_z_ wchar_t const*, _Dir,
_In_opt_z_ wchar_t const*, _Filename,
_In_opt_z_ wchar_t const*, _Ext
)
_ACRTIMP void __cdecl _wperror(
_In_opt_z_ wchar_t const* _ErrorMessage
);
_CRT_INSECURE_DEPRECATE(_wsplitpath_s)
_ACRTIMP void __cdecl _wsplitpath(
_In_z_ wchar_t const* _FullPath,
_Pre_maybenull_ _Post_z_ wchar_t* _Drive,
_Pre_maybenull_ _Post_z_ wchar_t* _Dir,
_Pre_maybenull_ _Post_z_ wchar_t* _Filename,
_Pre_maybenull_ _Post_z_ wchar_t* _Ext
);
_ACRTIMP errno_t __cdecl _wsplitpath_s(
_In_z_ wchar_t const* _FullPath,
_Out_writes_opt_z_(_DriveCount) wchar_t* _Drive,
_In_ size_t _DriveCount,
_Out_writes_opt_z_(_DirCount) wchar_t* _Dir,
_In_ size_t _DirCount,
_Out_writes_opt_z_(_FilenameCount) wchar_t* _Filename,
_In_ size_t _FilenameCount,
_Out_writes_opt_z_(_ExtCount) wchar_t* _Ext,
_In_ size_t _ExtCount
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_SPLITPATH(
errno_t, _wsplitpath_s,
wchar_t, _Path
)
#pragma push_macro("_wdupenv_s")
#undef _wdupenv_s
_Check_return_wat_
_DCRTIMP errno_t __cdecl _wdupenv_s(
_Outptr_result_buffer_maybenull_(*_BufferCount) _Outptr_result_maybenull_z_ wchar_t** _Buffer,
_Out_opt_ size_t* _BufferCount,
_In_z_ wchar_t const* _VarName
);
#pragma pop_macro("_wdupenv_s")
_Check_return_ _CRT_INSECURE_DEPRECATE(_wdupenv_s)
_DCRTIMP wchar_t* __cdecl _wgetenv(
_In_z_ wchar_t const* _VarName
);
_Success_(return == 0)
_Check_return_wat_
_DCRTIMP errno_t __cdecl _wgetenv_s(
_Out_ size_t* _RequiredCount,
_Out_writes_opt_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount,
_In_z_ wchar_t const* _VarName
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_1_1(
_Success_(return == 0)
errno_t, _wgetenv_s,
_Out_ size_t*, _RequiredCount,
wchar_t, _Buffer,
_In_z_ wchar_t const*, _VarName
)
_Check_return_
_DCRTIMP int __cdecl _wputenv(
_In_z_ wchar_t const* _EnvString
);
_Check_return_wat_
_DCRTIMP errno_t __cdecl _wputenv_s(
_In_z_ wchar_t const* _Name,
_In_z_ wchar_t const* _Value
);
_DCRTIMP errno_t __cdecl _wsearchenv_s(
_In_z_ wchar_t const* _Filename,
_In_z_ wchar_t const* _VarName,
_Out_writes_z_(_BufferCount) wchar_t* _Buffer,
_In_ size_t _BufferCount
);
__DEFINE_CPP_OVERLOAD_SECURE_FUNC_2_0(
errno_t, _wsearchenv_s,
_In_z_ wchar_t const*, _Filename,
_In_z_ wchar_t const*, _VarName,
wchar_t, _ResultPath
)
__DEFINE_CPP_OVERLOAD_STANDARD_FUNC_2_0(
void, __RETURN_POLICY_VOID, _DCRTIMP, _wsearchenv,
_In_z_ wchar_t const*, _Filename,
_In_z_ wchar_t const*, _VarName,
_Pre_notnull_ _Post_z_, wchar_t, _ResultPath
)
_DCRTIMP int __cdecl _wsystem(
_In_opt_z_ wchar_t const* _Command
);
#endif // _CRT_FUNCTIONS_REQUIRED
_CRT_END_C_HEADER
_UCRT_RESTORE_CLANG_WARNINGS
#pragma warning(pop) // _UCRT_DISABLED_WARNINGS
``` |
Kankaleshwar Temple is a temple located in the town of Beed, in the Indian state of Maharashtra.
History
The temple bears no inscription, and therefore the exact date of its erection is unknown. However, from the style of its construction, it was probably built between the 10th and 12th centuries.
Firishta mentions the locality of the temple as a site where a battle between a Hindu and Muslim kingdom took place. The temple fell into the hands of the Muslim kingdom, however, they made no changes to the structure except for the construction of a parapet wall on the roof. The Muslims would utilize the roof for their prayers, while the lower portion remained in possession of the Hindus. The temple was known as the Khanqah temple, or Khanqah Deval, during this period.
Description
The temple is located in the middle of a tank. The tank, square in shape, has a pavement running along its sides. The temple is to be approached by a causeway which leads to a flight of steps, leading to the temple building.
The building is star-shaped, with elaborate carvings of Hindu gods and goddesses arranged in niches.
The roof is domical-shaped, and is supported by 24 pillars.
References
Shiva temples
Hindu temples in Maharashtra |
Abubakar Moro (born 17 August 1991) is a Ghanaian professional footballer who plays for FK Donji Srem in the Serbian SuperLiga
Career
Moro Abubakar has played for several Ghanaian teams and has been playing as a midfielder at Hearts of Oak in the Ghana Premier League where he made 84 appearances and scored 1 goal between 2010 and 2013, although he played with Hearts of Oak between 2009 and 2014. Moro became part of the 2011–12 Ghanaian Premier League team of the season.
On September 12, 2014, he arrived to Serbia and signed a 3-year contract with Serbian SuperLiga side FK Donji Srem and was attributed a shirt number 50 (shortly afterwards changed to number 5). He made his debut in the SuperLiga as a starter in the round 6 match against FK Čukarički i a 1–1 draw.
International career
In November 2013, coach Maxwell Konadu invited him to be a part of the Ghana squad for the 2013 WAFU Nations Cup. He helped the team to a first-place finish after Ghana beat Senegal by three goals to one.
He has one appearance for main Ghana national team in the friendly match played against Libya on August 30, 2013.
Honours
Ghana Premier League: 2011–12 team of the season
References
Living people
1991 births
Footballers from Accra
Ghanaian men's footballers
Ghana men's international footballers
Accra Hearts of Oak S.C. players
FK Donji Srem players
Serbian SuperLiga players
Expatriate men's footballers in Serbia
Men's association football midfielders |
Pollex maxima is a moth of the family Erebidae first described by Michael Fibiger in 2007. It is known from Java.
The wingspan is about 15 mm. The forewing is relatively broad and long and brown, with the costa blackish brown in the medial area. The hindwing is unicolorous brown with an indistinct black discal spot and the underside unicolorous brown.
References
Micronoctuini
Taxa named by Michael Fibiger
Moths described in 2007 |
```objective-c
#ifndef RBIMPL_ROBJECT_H /*-*-C++-*-vi:se ft=cpp:*/
#define RBIMPL_ROBJECT_H
/**
* @file
* @author Ruby developers <ruby-core@ruby-lang.org>
* @copyright This file is a part of the programming language Ruby.
* Permission is hereby granted, to either redistribute and/or
* modify this file, provided that the conditions mentioned in the
* file COPYING are met. Consult the file for details.
* @warning Symbols prefixed with either `RBIMPL` or `rbimpl` are
* implementation details. Don't take them as canon. They could
* rapidly appear then vanish. The name (path) of this header file
* is also an implementation detail. Do not expect it to persist
* at the place it is now. Developers are free to move it anywhere
* anytime at will.
* @note To ruby-core: remember that this header can be possibly
* recursively included from extension libraries written in C++.
* Do not expect for instance `__VA_ARGS__` is always available.
* We assume C99 for ruby itself but we don't assume languages of
* extension libraries. They could be written in C++98.
* @brief Defines struct ::RObject.
*/
#include "ruby/internal/config.h"
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include "ruby/internal/attr/artificial.h"
#include "ruby/internal/attr/deprecated.h"
#include "ruby/internal/attr/pure.h"
#include "ruby/internal/cast.h"
#include "ruby/internal/fl_type.h"
#include "ruby/internal/value.h"
#include "ruby/internal/value_type.h"
/**
* Convenient casting macro.
*
* @param obj An object, which is in fact an ::RObject.
* @return The passed object casted to ::RObject.
*/
#define ROBJECT(obj) RBIMPL_CAST((struct RObject *)(obj))
/** @cond INTERNAL_MACRO */
#define ROBJECT_EMBED_LEN_MAX ROBJECT_EMBED_LEN_MAX
#define ROBJECT_EMBED ROBJECT_EMBED
#define ROBJECT_IV_CAPACITY ROBJECT_IV_CAPACITY
#define ROBJECT_IVPTR ROBJECT_IVPTR
/** @endcond */
/**
* @private
*
* Bits that you can set to ::RBasic::flags.
*/
enum ruby_robject_flags {
/**
* This flag has something to do with memory footprint. If the object is
* "small" enough, ruby tries to be creative to abuse padding bits of
* struct ::RObject for storing instance variables. This flag denotes that
* situation.
*
* @warning This bit has to be considered read-only. Setting/clearing
* this bit without corresponding fix up must cause immediate
* SEGV. Also, internal structures of an object change
* dynamically and transparently throughout of its lifetime.
* Don't assume it being persistent.
*
* @internal
*
* 3rd parties must not be aware that there even is more than one way to
* store instance variables. Might better be hidden.
*/
ROBJECT_EMBED = RUBY_FL_USER1
};
#if !USE_RVARGC
/**
* This is an enum because GDB wants it (rather than a macro). People need not
* bother.
*/
enum ruby_robject_consts {
/** Max possible number of instance variables that can be embedded. */
ROBJECT_EMBED_LEN_MAX = RBIMPL_EMBED_LEN_MAX_OF(VALUE)
};
#endif
struct st_table;
/**
* Ruby's ordinal objects. Unless otherwise special cased, all predefined and
* user-defined classes share this struct to hold their instances.
*/
struct RObject {
/** Basic part, including flags and class. */
struct RBasic basic;
/** Object's specific fields. */
union {
/**
* Object that use separated memory region for instance variables use
* this pattern.
*/
struct {
/** Pointer to a C array that holds instance variables. */
VALUE *ivptr;
/**
* This is a table that holds instance variable name to index
* mapping. Used when accessing instance variables using names.
*
* @internal
*
* This is a shortcut for `RCLASS_IV_INDEX_TBL(rb_obj_class(obj))`.
*/
struct rb_id_table *iv_index_tbl;
} heap;
#if USE_RVARGC
/* Embedded instance variables. When an object is small enough, it
* uses this area to store the instance variables.
*
* This is a length 1 array because:
* 1. GCC has a bug that does not optimize C flexible array members
* (path_to_url
* 2. Zero length arrays are not supported by all compilers
*/
VALUE ary[1];
#else
/**
* Embedded instance variables. When an object is small enough, it
* uses this area to store the instance variables.
*/
VALUE ary[ROBJECT_EMBED_LEN_MAX];
#endif
} as;
};
/* Offsets for YJIT */
#ifndef __cplusplus
static const int32_t ROBJECT_OFFSET_AS_HEAP_IVPTR = offsetof(struct RObject, as.heap.ivptr);
static const int32_t ROBJECT_OFFSET_AS_HEAP_IV_INDEX_TBL = offsetof(struct RObject, as.heap.iv_index_tbl);
static const int32_t ROBJECT_OFFSET_AS_ARY = offsetof(struct RObject, as.ary);
#endif
RBIMPL_ATTR_PURE_UNLESS_DEBUG()
RBIMPL_ATTR_ARTIFICIAL()
/**
* Queries the instance variables.
*
* @param[in] obj Object in question.
* @return Its instance variables, in C array.
* @pre `obj` must be an instance of ::RObject.
*
* @internal
*
* @shyouhei finds no reason for this to be visible from extension libraries.
*/
static inline VALUE *
ROBJECT_IVPTR(VALUE obj)
{
RBIMPL_ASSERT_TYPE(obj, RUBY_T_OBJECT);
struct RObject *const ptr = ROBJECT(obj);
if (RB_FL_ANY_RAW(obj, ROBJECT_EMBED)) {
return ptr->as.ary;
}
else {
return ptr->as.heap.ivptr;
}
}
#endif /* RBIMPL_ROBJECT_H */
``` |
Jeremy Larter is a Canadian actor, film director and screenwriter from Prince Edward Island. He is most noted for his 2018 film Pogey Beach, which won the Canadian Comedy Award for Best Feature Film at the 19th Canadian Comedy Awards in 2019. Larter also received nominations for Best Direction in a Feature Film and Best Writing in a Feature Film.
Larter had a number of roles as an actor, most notably in the 2012 film S.I.N. Theory, before creating and starring in the web series Just Passing Through in 2013. The series won the Canadian Comedy Award for Best Web Series at the 17th Canadian Comedy Awards in 2016.
Pogey Beach, his theatrical feature debut, expanded on the in-universe story of a fictional television show watched by the main characters in Just Passing Through.
His second feature film as a director, Who's Yer Father?, premiered at the 2023 Atlantic International Film Festival.
References
External links
21st-century Canadian male actors
21st-century Canadian male writers
21st-century Canadian screenwriters
Canadian male film actors
Canadian male web series actors
Canadian male screenwriters
Film directors from Prince Edward Island
Male actors from Prince Edward Island
Writers from Prince Edward Island
Living people
Year of birth missing (living people) |
Cowbellpedia Secondary Schools Mathematics TV Quiz Show is a Nigerian national mathematics television quiz show that debuted in 2015. It was created by Oladapo Ojo.
Historical background
The initiative began in 1998 as Cowbell National Secondary School Mathematics Competition (NASSMAC) when it was a written examination without a TV show.
Since 1998, the Cowbell brand has been involved in promoting the study of mathematics in secondary schools across Nigeria. In the process, it has helped millions of students develop an interest in and gain a better understanding of the subject. The project is designed to identify, recognize, and reward excellence in the study of mathematics. The programme is deployed in public and private schools. It serves students between the ages of eight and eighteen.
In 2015, Promasidor Nigeria (PNG) became a sponsor of Cowbellpedia. Their sponsorship made the programme more robust. In the same year, the initiative took a new dimension when it was split into two stages. The Stage One is the Qualifying Examination (written exam in designated centres across the country) and the Stage two is the TV quiz competition.
Since 2016, Cowbell-Our Milk has decided to bring all its mathematics intervention activities under one umbrella, Cowbellpedia. The top prize was increased to 2 million Nigerian Naira in 2018 so as to celebrate the 20 years anniversary of the Mathematics competition initiative.
Cowbellpedia is an annual mathematics intervention for young students in Nigeria with many touch points. It is approved by the Federal Ministry of Education and endorsed by National Examination Council (NECO), the National Examination body for secondary schools in Nigeria.
After schools must have duly completed their registration on www.cowbellpedia.ng, all the eligible students are expected to write a national qualifying examination, administered by NECO, at designated centers closest to them. The results are released online every 1 June, to commemorate World Milk Day.
From the students that write the examinations annually, the best 108 (54 junior and 54 senior students) converge in Lagos along with their mathematics teachers to attend the quiz show.
Objectives
To demystify myths about the difficulty in studying and understanding mathematics by identifying and rewarding excellence amongst students, thereby entrenching Cowbell as the brand that delivers the needed ingredient for healthy physical growth and brain development.
To raise the standard of schools’ education through unbiased engaging tools that would promote sound education, using a holistic platform that is engaging, educative and entertaining.
To practically demonstrate the symbiotic relationship between Mathematics and Technology, thereby sustaining a keen interest of schools, parents, teachers and other stakeholders, in ensuring good education for their children.
Cowbellpedia National Qualifying Examination
After schools must have duly completed their registration on www.cowbellpedia.ng, all the eligible students are expected to write a national qualifying examination at designated centers closest to them.
The Mathematics Competition is open to students from 10 – 18 years of age who attend full-time Secondary Education in both Public and Private Schools in Nigeria. Entry into this competition is free.
Each school is required to present their best ten students in mathematics (five from JSS3 and five from SSS2), irrespective of gender, religion, tribe or state of origin, to enhance their chances of qualifying for the next stage of the competition.
To encourage the education of girls, mixed schools are asked to nominate a minimum of two girls for each category to represent their school.
TV series
From the large number of students that write the examinations annually, the best 108 will converge in Lagos along with their teachers for the ultimate prize of the Best Mathematics student of the year.
Selection Process of the 108 Students for The TV Quiz:
17 National Winners + 37 State winners = 54 Students per category
17 National Winners – these students are the top 17 students who have scored the highest marks in the examinations, irrespective of their state of origin.
37 State Winners – these students are selected as state representatives, having scored the highest marks in their states.
The TV series is in three stages:
Preliminaries – 9 episodes
Semi Finals – 3 episodes
Final – 1 episode
After the first season, other episodes were created to add value to the project, such as the Cowbellpedia Teachers’ edition, the documentary insert of the profile of the finalists etc.
Thousands of questions generated by NECO are loaded into the software per season and spread across different categories and syllabus.
The Cowbellpedia series is packaged as 55 Mins X 16 episodes, transmitted across Africa on Africa Magic on DSTV, AIT Network and six major stations across key cities, and available globally on YouTube and Facebook.
Winners
Touch points
Cowbellpedia Radio
Cowbellpedia Radio is a mathematics radio clinic created for secondary school students to aid their learning ability through teaching and solving math questions sent in by students/teachers via text and electronic platforms.
It is a five-minute math class transmitted thrice weekly, round the year, across ten key radio stations spread across Nigeria.
The program treats math topics and exercises with much opportunity for feedback and interaction.
Mobile app
Beyond the few weeks of running the project, there came the need to have a constant touch where students can dial-up and improve their math skills, hence the commissioning of the CowbellPedia mobile app initiative.
The Cowbellpedia mobile app is created to encourage students to practice their mathematics skills on their mobile devices.
Categories: Junior/Senior
Stages: 13/season
Levels: 3
Platforms:
Web – www.play.cowbellpedia
Android - on Google Play
iOS - available on App Store
Compendium
An up-to-date compilation of all the past questions used on the show (2015–2017) with the correct answers and tutorials, compiled and published for free distribution to secondary school/students across Nigeria.
Over 6,400 Q&A covering all the topics to be published in over three volumes as practice kit for students based on approved curriculum.
Volume 1 print run was 2,000 copies (Junior and Senior) used as incentive for schools during the registration for the Stage 1 Qualifying Examination.
Academy
This is an initiative specifically created to drive support and interest in math and science among the Nigerian students. This is in collaboration with top-notch foreign universities who were on ground to workshop students and teachers across Nigeria.
All these are geared towards nourishing the dreams of Nigerian children by providing a platform that recognizes and rewards excellence in mathematics, in addition to the quality nutrition that is provided by the Cowbell brand for the nourishment of the Nigerian populace, especially children.
The maiden edition of the initiative took place in three major cities: Lagos, Abuja, and Portharcourt in August 2018 and was facilitated by:
Professor Bernardo Recamán Santos, a professor of mathematics at The Colegio San Carlos, Columbia.
Professor Karam Aloui of the Faculty of Sciences of Sfax, Tunisia.
Cowbellpedia Milk Of Kindness
The Cowbellpedia Milk of Kindness is a special docufeature created as part of the activities to commemorate the 20th Anniversary of the relationship between Cowbell and Math.
The docufeature highlighted the stories of:
Hamzat Dankanawa, a teacher with Nigerian Tulip International College, Abuja, who has consistently presented qualified students for the project.
Prince Otunnubi Samson, a teacher with the Federal Government Academy Suleja with over 25 years of experience.
Munachi Ernest-Eze, of Loyola Jesuit College, Abuja, a two-time Cowbellpedia champion (Junior and Senior categories).
Teachers edition
The Teachers edition of the competition was conceived to mark the World Teachers' Day. Teachers of the 12 finalists in the Junior and Senior categories of the competition partake in the final of the TV recording segment, and the winners are awarded cash and gifts.
Notable winners
Munachi Ernest-Eze of Loyola Jesuit College became the first contestant to win the competition in both categoriesn: as a junior student in 2015 and as a senior student in 2017. For this feat, he won a full scholarship to study aerospace engineering at the University of Toronto in Canada and also received education support funds from Promasidor Nigeria.
See also
List of mathematics competitions
References
Nigerian game shows
Mathematics competitions |
Holeszów PGR is a village in the administrative district of Gmina Hanna, within Włodawa County, Lublin Voivodeship, in eastern Poland, close to the border with Belarus. It lies approximately north-west of Włodawa and north-east of the regional capital Lublin.
References
Villages in Włodawa County |
```objective-c
//===- DCE.h - Dead code elimination ----------------------------*- C++ -*-===//
//
// See path_to_url for license information.
//
//===your_sha256_hash------===//
//
// This file provides the interface for the Dead Code Elimination pass.
//
//===your_sha256_hash------===//
#ifndef LLVM_TRANSFORMS_SCALAR_DCE_H
#define LLVM_TRANSFORMS_SCALAR_DCE_H
#include "llvm/IR/Function.h"
#include "llvm/IR/PassManager.h"
namespace llvm {
/// Basic Dead Code Elimination pass.
class DCEPass : public PassInfoMixin<DCEPass> {
public:
PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
};
}
#endif // LLVM_TRANSFORMS_SCALAR_DCE_H
``` |
Ivan Pejčić (Serbian Cyrillic: Иван Пејчић; born 11 September 1982) is a Serbian footballer who plays as a striker. He took Macedonian citizenship in 2006 to be able to play for the Macedonian national football team. In 2008, he won the Macedonian Championship and the Macedonian Cup with FK Rabotnički.
On 10 July 2008 he signed for FC Aarau of the Swiss Super League.
Honours
Macedonian First Football League: 2007–08
Macedonian Football Cup: 2007–08
Best foreign player in Prva Liga: 2005 and 2006
External links
FC Aarau profile
Swiss Football League profile
References
1982 births
Living people
Footballers from Niš
Serbian men's footballers
Men's association football forwards
FK Obilić players
FK Radnički Niš players
FK Radnički 1923 players
FK Rabotnički players
FC Aarau players
FK Jagodina players
Enosis Neon Paralimni FC players
Expatriate men's footballers in Switzerland
Expatriate men's footballers in Cyprus |
Władysław Dąbrowski (born 21 September 1947) is a Polish former footballer who last played as a striker for Ursus Warszawa.
Playing career
In 1973, Dąbrowski signed for Polish side Legia Warszawa, where he was regarded as one of the club's most important players.
Post-playing career
After retiring from professional football, Dąbrowski worked as a football referee, where he was described as "famous in the football community for reporting the cash he received - PLN 300,000 - and bringing it to the Polish Football Association".
Personal life
Dąbrowski has been married.
References
Living people
1947 births
Expatriate men's footballers in Finland
Polish expatriate men's footballers
Polish expatriate sportspeople in Finland
Polish men's footballers
Men's association football forwards
Legia Warsaw players
Oulun Työväen Palloilijat players
Widzew Łódź players
Ekstraklasa players |
An Impossible Love () is a 2018 French romantic drama film co-written and directed by Catherine Corsini, based on the 2015 novel of the same name by Christine Angot. Starring Virginie Efira, Niels Schneider and Jehnny Beth, the film chronicles the life of office worker Rachel as she falls in love with the wealthy Philippe, gives birth to their daughter Chantal, and raises Chantal as a single mother while maintaining a complicated relationship with Philippe.
Plot
In the late 1950s in Châteauroux, France, Rachel, a modest office worker, meets Philippe, a brilliant young man born to a bourgeois family. This brief but passionate connection results in the birth of a daughter, Chantal. Philippe refuses to marry outside of his social class and Rachel has to raise their daughter alone. Regardless, Chantal is a great source of happiness for Rachel. She wishes for Philippe to legally acknowledge his daughter, which would give her his last name. A battle of more than ten years ensues, which will eventually break up all of their lives.
Cast
Virginie Efira as Rachel Steiner
Niels Schneider as Philippe Arnold
Jehnny Beth as Chantal
Ambre Hasaj as Chantal at 3–5 years old
Sasha Alessandri-Torrès Garcia as Chantal at 6–8 years old
Estelle Lescure as Chantal in adolescence
Reception
In France, the film averages 3,7/5 on the AlloCiné from 32 press reviews. On the review aggregator website Rotten Tomatoes, the film holds an approval rating of 100% based on reviews from 21 critics, with an average rating of 7.3/10.
References
External links
2018 films
2018 romantic drama films
2010s French films
2010s French-language films
Films based on French novels
Films directed by Catherine Corsini
Films set in the 1950s
Films set in France
France 3 Cinéma films
French romantic drama films
Incest in film
Le Pacte films |
```html
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0; URL=doc/html/smart_ptr.html">
</head>
<body>
<p>
Automatic redirection failed, please go to
<a href="doc/html/smart_ptr.html">doc/html/smart_ptr.html</a>.
</p>
</body>
</html>
<!--
See accompanying file LICENSE_1_0.txt or copy at
path_to_url
-->
``` |
Kalistrat Zografski or Kalistrat of Zograf (; ; 1821 – 1914) was a 19th-century Orthodox Christian composer, chanter, educator, Bulgarian abbot and archimandrite of the Zograf monastery, and reformer of Orthodox Church music, originating from Struga, Ottoman Empire, today North Macedonia. Extensively educated and absorbed ascetic theologian, musicologist and philologist. While as a student in his pre-monastic period, he worked as a Greek language teacher, but also as a professor in Byzantine church music. While residing in the Zograf Monastery (Mount Athos, Greece) founded the music school and the translation calligraphic literary school. As а brilliant theorist of the nematic Byzantine musical tradition, furthermore composer and chanter on the one hand and an expert linguist in ancient Greek, Slavic, new Greek and Romanian language on the other hand, he created timeless masterpieces and translations, thereby enriching the cultural heritage spiritual barns of the Orthodox ecumene to the utmost. Kalistrat Zografski is likely to be regarded as the best connoisseur of Byzantine neumatic ladder, created by the famous ascetic, composer and chanter, St. John Kukuzel (12th century). He died in 1914, as Archimandrite of the monastery Zograf, in Mount Athos, Greece.
Early life
Born in Struga in 1821 as Krstan Sandzhak. It is assumed for him being primary educated in his hometown and beyond. There is evidence for him attending the music school of Naum Miladinov. However, in Zograf monastery on Mount Athos developed extensive and fruitful theoretical, composer's and translational work, providing a widespread reputation among connoisseurs of the Eastern church music.
His contribution as a master of psaltic art
Kalistrat's transcriptions of some of the Kukuzel's musical opus will be remembered as unsurpassed. He is the author of basic music literature as "Eastern church singing", published in four volumes, printed on Mount Athos in 1905 year. As a talented composer, he created several original compositions. The best known are the eucharistic canon "The Father and The Son ..." and "It's dignified" in different voices.
As an editor of the monastic publishing records and as brilliant connoisseur in many classical and living languages, Kalistrat Zografski first translated and printed services of St. Kliment, St. Naum and Seven Saints, from Old Slavonic, encoded by the famous Moscopolski Code. He died in monastic Zograf's cell in 1914 year. Due to his humble, gnostic, ascetic life, he is considered as one of the most beloved clerics of the athonite monastery Zografos. His relics are today stored in Zograf's monastic ossuary. His contribution to music and philology is the subject of numerous studies in scientific circles.
The most significant piece by Kalistrat Zografski is a collection Eastern church chants, in four volumes, which were published in Thessaloniki in 1905. Namely, it is noteworthy to point out his extensive engagement to the full implementation of this church-musical work: as a theorist, editor of the whole publication and translator for numerous variants of Greek and Romanian, and Slavic languages, including transcription of works, written in the Kukuzel's notation to the new Chrisantos neumatic ladder.
For his gnostic, godly, ascetic life, he is considered one of the most beloved priests of Aton and as such he will remain in the eternal memory of his native Struga. It is because of his contribution to church and spiritual life of the people who gravitate to it Church "St. George "-Struga St. George. In the temple is inscribed the municipal decision of 1894 year, which reads:
Reception history of Kalistrat Zografski
About Archimandrite Kalistrat(Krstan Sandzak) Zografski in the Macedonian Encyclopedia is written:
"Kalistrat ZOGRAFSKI (Krstan Sandzakoski) (Struga 1821 ‡ Zografos monastery on Mount Athos 1913) ‡ theologian ecclesial-musical activist and composer of spiritual chants. The beginnings of its general and theological education he did were in his native city, and according to some information, theoretical foundations of Byzantine orthodox music they learned in the school of Naum Miladin.
By leaving to the Holy Mountain, he was a teacher of Greek and gifted church chanter. In the church of Athos monastery Zografos, Kalistrat Zografski overall reached a duty Archimandrite. As editor in chief of the monastery's publications and translator of Greek and Romanian, he made a significant contribution to the enriching of ecclesial musical repertoire. From Greek, he translated the services of St. Clement, St. Naum, St. Sedmochislenitsi, and others. However, the most extensive work main author, as well as editor, is the four-volume work Chrisant notation 'Eastern ecclesial chant' (Thessaloniki, 1905) "
Harvard Dictionary of Music, lists Kalistrat Zografski as one of the important Macedonian ecclesiastical musical composers of the 19th century.
The last major event and exhibition held in Athens, in honor of the most important monks, ascetics and personalities of monastic life on the territory of Greece, Archimandrite Kalistrat Zografski is presented in the bulletin as one of the very few extraordinary representative of the spiritual and cultural heritage in the referring orthodox community.
Works
Служба иже во Святих Отца нашего архιерарха и чудотворца Климента, архиепископа Болгарскаго иже во Охрид (1901)
Служба Свѧтых Седмочисленник (1903)
Восточно церковно пение; Цветособрание – част III – Литургия (1905)
Источно црковно пеење(Eastern church chants)-Вечерно и утрено црковно пеење,автор-Калистрат Зографски, реиздание 2013
Источно црковно пеење(Eastern church chants)-Литургија и Воскресеник,автор-Калистрат Зографски, реиздание 2013
Gallery
Public records
https://www.youtube.com/watch?v=b4gq2CCTfUU
https://www.youtube.com/watch?v=aE5DiI-VDSU
https://www.youtube.com/watch?v=6eXdU-WJqfY
https://www.youtube.com/watch?v=S8x-rIPY_W4
https://www.youtube.com/watch?v=MVwzh7hd2k0
References
Sources
Short Spiritual History of Macedonia and MPC
Manuscripts
"УСПЕНИЕ" периодика на манастирот Успение Богородичино, 5/2003, Јанковец – Преспа
д-р Јане Коџобашија "Црковно-музичките дејци, Будителскиот дух", списание Премин бр. 3
ѓ. Васко Голабоски – Света Гора Атонска историја и живот
19th-century Bulgarian people
20th-century Bulgarian people
Bulgarian classical composers
Male classical composers
Composers of Christian music
Macedonian Bulgarians
People from Struga
1821 births
1914 deaths
People associated with Zograf Monastery |
Pandimukkala Venkata Vara Lakshmi, better known as P. V. V. Lakshmi, is an eight-time Indian national champion in badminton and represented India in the 1996 Atlanta Olympics. She is also the wife of Pullela Gopichand. She was the bronze medalist in badminton at the 1998 Commonwealth Games in the Women's Team event.
Gopichand Badminton Academy
P. V. V. Lakshmi, was very supportive of Gopichand during the formation of Gopichand Badminton Academy and even contributed to the effort of securing monetary support. Despite other donations, Gopichand could only gather US$1.75 million. It was then they decided to mortgage his family home and raise the remaining money for the already delayed project. In 2008, the facility was eventually completed at the cost of $2.5 million. Immediately after the construction, the Government of India sent the Commonwealth Games team to train at this facility. The government increased the daily rate they pay per player to $20 for this special Games camp. This was a big jump from the $5 daily fee per player that the government had previously paid for other training camps.
In 2008, they appealed to Bollywood, the Hindi cinema industry to become badminton's brand ambassador. They felt that by having a popular cinema icon supporting the sport will help popularize it.
Despite Saina Nehwal's success in international tournaments, Gopichand and Lakshmi found it hard to run the Academy. To run it at an optimal level, it requires $300,000 a year. As of 2010, he was making do with $100,000 to pay the training cost for 60 players and was holding off hiring more coaches.
Achievements
IBF International
Personal life
P. V. V. Lakshmi married fellow badminton player Gopichand on 5 June 2002. They have two children, a daughter named Gayathri and a son named Vishnu. Her daughter Gayathri, who is the elder of the two siblings, won the 2015 U-13 National Badminton Champion. Her son Vishnu is currently training at Gopichand academy. After marriage, Gopichand concentrated on badminton academy and Lakshmi helped him.
References
External links
Living people
Indian female badminton players
Olympic badminton players for India
Badminton players at the 1996 Summer Olympics
Sportswomen from Vijayawada, India
Racket sportspeople from Vijayawada
Sportswomen from Hyderabad, India
Indian national badminton champions
Commonwealth Games medallists in badminton
Commonwealth Games bronze medallists for India
20th-century Indian women
20th-century Indian people
Badminton players at the 1998 Commonwealth Games
1974 births
Medallists at the 1998 Commonwealth Games |
SCH Dirty Lo-Fi Archive 1984–2008 is a 4-DVD SET collection by SCH, including shots recorded "nomatterhow", gigs, TV interviews, promotional clips, and other archival material documenting 25 years of the existence and work of the Sarajevo alternative rock band.
Bonus Material
SCH Live at Mochvara (DVD)
Concert in Zagreb, on 13 March 2008
SCH Video Compilation (DVD)
A promo compilation of the full length 4-DVD set
References
External links
SCH Official Media Page
SCH YouTube Channel
SCH (band) albums
2008 albums |
```python
class Solution(object):
def flipAndInvertImage(self, A):
for row in A:
for i in xrange((len(row) + 1) / 2):
"""
In Python, the shortcut row[~i] = row[-i-1] = row[len(row) - 1 - i]
helps us find the i-th value of the row, counting from the right.
"""
row[i], row[~i] = row[~i] ^ 1, row[i] ^ 1
return A
# return [[1 ^ i for i in row[::-1]] for row in A]
``` |
How the First Helandman of God Was Maid is an anonymous comic poem in Scots preserved in the Bannatyne Manuscript of the sixteenth century.
The poem narrates how, following a wager proposed to him by Saint Peter, God creates the first Highlander from a piece of horse manure. The prototype Highlander is depicted as a petty thief and a stealer of Lowlanders' cattle.
In the Bannatyne Manuscript the poem's full title is given as How the first Helandman of God was maid, Of ane Horss Turd, in Argylle, as is said. The piece is attributed to no author.
Synopsis
The Wager
The poem opens with God and Saint Peter walking "High up in Argyll, where their path lay." Peter asks the Lord "Can you not make a Highlandman out of this horse turd?"
The Highlander is Created
With a touch of his staff, God creates a Highlander from the piece of dung and asks him "Where do you want to go?"
The Highlander replies that he will go to the Lowlands to steal livestock.
When God points out to the Highlander that he will be hanged for this crime the man claims to be indifferent. "I must die one day" he says.
God is amused by this and then departs by leaping over a wall. While doing so his knife falls from its sheath.
The Missing Knife
Peter searches thoroughly but unsuccessfully for the lost knife.
God observes "Here's a marvel! How can it be that my knife is missing when there are only three of us here?"
The Highlander does not reply but, while turning to leave, the lost knife falls from a fold of his plaid.
Saint Peter reprimands him. "You will never do well. You, new-made, so soon turning to theft."
The Highlander is unrepentant. The poem ends with him swearing an oath upon a nearby church. "As long as I may find goods to steal, I will never work!"
References
Poetry of the Bannatyne Manuscript
Scottish poems
Scots-language works
Middle Scots poems |
```python
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# pylint: disable=W0401,W0614
from telemetry import story
from telemetry.page import page as page_module
from telemetry.page import shared_page_state
class SkiaBuildbotDesktopPage(page_module.Page):
def __init__(self, url, page_set):
super(SkiaBuildbotDesktopPage, self).__init__(
url=url,
page_set=page_set,
credentials_path='data/credentials.json',
shared_page_state_class=shared_page_state.SharedDesktopPageState)
self.archive_data_file = 'data/skia_tigersvg_desktop.json'
def RunNavigateSteps(self, action_runner):
action_runner.Navigate(self.url)
action_runner.Wait(5)
class SkiaTigersvgDesktopPageSet(story.StorySet):
""" Pages designed to represent the median, not highly optimized web """
def __init__(self):
super(SkiaTigersvgDesktopPageSet, self).__init__(
archive_data_file='data/skia_tigersvg_desktop.json')
urls_list = [
# Why: from fmalita
('path_to_url
'Ghostscript_Tiger.svg'),
]
for url in urls_list:
self.AddStory(SkiaBuildbotDesktopPage(url, self))
``` |
```java
package com.yahoo.search.dispatch.searchcluster;
import java.util.Objects;
import java.util.concurrent.atomic.AtomicLong;
/**
* A node in a search cluster. This class is multithread safe.
*
* @author bratseth
* @author ollivir
*/
public class Node {
private final String clusterName;
private final int key;
private final String hostname;
private final int group;
private int pathIndex;
private final AtomicLong pingSequence = new AtomicLong(0);
private final AtomicLong lastPong = new AtomicLong(0);
private volatile long activeDocuments = 0;
private volatile long targetActiveDocuments = 0;
private volatile boolean statusIsKnown = false;
private volatile boolean working = true;
private volatile boolean isBlockingWrites = false;
public Node(String clusterName, int key, String hostname, int group) {
this.clusterName = clusterName;
this.key = key;
this.hostname = hostname;
this.group = group;
}
/** Give a monotonically increasing sequence number.*/
public long createPingSequenceId() { return pingSequence.incrementAndGet(); }
/** Checks if this pong is received in line and accepted, or out of band and should be ignored. */
public boolean isLastReceivedPong(long pingId ) {
long last = lastPong.get();
while ((pingId > last) && ! lastPong.compareAndSet(last, pingId)) {
last = lastPong.get();
}
return last < pingId;
}
public long getLastReceivedPongId() { return lastPong.get(); }
/** Returns the unique and stable distribution key of this node */
public int key() { return key; }
public int pathIndex() { return pathIndex; }
void setPathIndex(int index) {
pathIndex = index;
}
public String hostname() { return hostname; }
/**
* Returns the index of the group this node belongs to.
* This is a 0-base continuous integer id, not necessarily the same as the group id assigned by the
* application/node repo.
*/
public int group() { return group; }
public void setWorking(boolean working) {
this.statusIsKnown = true;
this.working = working;
if ( ! working ) {
activeDocuments = 0;
targetActiveDocuments = 0;
}
}
/** Returns whether this node is currently responding to requests, or null if status is not known */
public Boolean isWorking() {
return statusIsKnown ? working : null;
}
/** Updates the active documents on this node */
public void setActiveDocuments(long documents) { this.activeDocuments = documents; }
public void setTargetActiveDocuments(long documents) { this.targetActiveDocuments = documents; }
/** Returns the active documents on this node. If unknown, 0 is returned. */
long getActiveDocuments() { return activeDocuments; }
long getTargetActiveDocuments() { return targetActiveDocuments; }
public void setBlockingWrites(boolean isBlockingWrites) { this.isBlockingWrites = isBlockingWrites; }
boolean isBlockingWrites() { return isBlockingWrites; }
@Override
public int hashCode() { return Objects.hash(hostname, key, group); }
@Override
public boolean equals(Object o) {
if (o == this) return true;
if ( ! (o instanceof Node other)) return false;
if ( ! Objects.equals(this.hostname, other.hostname)) return false;
if ( ! Objects.equals(this.key, other.key)) return false;
if ( ! Objects.equals(this.group, other.group)) return false;
return true;
}
@Override
public String toString() {
return "search node in cluster = " + clusterName + " key = " + key + " hostname = "+ hostname +
" path = " + pathIndex + " in group " + group + " statusIsKnown = " + statusIsKnown + " working = " + working +
" activeDocs = " + getActiveDocuments() + " targetActiveDocs = " + getTargetActiveDocuments();
}
}
``` |
Voyages Indigenous Tourism Australia Pty Limited, commonly called Voyages, is a subsidiary business of the Indigenous Land Corporation. Voyages manages tourism and resort facilities in the Northern Territory, in Western Australia and in Queensland, Australia.
In the Northern Territory, Voyages operates five venues at Ayers Rock (Uluru) Resort including Sails in the Desert, Desert Gardens Hotel, Emu Walk Apartments, the Outback Pioneer Hotel and Lodge, and the Ayers Rock Campground. In Western Australia, Voyages manages Home Valley Station in the East Kimberley region. In Queensland, Voyages manages the Mossman Gorge Centre in , Far North Queensland.
History
Several resorts were built in and around Yulara during the 1980s. Following a chequered history of the tourism developments in the Northern Territory, the Ayers Rock Resort Company Limited was formed in 1992 and after a period of growth, acquired resorts at Alice Springs and Kings Canyon and established profitability. In September 1997, General Property Trust purchased Ayers Rock Resort Company Limited and changed its name to Voyages Hotels & Resorts in March 2000. A year later, Voyages purchased Odyssey Tours and Safaris, Coconut Beach Rainforest Lodge and Ferntree Rainforest Lodge. Luxury resort, Longitude 131°, was opened in June 2002 under the Voyages banner.
In July 2004, Voyages acquired P&O Australian Resorts, adding properties in Tasmania, Queensland and on the Great Barrier Reef. They then opened Wrotham Park Lodge in September 2004 and acquired El Questro Homestead in July 2005. In early 2006, Voyages sold its Odyssey Tours and Safaris to New South Wales-based Australian Wilderness Tours. Coconut Beach Rainforest Lodge, Ferntree Rainforest Lodge, Jungle Lodge and dive operation Odyssey H2O were also sold a year later.
In July 2009, Cradle Mountain Lodge was sold to the Cradle Mountain Resort Pty. Ltd. Also in July 2009, Silky Oaks Lodge was purchased by Australian-based Gondwana Resorts Pty Ltd. September 2009 saw the sales of Bedarra and Dunk Islands to Hideaway Resorts Pty Ltd. In November 2009, the Lizard Island, Heron Island, Wilson Island and King's Canyon Resort interests were sold to Delaware North. Alice Springs Resort was handed over to Alice Springs Resort Enterprises Pty Ltd. in November and operated as the Chifley Alice Springs Resort.
In 2010, General Property Trust sold Voyages Hotels & Resorts to the Indigenous Land Corporation (ILC) and the ILC formed a new subsidiary, Voyages Indigenous Tourism Australia, to operate the ILC's tourism portfolio. Voyages established a training academy at the Ayres Rock Resort to provide young Indigenous people with accredited training in hospitality and the resort significantly increased its level of Indigenous staff from 1 per cent of the workforce at time of acquisition to approximately 32 per cent of the workforce in 2015.
In 2013, Voyages sold Longitude 131° to Bailey Lodges.
See also
Indigenous Land Corporation
References
Australian companies established in 2000
Companies based in Sydney
Tourism in the Northern Territory
Organisations serving Indigenous Australians
Tourism organisations in Australia
Travel and holiday companies of Australia |
Vicki Lee Lansky (née Rogosin; January 6, 1942 – January 15, 2017) was an American author and publisher, best known for her cookbook Feed Me I'm Yours.
Feed Me I'm Yours began as a local fund-raising cookbook for the Minneapolis chapter of the Childbirth Education Association (CEA) in 1974. Lansky, then a new mother and recent transplant to suburban Minneapolis from New York City, was not familiar with local group 'favorite-recipe' fund-raising cookbooks. But Lansky, then a stay-at-home mom and CEA volunteer, suggested the idea at a meeting.
CEA agreed to try the idea, whereupon Lansky rounded up five friends, some from CEA and some not, to help her with the project. She then presented an outline of a cookbook that would be of interest to new mothers, beginning with making baby food. With only two groups working in meetings and only one name suggested for the cookbook, the project was presented to CEA, who quickly agreed to fund the book's first printing.
In the Sunday food section of the Minneapolis Star and Tribune (December 1, 1974 issue), food editor Mary Hart featured Lansky and the cookbook. This inspired Lansky and her husband Bruce, who had worked in sales and marketing, to start a publishing company. Meadowbrook Press (named after Meadowbrook Lane where the couple lived) was created to sell Feed Me I'm Yours nationally. When the couple's marriage ended in the early 1980s, however, so did the business partnership; in the divorce settlement, her husband got the business, while she got their lake-front home.
Books
Lansky's first book is still one of the highest-selling baby/toddler food cookbooks in the United States, which has sold over 3 million copies. Lansky followed the book with Taming of the C.A.N.D.Y. (Continuously Advertised Nutritionally-Deficient Yummies) Monster, which landed as #1 on The New York Times Best Seller list on April 30, 1978 after an appearance on The Phil Donahue Show.
Her parenting newsletter was recommended by Ann Landers on December 17, 1981, and was described by the New York Times as 'the most original' of its kind. The newsletter's parenting tips were incorporated into a later book, Practical Parenting Tips for the First Five Years, which has sold over 700,000 copies.
In the 1980s, Bantam Books published Lansky's first single-topic parenting titles after she left Meadowbrook Press. The list includes: Toilet Training: A Practical Guide to Daytime and Nighttime Training (1993, 2003); Birthday Parties, Best Party Tips & Ideas For Ages 1-8 (1986, 1995); Dear Babysitter Handbook (1992, 2001); Welcoming Your Second Baby (1984, 2005); Getting Your Child to Sleep...and Back to Sleep (1985, 2004); Trouble-Free Travel with Children (1991, 2004); and Baby-Proofing Basics (1991, 2002).
Her children/parent read-together books include KoKo Bear's New Potty, A New Baby at KoKo Bear's House, KoKo Bear and the New Babysitter, and KoKo Bear's Big Earache, which last helps children prepare for ear tube surgery. Lansky later self-published these titles through Book Peddlers, which she established to distribute her own titles as well as those by others.
On the sixth anniversary of her divorce NAL/Signet published Vicki Lansky's Divorce Book for Parents: Helping Children Cope with Divorce and Its Aftermath. In an interview, Lansky stated: "I read what was available on divorce but no one book had all I needed in one place so I wrote the one I wished I could have found for myself... I wrote a book to help other parents get through that tough time." The book was reprinted in 1996 by her own press, Book Peddlers. The book received a Parent's Choice Book award. According to the New York Times review of the book, "It's the one to read through your fears and tears".
Her companion children's book, It's Not Your Fault, KoKo Bear, is intended for children 3–7 years coping with divorce. And in the midst of the Beanie Baby frenzy of that time, Lansky created KoKo Bear: the Divorce Doll for Kids. Lansky was interviewed by Meredith Vieira on The View, where she introduced the KoKo Bear doll to a national audience. KoKo Bear comes with a small backpack which encourages children to write down their worries and stuff them into the backpack so that KoKo Bear—not the children—can carry them.
In 1988, Lansky received a call from the new editor at Family Circle magazine. The publication was looking for a new household hints columnist, which opportunity allowed Lansky to go from writing tips for young children to tips for adults. Lansky had since written and published several household hints books, including the bestsellers Baking Soda: Over 500 Fabulous, Fun and Frugal Uses, with over 500,000 copies sold, and Vinegar: Over 400 Various, Versatile and Very Good Uses (2004) with over 350,000 copies sold.
Media
Lansky was a Sunday columnist for the Minneapolis Star Tribune from 1985 to 1987, a contributing editor to Family Circle magazine for more than eight years, and wrote a monthly column for Sesame Street Parents magazine from 1987 to 1997. Lansky's media appearances over the years have included The Rosie O'Donnell Show, The View, CBS This Morning, The Oprah Winfrey Show, The Phil Donahue Show, CNN, PM Magazine, Attitudes (on Lifetime Cable), Hour Magazine, Smart Solutions (HGTV), The 700 Club, and The Today Show.
She has been featured in several major national magazines and held a parenting spot for a year on AP Radio in 1983. She taped TV segments for Help! Around the House and Home Matters, and has appeared on QVC. Two of her divorce articles can be found on the Huffington Post.
Lansky worked as a spokesperson for Arm & Hammer Baking Soda (January 2001/BSMG), the Dole Family Advisory Board (March 2000/Londre Company), Mead Johnson's Enfamil (December 1999/BSMG), and P&G's Bounce fabric softener sheets (July 1997/Marina Mahr). In 2005 she worked with 3M as part of the 75th anniversary celebration of the invention of Scotch Tape.
In 2002, Lansky was named Minnesota publisher of the year by the Midwest Independent Publishers Association.
Personal life
Lansky was born in Louisville, Kentucky. At age 13, her family moved to Mount Vernon, New York. She graduated from A. B. Davis High School. After receiving a B.A. from Connecticut College, she worked in New York City in the retail clothing industry.
She married S. Bruce Lansky in 1967. In 1971 the couple moved with their first child to Minneapolis where he had taken a new job. When they divorced in 1983, Vicki and Bruce co-parented their children, with the kids living one week with each parent. Today most of Lansky's books are published by Book Peddlers and are distributed by Publishers Group West (PGW) to book outlets and in eBook format, as well as by mail or online through Practical Parenting. Lansky married Stephen M. Schaefer in 2008 just as she was updating 101 Ways to Tell Your Sweetheart "I Love You".
Death
Lansky died on January 15, 2017, aged 75, in hospice care at her home in Trillium Woods in Plymouth, Minnesota from cirrhosis. She was survived by her two children and three grandchildren.
Controversy
In his November 11, 2010 article on Cracked.com, popular internet writer Seanbaby pointed out that Lanksy had reused whole passages from an earlier work for the book 101 Ways to say I Love You, claiming that she had "tricked [him] into buying this terrible book twice!".
References
External links
http://www.practicalparenting.com/
http://www.bookpeddlers.com/
1942 births
2017 deaths
American publishers (people)
American cookbook writers
Women cookbook writers
20th-century American non-fiction writers
20th-century American women writers
21st-century American non-fiction writers
21st-century American women writers
Connecticut College alumni
Writers from Mount Vernon, New York
Writers from Louisville, Kentucky
Kentucky women writers
American women non-fiction writers |
```java
/*
*/
package docs.javadsl;
import akka.NotUsed;
import akka.actor.ActorSystem;
import akka.stream.alpakka.recordio.javadsl.RecordIOFraming;
import akka.stream.alpakka.testkit.javadsl.LogCapturingJunit4;
import akka.stream.javadsl.Sink;
import akka.stream.javadsl.Source;
import akka.testkit.javadsl.TestKit;
import akka.util.ByteString;
import org.junit.AfterClass;
import org.junit.Rule;
import org.junit.Test;
import static org.hamcrest.CoreMatchers.*;
import static org.hamcrest.MatcherAssert.assertThat;
import java.util.List;
import java.util.concurrent.CompletionStage;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
public class RecordIOFramingTest {
@Rule public final LogCapturingJunit4 logCapturing = new LogCapturingJunit4();
private static final ActorSystem system = ActorSystem.create();
@AfterClass
public static void afterAll() {
TestKit.shutdownActorSystem(system);
}
@Test
public void parseStream() throws InterruptedException, ExecutionException, TimeoutException {
// #run-via-scanner
String firstRecordData =
"{\"type\": \"SUBSCRIBED\",\"subscribed\": {\"framework_id\": {\"value\":\"12220-3440-12532-2345\"},\"heartbeat_interval_seconds\":15.0}";
String secondRecordData = "{\"type\":\"HEARTBEAT\"}";
String firstRecordWithPrefix = "121\n" + firstRecordData;
String secondRecordWithPrefix = "20\n" + secondRecordData;
Source<ByteString, NotUsed> basicSource =
Source.single(ByteString.fromString(firstRecordWithPrefix + secondRecordWithPrefix));
CompletionStage<List<ByteString>> result =
basicSource.via(RecordIOFraming.scanner()).runWith(Sink.seq(), system);
// #run-via-scanner
// #result
List<ByteString> byteStrings = result.toCompletableFuture().get(1, TimeUnit.SECONDS);
assertThat(byteStrings.get(0), is(ByteString.fromString(firstRecordData)));
assertThat(byteStrings.get(1), is(ByteString.fromString(secondRecordData)));
// #result
}
}
``` |
Daniel Estrada Pérez (January 3, 1947, in Cusco - March 23, 2003 in Lima) was a Peruvian lawyer and politician. He served as the Provincial Mayor of Cusco Province, which contains the city of Cusco, from 1984 to 1986 and again from 1990 until 1995. Estrada was then elected to the Congress of the Republic of Peru, where he served from 1995 to 2003.
1947 births
2003 deaths
Provincial Mayors of Cusco Province
Members of the Congress of the Republic of Peru
People from Cusco
20th-century Peruvian lawyers
Union for Peru politicians |
The Jerzy Bojańczyk's Brewery in Włocławek - an industrial site of the 19th-century historic Bojańczyk Brewery, built from 1832 to 1880 in Włocławek. Consists of 5 buildings: the main building of the Brewery, three warehouses and the Administrator's building.
History
The Brewery was established by Kazimierz Bojanczyk in 1832. It originally produced vodka and later beer, producing several hundred barrels per year at the time. The Brewery was one of the biggest in the city of Włocławek. It remained in possession of the Bojańczyk family after the death of the founder Kazimierz Bojańczyk. Inherited first by Kazimierz's son Rafał, and later on by his grandson Wincenty. In 1866, when Rafał Bajończyk was the owner of the brewery, a bucket of beer costed 30 kopeks (Imperial Russian currency). The Brewery has expanded gradually, since the time it was established. The Main Building of the brewery was built first, in 1832. The complex expanded in 1878 when three warehouses were built. The Administrator's building was the last structure to be constructed, in 1880. The Bojańczyk family kept the brewery until the end of World War II. The Brewery kept changing ownership among members of the Bojańczyk family. Jerzy Bojańczyk managed the brewery until 1914. The World War I disrupted the development of the complex. Wincenty Bojańczyk, sold the whole site to a joint-stock company created by Wincent's son Jerzy. Annual production of beer in 1927 reach around 5600 hectoliters. After World War II, the brewery was nationalized and later closed. After the nationalization, the buildings were used as warehouses, fish distribution sites and a sewing factory.
Buildings
The Brewerysite consists of 5 buildings of different sizes. All facilities were built between 1832 and 1880.
Main Brewery
The building was erected in 1832 by Kazimierz Bojańczyk as the first and the main building of the Brewery. The building is made of red burnt brick. The architectural values of the Brewery are diminished by a number of extensions and annexes, which do not, in any way, fit into the design of the building.
Warehouse No. 1.
Built in 1878. Like the main building of the Brewery, it is a four-storey building, made of red burnt brick. It is covered with a gable roof with ceramic tiles. There is an additional structure on the western side of the building meant for a staircase. Due to the utility needs of the building, the floors have different heights.
Warehouse No. 2.
Built in 1878. Warehouse building No. 2 listedin the register of monuments under No. 413/A of 12.06.1998, built of red brick, together with warehouse No. 3 and 1 forms a fragment of the frontage of Bechiego Street. The building has three floors with a partial basement, although the elevation presents two overground storeys. The building is topped with a gable roof on a wooden structure with two walls covered with asphalt roofing felt installed on planks.
Warehouse No. 3.
The building is located along Bechiego Street, towards Łęgska Street. It consists of three segments: the smallest - the first one from the Vistula, the middle one and the corner one. In the façade of the building from Łęgska Street, there is a frieze, unprecedented in any other Włocławek building, crowned with a canopy with a motif of a pointed arch, clearly referring to the neo-Gothic trend.
Administrator’s building
It is the only building designed to be used for residential purposes straight from the beginning and is still in use today. 7 families currently live here. The structural and spatial layout of the house is also typical for eighteenth-century buildings with a central supporting chimney wall and amphiladium rooms.
Revitalisation
The revitalization of the historic buildings of the brewery has become one of the priorities of the Włocławek City Hall. The implementation of the project was delayed due to numerous problems. For a long time, the city had a problem with the expropriation of the last property comprising the entire complex (the local government was not the owner of the entire facility). The city decided to take over the private property legally acquired from the city in 2003 at 28 Łęgska Street, citing the repurchase right clause in the sales contract. The final decision on the ownership of the plot was made by the Court of Appeals in Gdańsk, which established the Włocławek local government as the owner of the property. The project to revitalise the site involves the demolition of some objects which are not of historical value. They will be replaced by new architecture reflecting the brick facades of historical buildings. The Brewery Culture Centre will be opened in its place after the completed reconstruction. The facilities will include numerous exhibition areas, teaching rooms, a large dance hall, an auditorium as well as conference and multifunctional rooms.
The centre will host, among other things, extracurricular activities for students from neighbouring schools. The facility will include computer and language training rooms. It will be an undertaking addressed to institutions, non-governmental organizations and associations which will be able to carry out their statutory activities in this field. The buildings will also contain rooms for dance, singing and photography classes as well as social meetings.
On December 30, 2011, in the Włocławek City Hall, after the tender procedure, a contract was signed with the contractor, the Molewski company from Chodecz. The value of the project was 37 million 547 thousand PLN, and the deadline for completion of the works, specified in the agreement, was 30 September 2013. The investment is covered by funding from the European Regional Development Fund as part of the Kujawsko-Pomorskie Regional Operational Programme for 2007–2013, which is 18 million 469 thousand zlotys.
References
Włocławek |
```shell
How to unmodify a modified file
Using tags for version control
Use `short` status to make output more compact
How to write a git commit message
Remote repositories: viewing, editing and deleting
``` |
Hacketts Gully is a suburb of Perth, Western Australia, located within the City of Kalamunda. It was officially named in 1972 and commemorates an early settler and market gardener, Thomas Hackett.
References
External links
Suburbs of Perth, Western Australia
Suburbs in the City of Kalamunda |
Cockscomb Mountain was named in 1921 because the outline of the summit was said to resemble a roosters comb. It is located in the Sawback Range in Alberta. The mountain is composed of sedimentary rock laid down during the Precambrian to Jurassic periods. Formed in shallow seas, this sedimentary rock was pushed east and over the top of younger rock during the Laramide orogeny.
Climate
Based on the Köppen climate classification, Cockscomb Mountain is located in a subarctic climate zone with cold, snowy winters, and mild summers. Temperatures can drop below −20 °C with wind chill factors below −30 °C. Precipitation runoff from the mountain drains into tributaries of the Bow River.
See also
List of mountains of Canada
Geography of Alberta
References
External links
Cockscomb Mountain photo: Flickr
Cockscomb Mountain weather: Mountain Forecast
Parks Canada web site: Banff National Park
Two-thousanders of Alberta
Mountains of Banff National Park
Alberta's Rockies |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.